From a395b24b80b272c71f9112f162d43af98d923cd5 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sat, 7 Dec 2019 15:08:57 +0100 Subject: [PATCH] Add arabic, re-order languages --- src/pretix/settings.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/pretix/settings.py b/src/pretix/settings.py index e39f7765f..57e6b05d0 100644 --- a/src/pretix/settings.py +++ b/src/pretix/settings.py @@ -401,19 +401,20 @@ ALL_LANGUAGES = [ ('en', _('English')), ('de', _('German')), ('de-informal', _('German (informal)')), + ('ar', _('Arabic')), + ('zh-hans', _('Chinese (simplified)')), + ('da', _('Danish')), ('nl', _('Dutch')), ('nl-informal', _('Dutch (informal)')), - ('da', _('Danish')), ('fr', _('French')), + ('el', _('Greek')), + ('it', _('Italian')), + ('lv', _('Latvian')), + ('pl', _('Polish')), ('pt-br', _('Portuguese (Brazil)')), + ('ru', _('Russian')), ('es', _('Spanish')), ('tr', _('Turkish')), - ('pl', _('Polish')), - ('it', _('Italian')), - ('ru', _('Russian')), - ('lv', _('Latvian')), - ('zh-hans', _('Chinese (simplified)')), - ('el', _('Greek')) ] LANGUAGES_OFFICIAL = { 'en', 'de', 'de-informal'