I18n django application to language "none" specified in LANGUAGE_CODE
I found out that in django LANGUAGE_CODE et
stands for Estonian
; I expected what this would mean Ethiopian
, the language I am trying to internationalize my application into. My question is how do I go about internationalizing my django app to a language not listed here?
>>> from django.conf.global_settings import LANGUAGES
>>> langs = LANGUAGES
>>> for a in langs:
... print(a)
...
('af', 'Afrikaans')
('ar', 'Arabic')
('az', 'Azerbaijani')
('bg', 'Bulgarian')
('be', 'Belarusian')
# many more results
('et', 'Estonian')
#some more results
I am using Django 1.6.5
on Windows 7 withPython34
For the curious, here's an example of an Ethiopian script.
አበበ በሶ በላ ለቁርስ ዩሁን ምሣ እግዜር ይወቀው ::
source to share
Your question has already been answered:
adding custom language to django
Think you translate into Amharic? So maybe the language code am
would be handy.
source to share