OpenSlides/openslides/locale/README.txt

25 lines
866 B
Plaintext
Raw Normal View History

Instruction to update translation for OpenSlides:
-------------------------------------------------
2011-07-31 10:46:29 +02:00
1. Go to the openslides directory (which contains the 'locale' directory):
2011-07-31 10:46:29 +02:00
$ cd openslides
2. Update the German po file (locale/de/LC_MESSAGES/django.po):
$ django-admin.py makemessages -l de
3. Edit the German po file: locale/de/LC_MESSAGES/django.po
(Search for "fuzzy" and empty msgstr entries.)
4. Update the German mo file (locale/de/LC_MESSAGES/django.mo):
$ django-admin.py compilemessages
5. Restart server:
$ python manage.py runserver
--
2011-07-31 10:46:29 +02:00
Additional hints for internationalization (i18n) in Django:
https://docs.djangoproject.com/en/dev/topics/i18n/
Note: gettext is required to extract message IDs or compile message files.
For gettext on Windows read:
https://docs.djangoproject.com/en/dev/topics/i18n/translation/#gettext-on-windows