@webitel/ui-sdk 25.10.12 → 25.10.13
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/package.json +1 -1
- package/src/locale/_enums/TranslationLocale.enum.ts +22 -0
- package/src/locale/en/en.js +4 -9
- package/src/locale/en/notTranslatable.en.ts +27 -0
- package/src/locale/es/es.js +0 -7
- package/src/locale/index.ts +2 -0
- package/src/locale/kz/kz.js +0 -7
- package/src/locale/pl/pl.js +0 -7
- package/src/locale/ro/ro.js +0 -7
- package/src/locale/ru/ru.js +0 -7
- package/src/locale/uk/uk.js +0 -7
- package/src/locale/uz/uz.js +0 -7
- package/src/locale/vi/vi.js +0 -7
- package/types/locale/_enums/TranslationLocale.enum.d.ts +18 -0
- package/types/locale/en/en.d.ts +1 -949
- package/types/locale/en/notTranslatable.en.d.ts +25 -0
- package/types/locale/es/es.d.ts +0 -7
- package/types/locale/i18n.d.ts +1 -921
- package/types/locale/index.d.ts +2 -921
- package/types/locale/kz/kz.d.ts +0 -7
- package/types/locale/pl/pl.d.ts +0 -7
- package/types/locale/ro/ro.d.ts +0 -7
- package/types/locale/ru/ru.d.ts +0 -7
- package/types/locale/uk/uk.d.ts +0 -7
- package/types/locale/uz/uz.d.ts +0 -7
- package/types/locale/vi/vi.d.ts +0 -7
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author @dlohvinov
|
|
3
|
+
*
|
|
4
|
+
* @description
|
|
5
|
+
* These keys should not be translated to different langs,
|
|
6
|
+
* but moved to separate file to avoid main lang file lines
|
|
7
|
+
* count increase related to other langs so that it's easier
|
|
8
|
+
* to compare any missing translations between langs
|
|
9
|
+
*/
|
|
10
|
+
declare const _default: {
|
|
11
|
+
reusable: {
|
|
12
|
+
lang: {
|
|
13
|
+
en: string;
|
|
14
|
+
es: string;
|
|
15
|
+
ru: string;
|
|
16
|
+
uk: string;
|
|
17
|
+
kz: string;
|
|
18
|
+
vi: string;
|
|
19
|
+
pl: string;
|
|
20
|
+
ro: string;
|
|
21
|
+
uz: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default _default;
|
package/types/locale/es/es.d.ts
CHANGED
|
@@ -34,13 +34,6 @@ declare namespace _default {
|
|
|
34
34
|
export let expand: string;
|
|
35
35
|
export let collapse: string;
|
|
36
36
|
export let generate: string;
|
|
37
|
-
export namespace lang {
|
|
38
|
-
let en: string;
|
|
39
|
-
let es: string;
|
|
40
|
-
let ru: string;
|
|
41
|
-
let uk: string;
|
|
42
|
-
let kz: string;
|
|
43
|
-
}
|
|
44
37
|
export let from: string;
|
|
45
38
|
export let to: string;
|
|
46
39
|
export let tts: string;
|