@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/nl-NL.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: 'Selecteren',
|
|
6
9
|
titleLinkTooltip: 'Ga naar pagina',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Lijst',
|
|
17
20
|
toolbarView: 'Weergave'
|
|
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: 'Toch sluiten',
|
|
21
33
|
cancel: 'Terug',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Minder weergeven'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Annuleren'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Annuleren'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Leeg maken',
|
|
44
62
|
remove: 'Verwijderen',
|
|
45
|
-
addMore: 'Extra toevoegen'
|
|
63
|
+
addMore: 'Extra toevoegen',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Zo maakt u uw wachtwoord sterker:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Sterk wachtwoord genereren'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Wijzigingen ongedaan maken',
|
|
74
94
|
editButtonHint: 'Waarde bewerken',
|
|
75
|
-
okButtonHint: 'Wijzigingen opslaan'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Wijzigingen opslaan'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Bestand selecteren...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '%%totalRows%% items in totaal',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%% van %%totalRows%% items geselecteerd',
|
|
84
113
|
all: 'Alle',
|
|
85
114
|
allItemsOnPageSelected: 'Alle items op de pagina geselecteerd',
|
|
86
115
|
allItemsSelected: 'Alle items geselecteerd',
|
|
87
116
|
selectAllItems: 'Alle items selecteren',
|
|
88
117
|
selectAllItemsOnPage: 'Alle items op de pagina selecteren',
|
|
89
|
-
deselectAll: 'Selectie opheffen'
|
|
118
|
+
deselectAll: 'Selectie opheffen',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Kan niets vinden dat voldoet aan de filter-criteria',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Annuleren'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'van %%total%%',
|
|
101
139
|
itemsPerPage: 'Items per pagina',
|
|
102
140
|
all: 'Alles',
|
|
103
141
|
total: 'Pagina %%current%% van %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Sluiten',
|
|
107
148
|
cancelButton: 'Annuleren'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Geen opties',
|
|
111
158
|
placeholder: 'Selecteren...'
|
|
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%% van %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Groep sluiten'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/pl-PL.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: 'Wybierz',
|
|
6
9
|
titleLinkTooltip: 'Przejdź do strony',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Lista',
|
|
17
20
|
toolbarView: 'Widok'
|
|
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: 'Wyjdź',
|
|
21
33
|
cancel: 'Wróć',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Pokaż mniej'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Anuluj'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Anuluj'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Wyczyść',
|
|
44
62
|
remove: 'Usuń',
|
|
45
|
-
addMore: 'Dodaj jeszcze jeden'
|
|
63
|
+
addMore: 'Dodaj jeszcze jeden',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Aby ulepszyć Twoje hasło:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Wygeneruj silne hasło'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Odrzuć zmiany',
|
|
74
94
|
editButtonHint: 'Edytuj wartość',
|
|
75
|
-
okButtonHint: 'Zapisz zmiany'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Zapisz zmiany'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Wybierz plik...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Łącznie %%totalRows%% elementów',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: 'Wybrano %%selectedRows%% z %%totalRows%% elementów',
|
|
84
113
|
all: 'Wszystkie',
|
|
85
114
|
allItemsOnPageSelected: 'Wybrano wszystkie elementy na stronie',
|
|
86
115
|
allItemsSelected: 'Wybrano wszystkie elementy',
|
|
87
116
|
selectAllItems: 'Wybierz wszystkie elementy',
|
|
88
117
|
selectAllItemsOnPage: 'Wybierz wszystkie elementy na stronie',
|
|
89
|
-
deselectAll: 'Odznacz'
|
|
118
|
+
deselectAll: 'Odznacz',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Nie można znaleźć żadnych elementów pasujących do filtra',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Anuluj'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'z %%total%%',
|
|
101
139
|
itemsPerPage: 'Elementów na stronę',
|
|
102
140
|
all: 'Wszystkie',
|
|
103
141
|
total: 'Strona %%current%% z %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Zamknij',
|
|
107
148
|
cancelButton: 'Anuluj'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Brak opcji',
|
|
111
158
|
placeholder: 'Wybierz...'
|
|
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%% z %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Zamknij grupę'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/pt-BR.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: 'Selecione',
|
|
6
9
|
titleLinkTooltip: 'Ir para a página',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Lista',
|
|
17
20
|
toolbarView: 'Visualizar'
|
|
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: 'Deixar',
|
|
21
33
|
cancel: 'Voltar',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Mostrar menos'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Cancelar'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Cancelar'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Limpar',
|
|
44
62
|
remove: 'Remover',
|
|
45
|
-
addMore: 'Adicionar mais um'
|
|
63
|
+
addMore: 'Adicionar mais um',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Para melhorar sua senha:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Gere uma senha forte'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Descartar as alterações',
|
|
74
94
|
editButtonHint: 'Editar valor',
|
|
75
|
-
okButtonHint: 'Salvar alterações'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Salvar alterações'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Escolher arquivo...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Total de %%totalRows%% itens',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%% de %%totalRows%% itens selecionados',
|
|
84
113
|
all: 'Todos',
|
|
85
114
|
allItemsOnPageSelected: 'Todos os itens na página selecionados',
|
|
86
115
|
allItemsSelected: 'Todos os itens selecionados',
|
|
87
116
|
selectAllItems: 'Selecionar todos os itens',
|
|
88
117
|
selectAllItemsOnPage: 'Selecione todos os itens na página',
|
|
89
|
-
deselectAll: 'Desmarcar'
|
|
118
|
+
deselectAll: 'Desmarcar',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Não foi possível encontrar nenhum item que corresponda ao filtro',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Cancelar'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'de %%total%%',
|
|
101
139
|
itemsPerPage: 'Itens por página',
|
|
102
140
|
all: 'Todas',
|
|
103
141
|
total: 'Página %%current%% de %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Fechar',
|
|
107
148
|
cancelButton: 'Cancelar'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Nenhima opção',
|
|
111
158
|
placeholder: 'Selecione...'
|
|
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%% de %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Grupo fechado'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/pt-PT.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: 'Selecionar',
|
|
6
9
|
titleLinkTooltip: 'Ir para a página',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Lista',
|
|
17
20
|
toolbarView: 'Visualizar'
|
|
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: 'Sair',
|
|
21
33
|
cancel: 'Retroceder',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Mostrar menos'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Cancelar'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Cancelar'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Limpar',
|
|
44
62
|
remove: 'Remover',
|
|
45
|
-
addMore: 'Adicionar mais um'
|
|
63
|
+
addMore: 'Adicionar mais um',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Para melhorar a sua palavra-passe:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Gerar uma palavra-passe mais forte'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Rejeitar as alterações',
|
|
74
94
|
editButtonHint: 'Editar o valor',
|
|
75
|
-
okButtonHint: 'Guardar as alterações'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Guardar as alterações'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Escolha o ficheiro...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Total de %%totalRows%% artigos',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%% de %%totalRows%% artigos selecionados',
|
|
84
113
|
all: 'Todos',
|
|
85
114
|
allItemsOnPageSelected: 'Todos os artigos da página foram selecionados',
|
|
86
115
|
allItemsSelected: 'Todos os artigos selecionados',
|
|
87
116
|
selectAllItems: 'Selecionar todos os artigos',
|
|
88
117
|
selectAllItemsOnPage: 'Selecionar todos os artigos da página',
|
|
89
|
-
deselectAll: 'Anular seleção'
|
|
118
|
+
deselectAll: 'Anular seleção',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Não foi possível encontrar artigos correspondentes ao filtro',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Cancelar'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'de %%total%%',
|
|
101
139
|
itemsPerPage: 'Artigos por página',
|
|
102
140
|
all: 'Tudo',
|
|
103
141
|
total: 'Página %%current%% de %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Fechar',
|
|
107
148
|
cancelButton: 'Cancelar'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Sem opções',
|
|
111
158
|
placeholder: 'Selecione...'
|
|
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%% de %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Fechar o grupo'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/ro-RO.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: 'Selectare',
|
|
6
9
|
titleLinkTooltip: 'Salt la pagină',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Listă',
|
|
17
20
|
toolbarView: 'Vizualizare'
|
|
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: 'Ieșire',
|
|
21
33
|
cancel: 'Revenire',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Mai puține'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Anulare'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Anulare'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Golire',
|
|
44
62
|
remove: 'Ștergere',
|
|
45
|
-
addMore: 'Adăugarea unei adrese suplimentare'
|
|
63
|
+
addMore: 'Adăugarea unei adrese suplimentare',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Pentru a îmbunătăți parola:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Generarea unei parole complexe'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Renunțare la modificări',
|
|
74
94
|
editButtonHint: 'Editare valoare',
|
|
75
|
-
okButtonHint: 'Salvare modificări'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Salvare modificări'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Alegeți fișierul...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: 'Nr. total de elemente %%totalRows%%',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: 'Ați selectat %%selectedRows%% din %%totalRows%% elemente',
|
|
84
113
|
all: 'Toate',
|
|
85
114
|
allItemsOnPageSelected: 'Toate elementele din pagină sunt selectate',
|
|
86
115
|
allItemsSelected: 'Toate elementele selectate',
|
|
87
116
|
selectAllItems: 'Selectarea tuturor elementelor',
|
|
88
117
|
selectAllItemsOnPage: 'Selectarea tuturor elementelor din pagină',
|
|
89
|
-
deselectAll: 'Deselectare'
|
|
118
|
+
deselectAll: 'Deselectare',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Imposibil de găsit elemente care să se potrivească cu filtrul',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Anulare'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'din %%total%%',
|
|
101
139
|
itemsPerPage: 'Elem. pe pagină',
|
|
102
140
|
all: 'Toate',
|
|
103
141
|
total: 'Pagina %%current%% din %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Închidere',
|
|
107
148
|
cancelButton: 'Anulare'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Nicio opțiune',
|
|
111
158
|
placeholder: 'Selectați...'
|
|
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%% din %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Închidere grup'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|