Translation documentation for Developers: Difference between revisions

From OpenPetra Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(23 intermediate revisions by 2 users not shown)
Line 2: Line 2:
There is a separate page with [[Documentation for Translators]].
There is a separate page with [[Documentation for Translators]].


= Synchronising Launchpad with version in Git =
= Testing a translation =
The synchronisation process needs to be done by someone of the Core development team. The goal is to get the latest translations into the official packaged version, and to update the template on Launchpad with new strings to translate.
You can get a test installation, by running


First download the latest translations, in this case for german, in .po format:
  curl https://get.openpetra.org | bash -s test
  https://translations.launchpad.net/openpetraorg/trunk/+pots/template1/de/+export
You will get an email once the download is ready.


Then generate a new template file:
Then just replace your language file in /home/op_test/client/locales, and reload your browser.
# Delete the file i18n/template.po, if it exists
# make sure that your OpenPetra.build.config has <property name="Translation.TargetLanguage" value="template"/>
# <code>nant translation</code> will create the file U:\openpetraorg\i18n\template.po. Rename it to template.pot and commit template.pot.
# Upload the new template.pot file to Launchpad, using https://translations.launchpad.net/openpetraorg/trunk/+pots/template1/+upload
# a few hours later, the new template will be available (if it needs a manual review, it might take a day)


All .po files in the i18n directory will be added to the installer automatically. OpenPetra will use the language settings on the workstation for determining which language file should be used.
= Reviewing the translation template =
 
Please have a look at [[Reviewing the translation template]]
= Testing a translation =
* TODO: describe how to use nant to generate the appropriate resource dll containing the translations
* TODO: describe how to set the Environment Variables to switch to another language than the system language to test other language files
* TODO: this might be interesting for translators too so that they can test their translation even before a release? but it is probably too complicated to configure and use nant?

Latest revision as of 06:16, 26 March 2020

Documentation for Translators

There is a separate page with Documentation for Translators.

Testing a translation

You can get a test installation, by running

curl https://get.openpetra.org | bash -s test

Then just replace your language file in /home/op_test/client/locales, and reload your browser.

Reviewing the translation template

Please have a look at Reviewing the translation template