UNPKG

1.65 kBJavaScriptView Raw
1/**
2 * @licstart The following is the entire license notice for the
3 * Javascript code in this page
4 *
5 * Copyright 2020 Mozilla Foundation
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 * @licend The above is the entire license notice for the
20 * Javascript code in this page
21 */
22"use strict";
23
24Object.defineProperty(exports, "__esModule", {
25 value: true
26});
27exports.GenericL10n = void 0;
28
29require("../external/webL10n/l10n.js");
30
31const webL10n = document.webL10n;
32
33class GenericL10n {
34 constructor(lang) {
35 this._lang = lang;
36 this._ready = new Promise((resolve, reject) => {
37 webL10n.setLanguage(lang, () => {
38 resolve(webL10n);
39 });
40 });
41 }
42
43 async getLanguage() {
44 const l10n = await this._ready;
45 return l10n.getLanguage();
46 }
47
48 async getDirection() {
49 const l10n = await this._ready;
50 return l10n.getDirection();
51 }
52
53 async get(property, args, fallback) {
54 const l10n = await this._ready;
55 return l10n.get(property, args, fallback);
56 }
57
58 async translate(element) {
59 const l10n = await this._ready;
60 return l10n.translate(element);
61 }
62
63}
64
65exports.GenericL10n = GenericL10n;
\No newline at end of file