@webitel/ui-sdk 26.8.15 → 26.8.17
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/en/en.js +3 -2
- package/src/locale/es/es.js +3 -2
- package/src/locale/kz/kz.js +3 -2
- package/src/locale/pl/pl.js +3 -2
- package/src/locale/ro/ro.js +3 -2
- package/src/locale/ru/ru.js +3 -2
- package/src/locale/uk/uk.js +3 -2
- package/src/locale/uz/uz.js +3 -2
- package/src/locale/vi/vi.js +3 -2
- package/types/.tsbuildinfo +1 -1
- package/types/locale/en/en.d.ts +1 -0
- package/types/locale/es/es.d.ts +5 -3
- package/types/locale/i18n.d.ts +9 -0
- package/types/locale/index.d.ts +9 -0
- package/types/locale/kz/kz.d.ts +5 -3
- package/types/locale/pl/pl.d.ts +5 -3
- package/types/locale/ro/ro.d.ts +5 -3
- package/types/locale/ru/ru.d.ts +5 -3
- package/types/locale/uk/uk.d.ts +5 -3
- package/types/locale/uz/uz.d.ts +5 -3
- package/types/locale/vi/vi.d.ts +5 -3
package/package.json
CHANGED
package/src/locale/en/en.js
CHANGED
|
@@ -96,6 +96,7 @@ export default deepmerge(
|
|
|
96
96
|
create: 'Create',
|
|
97
97
|
update: 'Update',
|
|
98
98
|
draggable: 'Draggable',
|
|
99
|
+
empty: 'Empty',
|
|
99
100
|
unassigned: 'Unassigned',
|
|
100
101
|
showUnassigned: 'Show unassigned',
|
|
101
102
|
group: 'Group',
|
|
@@ -448,7 +449,7 @@ export default deepmerge(
|
|
|
448
449
|
requiredArrayValue: 'Array should not be empty',
|
|
449
450
|
minValue: ({ named }) => {
|
|
450
451
|
let text = 'Value cannot be less than';
|
|
451
|
-
if (named('min')) {
|
|
452
|
+
if (named('min') != null) {
|
|
452
453
|
text += ` ${named('min')}`;
|
|
453
454
|
}
|
|
454
455
|
|
|
@@ -456,7 +457,7 @@ export default deepmerge(
|
|
|
456
457
|
},
|
|
457
458
|
maxValue: ({ named }) => {
|
|
458
459
|
let text = 'Value cannot be greater than';
|
|
459
|
-
if (named('max')) {
|
|
460
|
+
if (named('max') != null) {
|
|
460
461
|
text += ` ${named('max')}`;
|
|
461
462
|
}
|
|
462
463
|
return text;
|
package/src/locale/es/es.js
CHANGED
|
@@ -92,6 +92,7 @@ export default {
|
|
|
92
92
|
create: 'Crear',
|
|
93
93
|
update: 'Actualizar',
|
|
94
94
|
draggable: 'Arrastrable',
|
|
95
|
+
empty: 'Vacío',
|
|
95
96
|
unassigned: 'Sin asignar',
|
|
96
97
|
showUnassigned: 'Mostrar sin asignar',
|
|
97
98
|
group: 'Grupo',
|
|
@@ -436,14 +437,14 @@ export default {
|
|
|
436
437
|
macValidator: 'Debe parecer una MAC',
|
|
437
438
|
minValue: ({ named }) => {
|
|
438
439
|
let text = 'El valor no debe ser menor que';
|
|
439
|
-
if (named('min')) {
|
|
440
|
+
if (named('min') != null) {
|
|
440
441
|
text += ` ${named('min')}`;
|
|
441
442
|
}
|
|
442
443
|
return text;
|
|
443
444
|
},
|
|
444
445
|
maxValue: ({ named }) => {
|
|
445
446
|
let text = 'El valor no debe ser mayor que';
|
|
446
|
-
if (named('max')) {
|
|
447
|
+
if (named('max') != null) {
|
|
447
448
|
text += ` ${named('max')}`;
|
|
448
449
|
}
|
|
449
450
|
return text;
|
package/src/locale/kz/kz.js
CHANGED
|
@@ -93,6 +93,7 @@ export default {
|
|
|
93
93
|
create: 'Құру',
|
|
94
94
|
update: 'Жаңарту',
|
|
95
95
|
draggable: 'Сүйретілетін',
|
|
96
|
+
empty: 'Бос',
|
|
96
97
|
unassigned: 'Тағайындалмаған',
|
|
97
98
|
showUnassigned: 'Тағайындалмағандарды көрсету',
|
|
98
99
|
group: 'Топ',
|
|
@@ -441,14 +442,14 @@ export default {
|
|
|
441
442
|
requiredArrayValue: 'Массив бос болмауы керек',
|
|
442
443
|
minValue: ({ named }) => {
|
|
443
444
|
let text = 'Мәні кем болмауы керек';
|
|
444
|
-
if (named('min')) {
|
|
445
|
+
if (named('min') != null) {
|
|
445
446
|
text += ` ${named('min')}`;
|
|
446
447
|
}
|
|
447
448
|
return text;
|
|
448
449
|
},
|
|
449
450
|
maxValue: ({ named }) => {
|
|
450
451
|
let text = 'Мәні артық болмауы керек';
|
|
451
|
-
if (named('max')) {
|
|
452
|
+
if (named('max') != null) {
|
|
452
453
|
text += ` ${named('max')}`;
|
|
453
454
|
}
|
|
454
455
|
return text;
|
package/src/locale/pl/pl.js
CHANGED
|
@@ -93,6 +93,7 @@ export default {
|
|
|
93
93
|
create: 'Utwórz',
|
|
94
94
|
update: 'Aktualizuj',
|
|
95
95
|
draggable: 'Przeciągalne',
|
|
96
|
+
empty: 'Puste',
|
|
96
97
|
unassigned: 'Nieprzypisane',
|
|
97
98
|
showUnassigned: 'Pokaż nieprzypisane',
|
|
98
99
|
group: 'Grupa',
|
|
@@ -439,14 +440,14 @@ export default {
|
|
|
439
440
|
macValidator: 'Powinno wyglądać jak MAC',
|
|
440
441
|
minValue: ({ named }) => {
|
|
441
442
|
let text = 'Wartość nie powinna być mniejsza niż';
|
|
442
|
-
if (named('min')) {
|
|
443
|
+
if (named('min') != null) {
|
|
443
444
|
text += ` ${named('min')}`;
|
|
444
445
|
}
|
|
445
446
|
return text;
|
|
446
447
|
},
|
|
447
448
|
maxValue: ({ named }) => {
|
|
448
449
|
let text = 'Wartość nie powinna być większa niż';
|
|
449
|
-
if (named('max')) {
|
|
450
|
+
if (named('max') != null) {
|
|
450
451
|
text += ` ${named('max')}`;
|
|
451
452
|
}
|
|
452
453
|
return text;
|
package/src/locale/ro/ro.js
CHANGED
|
@@ -93,6 +93,7 @@ export default {
|
|
|
93
93
|
create: 'Creează',
|
|
94
94
|
update: 'Actualizează',
|
|
95
95
|
draggable: 'Tragabil',
|
|
96
|
+
empty: 'Gol',
|
|
96
97
|
unassigned: 'Neatribuit',
|
|
97
98
|
showUnassigned: 'Arată neatribuite',
|
|
98
99
|
group: 'Grup',
|
|
@@ -443,14 +444,14 @@ export default {
|
|
|
443
444
|
macValidator: 'Trebuie să arate ca un MAC',
|
|
444
445
|
minValue: ({ named }) => {
|
|
445
446
|
let text = 'Valoarea nu trebuie să fie mai mică decât';
|
|
446
|
-
if (named('min')) {
|
|
447
|
+
if (named('min') != null) {
|
|
447
448
|
text += ` ${named('min')}`;
|
|
448
449
|
}
|
|
449
450
|
return text;
|
|
450
451
|
},
|
|
451
452
|
maxValue: ({ named }) => {
|
|
452
453
|
let text = 'Valoarea nu trebuie să fie mai mare decât';
|
|
453
|
-
if (named('max')) {
|
|
454
|
+
if (named('max') != null) {
|
|
454
455
|
text += ` ${named('max')}`;
|
|
455
456
|
}
|
|
456
457
|
return text;
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -89,6 +89,7 @@ export default {
|
|
|
89
89
|
create: 'Создать',
|
|
90
90
|
update: 'Обновить',
|
|
91
91
|
draggable: 'Перетащить',
|
|
92
|
+
empty: 'Пустые',
|
|
92
93
|
unassigned: 'Неназначенные',
|
|
93
94
|
showUnassigned: 'Показать неназначенные',
|
|
94
95
|
group: 'Группа',
|
|
@@ -438,14 +439,14 @@ export default {
|
|
|
438
439
|
macValidator: 'Необходимо ввести MAC-адрес',
|
|
439
440
|
minValue: ({ named }) => {
|
|
440
441
|
let text = 'Значение должно быть не меньше';
|
|
441
|
-
if (named('min')) {
|
|
442
|
+
if (named('min') != null) {
|
|
442
443
|
text += ` ${named('min')}`;
|
|
443
444
|
}
|
|
444
445
|
return text;
|
|
445
446
|
},
|
|
446
447
|
maxValue: ({ named }) => {
|
|
447
448
|
let text = 'Значение должно быть не больше';
|
|
448
|
-
if (named('max')) {
|
|
449
|
+
if (named('max') != null) {
|
|
449
450
|
text += ` ${named('max')}`;
|
|
450
451
|
}
|
|
451
452
|
return text;
|
package/src/locale/uk/uk.js
CHANGED
|
@@ -89,6 +89,7 @@ export default {
|
|
|
89
89
|
create: 'Створити',
|
|
90
90
|
update: 'Оновити',
|
|
91
91
|
draggable: 'Перетягнути',
|
|
92
|
+
empty: 'Порожні',
|
|
92
93
|
unassigned: 'Непризначені',
|
|
93
94
|
showUnassigned: 'Показати непризначені',
|
|
94
95
|
group: 'Група',
|
|
@@ -437,14 +438,14 @@ export default {
|
|
|
437
438
|
macValidator: 'Необхідно ввести MAC-адрес',
|
|
438
439
|
minValue: ({ named }) => {
|
|
439
440
|
let text = 'Значення повинно бути не менше';
|
|
440
|
-
if (named('min')) {
|
|
441
|
+
if (named('min') != null) {
|
|
441
442
|
text += ` ${named('min')}`;
|
|
442
443
|
}
|
|
443
444
|
return text;
|
|
444
445
|
},
|
|
445
446
|
maxValue: ({ named }) => {
|
|
446
447
|
let text = 'Значення повинно бути не більше';
|
|
447
|
-
if (named('max')) {
|
|
448
|
+
if (named('max') != null) {
|
|
448
449
|
text += ` ${named('max')}`;
|
|
449
450
|
}
|
|
450
451
|
return text;
|
package/src/locale/uz/uz.js
CHANGED
|
@@ -93,6 +93,7 @@ export default {
|
|
|
93
93
|
create: 'Yaratish',
|
|
94
94
|
update: 'Yangilash',
|
|
95
95
|
draggable: 'Sudraluvchi',
|
|
96
|
+
empty: "Bo'sh",
|
|
96
97
|
unassigned: 'Tayinlanmagan',
|
|
97
98
|
showUnassigned: "Tayinlanmaganlarni ko'rsatish",
|
|
98
99
|
group: 'Guruh',
|
|
@@ -443,14 +444,14 @@ export default {
|
|
|
443
444
|
macValidator: "MAC ko'rinishida bo'lishi kerak",
|
|
444
445
|
minValue: ({ named }) => {
|
|
445
446
|
let text = "Qiymat dan kam bo'lmasligi kerak";
|
|
446
|
-
if (named('min')) {
|
|
447
|
+
if (named('min') != null) {
|
|
447
448
|
text += ` ${named('min')}`;
|
|
448
449
|
}
|
|
449
450
|
return text;
|
|
450
451
|
},
|
|
451
452
|
maxValue: ({ named }) => {
|
|
452
453
|
let text = "Qiymat dan ko'p bo'lmasligi kerak";
|
|
453
|
-
if (named('max')) {
|
|
454
|
+
if (named('max') != null) {
|
|
454
455
|
text += ` ${named('max')}`;
|
|
455
456
|
}
|
|
456
457
|
return text;
|
package/src/locale/vi/vi.js
CHANGED
|
@@ -93,6 +93,7 @@ export default {
|
|
|
93
93
|
create: 'Tạo mới',
|
|
94
94
|
update: 'Cập nhật',
|
|
95
95
|
draggable: 'Có thể kéo thả',
|
|
96
|
+
empty: 'Trống',
|
|
96
97
|
unassigned: 'Chưa được gán',
|
|
97
98
|
showUnassigned: 'Hiển thị chưa được gán',
|
|
98
99
|
group: 'Nhóm',
|
|
@@ -443,14 +444,14 @@ export default {
|
|
|
443
444
|
macValidator: 'Phải là MAC',
|
|
444
445
|
minValue: ({ named }) => {
|
|
445
446
|
let text = 'Giá trị không được nhỏ hơn';
|
|
446
|
-
if (named('min')) {
|
|
447
|
+
if (named('min') != null) {
|
|
447
448
|
text += ` ${named('min')}`;
|
|
448
449
|
}
|
|
449
450
|
return text;
|
|
450
451
|
},
|
|
451
452
|
maxValue: ({ named }) => {
|
|
452
453
|
let text = 'Giá trị không được lớn hơn';
|
|
453
|
-
if (named('max')) {
|
|
454
|
+
if (named('max') != null) {
|
|
454
455
|
text += ` ${named('max')}`;
|
|
455
456
|
}
|
|
456
457
|
return text;
|