we use Localizable.strings to support multiple languages. But for some languages, such as Polish, the words has gender. So, the two words can't just be concatenated directly. We have many "Verb + Noun" strings. And we support many languages with different grammars. Do you meet such problem?
Thanks.
Maybe you could create formatted strings (with some
%@
)Admitting your sentence is associated to the key
key1
and your word with gender to the keykey2
, your code would look like :