WARNING: The messages in this file will be moved to messages/messages-en.ts file on version 2.x.
Users are encouraged to include the messages/messages-en.js on their index.html
even though for now it's an empty file to prevent breaking changes.
BeamToIX allows to localize the name of functions and other functionalities
such the names of tasks, flyovers and scene transitions.
The names can include non-latin characters.
Fill Localization with the localize data, and add it
via BeamToIX.pluginManager.addLocalization.
public export interface
export interface Localization{ }
public property [Localization]
locale: string;
public property [Localization]
charRanges?: [number, number][];
public property [Localization]
messages?: { [srcMsg: string]: string };
public property [Localization]
functionalities?: [Functionalities | string, { src: string, dst: string }[]][];
public export interface
export interface I8nParams{ }
public export function
export function i8nMsg(msg: string, params?: I8nParams): string;