summaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
Diffstat (limited to 'example_project')
-rw-r--r--example_project/__init__.py.base.sample16
-rw-r--r--example_project/__init__.py.celery.sample16
-rw-r--r--example_project/settings.py8
3 files changed, 20 insertions, 20 deletions
diff --git a/example_project/__init__.py.base.sample b/example_project/__init__.py.base.sample
index c6adb7559..6631c46d5 100644
--- a/example_project/__init__.py.base.sample
+++ b/example_project/__init__.py.base.sample
@@ -1,11 +1,11 @@
# force the retranslation of generated strings and external module
from django.utils.translation import ugettext_lazy as _
-_(u"username")
-_(u"email address")
-_(u"warehouse")
-_(u"New warehouse")
-_(u"warehouse")
-_(u"New organization")
-_(u"New person")
-_(u"New author")
+_("username")
+_("email address")
+_("warehouse")
+_("New warehouse")
+_("warehouse")
+_("New organization")
+_("New person")
+_("New author")
diff --git a/example_project/__init__.py.celery.sample b/example_project/__init__.py.celery.sample
index 5dad2ced8..3cda63729 100644
--- a/example_project/__init__.py.celery.sample
+++ b/example_project/__init__.py.celery.sample
@@ -5,11 +5,11 @@ from .celery_app import app as celery_app
__all__ = ('celery_app',)
-_(u"username")
-_(u"email address")
-_(u"warehouse")
-_(u"New warehouse")
-_(u"warehouse")
-_(u"New organization")
-_(u"New person")
-_(u"New author")
+_("username")
+_("email address")
+_("warehouse")
+_("New warehouse")
+_("warehouse")
+_("New organization")
+_("New person")
+_("New author")
diff --git a/example_project/settings.py b/example_project/settings.py
index 8e2ad2e01..07d5de200 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -91,9 +91,9 @@ LANGUAGE_CODE = 'fr-fr'
COUNTRY = "fr"
-OOOK_DATE_FORMAT = u"%-d %B %Y"
-OOO_DATE_FORMAT = u"%-d %B %Y"
-DATE_FORMAT = u"%-d %B %Y"
+OOOK_DATE_FORMAT = "%-d %B %Y"
+OOO_DATE_FORMAT = "%-d %B %Y"
+DATE_FORMAT = "%-d %B %Y"
SITE_ID = 1
@@ -287,7 +287,7 @@ ISHTAR_OPE_TYPES = {}
# DB key: txt_idx
ISHTAR_PERIODS = {}
ISHTAR_PERMIT_TYPES = {}
-ISHTAR_DOC_TYPES = {u"undefined": u"Undefined"}
+ISHTAR_DOC_TYPES = {"undefined": "Undefined"}
ISHTAR_SEARCH_LANGUAGE = "french"