HowTo translate Redmine in your own language » History » Revision 24
« Previous |
Revision 24/27
(diff)
| Next »
Toshi MARUYAMA, 2015-08-17 14:12
"rake locales:check_parsing_by_psych" on Ruby >= 1.9
HowTo translate Redmine to your own language¶
Redmine can easily be translated to any language.
There are a few things to translate:
- The main lang file, located at source:/trunk/config/locales in current trunk
- The wiki toolbar lang file, located in source:trunk/public/javascripts/jstoolbar/lang
Say you want to translate Redmine to Finnish (fi
as defined in the IANA Language Subtag Registry):
- Copy
/config/locales/en.yml
to/config/locales/fi.yml
. - Copy
/public/javascripts/jstoolbar/lang/jstoolbar-en.js
to/public/javascripts/jstoolbar/lang/jstoolbar-fi.js
. - Change the
general_lang_name
key with the full name of the new language infi.yml
(eg.general_lang_name: Finnish
). - Clear the application cache to make the new language available in Redmine (eg.
rake tmp:cache:clear
).
Then:
- Translate every string in fi.yml and jstoolbar-fi.js files.
- Test your translation with the rake tasks listed below. If you get errors related to locales, you must fix them.
- Submit your translation here (as plain file or patch, login required). Select "Translation" in Category listbox.
- Wait until your Issue will be fixed.
- Enjoy your work :)
- GOTO 4 if needed.
Test rake tasks¶
On Ruby 1.9 or higher:
rake locales:check_parsing_by_psych
On all Ruby versions:
rake locales:check_interpolation
Whole test (Optional)
rake test
"rake test" takes a very long time and it runs automatically on CI server.
See Continuous integration.
Restrictions¶
All these files must be UTF-8 encoded. Do not use HTML entities in translated strings.
Check that your files do not have a BOM (Byte-order mark). A BOM can be removed with the following command:
awk '{if(NR==1)sub(/^\xef\xbb\xbf/, "");print}' < oldfile > newfile
As of 2009-02-21, only updates based on the new translation files (found in /config/locales
) should be submitted.
Updates to the language files¶
The file: "en.yml
" acts as the main language file. You can check if it has new strings by running:
rake locales:update
This copies any new strings to other translation files (with the English translation as default value).
Updated by Toshi MARUYAMA over 9 years ago · 24 revisions