summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/ext-i18n.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-09 11:10:00 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-09 11:10:00 -0500
commitf164d9124708b50789dbb6959e1de96cc5697c48 (patch)
tree6dffd12e08c5383130df0252fb69cd6d6330794f /toolkit/components/extensions/ext-i18n.js
parent30de4018913f0cdaea19d1dd12ecd8209e2ed08e (diff)
downloadUXP-f164d9124708b50789dbb6959e1de96cc5697c48.tar
UXP-f164d9124708b50789dbb6959e1de96cc5697c48.tar.gz
UXP-f164d9124708b50789dbb6959e1de96cc5697c48.tar.lz
UXP-f164d9124708b50789dbb6959e1de96cc5697c48.tar.xz
UXP-f164d9124708b50789dbb6959e1de96cc5697c48.zip
Rename Toolkit's webextensions component directory to better reflect what it is.
Diffstat (limited to 'toolkit/components/extensions/ext-i18n.js')
-rw-r--r--toolkit/components/extensions/ext-i18n.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/toolkit/components/extensions/ext-i18n.js b/toolkit/components/extensions/ext-i18n.js
deleted file mode 100644
index bb4bde4bd..000000000
--- a/toolkit/components/extensions/ext-i18n.js
+++ /dev/null
@@ -1,34 +0,0 @@
-"use strict";
-
-var {classes: Cc, interfaces: Ci, utils: Cu} = Components;
-
-Cu.import("resource://gre/modules/ExtensionUtils.jsm");
-var {
- detectLanguage,
-} = ExtensionUtils;
-
-function i18nApiFactory(context) {
- let {extension} = context;
- return {
- i18n: {
- getMessage: function(messageName, substitutions) {
- return extension.localizeMessage(messageName, substitutions, {cloneScope: context.cloneScope});
- },
-
- getAcceptLanguages: function() {
- let result = extension.localeData.acceptLanguages;
- return Promise.resolve(result);
- },
-
- getUILanguage: function() {
- return extension.localeData.uiLocale;
- },
-
- detectLanguage: function(text) {
- return detectLanguage(text);
- },
- },
- };
-}
-extensions.registerSchemaAPI("i18n", "addon_child", i18nApiFactory);
-extensions.registerSchemaAPI("i18n", "content_child", i18nApiFactory);