annotate pylons_app/i18n/how_to @ 54:fdf6dc356d45

template fix
author marcink
date Thu, 08 Apr 2010 18:17:28 +0200
parents 564e40829f80
children
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