Заполнитель и NSLocalizedString

Я пытаюсь перевести свое приложение, и мне трудно перевести, когда есть половина заполнитель. Мне нужно найти следующий код:

[textView1 insertText:[NSString stringWithFormat:@"%@ è il %i/%i/%i. Il giorno delle settimana è %@. La Festa è compresa nel calcolo. \n", nomeFesta, giornoFesta, meseFesta, annoFestaModificato, ggSett]];

Я поместил в файл localizable.string (Английский):

"festaCompresa" = @"%@ is the %i/%i/%i. the day of the week is %@. The holidays is included in the calculation. \n";

Затем я отредактировал фрагмент кода:

[textView1 insertText:[NSString stringWithFormat:NSLocalizedString(@"festaCompresaW, @""), nomeFesta, giornoFesta, meseFesta, annoFestaModificato, ggSett]];

Не работает

6
задан VikingoS says Reinstate Monica 30 April 2012 в 16:31
поделиться