| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 (function(global) | 18 (function(global) |
| 19 { | 19 { |
| 20 const Cu = Components.utils; | |
| 21 | |
| 22 let {Services} = Cu.import("resource://gre/modules/Services.jsm", {}); | |
| 23 | |
| 20 if (!global.ext) | 24 if (!global.ext) |
| 21 global.ext = {}; | 25 global.ext = {}; |
| 22 | 26 |
| 23 var wrapperSymbol = Symbol("ext-wrapper"); | 27 var wrapperSymbol = Symbol("ext-wrapper"); |
| 24 | 28 |
| 25 function wrapFrames(frames) | 29 function wrapFrames(frames) |
| 26 { | 30 { |
| 27 if (!frames.length) | 31 if (!frames.length) |
| 28 return null; | 32 return null; |
| 29 | 33 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 this._port.on("ext_message", wrapper); | 79 this._port.on("ext_message", wrapper); |
| 76 }, | 80 }, |
| 77 | 81 |
| 78 removeListener: function(listener) | 82 removeListener: function(listener) |
| 79 { | 83 { |
| 80 if (listener[wrapperSymbol]) | 84 if (listener[wrapperSymbol]) |
| 81 this._port.off("ext_message", listener[wrapperSymbol]); | 85 this._port.off("ext_message", listener[wrapperSymbol]); |
| 82 } | 86 } |
| 83 }; | 87 }; |
| 84 | 88 |
| 89 let I18n = global.ext._I18n = function(pageName) | |
|
Wladimir Palant
2017/03/02 11:20:20
Any reason why _I18n needs to be exported? IMHO th
wspee
2017/03/02 17:13:29
Done, I thought bundling the state with that logic
| |
| 90 { | |
| 91 // Randomize URI to work around bug 719376 | |
| 92 this.stringBundle = Services.strings.createBundle( | |
| 93 "chrome://adblockplus/locale/" + pageName + ".properties?" + Math.random() ); | |
| 94 }; | |
| 95 | |
| 96 I18n.prototype = { | |
| 97 getMessage(key) | |
| 98 { | |
| 99 try { | |
| 100 return this.stringBundle.GetStringFromName(key); | |
|
Wladimir Palant
2017/03/02 11:20:20
Why did you remove placeholders support? While we
wspee
2017/03/02 17:13:29
Because it didn't work, getI18nMessage never retur
Wladimir Palant
2017/03/06 08:36:40
I see the issue now. I agree, making placeholders
| |
| 101 } | |
| 102 catch(e) | |
| 103 { | |
| 104 // Don't report errors for special strings, these are expected to be | |
| 105 // missing. | |
| 106 if (key[0] != "@") | |
| 107 Cu.reportError(e); | |
| 108 return ""; | |
| 109 } | |
| 110 } | |
| 111 } | |
| 112 | |
| 113 let pageName = "global"; | |
| 114 if (typeof location !== "undefined") | |
| 115 pageName = location.pathname.replace(/.*\//, "").replace(/\..*?$/, ""); | |
| 116 | |
| 117 global.ext.i18n = new I18n(pageName); | |
| 118 | |
| 85 if (typeof exports == "object") | 119 if (typeof exports == "object") |
| 86 exports = global.ext; | 120 exports = global.ext; |
| 87 })(this); | 121 })(this); |
| OLD | NEW |