зеркало из https://github.com/mozilla/gecko-dev.git
35 строки
1.3 KiB
Plaintext
35 строки
1.3 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
/**
|
|
* This is an internal XPIDL used to expose a JS based Localization class to be used
|
|
* by its C++ wrapper.
|
|
*
|
|
* Consumers should use the WebIDL Localization API instead of this one.
|
|
*/
|
|
#include "nsISupports.idl"
|
|
|
|
[scriptable, uuid(7d468600-551f-4fe0-98c9-92a53b63ec8d)]
|
|
interface mozILocalization : nsISupports
|
|
{
|
|
unsigned long addResourceIds(in Array<AString> resourceIds, in bool aEager);
|
|
unsigned long removeResourceIds(in Array<AString> resourceIds);
|
|
void onChange();
|
|
|
|
Promise formatMessages(in Array<jsval> aKeys);
|
|
Promise formatValues(in Array<jsval> aKeys);
|
|
Promise formatValue(in AString aId, [optional] in jsval aArgs);
|
|
|
|
Array<jsval> formatMessagesSync(in Array<jsval> aKeys);
|
|
void setIsSync(in boolean isSync);
|
|
};
|
|
|
|
[scriptable, uuid(96632d26-1422-12e9-b1ce-9bb586acd241)]
|
|
interface mozILocalizationJSM : nsISupports
|
|
{
|
|
mozILocalization getLocalization(in Array<AString> resourceIds, in bool sync);
|
|
mozILocalization getLocalizationWithCustomGenerateMessages(in Array<AString> resourceIds, in jsval generateMessages);
|
|
};
|