Module Application.Localization

Localize

example
localize('$Something'); // SOMETHING

localize('{$Something} else'); // SOMETHING else

const firstName = 'John';
const lastName = 'Doe';
localize('{$Hello}, {0} {1}!', firstName, lastName); // Hello, John Doe!

const num = 0.5;
localize('{$Message} {0:P}.', num); // Loading... 50%.

Index

Classes

Interfaces

Functions

Generated using TypeDoc