@omegagrid/localize
Advanced tools
Comparing version
@@ -1,4 +0,1 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.getRegionISOCode = exports.getISOCode = void 0; | ||
const languages = { | ||
@@ -88,3 +85,3 @@ af: ["af-ZA"], | ||
let map; | ||
function getISOCode(code) { | ||
export function getISOCode(code) { | ||
if (languages[code]) | ||
@@ -96,3 +93,3 @@ return code; | ||
if (languages[key].includes(code)) { | ||
map = map !== null && map !== void 0 ? map : new Map(); | ||
map = map ?? new Map(); | ||
map.set(code, key); | ||
@@ -104,4 +101,3 @@ return key; | ||
} | ||
exports.getISOCode = getISOCode; | ||
function getRegionISOCode(code) { | ||
export function getRegionISOCode(code) { | ||
const isoCode = getISOCode(code); | ||
@@ -114,3 +110,2 @@ if (!isoCode) | ||
} | ||
exports.getRegionISOCode = getRegionISOCode; | ||
//# sourceMappingURL=codes.js.map |
@@ -1,25 +0,6 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./localization"), exports); | ||
__exportStar(require("./codes"), exports); | ||
const localization_1 = require("./localization"); | ||
const locales_1 = __importDefault(require("./locales")); | ||
locales_1.default.forEach(([locale, items]) => (0, localization_1.registerLocale)(locale, items)); | ||
export * from './localization'; | ||
export * from './codes'; | ||
import { registerLocale } from './localization'; | ||
import locales from './locales'; | ||
locales.forEach(([locale, items]) => registerLocale(locale, items)); | ||
//# sourceMappingURL=index.js.map |
@@ -1,4 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = [ | ||
export default [ | ||
{ id: null, source: "copied", target: "zkopírováno" }, | ||
@@ -5,0 +3,0 @@ { id: null, source: "close", target: "zavřít" }, |
@@ -1,4 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = [ | ||
export default [ | ||
{ id: null, source: "copied", target: "copied" }, | ||
@@ -5,0 +3,0 @@ { id: null, source: "close", target: "close" }, |
@@ -1,4 +0,4 @@ | ||
import { LocalizeItem } from '..'; | ||
declare const _default: [string, LocalizeItem[]][]; | ||
import { LocaleId, LocalizeItem } from '..'; | ||
declare const _default: [LocaleId, LocalizeItem[]][]; | ||
export default _default; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,15 +0,10 @@ | ||
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const en_us_1 = __importDefault(require("./en-us")); | ||
const cs_cz_1 = __importDefault(require("./cs-cz")); | ||
exports.default = [ | ||
['en-US', en_us_1.default], | ||
['en', en_us_1.default], | ||
['cs-CZ', cs_cz_1.default], | ||
['cs', cs_cz_1.default], | ||
['sk', cs_cz_1.default], | ||
import enUs from './en-us'; | ||
import csCZ from './cs-cz'; | ||
export default [ | ||
['en-US', enUs], | ||
['en', enUs], | ||
['cs-CZ', csCZ], | ||
['cs', csCZ], | ||
['sk', csCZ], | ||
]; | ||
//# sourceMappingURL=index.js.map |
@@ -1,5 +0,2 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.msg = exports.setLocale = exports.hasLocale = exports.getLocale = exports.registerLocale = exports.getSystemLocale = exports.LocaleChangeEvent = void 0; | ||
class LocaleChangeEvent extends Event { | ||
export class LocaleChangeEvent extends Event { | ||
constructor(locale) { | ||
@@ -10,4 +7,3 @@ super('localechange'); | ||
} | ||
exports.LocaleChangeEvent = LocaleChangeEvent; | ||
function getSystemLocale() { | ||
export function getSystemLocale() { | ||
return typeof navigator !== 'undefined' ? (navigator.languages && navigator.languages.length | ||
@@ -17,20 +13,15 @@ ? navigator.languages[0] | ||
} | ||
exports.getSystemLocale = getSystemLocale; | ||
const locales = new Map(); | ||
const localeSourceMap = new Map(); | ||
let currentLocale = getSystemLocale(); | ||
function registerLocale(locale, items) { | ||
export function registerLocale(locale, items) { | ||
(Array.isArray(locale) ? locale : [locale]).forEach(l => locales.set(l, items)); | ||
} | ||
exports.registerLocale = registerLocale; | ||
function getLocale() { | ||
export function getLocale() { | ||
return currentLocale; | ||
} | ||
exports.getLocale = getLocale; | ||
function hasLocale(locale) { | ||
export function hasLocale(locale) { | ||
return locales.has(locale); | ||
} | ||
exports.hasLocale = hasLocale; | ||
function setLocale(locale) { | ||
var _a; | ||
export function setLocale(locale) { | ||
if (!locales.has(locale)) { | ||
@@ -49,3 +40,3 @@ let newLocale = currentLocale; | ||
const map = localeSourceMap.get(locale); | ||
(_a = locales.get(locale)) === null || _a === void 0 ? void 0 : _a.forEach(i => map.set(i.source, i)); | ||
locales.get(locale)?.forEach(i => map.set(i.source, i)); | ||
if (currentLocale !== locale) { | ||
@@ -56,3 +47,2 @@ currentLocale = locale; | ||
} | ||
exports.setLocale = setLocale; | ||
/** | ||
@@ -64,6 +54,5 @@ * Translate a message to the current locale | ||
*/ | ||
function msg(message, options) { | ||
var _a; | ||
export function msg(message, options) { | ||
if (Array.isArray(message)) { | ||
return message.map(m => msg(m, options)).join((_a = options === null || options === void 0 ? void 0 : options.separator) !== null && _a !== void 0 ? _a : ' '); | ||
return message.map(m => msg(m, options)).join(options?.separator ?? ' '); | ||
} | ||
@@ -85,3 +74,2 @@ if (message == null || message === '') | ||
} | ||
exports.msg = msg; | ||
//# sourceMappingURL=localization.js.map |
{ | ||
"name": "@omegagrid/localize", | ||
"version": "0.5.20", | ||
"version": "0.6.0", | ||
"license": "UNLICENSED", | ||
@@ -46,4 +46,4 @@ "description": "Localization", | ||
"ts-node": "^10.9.2", | ||
"typescript": "5.3.2" | ||
"typescript": "5.6.3" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
20648
-9.85%255
-15%