pax_global_header00006660000000000000000000000064135453133000014507gustar00rootroot0000000000000052 comment=9d03607e1c0f5ad24c7cef016aca424c6e4f8c1a lcid-3.1.1/000077500000000000000000000000001354531330000124245ustar00rootroot00000000000000lcid-3.1.1/.editorconfig000066400000000000000000000002571354531330000151050ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.yml] indent_style = space indent_size = 2 lcid-3.1.1/.gitattributes000066400000000000000000000000231354531330000153120ustar00rootroot00000000000000* text=auto eol=lf lcid-3.1.1/.github/000077500000000000000000000000001354531330000137645ustar00rootroot00000000000000lcid-3.1.1/.github/funding.yml000066400000000000000000000001561354531330000161430ustar00rootroot00000000000000github: sindresorhus open_collective: sindresorhus tidelift: npm/lcid custom: https://sindresorhus.com/donate lcid-3.1.1/.github/security.md000066400000000000000000000002631354531330000161560ustar00rootroot00000000000000# Security Policy To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. lcid-3.1.1/.gitignore000066400000000000000000000000271354531330000144130ustar00rootroot00000000000000node_modules yarn.lock lcid-3.1.1/.npmrc000066400000000000000000000000231354531330000135370ustar00rootroot00000000000000package-lock=false lcid-3.1.1/.travis.yml000066400000000000000000000000651354531330000145360ustar00rootroot00000000000000language: node_js node_js: - '12' - '10' - '8' lcid-3.1.1/index.d.ts000066400000000000000000000021231354531330000143230ustar00rootroot00000000000000import lcidCodes = require('./lcid.json'); declare const lcid: { /** Get a [standard locale identifier](https://en.wikipedia.org/wiki/Locale_(computer_software)) from a [Windows locale identifier (LCID)](http://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms). @example ``` import lcid = require('lcid'); lcid.from(1044); //=> 'nb_NO' ``` */ from(lcidCode: number): string; /** Get a [Windows locale identifier (LCID)](https://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms) from a [standard locale identifier](https://en.wikipedia.org/wiki/Locale_(computer_software)). @example ``` import lcid = require('lcid'); lcid.to('nb_NO'); //=> 1044 ``` */ to(localeId: string): number; /** Mapping between [standard locale identifiers](https://en.wikipedia.org/wiki/Locale_(computer_software)) and [Windows locale identifiers (LCID)](http://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms). @example ``` import lcid = require('lcid'); lcid.all; //=> {'af_ZA': 1078, …} ``` */ readonly all: typeof lcidCodes; }; export = lcid; lcid-3.1.1/index.js000066400000000000000000000011551354531330000140730ustar00rootroot00000000000000'use strict'; const invertKv = require('invert-kv'); const all = require('./lcid.json'); const inverted = invertKv(all); exports.from = lcidCode => { if (typeof lcidCode !== 'number') { throw new TypeError('Expected a number'); } return all[lcidCode]; }; exports.to = localeId => { if (typeof localeId !== 'string') { throw new TypeError('Expected a string'); } const lcidCode = inverted[localeId]; if (lcidCode) { return Number(inverted[localeId]); } }; exports.all = new Proxy( inverted, { get(target, name) { const lcid = target[name]; if (lcid) { return Number(lcid); } } } ); lcid-3.1.1/index.test-d.ts000066400000000000000000000004421354531330000153020ustar00rootroot00000000000000import {expectType} from 'tsd'; import lcid = require('.'); import lcidJson = require('./lcid.json'); expectType(lcid.to('nb_NO')); expectType(lcid.from(1044)); expectType<{readonly [key: string]: string}>(lcid.all); expectType<{readonly [key: string]: string}>(lcidJson); lcid-3.1.1/lcid.json000066400000000000000000000071501354531330000142350ustar00rootroot00000000000000{ "4": "zh_CHS", "1025": "ar_SA", "1026": "bg_BG", "1027": "ca_ES", "1028": "zh_TW", "1029": "cs_CZ", "1030": "da_DK", "1031": "de_DE", "1032": "el_GR", "1033": "en_US", "1034": "es_ES", "1035": "fi_FI", "1036": "fr_FR", "1037": "he_IL", "1038": "hu_HU", "1039": "is_IS", "1040": "it_IT", "1041": "ja_JP", "1042": "ko_KR", "1043": "nl_NL", "1044": "nb_NO", "1045": "pl_PL", "1046": "pt_BR", "1047": "rm_CH", "1048": "ro_RO", "1049": "ru_RU", "1050": "hr_HR", "1051": "sk_SK", "1052": "sq_AL", "1053": "sv_SE", "1054": "th_TH", "1055": "tr_TR", "1056": "ur_PK", "1057": "id_ID", "1058": "uk_UA", "1059": "be_BY", "1060": "sl_SI", "1061": "et_EE", "1062": "lv_LV", "1063": "lt_LT", "1064": "tg_TJ", "1065": "fa_IR", "1066": "vi_VN", "1067": "hy_AM", "1069": "eu_ES", "1070": "wen_DE", "1071": "mk_MK", "1074": "tn_ZA", "1076": "xh_ZA", "1077": "zu_ZA", "1078": "af_ZA", "1079": "ka_GE", "1080": "fo_FO", "1081": "hi_IN", "1082": "mt_MT", "1083": "se_NO", "1086": "ms_MY", "1087": "kk_KZ", "1088": "ky_KG", "1089": "sw_KE", "1090": "tk_TM", "1092": "tt_RU", "1093": "bn_IN", "1094": "pa_IN", "1095": "gu_IN", "1096": "or_IN", "1097": "ta_IN", "1098": "te_IN", "1099": "kn_IN", "1100": "ml_IN", "1101": "as_IN", "1102": "mr_IN", "1103": "sa_IN", "1104": "mn_MN", "1105": "bo_CN", "1106": "cy_GB", "1107": "kh_KH", "1108": "lo_LA", "1109": "my_MM", "1110": "gl_ES", "1111": "kok_IN", "1114": "syr_SY", "1115": "si_LK", "1118": "am_ET", "1121": "ne_NP", "1122": "fy_NL", "1123": "ps_AF", "1124": "fil_PH", "1125": "div_MV", "1128": "ha_NG", "1130": "yo_NG", "1131": "quz_BO", "1132": "ns_ZA", "1133": "ba_RU", "1134": "lb_LU", "1135": "kl_GL", "1144": "ii_CN", "1146": "arn_CL", "1148": "moh_CA", "1150": "br_FR", "1152": "ug_CN", "1153": "mi_NZ", "1154": "oc_FR", "1155": "co_FR", "1156": "gsw_FR", "1157": "sah_RU", "1158": "qut_GT", "1159": "rw_RW", "1160": "wo_SN", "1164": "gbz_AF", "2049": "ar_IQ", "2052": "zh_CN", "2055": "de_CH", "2057": "en_GB", "2058": "es_MX", "2060": "fr_BE", "2064": "it_CH", "2067": "nl_BE", "2068": "nn_NO", "2070": "pt_PT", "2077": "sv_FI", "2080": "ur_IN", "2092": "az_AZ", "2094": "dsb_DE", "2107": "se_SE", "2108": "ga_IE", "2110": "ms_BN", "2115": "uz_UZ", "2128": "mn_CN", "2129": "bo_BT", "2141": "iu_CA", "2143": "tmz_DZ", "2155": "quz_EC", "3073": "ar_EG", "3076": "zh_HK", "3079": "de_AT", "3081": "en_AU", "3082": "es_ES", "3084": "fr_CA", "3098": "sr_SP", "3131": "se_FI", "3179": "quz_PE", "4097": "ar_LY", "4100": "zh_SG", "4103": "de_LU", "4105": "en_CA", "4106": "es_GT", "4108": "fr_CH", "4122": "hr_BA", "4155": "smj_NO", "5121": "ar_DZ", "5124": "zh_MO", "5127": "de_LI", "5129": "en_NZ", "5130": "es_CR", "5132": "fr_LU", "5179": "smj_SE", "6145": "ar_MA", "6153": "en_IE", "6154": "es_PA", "6156": "fr_MC", "6203": "sma_NO", "7169": "ar_TN", "7177": "en_ZA", "7178": "es_DO", "7194": "sr_BA", "7227": "sma_SE", "8193": "ar_OM", "8201": "en_JA", "8202": "es_VE", "8218": "bs_BA", "8251": "sms_FI", "9217": "ar_YE", "9225": "en_CB", "9226": "es_CO", "9275": "smn_FI", "10241": "ar_SY", "10249": "en_BZ", "10250": "es_PE", "11265": "ar_JO", "11273": "en_TT", "11274": "es_AR", "12289": "ar_LB", "12297": "en_ZW", "12298": "es_EC", "13313": "ar_KW", "13321": "en_PH", "13322": "es_CL", "14337": "ar_AE", "14346": "es_UR", "15361": "ar_BH", "15370": "es_PY", "16385": "ar_QA", "16394": "es_BO", "17417": "en_MY", "17418": "es_SV", "18441": "en_IN", "18442": "es_HN", "19466": "es_NI", "20490": "es_PR", "21514": "es_US", "31748": "zh_CHT" } lcid-3.1.1/lcid.json.d.ts000066400000000000000000000001251354531330000150770ustar00rootroot00000000000000declare const lcidCodes: {readonly [localeId: string]: string}; export = lcidCodes; lcid-3.1.1/license000066400000000000000000000021251354531330000137710ustar00rootroot00000000000000MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. lcid-3.1.1/package.json000066400000000000000000000014201354531330000147070ustar00rootroot00000000000000{ "name": "lcid", "version": "3.1.1", "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", "license": "MIT", "repository": "sindresorhus/lcid", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "engines": { "node": ">=8" }, "scripts": { "test": "xo && ava && tsd" }, "files": [ "index.js", "index.d.ts", "lcid.json", "lcid.json.d.ts" ], "keywords": [ "lcid", "locale", "string", "id", "identifier", "windows", "language", "lang", "map", "mapping", "convert", "json", "bcp47", "ietf", "tag" ], "dependencies": { "invert-kv": "^3.0.0" }, "devDependencies": { "ava": "^1.4.1", "tsd": "^0.7.2", "xo": "^0.24.0" } } lcid-3.1.1/readme.md000066400000000000000000000022701354531330000142040ustar00rootroot00000000000000# lcid [![Build Status](https://travis-ci.org/sindresorhus/lcid.svg?branch=master)](https://travis-ci.org/sindresorhus/lcid) > Mapping between [standard locale identifiers](https://en.wikipedia.org/wiki/Locale_(computer_software)) and [Windows locale identifiers (LCID)](https://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms) Based on the [mapping](https://github.com/python/cpython/blob/8f7bb100d0fa7fb2714f3953b5b627878277c7c6/Lib/locale.py#L1465-L1674) used in the Python standard library. The mapping itself is just a [JSON file](lcid.json) and can be used anywhere. ## Install ``` $ npm install lcid ``` ## Usage ```js const lcid = require('lcid'); lcid.from(1044); //=> 'nb_NO' lcid.to('nb_NO'); //=> 1044 lcid.all; //=> {'af_ZA': 1078, …} ``` ---
Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.
lcid-3.1.1/test.js000066400000000000000000000010371354531330000137420ustar00rootroot00000000000000import test from 'ava'; import lcid from '.'; test('.from()', t => { t.is(lcid.from(1044), 'nb_NO'); }); test('.to()', t => { t.is(lcid.to('nb_NO'), 1044); }); test('.all', t => { t.is(typeof lcid.all, 'object'); t.is(lcid.all.nb_NO, 1044); }); test('.from(1034) should return Spanish locale', t => { t.is(lcid.from(1034), 'es_ES'); }); test('.to(\'es_ES\') should return proper Spanish LCID', t => { t.is(lcid.to('es_ES'), 3082); }); test('.all should contain the proper LCID for Spanish', t => { t.is(lcid.all.es_ES, 3082); });