summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--talermerchantdemos/survey/survey.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/talermerchantdemos/survey/survey.py b/talermerchantdemos/survey/survey.py
index d583114..b5ea9c8 100644
--- a/talermerchantdemos/survey/survey.py
+++ b/talermerchantdemos/survey/survey.py
@@ -36,6 +36,7 @@ from ..httpcommon import (
self_localized,
BackendException,
make_utility_processor,
+ get_locale,
)
import sys
@@ -81,18 +82,6 @@ LOGGER.info(
app.add_template_global(self_localized)
-@babel.localeselector
-def get_locale():
- parts = request.path.split("/", 2)
- if 2 >= len(parts):
- # Totally unexpected path format, do not localize
- return "en"
- lang = parts[1]
- if lang in translations:
- return lang
- return "en"
-
-
# Add context processor that will make additional variables
# and functions available in the template.
app.context_processor(make_utility_processor("survey"))