From 61c78dd28ae3a99ede53bf3157c6c17bfa815e6a Mon Sep 17 00:00:00 2001 From: Sravan Reddy Date: Thu, 24 Aug 2023 15:04:05 +0530 Subject: [PATCH] Enable language selection and add Portuguese --- superset_config.example.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/superset_config.example.py b/superset_config.example.py index fb968dc..a058a63 100644 --- a/superset_config.example.py +++ b/superset_config.example.py @@ -108,4 +108,9 @@ class CeleryConfig(object): }, } -CELERY_CONFIG = CeleryConfig \ No newline at end of file +CELERY_CONFIG = CeleryConfig + +LANGUAGES = { + 'en': {'flag':'us', 'name':'English'}, + 'pt': {'flag':'pt', 'name':'Portuguese'} +}