From d37f1804803e0e280839485ab75ac4d62505023c Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 30 Jan 2015 00:27:52 +0100 Subject: [PATCH] fix arabic and chinese codes --- example/sandbox/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/sandbox/settings.py b/example/sandbox/settings.py index 95050298..e9423829 100644 --- a/example/sandbox/settings.py +++ b/example/sandbox/settings.py @@ -46,8 +46,8 @@ TIME_ZONE = 'Europe/Paris' LANGUAGES = [ ('fr', 'French'), ('en', 'English'), ('de', 'German'), - ('zh', 'Chinese'), - ('ar', 'Arab'), + ('zh_CN', 'Simplified Chinese'), + ('ar_TN', 'Arabic'), ] SITE_ID = 1 -- 2.39.5