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

Delta Between Two Patch Sets: 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
Left Patch Set: Created Aug. 10, 2017, 9:21 p.m.
Right Patch Set: Updated locales before re-landing after blog fix Created Sept. 13, 2017, 12:25 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « filters/ignore_browsers.py ('k') | includes/index.tmpl » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 og_locales = { 1 og_locales = {
2 'ar': 'ar_AR', 2 'ar': 'ar_AR',
3 'bg': 'bg_BG', 3 'bg': 'bg_BG',
4 'de': 'de_DE', 4 'de': 'de_DE',
5 'dk': 'da_DK',
6 'da': 'da_DK', 5 'da': 'da_DK',
7 'en': 'en_US', 6 'en': 'en_US',
8 'es': 'es_LA', 7 'es': 'es_LA',
8 'es_MX': 'es_MX',
9 'fr': 'fr_FR', 9 'fr': 'fr_FR',
10 'el': 'el_GR', 10 'el': 'el_GR',
11 'he': 'he_IL', 11 'he': 'he_IL',
12 'hu': 'hu_HU', 12 'hu': 'hu_HU',
13 'it': 'it_IT', 13 'it': 'it_IT',
14 'ms': 'ms_MY',
14 'ja': 'ja_JP', 15 'ja': 'ja_JP',
15 'ko': 'ko_KR', 16 'ko': 'ko_KR',
16 'lt': 'lt_LT', 17 'lt': 'lt_LT',
17 'nl': 'nl_NL', 18 'nl': 'nl_NL',
18 'pl': 'pl_PL', 19 'pl': 'pl_PL',
19 'pt': 'pt_PT', 20 'pt': 'pt_PT',
20 'pt_BR': 'pt_BR', 21 'pt_BR': 'pt_BR',
21 'ro': 'ro_RO',
22 'ru': 'ru_RU', 22 'ru': 'ru_RU',
23 'sk': 'sk_SK', 23 'sk': 'sk_SK',
24 'sl': 'sl_SI', 24 'th': 'th_TH',
25 'sv': 'sv_SE',
26 'tr': 'tr_TR', 25 'tr': 'tr_TR',
27 'vi': 'vi_VN', 26 'vi': 'vi_VN',
28 'zh_CN': 'zh_CN', 27 'zh_CN': 'zh_CN',
29 'zh_TW': 'zh_TW', 28 'zh_TW': 'zh_TW',
30 } 29 }
31 30
32 def to_og_locale(locale): 31 def to_og_locale(locale):
33 return og_locales[locale] 32 if locale in og_locales:
33 return og_locales[locale]
34 else:
35 return locale
LEFTRIGHT

Powered by Google App Engine
This is Rietveld