File

src/configuration/entities/language/language.constants.ts

Description

Lists of languages currently supported by Stark.

Index

Properties

Properties

Static DE_DE
Type : StarkLanguage
Default value : { isoCode: "de-DE", translationKey: "STARK.LANGUAGES.DE", code: "de", region: "DE" }

German language

Static EN_US
Type : StarkLanguage
Default value : { isoCode: "en-US", translationKey: "STARK.LANGUAGES.EN", code: "en", region: "US" }

English language

Static FR_BE
Type : StarkLanguage
Default value : { isoCode: "fr-BE", translationKey: "STARK.LANGUAGES.FR", code: "fr", region: "BE" }

French language

Static NL_BE
Type : StarkLanguage
Default value : { isoCode: "nl-BE", translationKey: "STARK.LANGUAGES.NL", code: "nl", region: "BE" }

Dutch language

import { StarkLanguage } from "./language.entity.intf";

/**
 * Lists of languages currently supported by Stark.
 */
export class StarkLanguages {
	/**
	 * English language
	 */
	public static EN_US: StarkLanguage = {
		isoCode: "en-US",
		translationKey: "STARK.LANGUAGES.EN",
		code: "en",
		region: "US"
	};
	/**
	 * French language
	 */
	public static FR_BE: StarkLanguage = {
		isoCode: "fr-BE",
		translationKey: "STARK.LANGUAGES.FR",
		code: "fr",
		region: "BE"
	};
	/**
	 * Dutch language
	 */
	public static NL_BE: StarkLanguage = {
		isoCode: "nl-BE",
		translationKey: "STARK.LANGUAGES.NL",
		code: "nl",
		region: "BE"
	};
	/**
	 * German language
	 */
	public static DE_DE: StarkLanguage = {
		isoCode: "de-DE",
		translationKey: "STARK.LANGUAGES.DE",
		code: "de",
		region: "DE"
	};
}

results matching ""

    No results matching ""