@lingo.dev/_spec 0.40.3 → 0.40.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.cjs +7 -1
- package/build/index.d.cts +3 -0
- package/build/index.d.ts +3 -0
- package/build/index.mjs +7 -1
- package/package.json +1 -1
package/build/index.cjs
CHANGED
@@ -272,7 +272,13 @@ var localeMap = {
|
|
272
272
|
// Kinyarwanda (Rwanda)
|
273
273
|
rw: ["rw-RW"],
|
274
274
|
// Georgian (Georgia)
|
275
|
-
ka: ["ka-GE"]
|
275
|
+
ka: ["ka-GE"],
|
276
|
+
// Malayalam (India)
|
277
|
+
ml: ["ml-IN"],
|
278
|
+
// Armenian (Armenia)
|
279
|
+
hy: ["hy-AM"],
|
280
|
+
// Macedonian (Macedonia)
|
281
|
+
mk: ["mk-MK"]
|
276
282
|
};
|
277
283
|
var localeCodesShort = Object.keys(localeMap);
|
278
284
|
var localeCodesFull = Object.values(
|
package/build/index.d.cts
CHANGED
@@ -69,6 +69,9 @@ declare const localeMap: {
|
|
69
69
|
readonly te: readonly ["te-IN"];
|
70
70
|
readonly rw: readonly ["rw-RW"];
|
71
71
|
readonly ka: readonly ["ka-GE"];
|
72
|
+
readonly ml: readonly ["ml-IN"];
|
73
|
+
readonly hy: readonly ["hy-AM"];
|
74
|
+
readonly mk: readonly ["mk-MK"];
|
72
75
|
};
|
73
76
|
type LocaleCodeShort = keyof typeof localeMap;
|
74
77
|
type LocaleCodeFull = (typeof localeMap)[LocaleCodeShort][number];
|
package/build/index.d.ts
CHANGED
@@ -69,6 +69,9 @@ declare const localeMap: {
|
|
69
69
|
readonly te: readonly ["te-IN"];
|
70
70
|
readonly rw: readonly ["rw-RW"];
|
71
71
|
readonly ka: readonly ["ka-GE"];
|
72
|
+
readonly ml: readonly ["ml-IN"];
|
73
|
+
readonly hy: readonly ["hy-AM"];
|
74
|
+
readonly mk: readonly ["mk-MK"];
|
72
75
|
};
|
73
76
|
type LocaleCodeShort = keyof typeof localeMap;
|
74
77
|
type LocaleCodeFull = (typeof localeMap)[LocaleCodeShort][number];
|
package/build/index.mjs
CHANGED
@@ -272,7 +272,13 @@ var localeMap = {
|
|
272
272
|
// Kinyarwanda (Rwanda)
|
273
273
|
rw: ["rw-RW"],
|
274
274
|
// Georgian (Georgia)
|
275
|
-
ka: ["ka-GE"]
|
275
|
+
ka: ["ka-GE"],
|
276
|
+
// Malayalam (India)
|
277
|
+
ml: ["ml-IN"],
|
278
|
+
// Armenian (Armenia)
|
279
|
+
hy: ["hy-AM"],
|
280
|
+
// Macedonian (Macedonia)
|
281
|
+
mk: ["mk-MK"]
|
276
282
|
};
|
277
283
|
var localeCodesShort = Object.keys(localeMap);
|
278
284
|
var localeCodesFull = Object.values(
|