@cloud-ru/uikit-product-locale 2.7.2 → 2.7.3-preview-d01a0cca.0
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/dist/cjs/locales/en_GB.d.ts +9 -0
- package/dist/cjs/locales/en_GB.js +9 -0
- package/dist/cjs/locales/ru_RU.js +9 -0
- package/dist/esm/locales/en_GB.d.ts +9 -0
- package/dist/esm/locales/en_GB.js +9 -0
- package/dist/esm/locales/ru_RU.js +9 -0
- package/package.json +2 -2
- package/src/locales/en_GB.ts +9 -0
- package/src/locales/ru_RU.ts +9 -0
|
@@ -239,6 +239,15 @@ export declare const en_GB: {
|
|
|
239
239
|
placeholder: string;
|
|
240
240
|
attachFileTooltip: string;
|
|
241
241
|
};
|
|
242
|
+
FieldCode: {
|
|
243
|
+
required: string;
|
|
244
|
+
minLength: string;
|
|
245
|
+
invalidCode: string;
|
|
246
|
+
resendCodeButtons: {
|
|
247
|
+
resendCode: string;
|
|
248
|
+
resendCodeWithVia: string;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
242
251
|
};
|
|
243
252
|
Header: {
|
|
244
253
|
noDataFound: string;
|
|
@@ -236,6 +236,15 @@ exports.en_GB = {
|
|
|
236
236
|
},
|
|
237
237
|
},
|
|
238
238
|
FieldChat: { placeholder: 'New message', attachFileTooltip: 'Select file' },
|
|
239
|
+
FieldCode: {
|
|
240
|
+
required: 'Required field',
|
|
241
|
+
minLength: 'At least {{count}} characters',
|
|
242
|
+
invalidCode: 'Invalid code',
|
|
243
|
+
resendCodeButtons: {
|
|
244
|
+
resendCode: 'Get a new code',
|
|
245
|
+
resendCodeWithVia: 'Get a new code in {{timer}}',
|
|
246
|
+
},
|
|
247
|
+
},
|
|
239
248
|
},
|
|
240
249
|
Header: {
|
|
241
250
|
noDataFound: 'Nothing found',
|
|
@@ -236,6 +236,15 @@ exports.ru_RU = {
|
|
|
236
236
|
},
|
|
237
237
|
},
|
|
238
238
|
FieldChat: { placeholder: 'Новое сообщение', attachFileTooltip: 'Прикрепить файл' },
|
|
239
|
+
FieldCode: {
|
|
240
|
+
required: 'Обязательное поле',
|
|
241
|
+
minLength: 'Не менее {{count}} символов',
|
|
242
|
+
invalidCode: 'Неверный код',
|
|
243
|
+
resendCodeButtons: {
|
|
244
|
+
resendCode: 'Получить новый код',
|
|
245
|
+
resendCodeWithVia: 'Получить новый код через {{timer}}',
|
|
246
|
+
},
|
|
247
|
+
},
|
|
239
248
|
},
|
|
240
249
|
Header: {
|
|
241
250
|
noDataFound: 'Ничего не найдено',
|
|
@@ -239,6 +239,15 @@ export declare const en_GB: {
|
|
|
239
239
|
placeholder: string;
|
|
240
240
|
attachFileTooltip: string;
|
|
241
241
|
};
|
|
242
|
+
FieldCode: {
|
|
243
|
+
required: string;
|
|
244
|
+
minLength: string;
|
|
245
|
+
invalidCode: string;
|
|
246
|
+
resendCodeButtons: {
|
|
247
|
+
resendCode: string;
|
|
248
|
+
resendCodeWithVia: string;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
242
251
|
};
|
|
243
252
|
Header: {
|
|
244
253
|
noDataFound: string;
|
|
@@ -233,6 +233,15 @@ export const en_GB = {
|
|
|
233
233
|
},
|
|
234
234
|
},
|
|
235
235
|
FieldChat: { placeholder: 'New message', attachFileTooltip: 'Select file' },
|
|
236
|
+
FieldCode: {
|
|
237
|
+
required: 'Required field',
|
|
238
|
+
minLength: 'At least {{count}} characters',
|
|
239
|
+
invalidCode: 'Invalid code',
|
|
240
|
+
resendCodeButtons: {
|
|
241
|
+
resendCode: 'Get a new code',
|
|
242
|
+
resendCodeWithVia: 'Get a new code in {{timer}}',
|
|
243
|
+
},
|
|
244
|
+
},
|
|
236
245
|
},
|
|
237
246
|
Header: {
|
|
238
247
|
noDataFound: 'Nothing found',
|
|
@@ -233,6 +233,15 @@ export const ru_RU = {
|
|
|
233
233
|
},
|
|
234
234
|
},
|
|
235
235
|
FieldChat: { placeholder: 'Новое сообщение', attachFileTooltip: 'Прикрепить файл' },
|
|
236
|
+
FieldCode: {
|
|
237
|
+
required: 'Обязательное поле',
|
|
238
|
+
minLength: 'Не менее {{count}} символов',
|
|
239
|
+
invalidCode: 'Неверный код',
|
|
240
|
+
resendCodeButtons: {
|
|
241
|
+
resendCode: 'Получить новый код',
|
|
242
|
+
resendCodeWithVia: 'Получить новый код через {{timer}}',
|
|
243
|
+
},
|
|
244
|
+
},
|
|
236
245
|
},
|
|
237
246
|
Header: {
|
|
238
247
|
noDataFound: 'Ничего не найдено',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-locale",
|
|
3
3
|
"title": "Locale",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.3-preview-d01a0cca.0",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/lodash": "4.17.24"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "e5c9c7143ce8fc668e576438ce7316be0b931d48"
|
|
47
47
|
}
|
package/src/locales/en_GB.ts
CHANGED
|
@@ -235,6 +235,15 @@ export const en_GB = {
|
|
|
235
235
|
},
|
|
236
236
|
},
|
|
237
237
|
FieldChat: { placeholder: 'New message', attachFileTooltip: 'Select file' },
|
|
238
|
+
FieldCode: {
|
|
239
|
+
required: 'Required field',
|
|
240
|
+
minLength: 'At least {{count}} characters',
|
|
241
|
+
invalidCode: 'Invalid code',
|
|
242
|
+
resendCodeButtons: {
|
|
243
|
+
resendCode: 'Get a new code',
|
|
244
|
+
resendCodeWithVia: 'Get a new code in {{timer}}',
|
|
245
|
+
},
|
|
246
|
+
},
|
|
238
247
|
},
|
|
239
248
|
Header: {
|
|
240
249
|
noDataFound: 'Nothing found',
|
package/src/locales/ru_RU.ts
CHANGED
|
@@ -236,6 +236,15 @@ export const ru_RU: typeof en_GB = {
|
|
|
236
236
|
},
|
|
237
237
|
},
|
|
238
238
|
FieldChat: { placeholder: 'Новое сообщение', attachFileTooltip: 'Прикрепить файл' },
|
|
239
|
+
FieldCode: {
|
|
240
|
+
required: 'Обязательное поле',
|
|
241
|
+
minLength: 'Не менее {{count}} символов',
|
|
242
|
+
invalidCode: 'Неверный код',
|
|
243
|
+
resendCodeButtons: {
|
|
244
|
+
resendCode: 'Получить новый код',
|
|
245
|
+
resendCodeWithVia: 'Получить новый код через {{timer}}',
|
|
246
|
+
},
|
|
247
|
+
},
|
|
239
248
|
},
|
|
240
249
|
Header: {
|
|
241
250
|
noDataFound: 'Ничего не найдено',
|