UNPKG

@donation-alerts/common

Version:

Common utils and types that are used in other @donation-alerts packages.

92 lines (91 loc) 1.55 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.locales = void 0; /** * A collection of supported locales by the Donation Alerts API. * * @remarks * Each locale is defined by a unique `code` and a corresponding human-readable `name`. */ exports.locales = [ { code: 'be_BY', name: 'Belarusian', }, { code: 'de_DE', name: 'German', }, { code: 'en_US', name: 'English (USA)', }, { code: 'es_ES', name: 'Spanish', }, { code: 'es_US', name: 'Spanish (USA)', }, { code: 'et_EE', name: 'Estonian', }, { code: 'fr_FR', name: 'French', }, { code: 'he_HE', name: 'Hebrew', }, { code: 'it_IT', name: 'Italian', }, { code: 'ka_GE', name: 'Georgian', }, { code: 'kk_KZ', name: 'Kazakh', }, { code: 'ko_KR', name: 'Korean', }, { code: 'lv_LV', name: 'Latvian', }, { code: 'pl_PL', name: 'Polish', }, { code: 'pt_BR', name: 'Portuguese (Brazil)', }, { code: 'ru_RU', name: 'Russian', }, { code: 'sv_SE', name: 'Swedish', }, { code: 'tr_TR', name: 'Turkish', }, { code: 'uk_UA', name: 'Ukrainian', }, { code: 'zh_CN', name: 'Chinese', }, ];