Swift program.
Help is needed:
I'm trying to Russify the title in the navigation bar :
self.title = NSLocalizedString("Question # " + String(numberOfQuestion), comment: "title with question number") <trans-unit id="Question # "> <source>Question # </source> <target>Вопрос № </target> <note>title with question number</note> </trans-unit> However, the inscription remains in English, as written in source .
Translation for other strings works well.
Maybe the thing is in + String(numberOfQuestion) ?
Tried it like this, but with the same result: "Question # \(numberOfQuestion)"