Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/entropy/src/localizator/localizator.service.ts>Localizator

The core module of Entropy framework for Deno.
Latest
class Localizator
import { Localizator } from "https://deno.land/x/entropy@1.0.0-beta.17/src/localizator/localizator.service.ts";

Properties

private
readonly
configurator
private
translations: Map<string, Map<string, string | string[]>>

Methods

private
loadTranslations(): Promise<void>
all(locale: string): Record<string, string | string[]>
set(
locale: string,
text: string,
translation: string | string[],
): void
setup(): Promise<void>
translate(
locale: string,
text: string,
quantity?,
): string