errata
errata

Reputation: 6031

Localizing Google App Engine application with i18n and compilemessage command

I have an app in Google App Engine. I'm using Python 2.7 with Django 1.4. My app.yaml:

application: myapp
version: 1
runtime: python27
api_version: 1
threadsafe: true

libraries:
- name: django
  version: latest

handlers:
- url: /static
  static_dir: static

- url: /.*
  script: myapp.app

I'd like to apply internationalization to my app but not exactly sure how... Is there some article or tutorial about this particular thing? I tried to use few different compile-messages.py files and tried to run them with dev_appserver.py compile-messages.py myapp but all I get is mostly dev_appserver.py help page which really doesn't explain anything about localization/internationalization in the project... I'm struggling with searching Google about this thing for almost whole day without some luck :/

Upvotes: 0

Views: 845

Answers (1)

voscausa
voscausa

Reputation: 11706

Have a look at webabb2 extras i18n : http://webapp-improved.appspot.com/api/webapp2_extras/i18n.html#api-webapp2-extras-i18n

Upvotes: 1

Related Questions