# HG changeset patch # User Marcin Kuzminski # Date 2012-07-08 14:01:15 # Node ID 4857ed50f498b48fdc809c8e06bf068915b04ad5 # Parent ff28e45ebafb1c3283328055ec296182231908ad added format check command into i18n how_to diff --git a/rhodecode/i18n/how_to b/rhodecode/i18n/how_to --- a/rhodecode/i18n/how_to +++ b/rhodecode/i18n/how_to @@ -4,25 +4,27 @@ #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 for lang -edit the new po file with poedit or any other editor -python setup.py compile_catalog -> create translation files +python setup.py extract_messages <- get messages from project +python setup.py init_catalog -l pl <- create a language directory for lang +#edit the new po file with poedit or any other editor +msgfmt -f -c <- check format and errors +python setup.py compile_catalog <- create translation files ############# # 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 +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 +msgfmt -f -c <- check format and errors +python setup.py compile_catalog <- create translation files ################### # change language # ################### -`lang=en` +`lang=pl` in the .ini file \ No newline at end of file