blob: 186ca003422adc00191d1fe191a05e0b30ba65bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* 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";
/**
* Mock for devtools/client/shared/modules/fluent-l10n/fluent-l10n
*/
class FluentL10n {
async init() {}
getBundles() {
return [];
}
getString(id, args) {
return args ? `${id}__${JSON.stringify(args)}` : id;
}
}
// Export the class
exports.FluentL10n = FluentL10n;
|