@plesk/ui-library 3.44.0 → 3.45.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/cjs/components/Action/Action.js +0 -6
- package/cjs/components/Alert/Alert.js +5 -1
- package/cjs/components/Button/Button.js +2 -0
- package/cjs/components/Carousel/Carousel.js +9 -4
- package/cjs/components/ComboBox/ComboBox.js +3 -0
- package/cjs/components/ComboBoxDropdown/ComboBoxDropdown.js +6 -2
- package/cjs/components/ComboBoxDropdown/index.js +6 -0
- package/cjs/components/Dialog/Dialog.js +3 -0
- package/cjs/components/Drawer/Header.js +5 -0
- package/cjs/components/Dropdown/Dropdown.js +3 -0
- package/cjs/components/Form/Form.js +3 -1
- package/cjs/components/FormField/FormField.js +9 -5
- package/cjs/components/FormFieldPassword/FormFieldPassword.js +9 -11
- package/cjs/components/InPlaceEdit/Editor.js +6 -7
- package/cjs/components/InPlaceEdit/InPlaceEdit.js +4 -4
- package/cjs/components/InputFile/InputFile.js +4 -4
- package/cjs/components/InputNumber/InputNumber.js +4 -0
- package/cjs/components/Layout/Layout.js +8 -0
- package/cjs/components/List/List.js +11 -6
- package/cjs/components/List/ListActions.js +5 -0
- package/cjs/components/LocaleProvider/LocaleProvider.js +13 -3
- package/cjs/components/Menu/MenuItem.js +4 -0
- package/cjs/components/Overlay/Overlay.js +1 -0
- package/cjs/components/Panel/Panel.js +3 -0
- package/cjs/components/Popover/Popover.js +3 -0
- package/cjs/components/Section/Section.js +4 -0
- package/cjs/components/Select/Select.js +12 -1
- package/cjs/components/Select/SelectControl.js +24 -7
- package/cjs/components/Spinner/Spinner.js +1 -0
- package/cjs/components/SwitchesPanelItem/SwitchesPanelItem.js +3 -0
- package/cjs/components/Tabs/SearchBar.js +7 -0
- package/cjs/components/Tabs/TabClose.js +3 -0
- package/cjs/components/Toast/Toast.js +3 -0
- package/cjs/components/Tooltip/Tooltip.js +92 -202
- package/cjs/components/Tooltip/TooltipContent.js +83 -0
- package/cjs/components/Tooltip/getA11yAttributes.js +30 -0
- package/cjs/components/Tooltip/useVirtualElement.js +35 -0
- package/cjs/components/utils.js +42 -2
- package/cjs/hooks/useEscapeKeydown.js +25 -0
- package/cjs/index.js +1 -1
- package/cjs/locales/ar.js +66 -4
- package/cjs/locales/ca-ES.js +66 -4
- package/cjs/locales/cs-CZ.js +66 -4
- package/cjs/locales/da-DK.js +66 -4
- package/cjs/locales/de-DE.js +66 -4
- package/cjs/locales/el-GR.js +66 -4
- package/cjs/locales/en-US.js +66 -4
- package/cjs/locales/es-ES.js +66 -4
- package/cjs/locales/fi-FI.js +66 -4
- package/cjs/locales/fr-FR.js +66 -4
- package/cjs/locales/he-IL.js +66 -4
- package/cjs/locales/hu-HU.js +66 -4
- package/cjs/locales/id-ID.js +66 -4
- package/cjs/locales/it-IT.js +66 -4
- package/cjs/locales/ja-JP.js +66 -4
- package/cjs/locales/ko-KR.js +66 -4
- package/cjs/locales/ms-MY.js +66 -4
- package/cjs/locales/nb-NO.js +66 -4
- package/cjs/locales/nl-NL.js +66 -4
- package/cjs/locales/pl-PL.js +66 -4
- package/cjs/locales/pt-BR.js +66 -4
- package/cjs/locales/pt-PT.js +66 -4
- package/cjs/locales/ro-RO.js +66 -4
- package/cjs/locales/ru-RU.js +66 -4
- package/cjs/locales/sv-SE.js +66 -4
- package/cjs/locales/th-TH.js +66 -4
- package/cjs/locales/tl-PH.js +66 -4
- package/cjs/locales/tr-TR.js +66 -4
- package/cjs/locales/uk-UA.js +66 -4
- package/cjs/locales/vi-VN.js +66 -4
- package/cjs/locales/zh-CN.js +66 -4
- package/cjs/locales/zh-TW.js +66 -4
- package/cjs/utils.js +2 -17
- package/dist/plesk-ui-library-rtl.css +1 -1
- package/dist/plesk-ui-library-rtl.css.map +1 -1
- package/dist/plesk-ui-library.css +1 -1
- package/dist/plesk-ui-library.css.map +1 -1
- package/dist/plesk-ui-library.js +7632 -3008
- package/dist/plesk-ui-library.js.map +1 -1
- package/dist/plesk-ui-library.min.js +6 -6
- package/dist/plesk-ui-library.min.js.map +1 -1
- package/esm/components/Action/Action.js +0 -6
- package/esm/components/Alert/Alert.js +5 -1
- package/esm/components/Button/Button.js +2 -0
- package/esm/components/Carousel/Carousel.js +9 -4
- package/esm/components/ComboBox/ComboBox.js +3 -0
- package/esm/components/ComboBoxDropdown/ComboBoxDropdown.js +4 -1
- package/esm/components/ComboBoxDropdown/index.js +1 -1
- package/esm/components/Dialog/Dialog.js +3 -0
- package/esm/components/Drawer/Header.js +5 -0
- package/esm/components/Dropdown/Dropdown.js +3 -0
- package/esm/components/Form/Form.js +3 -1
- package/esm/components/FormField/FormField.js +9 -5
- package/esm/components/FormFieldPassword/FormFieldPassword.js +9 -11
- package/esm/components/InPlaceEdit/Editor.js +6 -7
- package/esm/components/InPlaceEdit/InPlaceEdit.js +4 -4
- package/esm/components/InputFile/InputFile.js +4 -4
- package/esm/components/InputNumber/InputNumber.js +4 -0
- package/esm/components/Layout/Layout.js +8 -0
- package/esm/components/List/List.js +11 -6
- package/esm/components/List/ListActions.js +5 -0
- package/esm/components/LocaleProvider/LocaleProvider.js +11 -2
- package/esm/components/Menu/MenuItem.js +5 -1
- package/esm/components/Overlay/Overlay.js +2 -1
- package/esm/components/Panel/Panel.js +3 -0
- package/esm/components/Popover/Popover.js +3 -0
- package/esm/components/Section/Section.js +4 -0
- package/esm/components/Select/Select.js +13 -2
- package/esm/components/Select/SelectControl.js +24 -7
- package/esm/components/Spinner/Spinner.js +1 -0
- package/esm/components/SwitchesPanelItem/SwitchesPanelItem.js +3 -0
- package/esm/components/Tabs/SearchBar.js +7 -0
- package/esm/components/Tabs/TabClose.js +3 -0
- package/esm/components/Toast/Toast.js +3 -0
- package/esm/components/Tooltip/Tooltip.js +94 -204
- package/esm/components/Tooltip/TooltipContent.js +75 -0
- package/esm/components/Tooltip/getA11yAttributes.js +23 -0
- package/esm/components/Tooltip/useVirtualElement.js +28 -0
- package/esm/components/utils.js +37 -1
- package/esm/hooks/useEscapeKeydown.js +18 -0
- package/esm/index.js +1 -1
- package/esm/locales/ar.js +66 -4
- package/esm/locales/ca-ES.js +66 -4
- package/esm/locales/cs-CZ.js +66 -4
- package/esm/locales/da-DK.js +66 -4
- package/esm/locales/de-DE.js +66 -4
- package/esm/locales/el-GR.js +66 -4
- package/esm/locales/en-US.js +66 -4
- package/esm/locales/es-ES.js +66 -4
- package/esm/locales/fi-FI.js +66 -4
- package/esm/locales/fr-FR.js +66 -4
- package/esm/locales/he-IL.js +66 -4
- package/esm/locales/hu-HU.js +66 -4
- package/esm/locales/id-ID.js +66 -4
- package/esm/locales/it-IT.js +66 -4
- package/esm/locales/ja-JP.js +66 -4
- package/esm/locales/ko-KR.js +66 -4
- package/esm/locales/ms-MY.js +66 -4
- package/esm/locales/nb-NO.js +66 -4
- package/esm/locales/nl-NL.js +66 -4
- package/esm/locales/pl-PL.js +66 -4
- package/esm/locales/pt-BR.js +66 -4
- package/esm/locales/pt-PT.js +66 -4
- package/esm/locales/ro-RO.js +66 -4
- package/esm/locales/ru-RU.js +66 -4
- package/esm/locales/sv-SE.js +66 -4
- package/esm/locales/th-TH.js +66 -4
- package/esm/locales/tl-PH.js +66 -4
- package/esm/locales/tr-TR.js +66 -4
- package/esm/locales/uk-UA.js +66 -4
- package/esm/locales/vi-VN.js +66 -4
- package/esm/locales/zh-CN.js +66 -4
- package/esm/locales/zh-TW.js +66 -4
- package/esm/utils.js +0 -14
- package/package.json +7 -6
- package/styleguide/build/bundle.1771d6b7.js +2 -0
- package/styleguide/index.html +2 -2
- package/types/components/Button/Button.d.ts +6 -0
- package/types/components/ComboBoxDropdown/ComboBoxDropdown.d.ts +1 -0
- package/types/components/ComboBoxDropdown/index.d.ts +1 -1
- package/types/components/Dropdown/Dropdown.d.ts +5 -0
- package/types/components/Layout/Layout.d.ts +1 -0
- package/types/components/List/ListActions.d.ts +6 -1
- package/types/components/LocaleProvider/LocaleProvider.d.ts +3 -0
- package/types/components/Select/Select.d.ts +4 -0
- package/types/components/Select/SelectControl.d.ts +4 -0
- package/types/components/Tooltip/Tooltip.d.ts +15 -26
- package/types/components/Tooltip/TooltipContent.d.ts +11 -0
- package/types/components/Tooltip/getA11yAttributes.d.ts +19 -0
- package/types/components/Tooltip/useVirtualElement.d.ts +3 -0
- package/types/components/utils.d.ts +8 -1
- package/types/hooks/useEscapeKeydown.d.ts +1 -0
- package/types/utils.d.ts +0 -3
- package/styleguide/build/bundle.cf3363eb.js +0 -2
- /package/styleguide/build/{bundle.cf3363eb.js.LICENSE.txt → bundle.1771d6b7.js.LICENSE.txt} +0 -0
package/esm/locales/tr-TR.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
+
Alert: {
|
|
5
|
+
close: 'Close'
|
|
6
|
+
},
|
|
4
7
|
Card: {
|
|
5
8
|
select: 'Seç',
|
|
6
9
|
titleLinkTooltip: 'Sayfaya git',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Liste',
|
|
17
20
|
toolbarView: 'Görüntüleme'
|
|
18
21
|
},
|
|
22
|
+
Carousel: {
|
|
23
|
+
nextSlide: 'Next slide',
|
|
24
|
+
previousSlide: 'Previous slide',
|
|
25
|
+
viewSlide: 'View slide %%slideNumber%%'
|
|
26
|
+
},
|
|
27
|
+
ComboBox: {
|
|
28
|
+
close: 'Close',
|
|
29
|
+
open: 'Open'
|
|
30
|
+
},
|
|
19
31
|
ClosingConfirmation: {
|
|
20
32
|
confirm: 'Ayrıl',
|
|
21
33
|
cancel: 'Geri Dön',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Daha az göster'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'İptal'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'İptal'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Temizle',
|
|
44
62
|
remove: 'Sil',
|
|
45
|
-
addMore: 'Bir tane daha ekle'
|
|
63
|
+
addMore: 'Bir tane daha ekle',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Şifrenizi iyileştirmek için:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Güçlü bir şifre üretin'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Değişiklikleri iptal edin',
|
|
74
94
|
editButtonHint: 'Değeri düzenleyin',
|
|
75
|
-
okButtonHint: 'Değişiklikleri kaydedin'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Değişiklikleri kaydedin'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Dosya seç...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Toplam %%totalRows%% öğe',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%%/%%totalRows%% öğe seçildi',
|
|
84
113
|
all: 'Hepsi',
|
|
85
114
|
allItemsOnPageSelected: 'Sayfadaki öğelerin hepsi seçildi',
|
|
86
115
|
allItemsSelected: 'Öğelerin hepsi seçildi',
|
|
87
116
|
selectAllItems: 'Öğelerin hepsini seç',
|
|
88
117
|
selectAllItemsOnPage: 'Sayfadaki öğelerin hepsini seç',
|
|
89
|
-
deselectAll: 'Seçimi kaldır'
|
|
118
|
+
deselectAll: 'Seçimi kaldır',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Filtre ile eşleşen herhangi bir öğe bulunamadı',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'İptal'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: '/%%total%%',
|
|
101
139
|
itemsPerPage: 'Sayfa başına öğe',
|
|
102
140
|
all: 'Hepsi',
|
|
103
141
|
total: 'Sayfa %%current%%/%%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Kapat',
|
|
107
148
|
cancelButton: 'İptal'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Seçenek yok',
|
|
111
158
|
placeholder: 'Seç...'
|
|
112
159
|
},
|
|
160
|
+
SearchBar: {
|
|
161
|
+
clearButton: 'Clear',
|
|
162
|
+
searchButton: 'Search',
|
|
163
|
+
collapseSearch: 'Hide search input',
|
|
164
|
+
expandSearch: 'Show search input'
|
|
165
|
+
},
|
|
113
166
|
SpotPopup: {
|
|
114
167
|
total: '%%current%%/%%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Grubu kapat'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/uk-UA.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
+
Alert: {
|
|
5
|
+
close: 'Close'
|
|
6
|
+
},
|
|
4
7
|
Card: {
|
|
5
8
|
select: 'Вибрати',
|
|
6
9
|
titleLinkTooltip: 'Перейти на сторінку',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Список',
|
|
17
20
|
toolbarView: 'Вигляд'
|
|
18
21
|
},
|
|
22
|
+
Carousel: {
|
|
23
|
+
nextSlide: 'Next slide',
|
|
24
|
+
previousSlide: 'Previous slide',
|
|
25
|
+
viewSlide: 'View slide %%slideNumber%%'
|
|
26
|
+
},
|
|
27
|
+
ComboBox: {
|
|
28
|
+
close: 'Close',
|
|
29
|
+
open: 'Open'
|
|
30
|
+
},
|
|
19
31
|
ClosingConfirmation: {
|
|
20
32
|
confirm: 'Вийти',
|
|
21
33
|
cancel: 'Повернутися',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Показати менше'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Скасувати'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Скасувати'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Очистити',
|
|
44
62
|
remove: 'Видалити',
|
|
45
|
-
addMore: 'Додати ще одне'
|
|
63
|
+
addMore: 'Додати ще одне',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Для поліпшення вашого пароля:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Згенерувати надійний пароль'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Вилучити зміни',
|
|
74
94
|
editButtonHint: 'Редагувати значення',
|
|
75
|
-
okButtonHint: 'Зберегти зміни'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Зберегти зміни'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Вибрати файл...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Загалом елементів: %%totalRows%%',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: 'Вибрано елементів: %%selectedRows%% з %%totalRows%%',
|
|
84
113
|
all: 'Усі',
|
|
85
114
|
allItemsOnPageSelected: 'Вибрано всі елементи на сторінці',
|
|
86
115
|
allItemsSelected: 'Вибрано всі елементи',
|
|
87
116
|
selectAllItems: 'Вибрати всі елементи',
|
|
88
117
|
selectAllItemsOnPage: 'Вибрати всі елементи на сторінці',
|
|
89
|
-
deselectAll: 'Скасувати вибір'
|
|
118
|
+
deselectAll: 'Скасувати вибір',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Неможливо знайти елементи, що відповідають фільтру',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Скасувати'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'з %%total%%',
|
|
101
139
|
itemsPerPage: 'Елементів на сторінку',
|
|
102
140
|
all: 'Усі',
|
|
103
141
|
total: 'Сторінка %%current%% з %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Закрити',
|
|
107
148
|
cancelButton: 'Скасувати'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Порожньо',
|
|
111
158
|
placeholder: 'Вибрати...'
|
|
112
159
|
},
|
|
160
|
+
SearchBar: {
|
|
161
|
+
clearButton: 'Clear',
|
|
162
|
+
searchButton: 'Search',
|
|
163
|
+
collapseSearch: 'Hide search input',
|
|
164
|
+
expandSearch: 'Show search input'
|
|
165
|
+
},
|
|
113
166
|
SpotPopup: {
|
|
114
167
|
total: '%%current%% з %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Закрити групу'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/vi-VN.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
+
Alert: {
|
|
5
|
+
close: 'Close'
|
|
6
|
+
},
|
|
4
7
|
Card: {
|
|
5
8
|
select: 'Chọn',
|
|
6
9
|
titleLinkTooltip: 'Đi tới trang',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Danh sách',
|
|
17
20
|
toolbarView: 'Chế độ xem'
|
|
18
21
|
},
|
|
22
|
+
Carousel: {
|
|
23
|
+
nextSlide: 'Next slide',
|
|
24
|
+
previousSlide: 'Previous slide',
|
|
25
|
+
viewSlide: 'View slide %%slideNumber%%'
|
|
26
|
+
},
|
|
27
|
+
ComboBox: {
|
|
28
|
+
close: 'Close',
|
|
29
|
+
open: 'Open'
|
|
30
|
+
},
|
|
19
31
|
ClosingConfirmation: {
|
|
20
32
|
confirm: 'Rời đi',
|
|
21
33
|
cancel: 'Quay lại',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Ẩn bớt'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Hủy'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Hủy'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Xóa',
|
|
44
62
|
remove: 'Gỡ bỏ',
|
|
45
|
-
addMore: 'Thêm một mục'
|
|
63
|
+
addMore: 'Thêm một mục',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Để tăng độ khó cho mật khẩu:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Khởi tạo một mật khẩu mạnh'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Hủy bỏ thay đổi',
|
|
74
94
|
editButtonHint: 'Chỉnh sửa giá trị',
|
|
75
|
-
okButtonHint: 'Lưu thay đổi'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Lưu thay đổi'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Chọn tập tin...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Tổng cộng %%totalRows%% mục',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: 'Đã chọn %%selectedRows%% trong số %%totalRows%% mục',
|
|
84
113
|
all: 'Tất cả',
|
|
85
114
|
allItemsOnPageSelected: 'Đã chọn tất cả mục trên trang',
|
|
86
115
|
allItemsSelected: 'Đã chọn tất cả mục',
|
|
87
116
|
selectAllItems: 'Chọn tất cả mục',
|
|
88
117
|
selectAllItemsOnPage: 'Chọn tất cả mục trên trang',
|
|
89
|
-
deselectAll: 'Bỏ chọn'
|
|
118
|
+
deselectAll: 'Bỏ chọn',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Không tìm thấy mục nào phù hợp với bộ lọc',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Hủy'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'trên %%total%%',
|
|
101
139
|
itemsPerPage: 'Mục mỗi trang',
|
|
102
140
|
all: 'Tất cả',
|
|
103
141
|
total: 'Trang %%current%% trên %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Đóng',
|
|
107
148
|
cancelButton: 'Hủy'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Không có tùy chọn',
|
|
111
158
|
placeholder: 'Chọn...'
|
|
112
159
|
},
|
|
160
|
+
SearchBar: {
|
|
161
|
+
clearButton: 'Clear',
|
|
162
|
+
searchButton: 'Search',
|
|
163
|
+
collapseSearch: 'Hide search input',
|
|
164
|
+
expandSearch: 'Show search input'
|
|
165
|
+
},
|
|
113
166
|
SpotPopup: {
|
|
114
167
|
total: '%%current%% trên %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Đóng nhóm'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/zh-CN.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
+
Alert: {
|
|
5
|
+
close: 'Close'
|
|
6
|
+
},
|
|
4
7
|
Card: {
|
|
5
8
|
select: '选择',
|
|
6
9
|
titleLinkTooltip: '转到页面',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: '列表',
|
|
17
20
|
toolbarView: '视图'
|
|
18
21
|
},
|
|
22
|
+
Carousel: {
|
|
23
|
+
nextSlide: 'Next slide',
|
|
24
|
+
previousSlide: 'Previous slide',
|
|
25
|
+
viewSlide: 'View slide %%slideNumber%%'
|
|
26
|
+
},
|
|
27
|
+
ComboBox: {
|
|
28
|
+
close: 'Close',
|
|
29
|
+
open: 'Open'
|
|
30
|
+
},
|
|
19
31
|
ClosingConfirmation: {
|
|
20
32
|
confirm: '离开',
|
|
21
33
|
cancel: '返回',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: '显示更少'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: '取消'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: '取消'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: '清除',
|
|
44
62
|
remove: '移除',
|
|
45
|
-
addMore: '再添加一个'
|
|
63
|
+
addMore: '再添加一个',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: '若要提升密码强度:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: '生成一个高强度密码'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: '取消修改',
|
|
74
94
|
editButtonHint: '编辑数值',
|
|
75
|
-
okButtonHint: '保存更改'
|
|
76
|
-
|
|
95
|
+
okButtonHint: '保存更改'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: '选择文件...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '共计 %%totalRows%% 个项目',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '已选定 %%selectedRows%%(共计: %%totalRows%%)个项目',
|
|
84
113
|
all: '所有',
|
|
85
114
|
allItemsOnPageSelected: '已选定页面上的所有项目',
|
|
86
115
|
allItemsSelected: '已选定所有项目',
|
|
87
116
|
selectAllItems: '所选所有项目',
|
|
88
117
|
selectAllItemsOnPage: '选择页面上的所有项目',
|
|
89
|
-
deselectAll: '取消选定'
|
|
118
|
+
deselectAll: '取消选定',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: '找不到匹配该过滤器的任何项目',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: '取消'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: '%%total%%',
|
|
101
139
|
itemsPerPage: '每页的项目',
|
|
102
140
|
all: '所有',
|
|
103
141
|
total: '第 %%current%% 页(共计 %%total%% 页)'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: '关闭',
|
|
107
148
|
cancelButton: '取消'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: '无选项',
|
|
111
158
|
placeholder: '选择...'
|
|
112
159
|
},
|
|
160
|
+
SearchBar: {
|
|
161
|
+
clearButton: 'Clear',
|
|
162
|
+
searchButton: 'Search',
|
|
163
|
+
collapseSearch: 'Hide search input',
|
|
164
|
+
expandSearch: 'Show search input'
|
|
165
|
+
},
|
|
113
166
|
SpotPopup: {
|
|
114
167
|
total: '%%current%%(共计 %%total%%)'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: '关闭群组'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/zh-TW.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
+
Alert: {
|
|
5
|
+
close: 'Close'
|
|
6
|
+
},
|
|
4
7
|
Card: {
|
|
5
8
|
select: '選擇',
|
|
6
9
|
titleLinkTooltip: '前往頁面',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: '清單',
|
|
17
20
|
toolbarView: '查看'
|
|
18
21
|
},
|
|
22
|
+
Carousel: {
|
|
23
|
+
nextSlide: 'Next slide',
|
|
24
|
+
previousSlide: 'Previous slide',
|
|
25
|
+
viewSlide: 'View slide %%slideNumber%%'
|
|
26
|
+
},
|
|
27
|
+
ComboBox: {
|
|
28
|
+
close: 'Close',
|
|
29
|
+
open: 'Open'
|
|
30
|
+
},
|
|
19
31
|
ClosingConfirmation: {
|
|
20
32
|
confirm: '離開',
|
|
21
33
|
cancel: '返回',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: '顯示更少'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: '取消'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: '取消'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: '清除',
|
|
44
62
|
remove: '移除',
|
|
45
|
-
addMore: '再新增一個'
|
|
63
|
+
addMore: '再新增一個',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: '若要提升密碼強度:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: '生成強的密碼'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: '放棄變更',
|
|
74
94
|
editButtonHint: '編輯數值',
|
|
75
|
-
okButtonHint: '儲存變更'
|
|
76
|
-
|
|
95
|
+
okButtonHint: '儲存變更'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: '選擇檔案……'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '共計 %%totalRows%% 個項目',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '已選定 %%selectedRows%%(共計: %%totalRows%%)個項目',
|
|
84
113
|
all: '全部',
|
|
85
114
|
allItemsOnPageSelected: '已選擇頁面上所有的項目',
|
|
86
115
|
allItemsSelected: '已選擇所有項目',
|
|
87
116
|
selectAllItems: '選擇所有項目',
|
|
88
117
|
selectAllItemsOnPage: '選擇頁面上所有的項目',
|
|
89
|
-
deselectAll: '取消選擇'
|
|
118
|
+
deselectAll: '取消選擇',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: '找不到符合篩檢程式的任何項目',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: '取消'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: '共 %%total%% 項',
|
|
101
139
|
itemsPerPage: '每頁的項目',
|
|
102
140
|
all: '全部',
|
|
103
141
|
total: '第 %%current%% 頁,共 %%total%% 頁'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: '關閉',
|
|
107
148
|
cancelButton: '取消'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: '無選項',
|
|
111
158
|
placeholder: '選擇……'
|
|
112
159
|
},
|
|
160
|
+
SearchBar: {
|
|
161
|
+
clearButton: 'Clear',
|
|
162
|
+
searchButton: 'Search',
|
|
163
|
+
collapseSearch: 'Hide search input',
|
|
164
|
+
expandSearch: 'Show search input'
|
|
165
|
+
},
|
|
113
166
|
SpotPopup: {
|
|
114
167
|
total: '%%current%%(共計 %%total%%)'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: '關閉群組'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|