diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-12 17:53:44 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:24 +0100 |
commit | 60a80e0bc33798a36e1a29253c8123f1d19bd2a5 (patch) | |
tree | 9bf31ced127fc7389d9ba6f9d55279fd21debcfb /example_project | |
parent | 0d860bb0211ce14bbb86ffe7411ec2853852b64d (diff) | |
download | Ishtar-60a80e0bc33798a36e1a29253c8123f1d19bd2a5.tar.bz2 Ishtar-60a80e0bc33798a36e1a29253c8123f1d19bd2a5.zip |
Refactoring - typo
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/local_settings.py.sample | 2 | ||||
-rw-r--r-- | example_project/settings.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/example_project/local_settings.py.sample b/example_project/local_settings.py.sample index 555adb711..21e7cb791 100644 --- a/example_project/local_settings.py.sample +++ b/example_project/local_settings.py.sample @@ -50,7 +50,7 @@ ALLOWED_HOSTS = [] SRID = 27572 ENCODING = '' # specific encoding for CSV export - default to utf-8 SURFACE_UNIT = 'square-metre' -SURFACE_UNIT_LABEL = u'm²' +SURFACE_UNIT_LABEL = 'm²' # translation overload can consume resources for a low profile machine # USE_TRANSLATION_OVERLOAD = True diff --git a/example_project/settings.py b/example_project/settings.py index 07d5de200..7b9b8ee63 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -105,8 +105,8 @@ USE_I18N = True # calendars according to the current locale USE_L10N = True LANGUAGES = ( - ('fr', u'Français'), - ('en', u'English'), + ('fr', 'Français'), + ('en', 'English'), ) DEFAULT_LANGUAGE = 1 |