Changeset - 357b0c18f844
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 15 years ago 2011-04-07 22:51:43
marcin@python-works.com
refreshed how_to on translations
1 file changed with 21 insertions and 8 deletions:
0 comments (0 inline, 0 general)
rhodecode/i18n/how_to
Show inline comments
 
#goto pylons folder app (the on holding .ini files)
 
##########################
 
# to create new language #
 
##########################
 

	
 
# to create new 
 
#this needs to be done on source codes, preferable default/stable branches
 
 
 
python setup.py extract_messages -> get messages from project
 
python setup.py init_catalog -l pl -> create a language directory
 
edit the new po file with poedit
 
python setup.py init_catalog -l pl -> create a language directory for <pl> lang
 
edit the new po file with poedit or any other editor
 
python setup.py compile_catalog -> create translation files
 
#done 
 
 
 
 # to update
 

	
 
############# 
 
# to update #
 
#############
 

	
 
python setup.py extract_messages -> get messages from project
 
python setup.py update_catalog -> to update the translations
 
edit the new updated po file with poedit
 
python setup.py compile_catalog -> create translation files
 
#done
 
\ No newline at end of file
 

	
 

	
 
###################
 
# change language #
 
###################
 

	
 
`lang=en`
 

	
 
in the .ini file
 
\ No newline at end of file
0 comments (0 inline, 0 general)