Project

General

Profile

HowTo translate Redmine in your own language » History » Revision 20

Revision 19 (Toshi MARUYAMA, 2012-08-01 14:05) → Revision 20/27 (Toshi MARUYAMA, 2012-08-01 14:06)

h1. HowTo translate Redmine in your own language 

 Redmine can easily be translated in 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 in Finnish (@fi@ as defined in the "IANA Language Subtag Registry":http://www.iana.org/assignments/language-subtag-registry): 

 # Copy @/config/locales/en.yml@ to @/config/locales/fi.yml@. 
 # Copy @/public/javascripts/calendar/lang/calendar-en.js@ to @/public/javascripts/calendar/lang/calendar-fi.js@. 
 # Copy @/public/javascripts/jstoolbar/lang/jstoolbar-en.js@ to @/public/javascripts/jstoolbar/lang/jstoolbar-fi.js@. 
 # Translate every string in these files. 
 # Test your translation with command <pre>rake test</pre> If you get errors related to locales, you must fix them. 
 # Submit your translation "here":http://www.redmine.org/projects/redmine/issues/new?tracker_id=3 (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. 

 h2. Restrictions 

 *All these files must be UTF-8 encoded.* Do not use HTML entities in translated strings. 

 Check that your files not have BOM (Byte-order mark). BOM can be removed with command: 

 <pre> 
 awk '{if(NR==1)sub(/^\xef\xbb\xbf/, "");print}' < oldfile > newfile 
 </pre> 

 As of 2009-02-21, *only updates based on the new translation files* (found in @/config/locales@) *should be submitted.* 

 h2. Updates to the language files 

 File @en.yml@ acts as the main language file. You can check if it has new strings by running: 
 <pre>rake locales:update</pre> 

 This copies the new strings to other translation files (with the English translation as default value).