@lingo.dev/_spec 0.26.0 → 0.26.1
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 +10 -2
- package/build/index.d.cts +2 -1
- package/build/index.d.ts +2 -1
- package/build/index.mjs +10 -2
- package/package.json +1 -1
package/build/index.cjs
CHANGED
@@ -193,8 +193,14 @@ var localeMap = {
|
|
193
193
|
sw: [
|
194
194
|
"sw-TZ",
|
195
195
|
// Tanzania
|
196
|
-
"sw-KE"
|
196
|
+
"sw-KE",
|
197
197
|
// Kenya
|
198
|
+
"sw-UG",
|
199
|
+
// Uganda
|
200
|
+
"sw-CD",
|
201
|
+
// Democratic Republic of Congo
|
202
|
+
"sw-RW"
|
203
|
+
// Rwanda
|
198
204
|
],
|
199
205
|
// Persian (Iran)
|
200
206
|
fa: ["fa-IR"],
|
@@ -237,7 +243,9 @@ var localeMap = {
|
|
237
243
|
// Tagalog (Philippines)
|
238
244
|
tl: ["tl-PH"],
|
239
245
|
// Telugu (India)
|
240
|
-
te: ["te-IN"]
|
246
|
+
te: ["te-IN"],
|
247
|
+
// Kinyarwanda (Rwanda)
|
248
|
+
rw: ["rw-RW"]
|
241
249
|
};
|
242
250
|
var localeCodesShort = Object.keys(localeMap);
|
243
251
|
var localeCodesFull = Object.values(localeMap).flat();
|
package/build/index.d.cts
CHANGED
@@ -46,7 +46,7 @@ declare const localeMap: {
|
|
46
46
|
readonly no: readonly ["no-NO", "nb-NO", "nn-NO"];
|
47
47
|
readonly ro: readonly ["ro-RO"];
|
48
48
|
readonly sk: readonly ["sk-SK"];
|
49
|
-
readonly sw: readonly ["sw-TZ", "sw-KE"];
|
49
|
+
readonly sw: readonly ["sw-TZ", "sw-KE", "sw-UG", "sw-CD", "sw-RW"];
|
50
50
|
readonly fa: readonly ["fa-IR"];
|
51
51
|
readonly fil: readonly ["fil-PH"];
|
52
52
|
readonly pa: readonly ["pa-IN", "pa-PK"];
|
@@ -63,6 +63,7 @@ declare const localeMap: {
|
|
63
63
|
readonly zgh: readonly ["zgh-MA"];
|
64
64
|
readonly tl: readonly ["tl-PH"];
|
65
65
|
readonly te: readonly ["te-IN"];
|
66
|
+
readonly rw: readonly ["rw-RW"];
|
66
67
|
};
|
67
68
|
type LocaleCodeShort = keyof typeof localeMap;
|
68
69
|
type LocaleCodeFull = (typeof localeMap)[LocaleCodeShort][number];
|
package/build/index.d.ts
CHANGED
@@ -46,7 +46,7 @@ declare const localeMap: {
|
|
46
46
|
readonly no: readonly ["no-NO", "nb-NO", "nn-NO"];
|
47
47
|
readonly ro: readonly ["ro-RO"];
|
48
48
|
readonly sk: readonly ["sk-SK"];
|
49
|
-
readonly sw: readonly ["sw-TZ", "sw-KE"];
|
49
|
+
readonly sw: readonly ["sw-TZ", "sw-KE", "sw-UG", "sw-CD", "sw-RW"];
|
50
50
|
readonly fa: readonly ["fa-IR"];
|
51
51
|
readonly fil: readonly ["fil-PH"];
|
52
52
|
readonly pa: readonly ["pa-IN", "pa-PK"];
|
@@ -63,6 +63,7 @@ declare const localeMap: {
|
|
63
63
|
readonly zgh: readonly ["zgh-MA"];
|
64
64
|
readonly tl: readonly ["tl-PH"];
|
65
65
|
readonly te: readonly ["te-IN"];
|
66
|
+
readonly rw: readonly ["rw-RW"];
|
66
67
|
};
|
67
68
|
type LocaleCodeShort = keyof typeof localeMap;
|
68
69
|
type LocaleCodeFull = (typeof localeMap)[LocaleCodeShort][number];
|
package/build/index.mjs
CHANGED
@@ -193,8 +193,14 @@ var localeMap = {
|
|
193
193
|
sw: [
|
194
194
|
"sw-TZ",
|
195
195
|
// Tanzania
|
196
|
-
"sw-KE"
|
196
|
+
"sw-KE",
|
197
197
|
// Kenya
|
198
|
+
"sw-UG",
|
199
|
+
// Uganda
|
200
|
+
"sw-CD",
|
201
|
+
// Democratic Republic of Congo
|
202
|
+
"sw-RW"
|
203
|
+
// Rwanda
|
198
204
|
],
|
199
205
|
// Persian (Iran)
|
200
206
|
fa: ["fa-IR"],
|
@@ -237,7 +243,9 @@ var localeMap = {
|
|
237
243
|
// Tagalog (Philippines)
|
238
244
|
tl: ["tl-PH"],
|
239
245
|
// Telugu (India)
|
240
|
-
te: ["te-IN"]
|
246
|
+
te: ["te-IN"],
|
247
|
+
// Kinyarwanda (Rwanda)
|
248
|
+
rw: ["rw-RW"]
|
241
249
|
};
|
242
250
|
var localeCodesShort = Object.keys(localeMap);
|
243
251
|
var localeCodesFull = Object.values(localeMap).flat();
|