Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
97 candidates.push(language + "_" + region); | 97 candidates.push(language + "_" + region); |
98 | 98 |
99 candidates.push(language); | 99 candidates.push(language); |
100 | 100 |
101 if (candidates.indexOf(defaultLocale) == -1) | 101 if (candidates.indexOf(defaultLocale) == -1) |
102 candidates.push(defaultLocale); | 102 candidates.push(defaultLocale); |
103 | 103 |
104 return candidates; | 104 return candidates; |
105 }; | 105 }; |
106 | 106 |
107 var initCatalog = function(ui_locale) | 107 var initCatalog = function(uiLocale) |
108 { | 108 { |
109 var bidi_dir = (ui_locale == "ar" || | 109 var bidiDir = /^(ar|fa|he|ug|ur)(_|$)/.test(uiLocale) ? "rtl" : "ltr"; |
Wladimir Palant
2014/12/11 16:52:15
I only realized now that we are looking at UI loca
Sebastian Noack
2014/12/11 17:03:05
To be honest I didn't consider that case and agree
| |
110 ui_locale == "fa" || | 110 var catalog = Object.create(null); |
111 ui_locale == "he" || | 111 |
112 ui_locale == "ug" || | 112 catalog["@@ui_locale"] = [uiLocale, []]; |
113 ui_locale == "ur") ? "rtl" : "ltr"; | 113 catalog["@@bidi_dir" ] = [bidiDir, []]; |
114 | 114 |
115 return { | 115 return catalog; |
116 __proto__: null, | |
117 | |
118 "@@ui_locale": [ui_locale, []], | |
119 "@@bidi_dir": [bidi_dir, []] | |
120 }; | |
Wladimir Palant
2014/12/09 18:59:09
Nit: Please consider using Object.create(null) ins
Sebastian Noack
2014/12/09 19:30:16
I haven't seen through your policy for unrelated c
Wladimir Palant
2014/12/09 19:55:37
The policy is very simple - fix the code when you
| |
121 }; | 116 }; |
122 | 117 |
123 var locales = getLocaleCandidates(); | 118 var locales = getLocaleCandidates(); |
124 var catalog = initCatalog(locales[0]); | 119 var catalog = initCatalog(locales[0]); |
125 | 120 |
126 var replacePlaceholder = function(text, placeholder, content) | 121 var replacePlaceholder = function(text, placeholder, content) |
127 { | 122 { |
128 return text.split("$" + placeholder + "$").join(content || ""); | 123 return text.split("$" + placeholder + "$").join(content || ""); |
129 }; | 124 }; |
130 | 125 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
199 }; | 194 }; |
200 | 195 |
201 | 196 |
202 /* Utils */ | 197 /* Utils */ |
203 | 198 |
204 ext.getURL = function(path) | 199 ext.getURL = function(path) |
205 { | 200 { |
206 return safari.extension.baseURI + path; | 201 return safari.extension.baseURI + path; |
207 }; | 202 }; |
208 })(); | 203 })(); |
LEFT | RIGHT |