Skip to content

Commit

Permalink
Fixes #3983 adds Greek language
Browse files Browse the repository at this point in the history
Greek is 100% translated and reviewed.
  • Loading branch information
kushaldas committed Dec 10, 2018
1 parent 03fe4a1 commit 36ed000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion securedrop/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ test-config: ## Generate the test config
ctx.update(dict((k, {"stdout":v}) for k,v in os.environ.iteritems())); \
ctx = open("config.py", "w").write(env.get_template("config.py.example").render(ctx))'
@echo >> config.py
@echo "SUPPORTED_LOCALES = ['ar', 'de_DE', 'es_ES', 'en_US', 'fr_FR', 'it_IT', 'nb_NO', 'nl', 'pt_BR', 'tr', 'zh_Hant']" >> config.py
@echo "SUPPORTED_LOCALES = ['ar', 'de_DE', 'es_ES', 'en_US', 'el', 'fr_FR', 'it_IT', 'nb_NO', 'nl', 'pt_BR', 'tr', 'zh_Hant']" >> config.py

.PHONY: update-user-guides
update-user-guides: ## Runs the page layout tests to regenerate screenshots
Expand Down
1 change: 1 addition & 0 deletions securedrop/i18n_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class I18NTool(object):
'de_DE': {'name': 'German', 'desktop': 'de_DE', },
'es_ES': {'name': 'Spanish', 'desktop': 'es_ES', },
'fr_FR': {'name': 'French', 'desktop': 'fr', },
'el': {'name': 'Greek', 'desktop': 'el', },
'hi': {'name': 'Hindi', 'desktop': 'hi', },
'it_IT': {'name': 'Italian', 'desktop': 'it', },
'nb_NO': {'name': 'Norwegian', 'desktop': 'nb_NO', },
Expand Down

0 comments on commit 36ed000

Please sign in to comment.