Difference between revisions of "MG/Translations"

From MegaGlest
Jump to navigation Jump to search
(some updates)
Line 22: Line 22:
 
* Replace the english translation strings by a galician translation. Try to use one which is not or just a little bit longer than the english string because the text will need to fit into a given place on screen.
 
* Replace the english translation strings by a galician translation. Try to use one which is not or just a little bit longer than the english string because the text will need to fit into a given place on screen.
 
* Save the file using UTF-8 character encoding.
 
* Save the file using UTF-8 character encoding.
* Run the game with your new translation and see whether your new translations really make sense where they are used. It can easily happen that you add a translation which does not make sense in the given context. Also make sure that your translation really fits well on screen with the default font size. You may add [code]\n[/code] (backslash and n) to your translation strings to wrap the text across multiple lines. But make sure what this does not break the looks either - you should test this at a 800x600 resolution.
+
* Run the game with your new translation and see whether your new translations really make sense where they are used. It can easily happen that you add a translation which does not make sense in the given context. Also make sure that your translation really fits well on screen with the default font size. You may add '''\n''' (backslash and n) to your translation strings to wrap the text across multiple lines. But make sure what this does not break the looks either - you should test this at a 800x600 resolution.
 
* Make a final check to verify it's all ok.
 
* Make a final check to verify it's all ok.
 
* Paste your new/updated translation on http://paste.megaglest.org and paste the resulting internet address on the MegaGlest forums as a new [bug]. Alternatively, send the translation file to [http://megaglest.org/contact.html the general contact e-mail address] or one of the main developers (by e-mail). Please provide information on how you would like to be credited in the documentation for the next release.
 
* Paste your new/updated translation on http://paste.megaglest.org and paste the resulting internet address on the MegaGlest forums as a new [bug]. Alternatively, send the translation file to [http://megaglest.org/contact.html the general contact e-mail address] or one of the main developers (by e-mail). Please provide information on how you would like to be credited in the documentation for the next release.

Revision as of 17:05, 2 September 2011

Some of the existing translation are not very well maintained and, so far, only a couple languages are supported. So it's great that you're interested in working on this.

How translations work

There are several language files. These language files contain several lines which always take the same pattern:

keyword=translation string

These key words are referenced in the source code of the game. Depending on the language the user has chosen, when these keywords are met during execution of the game, the translation string which matches this keyword is taken from the language file and printed on screen.

Sometimes the core developers need to add or remove new translation keys (strings) to the language files. Whenever this happens, they update the english.lng file to make this work for english language. When they do, they either remove lines which are no longer referenced in the game (and thus no longer needed) or add new lines (for newly introduced texts) to english.lng. Sometimes, but not usually, they also add any newly added lines to the other translation files (but using the english language translation as a source). So the reference file, the file all translations should check to make sure they contain the right keywords, is english.lng.

The latest version of english.lng is usually the one in trunk. There could theoretically be newer ones in (other) branches of the subversion source code repository but that's rather unlikely and if this should happen the core developers should be telling you (feel free to check, though).

How to provide translations

Now to update an existing translation, you need get the latest copy of the existing translation file, which is usually the one in trunk, too.

For example, to update for example galego.lng, based on english.lng, you need to:

  • Make sure you use a text editor which supports Unix style line endings (such as every editor on Linux does, and also Notepad++ on Windows (but not the original Ms Windows Notepad!)) and the UTF-8 encoding.
  • Remove any lines from galego.lng which contain keywords which are not contained in english.lng.
  • Add any lines to galego.lng which contain keywords which are contained in english.lng (but have not been contained in galego.lng so far).
  • Replace the english translation strings by a galician translation. Try to use one which is not or just a little bit longer than the english string because the text will need to fit into a given place on screen.
  • Save the file using UTF-8 character encoding.
  • Run the game with your new translation and see whether your new translations really make sense where they are used. It can easily happen that you add a translation which does not make sense in the given context. Also make sure that your translation really fits well on screen with the default font size. You may add \n (backslash and n) to your translation strings to wrap the text across multiple lines. But make sure what this does not break the looks either - you should test this at a 800x600 resolution.
  • Make a final check to verify it's all ok.
  • Paste your new/updated translation on http://paste.megaglest.org and paste the resulting internet address on the MegaGlest forums as a new [bug]. Alternatively, send the translation file to the general contact e-mail address or one of the main developers (by e-mail). Please provide information on how you would like to be credited in the documentation for the next release.

Keep your translation up to date

After you completed your translation, please make sure you also subscribe to the megaglest-translations mailing list. This announcement-only mailing list is only used to notify translators that we will soon release a new version, so they have a chance to ensure that their translation is complete. Note that during development it will happen that new translation keys are added, and possibly old ones removed, so it is very likely that changes need to be made to existing translations to make them complete for the next release.

See Also