123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2018 Mozilla Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * @licend The above is the entire license notice for the
- * Javascript code in this page
- */
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.GenericL10n = void 0;
- var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
- require("../external/webL10n/l10n");
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
- function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
- var webL10n = document.webL10n;
- var GenericL10n =
- /*#__PURE__*/
- function () {
- function GenericL10n(lang) {
- _classCallCheck(this, GenericL10n);
- this._lang = lang;
- this._ready = new Promise(function (resolve, reject) {
- webL10n.setLanguage(lang, function () {
- resolve(webL10n);
- });
- });
- }
- _createClass(GenericL10n, [{
- key: "getLanguage",
- value: function () {
- var _getLanguage = _asyncToGenerator(
- /*#__PURE__*/
- _regenerator.default.mark(function _callee() {
- var l10n;
- return _regenerator.default.wrap(function _callee$(_context) {
- while (1) {
- switch (_context.prev = _context.next) {
- case 0:
- _context.next = 2;
- return this._ready;
- case 2:
- l10n = _context.sent;
- return _context.abrupt("return", l10n.getLanguage());
- case 4:
- case "end":
- return _context.stop();
- }
- }
- }, _callee, this);
- }));
- function getLanguage() {
- return _getLanguage.apply(this, arguments);
- }
- return getLanguage;
- }()
- }, {
- key: "getDirection",
- value: function () {
- var _getDirection = _asyncToGenerator(
- /*#__PURE__*/
- _regenerator.default.mark(function _callee2() {
- var l10n;
- return _regenerator.default.wrap(function _callee2$(_context2) {
- while (1) {
- switch (_context2.prev = _context2.next) {
- case 0:
- _context2.next = 2;
- return this._ready;
- case 2:
- l10n = _context2.sent;
- return _context2.abrupt("return", l10n.getDirection());
- case 4:
- case "end":
- return _context2.stop();
- }
- }
- }, _callee2, this);
- }));
- function getDirection() {
- return _getDirection.apply(this, arguments);
- }
- return getDirection;
- }()
- }, {
- key: "get",
- value: function () {
- var _get = _asyncToGenerator(
- /*#__PURE__*/
- _regenerator.default.mark(function _callee3(property, args, fallback) {
- var l10n;
- return _regenerator.default.wrap(function _callee3$(_context3) {
- while (1) {
- switch (_context3.prev = _context3.next) {
- case 0:
- _context3.next = 2;
- return this._ready;
- case 2:
- l10n = _context3.sent;
- return _context3.abrupt("return", l10n.get(property, args, fallback));
- case 4:
- case "end":
- return _context3.stop();
- }
- }
- }, _callee3, this);
- }));
- function get(_x, _x2, _x3) {
- return _get.apply(this, arguments);
- }
- return get;
- }()
- }, {
- key: "translate",
- value: function () {
- var _translate = _asyncToGenerator(
- /*#__PURE__*/
- _regenerator.default.mark(function _callee4(element) {
- var l10n;
- return _regenerator.default.wrap(function _callee4$(_context4) {
- while (1) {
- switch (_context4.prev = _context4.next) {
- case 0:
- _context4.next = 2;
- return this._ready;
- case 2:
- l10n = _context4.sent;
- return _context4.abrupt("return", l10n.translate(element));
- case 4:
- case "end":
- return _context4.stop();
- }
- }
- }, _callee4, this);
- }));
- function translate(_x4) {
- return _translate.apply(this, arguments);
- }
- return translate;
- }()
- }]);
- return GenericL10n;
- }();
- exports.GenericL10n = GenericL10n;
|