Index: chrome/content/ui/i18n.js |
=================================================================== |
--- a/chrome/content/ui/i18n.js |
+++ b/chrome/content/ui/i18n.js |
@@ -15,12 +15,8 @@ |
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
*/ |
-var i18n; |
-if (typeof chrome != "undefined") |
-{ |
- i18n = chrome.i18n; |
-} |
-else |
+var i18n = (window.ext && ext.i18n) || (window.chrome && chrome.i18n); |
Felix Dahlke
2013/09/06 08:08:24
Why not make ext.i18n point to chrome.i18n in ext.
Sebastian Noack
2013/09/06 09:05:37
That's what I do. The only reason I check for both
|
+if (!i18n) |
{ |
// Using Firefox' approach on i18n instead |