You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

translation.rst 1013B

12345678910111213141516171819202122232425262728
  1. ===========
  2. Translation
  3. ===========
  4. All Oscar translation work is done on Transifex_. If you'd like to contribute,
  5. just apply for a language and go ahead!
  6. The source strings in Transifex are updated after every commit on Oscar's
  7. master branch on GitHub. We only pull the translation strings back into Oscar's
  8. repository when preparing for a release. That means your most recent
  9. translations will always be on Transifex, not in the repo!
  10. .. _Transifex: https://www.transifex.com/projects/p/django-oscar/
  11. Translating Oscar within your project
  12. -------------------------------------
  13. If Oscar does not provide translations for your language, or if you want to
  14. provide your own, do the following.
  15. Within your project, create a locale folder and a symlink to Oscar so that
  16. ``./manage.py makemessages`` finds Oscar's translatable strings::
  17. mkdir locale i18n
  18. ln -s $PATH_TO_OSCAR i18n/oscar
  19. ./manage.py makemessages --symlinks --locale=de
  20. This will create the message files that you can now translate.