808b624e5f
This basically reverts commit 86b31dc12b
.
It now works like this: If the use has pycountry installed, it is used.
If not, Dosage falls back to a small internal list generated from
pycountry by scripts/mklanguages.py.
This means additional work if we ever decide to translate Dosage, since
pycountry already has all the translations for language names...
This fixes #23.
10 lines
254 B
Python
10 lines
254 B
Python
# -*- coding: utf-8 -*-
|
|
# ISO 693-1 language codes from pycountry
|
|
# This file is automatically generated, DO NOT EDIT!
|
|
Languages = {
|
|
'de': u'German',
|
|
'en': u'English',
|
|
'es': u'Spanish; Castilian',
|
|
'fi': u'Finnish',
|
|
'fr': u'French',
|
|
}
|