annotate rhodecode/i18n/how_to @ 558:14559eb34003

more error catching on celery run_task
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 07 Oct 2010 19:24:03 +0200
parents 1e757ac98988
children 357b0c18f844
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
1 #goto pylons folder app (the on holding .ini files)
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
2
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
3 # to create new
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
4 python setup.py extract_messages -> get messages from project
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
5 python setup.py init_catalog -l pl -> create a language directory
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
6 edit the new po file with poedit
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
7 python setup.py compile_catalog -> create translation files
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
8 #done
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
9
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
10 # to update
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
11 python setup.py extract_messages -> get messages from project
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
12 python setup.py update_catalog -> to update the translations
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
13 edit the new updated po file with poedit
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
14 python setup.py compile_catalog -> create translation files
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
15 #done