diff --git a/localization.html b/localization.html index 1a25107..0fe54e0 100644 --- a/localization.html +++ b/localization.html @@ -87,7 +87,7 @@ - +
GitHub
YouTube Channel
@@ -101,17 +101,31 @@

Getting started

Join the localization project and tell me the account name you used so I can approve it. The best way is via #localization on Discord, but you can also send a mail. If the language you want to work on hasn't been added yet, tell me.

-

Remember that you may also join languages that have already been completely translated, since future Chatty updates will likely also require more or updated translations. This is especially true now, since still not all GUI parts have been added for localization yet.

+

Remember that you can also join languages that have already been completely translated, since future Chatty updates will likely also require more or updated translations. This is especially true now, since still not all GUI parts have been added for localization yet.

+ +

Note that not everything can be translated yet, and the help pages probably won't be at all, since it would be too much work to keep updated. My goal for now is to make the basic functions of the program more comfortable to use for people who don't speak english as their first language.

Translation Guidelines

+
  • You don't have to translate everything. If there is no good translation for something, just keep it in English.
  • +
  • Strings that aren't translated will automatically fallback to English, so please don't just copy the English strings to fill translations, unless the English string is the translation (see previous point).
  • +
  • If you're translating a term specific to Twitch or Streaming, try to use the "official" translation from the Twitch website.
  • +
  • The comments for a specific translation item sometimes give additional hints about the string.
  • +
  • If have a question or want to discuss something, ask in #localization on Discord or leave a comment on the translation page.
  • + + +

    Replacements

    +

    Something like {0} in a string is replaced with a certain value, for example in Join #{0} the {0} is replaced with the stream name (e.g. resulting in Join #joshimuz).

    + +

    Replacements use the MessageFormat class, you can read that documentation if you're interested, although mostly it's enough to just stick close to the template. One important thing is that any single quotes need to be escaped with a single quote (e.g. Can''t join ''{0}'').

    + +

    The more advanced choice pattern is commonly used for plurals: Join {0,choice,1#|1<{0} }{0,choice,1#channel|1<channels}. In this example there are two separate choice patterns ({0,choice,<choices>}), both using the first parameter (0), which contains the number of channels:

    + +