Reputation: 2131
I have approximately 15 languages in my app, so i have 15 files like this: localizable.strings(language name)
All they have one source, and difference is only in right part of expression.( Ex: "NoMoney" = "Free" in localizable.strings(English) and "NoMoney" = "Gratis" in localizable.strings(Italian) and so on)
Is there any way to update all these files when I update source localizable file (It's localizable.strings(English) file )? Thanks.
Upvotes: 2
Views: 133
Reputation: 7944
In my project, I use Twine to maintain .strings files for many languages and it works pretty well. It allows to store translated strings for all languages in one "master" file and then generate appropriate .strings files for each language.
Upvotes: 2