Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: filters/to_og_locale.py

Issue 29511696: Issue 5447 - Add missing essential meta data to adblockplus.org (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Patch Set: Updated locales before re-landing after blog fix Created Sept. 13, 2017, 12:25 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « filters/ignore_browsers.py ('k') | includes/index.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filters/to_og_locale.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/filters/to_og_locale.py
@@ -0,0 +1,35 @@
+og_locales = {
+ 'ar': 'ar_AR',
+ 'bg': 'bg_BG',
+ 'de': 'de_DE',
+ 'da': 'da_DK',
+ 'en': 'en_US',
+ 'es': 'es_LA',
+ 'es_MX': 'es_MX',
+ 'fr': 'fr_FR',
+ 'el': 'el_GR',
+ 'he': 'he_IL',
+ 'hu': 'hu_HU',
+ 'it': 'it_IT',
+ 'ms': 'ms_MY',
+ 'ja': 'ja_JP',
+ 'ko': 'ko_KR',
+ 'lt': 'lt_LT',
+ 'nl': 'nl_NL',
+ 'pl': 'pl_PL',
+ 'pt': 'pt_PT',
+ 'pt_BR': 'pt_BR',
+ 'ru': 'ru_RU',
+ 'sk': 'sk_SK',
+ 'th': 'th_TH',
+ 'tr': 'tr_TR',
+ 'vi': 'vi_VN',
+ 'zh_CN': 'zh_CN',
+ 'zh_TW': 'zh_TW',
+}
+
+def to_og_locale(locale):
+ if locale in og_locales:
+ return og_locales[locale]
+ else:
+ return locale
« no previous file with comments | « filters/ignore_browsers.py ('k') | includes/index.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld