This is the community language repository for Movie Tracker.
If there is a language you'd like to see Movie Tracker localized to but we haven't got around to it yet, and you have some git-fu, feel free to submit a pull request to the repository.
Please do not add multiple languages in the same pull request — this way, there can be a discussion thread for each language for any changes or tweaks that need to be made, and give others opportunity for peer review.
Languages are structured in folders as such:
App/en.lproj/xxx.strings
and Shortcuts/en.lproj/xxx.strings
Where en
is replaced by the ISO 639-1 two-letter language code, and the xxx.strings
files are structured as per the English (en
) version.
All the files inside the App
and Shortcuts
folders must be translated. Please do not include any other files in a pull request.
Strings are denoted as "KEY"
= "value"
, where the keys remain the same across all languages, and the values are localized. There must be a ;
at the end of each line.
"SEARCH_PLACEHOLDER" = "Search";
Where you see a %@
, %ld
or {key}
token, this denotes a value that is replaced at runtime — in most cases will be the user-provided name for a space or tag, or a number. The corresponding localized value must keep the token in the right place to provide the same meaning as the English value.
"ItemNotWatchedMessage" = "You haven't watched %@ yet";
Please append the name you would like to be credited by to the pull request or the comment block at the top of the xxx.strings file.