Files
ThreadNet-Web/packages/element-web-module-api/src/api/i18n.ts
T

53 lines
1.2 KiB
TypeScript
Raw Normal View History

2025-05-13 10:40:26 +01:00
/*
Copyright 2025 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
/**
* The translations for the module.
* @public
*/
export type Translations = Record<
string,
{
[ietfLanguageTag: string]: string;
}
>;
/**
* Variables to interpolate into a translation.
* @public
*/
export type Variables = {
/**
* The number of items to count for pluralised translations
*/
count?: number;
[key: string]: number | string | undefined;
};
/**
* The API for interacting with translations.
* @public
*/
export interface I18nApi {
/**
* Read the current language of the user in IETF Language Tag format
*/
get language(): string;
/**
* Register translations for the module, may override app's existing translations
*/
register(translations: Partial<Translations>): void;
/**
* Perform a translation, with optional variables
* @param key - The key to translate
* @param variables - Optional variables to interpolate into the translation
*/
translate(key: keyof Translations, variables?: Variables): string;
}