📦 Localazy Languages
This repository contains all the ISO 639 languages supported by Localazy.
There are various forms of the content you may use
🔧 Install
npm install @localazy/languages
🚀 Usage
Locales Enum
One of the exported content is an enum file with all the locales in form of ENGLISH_LANGUAGE_NAME = "language_code", e.g. CZECH_CZECHIA = CZECH_CZECHIA = "cs_CZ"
;
import { Locales } from '@localazy/languages';
const czechia = locales.CZECH_CZECHIA;
Localazy Languages
getLocalazyLanguages
lists all languages in Localazy.
import { getLocalazyLanguages, Language } from "@localazy/languages";
const languages: Language[] = getLocalazyLanguages();
console.log(languages);
Use findLocalazyLanguageByLocale
if you're looking for a Localazy language identified by the locale.
import { findLocalazyLanguageByLocale } from '@localazy/languages';
console.log(findLocalazyLanguageByLocale('cs_CZ'));
The language object implements the Language type which you may import as import { Language } from "@localazy/languages";
Translated language names
To get a list of all Localazy language names in given language, use resolveTranslatedList
import { resolveTranslatedList } from '@localazy/languages';
const translatedLanguagesList = await resolveTranslatedList('de');
console.log(translatedLanguagesList);
JSON Languages data
This repository various language related JSON data
Localized language list
Language names translated in their language
If you miss some language or find inaccurate translation, we will appreciate your contribution.
import localizedLanguagesList from '@localazy/languages/data/localized-language-list';
console.log(localizedLanguagesList);
Localazy languages
Same data that returns getLocalazyLanguages
, but in JSON format.
import localazyLanguages from '@localazy/languages/data/localazy-languages';
console.log(localazyLanguages);
CLDR Multilingual language list
Returns languages recognized by CLDR. For each locale, it returns all other locales in given language.
import cldrLanguages from '@localazy/languages/data/cldr-multilingual-language-list';
console.log(cldrLanguages);
ℹ️ Links
🛟 Support
Join the Localazy Discussion Forum to discuss all things localization.
If you encounter any problems or have questions, you can use our forum, GitHub issues or contact us at
team@localazy.com.
❤️ Localazy Ecosystem
Check out other npm packages from Localazy:
Discover all available integration options and localization examples.
📜 License
Code released under the MIT license.