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

Side by Side Diff: safari/ext/common.js

Issue 5404244093960192: Issue 1678 - Added bidi support for Safari (Closed)
Patch Set: Used Object.create(null) Created Dec. 9, 2014, 7:28 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
108 {
109 var bidi_dir = (ui_locale == "ar" ||
110 ui_locale == "fa" ||
111 ui_locale == "he" ||
112 ui_locale == "ug" ||
113 ui_locale == "ur") ? "rtl" : "ltr";
114
115 var catalog = Object.create(null);
116 catalog["@@ui_locale"] = [ui_locale, []];
117 catalog["@@bidi_dir" ] = [bidi_dir, []];
118 return catalog;
119 };
120
107 var locales = getLocaleCandidates(); 121 var locales = getLocaleCandidates();
108 var catalog = {__proto__: null, "@@ui_locale": [locales[0], []]}; 122 var catalog = initCatalog(locales[0]);
109 123
110 var replacePlaceholder = function(text, placeholder, content) 124 var replacePlaceholder = function(text, placeholder, content)
111 { 125 {
112 return text.split("$" + placeholder + "$").join(content || ""); 126 return text.split("$" + placeholder + "$").join(content || "");
113 }; 127 };
114 128
115 var parseMessage = function(rawMessage) 129 var parseMessage = function(rawMessage)
116 { 130 {
117 var text = rawMessage.message; 131 var text = rawMessage.message;
118 var placeholders = []; 132 var placeholders = [];
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 }; 197 };
184 198
185 199
186 /* Utils */ 200 /* Utils */
187 201
188 ext.getURL = function(path) 202 ext.getURL = function(path)
189 { 203 {
190 return safari.extension.baseURI + path; 204 return safari.extension.baseURI + path;
191 }; 205 };
192 })(); 206 })();
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld