annotate pylons_app/i18n/how_to @ 475:9dd38344c466 celery

Added validation for uniq email address
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 13 Sep 2010 01:38:14 +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