tnp-helpers 16.444.21 → 16.444.23
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/assets/shared/shared_folder_info.txt +1 -1
- package/browser/esm2022/lib/base/base-git.mjs +65 -2
- package/browser/esm2022/lib/base/base-library-build.mjs +4 -2
- package/browser/esm2022/lib/base/base-npm-helpers.mjs +131 -14
- package/browser/esm2022/lib/base/base-project.mjs +8 -1
- package/browser/esm2022/lib/base/base-release-process.mjs +381 -3
- package/browser/esm2022/lib/base/base-vscode.mjs +10 -1
- package/browser/esm2022/lib/base/commit-data.mjs +116 -44
- package/browser/esm2022/lib/base/core-project.mjs +1 -1
- package/browser/esm2022/lib/base/index.mjs +3 -1
- package/browser/esm2022/lib/models.mjs +1 -1
- package/browser/fesm2022/tnp-helpers.mjs +925 -84
- package/browser/fesm2022/tnp-helpers.mjs.map +1 -1
- package/browser/lib/base/base-git.d.ts +15 -4
- package/browser/lib/base/base-library-build.d.ts +1 -1
- package/browser/lib/base/base-npm-helpers.d.ts +25 -1
- package/browser/lib/base/base-project.d.ts +4 -0
- package/browser/lib/base/base-release-process.d.ts +32 -2
- package/browser/lib/base/commit-data.d.ts +18 -13
- package/browser/lib/base/core-project.d.ts +3 -0
- package/browser/lib/base/index.d.ts +1 -0
- package/browser/lib/models.d.ts +5 -0
- package/client/esm2022/lib/base/base-git.mjs +65 -2
- package/client/esm2022/lib/base/base-library-build.mjs +4 -2
- package/client/esm2022/lib/base/base-npm-helpers.mjs +131 -14
- package/client/esm2022/lib/base/base-project.mjs +8 -1
- package/client/esm2022/lib/base/base-release-process.mjs +381 -3
- package/client/esm2022/lib/base/base-vscode.mjs +10 -1
- package/client/esm2022/lib/base/commit-data.mjs +116 -44
- package/client/esm2022/lib/base/core-project.mjs +1 -1
- package/client/esm2022/lib/base/index.mjs +3 -1
- package/client/esm2022/lib/models.mjs +1 -1
- package/client/fesm2022/tnp-helpers.mjs +925 -84
- package/client/fesm2022/tnp-helpers.mjs.map +1 -1
- package/client/lib/base/base-git.d.ts +15 -4
- package/client/lib/base/base-library-build.d.ts +1 -1
- package/client/lib/base/base-npm-helpers.d.ts +25 -1
- package/client/lib/base/base-project.d.ts +4 -0
- package/client/lib/base/base-release-process.d.ts +32 -2
- package/client/lib/base/commit-data.d.ts +18 -13
- package/client/lib/base/core-project.d.ts +3 -0
- package/client/lib/base/index.d.ts +1 -0
- package/client/lib/models.d.ts +5 -0
- package/client/package.json +30 -30
- package/lib/base/base-command-line.backend.d.ts +3 -0
- package/lib/base/base-command-line.backend.js +51 -0
- package/lib/base/base-command-line.backend.js.map +1 -1
- package/lib/base/base-git.d.ts +12 -1
- package/lib/base/base-git.js +118 -41
- package/lib/base/base-git.js.map +1 -1
- package/lib/base/base-library-build.d.ts +1 -1
- package/lib/base/base-library-build.js +33 -31
- package/lib/base/base-library-build.js.map +1 -1
- package/lib/base/base-npm-helpers.d.ts +27 -2
- package/lib/base/base-npm-helpers.js +157 -16
- package/lib/base/base-npm-helpers.js.map +1 -1
- package/lib/base/base-project.d.ts +4 -0
- package/lib/base/base-project.js +13 -0
- package/lib/base/base-project.js.map +1 -1
- package/lib/base/base-release-process.d.ts +32 -2
- package/lib/base/base-release-process.js +621 -16
- package/lib/base/base-release-process.js.map +1 -1
- package/lib/base/base-vscode.js +9 -0
- package/lib/base/base-vscode.js.map +1 -1
- package/lib/base/commit-data.d.ts +17 -12
- package/lib/base/commit-data.js +138 -78
- package/lib/base/commit-data.js.map +1 -1
- package/lib/base/core-project.d.ts +3 -0
- package/lib/base/core-project.js.map +1 -1
- package/lib/base/index.d.ts +2 -0
- package/lib/base/index.js +2 -0
- package/lib/base/index.js.map +1 -1
- package/lib/base/translate.d.ts +227 -1
- package/lib/base/translate.js +566 -54
- package/lib/base/translate.js.map +1 -1
- package/lib/helpers/for-backend/helpers-console-gui.d.ts +1 -0
- package/lib/helpers/for-backend/helpers-console-gui.js +3 -2
- package/lib/helpers/for-backend/helpers-console-gui.js.map +1 -1
- package/lib/helpers/for-backend/helpers-git.backend.d.ts +16 -1
- package/lib/helpers/for-backend/helpers-git.backend.js +123 -16
- package/lib/helpers/for-backend/helpers-git.backend.js.map +1 -1
- package/lib/helpers/for-backend/helpers-process.backend.d.ts +10 -8
- package/lib/helpers/for-backend/helpers-process.backend.js +56 -56
- package/lib/helpers/for-backend/helpers-process.backend.js.map +1 -1
- package/lib/helpers/for-browser/angular.helper.js +3 -3
- package/lib/models.d.ts +5 -0
- package/lib/old/base-component.js +3 -3
- package/lib/old/base-formly-component.js +3 -3
- package/lib/old/dual-component-ctrl.js +3 -3
- package/package.json +4 -4
- package/tmp-environment.json +34 -34
- package/websql/esm2022/lib/base/base-git.mjs +65 -2
- package/websql/esm2022/lib/base/base-library-build.mjs +4 -2
- package/websql/esm2022/lib/base/base-npm-helpers.mjs +131 -14
- package/websql/esm2022/lib/base/base-project.mjs +8 -1
- package/websql/esm2022/lib/base/base-release-process.mjs +381 -3
- package/websql/esm2022/lib/base/base-vscode.mjs +10 -1
- package/websql/esm2022/lib/base/commit-data.mjs +116 -44
- package/websql/esm2022/lib/base/core-project.mjs +1 -1
- package/websql/esm2022/lib/base/index.mjs +3 -1
- package/websql/esm2022/lib/models.mjs +1 -1
- package/websql/fesm2022/tnp-helpers.mjs +925 -84
- package/websql/fesm2022/tnp-helpers.mjs.map +1 -1
- package/websql/lib/base/base-git.d.ts +15 -4
- package/websql/lib/base/base-library-build.d.ts +1 -1
- package/websql/lib/base/base-npm-helpers.d.ts +26 -4
- package/websql/lib/base/base-project.d.ts +4 -0
- package/websql/lib/base/base-release-process.d.ts +32 -2
- package/websql/lib/base/commit-data.d.ts +18 -13
- package/websql/lib/base/core-project.d.ts +3 -0
- package/websql/lib/base/index.d.ts +1 -0
- package/websql/lib/models.d.ts +5 -0
package/lib/base/translate.d.ts
CHANGED
|
@@ -1 +1,227 @@
|
|
|
1
|
-
|
|
1
|
+
declare var names: {
|
|
2
|
+
readonly afar: "aa";
|
|
3
|
+
readonly abkhazian: "ab";
|
|
4
|
+
readonly afrikaans: "af";
|
|
5
|
+
readonly akan: "ak";
|
|
6
|
+
readonly albanian: "sq";
|
|
7
|
+
readonly amharic: "am";
|
|
8
|
+
readonly arabic: "ar";
|
|
9
|
+
readonly aragonese: "an";
|
|
10
|
+
readonly armenian: "hy";
|
|
11
|
+
readonly assamese: "as";
|
|
12
|
+
readonly avaric: "av";
|
|
13
|
+
readonly avestan: "ae";
|
|
14
|
+
readonly aymara: "ay";
|
|
15
|
+
readonly azerbaijani: "az";
|
|
16
|
+
readonly bashkir: "ba";
|
|
17
|
+
readonly bambara: "bm";
|
|
18
|
+
readonly basque: "eu";
|
|
19
|
+
readonly belarusian: "be";
|
|
20
|
+
readonly bengali: "bn";
|
|
21
|
+
readonly 'bihari languages': "bh";
|
|
22
|
+
readonly bislama: "bi";
|
|
23
|
+
readonly tibetan: "bo";
|
|
24
|
+
readonly bosnian: "bs";
|
|
25
|
+
readonly breton: "br";
|
|
26
|
+
readonly bulgarian: "bg";
|
|
27
|
+
readonly burmese: "my";
|
|
28
|
+
readonly catalan: "ca";
|
|
29
|
+
readonly valencian: "ca";
|
|
30
|
+
readonly czech: "cs";
|
|
31
|
+
readonly chamorro: "ch";
|
|
32
|
+
readonly chechen: "ce";
|
|
33
|
+
readonly chinese: "zh";
|
|
34
|
+
readonly 'church slavic': "cu";
|
|
35
|
+
readonly 'old slavonic': "cu";
|
|
36
|
+
readonly 'church slavonic': "cu";
|
|
37
|
+
readonly 'old bulgarian': "cu";
|
|
38
|
+
readonly 'old church slavonic': "cu";
|
|
39
|
+
readonly chuvash: "cv";
|
|
40
|
+
readonly cornish: "kw";
|
|
41
|
+
readonly corsican: "co";
|
|
42
|
+
readonly cree: "cr";
|
|
43
|
+
readonly welsh: "cy";
|
|
44
|
+
readonly danish: "da";
|
|
45
|
+
readonly german: "de";
|
|
46
|
+
readonly divehi: "dv";
|
|
47
|
+
readonly dhivehi: "dv";
|
|
48
|
+
readonly maldivian: "dv";
|
|
49
|
+
readonly dutch: "nl";
|
|
50
|
+
readonly flemish: "nl";
|
|
51
|
+
readonly dzongkha: "dz";
|
|
52
|
+
readonly greek: "el";
|
|
53
|
+
readonly english: "en";
|
|
54
|
+
readonly esperanto: "eo";
|
|
55
|
+
readonly estonian: "et";
|
|
56
|
+
readonly ewe: "ee";
|
|
57
|
+
readonly faroese: "fo";
|
|
58
|
+
readonly persian: "fa";
|
|
59
|
+
readonly fijian: "fj";
|
|
60
|
+
readonly finnish: "fi";
|
|
61
|
+
readonly french: "fr";
|
|
62
|
+
readonly 'western frisian': "fy";
|
|
63
|
+
readonly fulah: "ff";
|
|
64
|
+
readonly georgian: "ka";
|
|
65
|
+
readonly gaelic: "gd";
|
|
66
|
+
readonly 'scottish gaelic': "gd";
|
|
67
|
+
readonly irish: "ga";
|
|
68
|
+
readonly galician: "gl";
|
|
69
|
+
readonly manx: "gv";
|
|
70
|
+
readonly guarani: "gn";
|
|
71
|
+
readonly gujarati: "gu";
|
|
72
|
+
readonly haitian: "ht";
|
|
73
|
+
readonly 'haitian creole': "ht";
|
|
74
|
+
readonly hausa: "ha";
|
|
75
|
+
readonly hebrew: "he";
|
|
76
|
+
readonly herero: "hz";
|
|
77
|
+
readonly hindi: "hi";
|
|
78
|
+
readonly 'hiri motu': "ho";
|
|
79
|
+
readonly croatian: "hr";
|
|
80
|
+
readonly hungarian: "hu";
|
|
81
|
+
readonly igbo: "ig";
|
|
82
|
+
readonly icelandic: "is";
|
|
83
|
+
readonly ido: "io";
|
|
84
|
+
readonly 'sichuan yi': "ii";
|
|
85
|
+
readonly nuosu: "ii";
|
|
86
|
+
readonly inuktitut: "iu";
|
|
87
|
+
readonly interlingue: "ie";
|
|
88
|
+
readonly occidental: "ie";
|
|
89
|
+
readonly interlingua: "ia";
|
|
90
|
+
readonly indonesian: "id";
|
|
91
|
+
readonly inupiaq: "ik";
|
|
92
|
+
readonly italian: "it";
|
|
93
|
+
readonly javanese: "jv";
|
|
94
|
+
readonly japanese: "ja";
|
|
95
|
+
readonly kalaallisut: "kl";
|
|
96
|
+
readonly greenlandic: "kl";
|
|
97
|
+
readonly kannada: "kn";
|
|
98
|
+
readonly kashmiri: "ks";
|
|
99
|
+
readonly kanuri: "kr";
|
|
100
|
+
readonly kazakh: "kk";
|
|
101
|
+
readonly 'central khmer': "km";
|
|
102
|
+
readonly kikuyu: "ki";
|
|
103
|
+
readonly gikuyu: "ki";
|
|
104
|
+
readonly kinyarwanda: "rw";
|
|
105
|
+
readonly kirghiz: "ky";
|
|
106
|
+
readonly kyrgyz: "ky";
|
|
107
|
+
readonly komi: "kv";
|
|
108
|
+
readonly kongo: "kg";
|
|
109
|
+
readonly korean: "ko";
|
|
110
|
+
readonly kuanyama: "kj";
|
|
111
|
+
readonly kwanyama: "kj";
|
|
112
|
+
readonly kurdish: "ku";
|
|
113
|
+
readonly lao: "lo";
|
|
114
|
+
readonly latin: "la";
|
|
115
|
+
readonly latvian: "lv";
|
|
116
|
+
readonly limburgan: "li";
|
|
117
|
+
readonly limburger: "li";
|
|
118
|
+
readonly limburgish: "li";
|
|
119
|
+
readonly lingala: "ln";
|
|
120
|
+
readonly lithuanian: "lt";
|
|
121
|
+
readonly luxembourgish: "lb";
|
|
122
|
+
readonly letzeburgesch: "lb";
|
|
123
|
+
readonly 'luba-katanga': "lu";
|
|
124
|
+
readonly ganda: "lg";
|
|
125
|
+
readonly macedonian: "mk";
|
|
126
|
+
readonly marshallese: "mh";
|
|
127
|
+
readonly malayalam: "ml";
|
|
128
|
+
readonly maori: "mi";
|
|
129
|
+
readonly marathi: "mr";
|
|
130
|
+
readonly malay: "ms";
|
|
131
|
+
readonly malagasy: "mg";
|
|
132
|
+
readonly maltese: "mt";
|
|
133
|
+
readonly mongolian: "mn";
|
|
134
|
+
readonly nauru: "na";
|
|
135
|
+
readonly navajo: "nv";
|
|
136
|
+
readonly navaho: "nv";
|
|
137
|
+
readonly 'ndebele, south': "nr";
|
|
138
|
+
readonly 'south ndebele': "nr";
|
|
139
|
+
readonly 'ndebele, north': "nd";
|
|
140
|
+
readonly 'north ndebele': "nd";
|
|
141
|
+
readonly ndonga: "ng";
|
|
142
|
+
readonly nepali: "ne";
|
|
143
|
+
readonly 'norwegian nynorsk': "nn";
|
|
144
|
+
readonly 'nynorsk, norwegian': "nn";
|
|
145
|
+
readonly 'norwegian bokm\u00E5l': "nb";
|
|
146
|
+
readonly 'bokm\u00E5l, norwegian': "nb";
|
|
147
|
+
readonly norwegian: "no";
|
|
148
|
+
readonly chichewa: "ny";
|
|
149
|
+
readonly chewa: "ny";
|
|
150
|
+
readonly nyanja: "ny";
|
|
151
|
+
readonly occitan: "oc";
|
|
152
|
+
readonly ojibwa: "oj";
|
|
153
|
+
readonly oriya: "or";
|
|
154
|
+
readonly oromo: "om";
|
|
155
|
+
readonly ossetian: "os";
|
|
156
|
+
readonly ossetic: "os";
|
|
157
|
+
readonly panjabi: "pa";
|
|
158
|
+
readonly punjabi: "pa";
|
|
159
|
+
readonly pali: "pi";
|
|
160
|
+
readonly polish: "pl";
|
|
161
|
+
readonly portuguese: "pt";
|
|
162
|
+
readonly pushto: "ps";
|
|
163
|
+
readonly pashto: "ps";
|
|
164
|
+
readonly quechua: "qu";
|
|
165
|
+
readonly romansh: "rm";
|
|
166
|
+
readonly romanian: "ro";
|
|
167
|
+
readonly moldavian: "ro";
|
|
168
|
+
readonly moldovan: "ro";
|
|
169
|
+
readonly rundi: "rn";
|
|
170
|
+
readonly russian: "ru";
|
|
171
|
+
readonly sango: "sg";
|
|
172
|
+
readonly sanskrit: "sa";
|
|
173
|
+
readonly sinhala: "si";
|
|
174
|
+
readonly sinhalese: "si";
|
|
175
|
+
readonly slovak: "sk";
|
|
176
|
+
readonly slovenian: "sl";
|
|
177
|
+
readonly 'northern sami': "se";
|
|
178
|
+
readonly samoan: "sm";
|
|
179
|
+
readonly shona: "sn";
|
|
180
|
+
readonly sindhi: "sd";
|
|
181
|
+
readonly somali: "so";
|
|
182
|
+
readonly 'sotho, southern': "st";
|
|
183
|
+
readonly spanish: "es";
|
|
184
|
+
readonly castilian: "es";
|
|
185
|
+
readonly sardinian: "sc";
|
|
186
|
+
readonly serbian: "sr";
|
|
187
|
+
readonly swati: "ss";
|
|
188
|
+
readonly sundanese: "su";
|
|
189
|
+
readonly swahili: "sw";
|
|
190
|
+
readonly swedish: "sv";
|
|
191
|
+
readonly tahitian: "ty";
|
|
192
|
+
readonly tamil: "ta";
|
|
193
|
+
readonly tatar: "tt";
|
|
194
|
+
readonly telugu: "te";
|
|
195
|
+
readonly tajik: "tg";
|
|
196
|
+
readonly tagalog: "tl";
|
|
197
|
+
readonly thai: "th";
|
|
198
|
+
readonly tigrinya: "ti";
|
|
199
|
+
readonly tonga: "to";
|
|
200
|
+
readonly tswana: "tn";
|
|
201
|
+
readonly tsonga: "ts";
|
|
202
|
+
readonly turkmen: "tk";
|
|
203
|
+
readonly turkish: "tr";
|
|
204
|
+
readonly twi: "tw";
|
|
205
|
+
readonly uighur: "ug";
|
|
206
|
+
readonly uyghur: "ug";
|
|
207
|
+
readonly ukrainian: "uk";
|
|
208
|
+
readonly urdu: "ur";
|
|
209
|
+
readonly uzbek: "uz";
|
|
210
|
+
readonly venda: "ve";
|
|
211
|
+
readonly vietnamese: "vi";
|
|
212
|
+
readonly volapük: "vo";
|
|
213
|
+
readonly walloon: "wa";
|
|
214
|
+
readonly wolof: "wo";
|
|
215
|
+
readonly xhosa: "xh";
|
|
216
|
+
readonly yiddish: "yi";
|
|
217
|
+
readonly yoruba: "yo";
|
|
218
|
+
readonly zhuang: "za";
|
|
219
|
+
readonly chuang: "za";
|
|
220
|
+
readonly zulu: "zu";
|
|
221
|
+
};
|
|
222
|
+
export type LangType = (typeof names)[keyof typeof names];
|
|
223
|
+
export declare const translate: (textToTranslate: string, options: {
|
|
224
|
+
to: LangType;
|
|
225
|
+
from: LangType;
|
|
226
|
+
}) => string;
|
|
227
|
+
export {};
|