@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/ru-RU.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/sv-SE.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: 'Välj',
|
|
6
9
|
titleLinkTooltip: 'Gå till sida',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Lista',
|
|
17
20
|
toolbarView: 'Vy'
|
|
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: 'Lämna',
|
|
21
33
|
cancel: 'Gå tillbaka',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Visa mindre'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Avbryt'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Avbryt'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Rensa',
|
|
44
62
|
remove: 'Ta bort',
|
|
45
|
-
addMore: 'Lägg till ett till'
|
|
63
|
+
addMore: 'Lägg till ett till',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'För att förbättra ditt lösenord:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Generera ett starkt lösenord'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Ångra ändringar',
|
|
74
94
|
editButtonHint: 'Redigera värde',
|
|
75
|
-
okButtonHint: 'Spara ändringar'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Spara ändringar'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Välj fil...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '%%totalRows%% objekt totalt',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%% av %%totalRows%% objekt valda',
|
|
84
113
|
all: 'Alla',
|
|
85
114
|
allItemsOnPageSelected: 'Alla objekt på sidan har valts',
|
|
86
115
|
allItemsSelected: 'Alla objekt valda',
|
|
87
116
|
selectAllItems: 'Välj alla objekt',
|
|
88
117
|
selectAllItemsOnPage: 'Välj alla objekt på sidan',
|
|
89
|
-
deselectAll: 'Avmarkera'
|
|
118
|
+
deselectAll: 'Avmarkera',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Hittade inga objekt som matchar filtret',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Avbryt'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'av %%total%%',
|
|
101
139
|
itemsPerPage: 'Objekt per sida',
|
|
102
140
|
all: 'Alla',
|
|
103
141
|
total: 'Sida %%current%% av %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Stäng',
|
|
107
148
|
cancelButton: 'Avbryt'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Inga alternativ',
|
|
111
158
|
placeholder: 'Välj...'
|
|
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%% av %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Stäng grupp'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/th-TH.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/tl-PH.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: 'Select',
|
|
6
9
|
titleLinkTooltip: 'Go to page',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'List',
|
|
17
20
|
toolbarView: 'View'
|
|
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: 'Leave',
|
|
21
33
|
cancel: 'Go Back',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Show less'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Cancel'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Cancel'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Clear',
|
|
44
62
|
remove: 'Remove',
|
|
45
|
-
addMore: 'Add one more'
|
|
63
|
+
addMore: 'Add one more',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'To improve your password:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Generate a strong password'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Discard changes',
|
|
74
94
|
editButtonHint: 'Edit value',
|
|
75
|
-
okButtonHint: 'Save changes'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Save changes'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Choose file...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '%%totalRows%% items total',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%% of %%totalRows%% items selected',
|
|
84
113
|
all: 'All',
|
|
85
114
|
allItemsOnPageSelected: 'All items on the page selected',
|
|
86
115
|
allItemsSelected: 'All items selected',
|
|
87
116
|
selectAllItems: 'Select all items',
|
|
88
117
|
selectAllItemsOnPage: 'Select all items on the page',
|
|
89
|
-
deselectAll: 'Deselect'
|
|
118
|
+
deselectAll: 'Deselect',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Could not find any items matching the filter',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Cancel'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'of %%total%%',
|
|
101
139
|
itemsPerPage: 'Items per page',
|
|
102
140
|
all: 'All',
|
|
103
141
|
total: 'Page %%current%% of %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Close',
|
|
107
148
|
cancelButton: 'Cancel'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'No options',
|
|
111
158
|
placeholder: 'Select...'
|
|
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%% of %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Close group'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|