Index: templates/info.js.tmpl |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/templates/info.js.tmpl |
@@ -0,0 +1,14 @@ |
+{# This Source Code Form is subject to the terms of the Mozilla Public |
+ License, v. 2.0. If a copy of the MPL was not distributed with this |
+ file, You can obtain one at http://mozilla.org/MPL/2.0/. -#} |
+ |
+"use strict"; |
+ |
+exports.addonName = {{ basename|json }}; |
+exports.addonVersion = {{ version|json }}; |
+ |
+exports.locale = browser.i18n.getUILanguage() |
+{#- https://bugzilla.mozilla.org/show_bug.cgi?id=1374552 #} |
+{%- if type == 'gecko' %}.replace("_", "-"){% endif %}; |
+ |
+{% include type + 'Info.js.tmpl' %} |