@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/it-IT.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: 'Seleziona',
|
|
6
9
|
titleLinkTooltip: 'Vai alla pagina',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Lista',
|
|
17
20
|
toolbarView: 'Vista'
|
|
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: 'Abbandona',
|
|
21
33
|
cancel: 'Indietro',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Mostra meno'
|
|
27
39
|
},
|
|
28
40
|
Dialog: {
|
|
41
|
+
closeButton: 'Close',
|
|
29
42
|
cancelButton: 'Annulla'
|
|
30
43
|
},
|
|
44
|
+
Drawer: {
|
|
45
|
+
backButton: 'Back',
|
|
46
|
+
closeButton: 'Close',
|
|
47
|
+
hideButton: 'Hide'
|
|
48
|
+
},
|
|
31
49
|
DrawerProgress: {
|
|
32
50
|
cancelButton: 'Annulla'
|
|
33
51
|
},
|
|
@@ -42,7 +60,8 @@ export default {
|
|
|
42
60
|
FormField: {
|
|
43
61
|
clear: 'Cancella',
|
|
44
62
|
remove: 'Rimuovi',
|
|
45
|
-
addMore: 'Aggiungine un altro'
|
|
63
|
+
addMore: 'Aggiungine un altro',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Per migliorare la password:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Genera una password efficace'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Annulla modifiche',
|
|
74
94
|
editButtonHint: 'Modifica valore',
|
|
75
|
-
okButtonHint: 'Salva modifiche'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Salva modifiche'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Scegli file...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '%%totalRows%% elementi in totale',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: 'Elementi selezionati: %%selectedRows%% di %%totalRows%%',
|
|
84
113
|
all: 'Tutti',
|
|
85
114
|
allItemsOnPageSelected: 'Tutti gli elementi della pagina sono stati selezionati',
|
|
86
115
|
allItemsSelected: 'Tutti gli elementi sono stati selezionati',
|
|
87
116
|
selectAllItems: 'Seleziona tutti gli elementi',
|
|
88
117
|
selectAllItemsOnPage: 'Seleziona tutti gli elementi sulla pagina',
|
|
89
|
-
deselectAll: 'Deseleziona'
|
|
118
|
+
deselectAll: 'Deseleziona',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Impossibile trovare elementi corrispondenti al filtro',
|
|
@@ -96,24 +130,52 @@ export default {
|
|
|
96
130
|
ListOperation: {
|
|
97
131
|
cancelButton: 'Annulla'
|
|
98
132
|
},
|
|
133
|
+
Panel: {
|
|
134
|
+
collapse: 'Collapse',
|
|
135
|
+
expand: 'Expand'
|
|
136
|
+
},
|
|
99
137
|
Pagination: {
|
|
100
138
|
totalShort: 'di %%total%%',
|
|
101
139
|
itemsPerPage: 'Elementi per pagina',
|
|
102
140
|
all: 'Tutti',
|
|
103
141
|
total: 'Pagina %%current%% di %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Chiudi',
|
|
107
148
|
cancelButton: 'Annulla'
|
|
108
149
|
},
|
|
150
|
+
Section: {
|
|
151
|
+
collapse: 'Collapse',
|
|
152
|
+
closeButton: 'Close',
|
|
153
|
+
expand: 'Expand'
|
|
154
|
+
},
|
|
109
155
|
Select: {
|
|
156
|
+
clearButton: 'Clear',
|
|
110
157
|
noOptions: 'Nessuna opzione',
|
|
111
158
|
placeholder: 'Seleziona...'
|
|
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%% di %%total%%'
|
|
115
168
|
},
|
|
169
|
+
SwitchesPanelItem: {
|
|
170
|
+
showDescription: 'Show description'
|
|
171
|
+
},
|
|
172
|
+
Tabs: {
|
|
173
|
+
closeButton: 'Close tab'
|
|
174
|
+
},
|
|
116
175
|
Toaster: {
|
|
117
176
|
closeGroup: 'Chiudi gruppo'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|
package/esm/locales/ja-JP.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: 'もう 1 つ追加'
|
|
63
|
+
addMore: 'もう 1 つ追加',
|
|
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/ko-KR.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/ms-MY.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
|
};
|
package/esm/locales/nb-NO.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: 'Velg',
|
|
6
9
|
titleLinkTooltip: 'Gå til siden',
|
|
@@ -16,6 +19,15 @@ export default {
|
|
|
16
19
|
viewList: 'Liste',
|
|
17
20
|
toolbarView: 'Vis'
|
|
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: 'Avslutt',
|
|
21
33
|
cancel: 'Gå tilbake',
|
|
@@ -26,8 +38,14 @@ export default {
|
|
|
26
38
|
showLess: 'Vis 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: 'Tøm',
|
|
44
62
|
remove: 'Fjern',
|
|
45
|
-
addMore: 'Legg til ett til'
|
|
63
|
+
addMore: 'Legg til ett til',
|
|
64
|
+
showDescription: 'Show description'
|
|
46
65
|
},
|
|
47
66
|
FormFieldPassword: {
|
|
48
67
|
improvePassword: 'Slik forbedrer du passordet:',
|
|
@@ -71,22 +90,37 @@ export default {
|
|
|
71
90
|
generateButtonHint: 'Generer et sterkt passord'
|
|
72
91
|
},
|
|
73
92
|
InPlaceEdit: {
|
|
93
|
+
cancelButtonHint: 'Forkast endringene',
|
|
74
94
|
editButtonHint: 'Endre verdi',
|
|
75
|
-
okButtonHint: 'Lagre endringene'
|
|
76
|
-
|
|
95
|
+
okButtonHint: 'Lagre endringene'
|
|
96
|
+
},
|
|
97
|
+
InputNumber: {
|
|
98
|
+
decrement: 'Decrement',
|
|
99
|
+
increment: 'Increment'
|
|
77
100
|
},
|
|
78
101
|
InputFile: {
|
|
79
102
|
browseButton: 'Velg fil...'
|
|
80
103
|
},
|
|
104
|
+
Layout: {
|
|
105
|
+
openSidebar: 'Expand sidebar',
|
|
106
|
+
closeSidebar: 'Collapse sidebar'
|
|
107
|
+
},
|
|
81
108
|
List: {
|
|
82
109
|
totalRows: '%%totalRows%% elementer totalt',
|
|
110
|
+
toggleAllRows: 'Toggle all rows',
|
|
111
|
+
toggleRow: 'Toggle row',
|
|
83
112
|
selectedRows: '%%selectedRows%% av %%totalRows%% elementer er valgt',
|
|
84
113
|
all: 'Alle',
|
|
85
114
|
allItemsOnPageSelected: 'Alle elementene på siden er valgt',
|
|
86
115
|
allItemsSelected: 'Alle elementene er valgt',
|
|
87
116
|
selectAllItems: 'Velg alle elementene',
|
|
88
117
|
selectAllItemsOnPage: 'Velg alle elementene på siden',
|
|
89
|
-
deselectAll: 'Fjern valg'
|
|
118
|
+
deselectAll: 'Fjern valg',
|
|
119
|
+
selectRow: 'Select row',
|
|
120
|
+
selectAllRows: 'Select all rows'
|
|
121
|
+
},
|
|
122
|
+
ListActions: {
|
|
123
|
+
menuButton: 'Open menu'
|
|
90
124
|
},
|
|
91
125
|
ListEmptyView: {
|
|
92
126
|
filteredTitle: 'Fant ingen elementer som stemmer med filteret',
|
|
@@ -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: 'Elementer per side',
|
|
102
140
|
all: 'Alle',
|
|
103
141
|
total: 'Side %%current%% av %%total%%'
|
|
104
142
|
},
|
|
143
|
+
Popover: {
|
|
144
|
+
closeButton: 'Close'
|
|
145
|
+
},
|
|
105
146
|
ProgressDialog: {
|
|
106
147
|
closeButton: 'Lukk',
|
|
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: 'Ingen alternativer',
|
|
111
158
|
placeholder: 'Velg...'
|
|
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: 'Lukk gruppen'
|
|
177
|
+
},
|
|
178
|
+
Toast: {
|
|
179
|
+
closeButton: 'Close'
|
|
118
180
|
}
|
|
119
181
|
};
|