-
Notifications
You must be signed in to change notification settings - Fork 0
tsotnesharvadze/blogapp
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
python3 manage.py makemessages -l en # in *.po file: # before: msgid "English" msgstr "" # after: msgid "English" msgstr "ინგლისური" python3 manage.py compilemessages # in settings.py file: 'django.middleware.locale.LocaleMiddleware' from django.utils.translation import ugettext_lazy as _ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True LOCALE_PATHS = [ os.path.join(BASE_DIR, 'locale') ] LANGUAGES = [ ('en', _('English')), ('ka', _('Georgian')), ]
About
palitra , stajioroba
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published