@xen-orchestra/web-core 0.38.0 → 0.39.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/lib/components/card/VtsCardRowKeyValue.vue +2 -4
- package/lib/components/cell-object/VtsCellObject.vue +1 -1
- package/lib/components/console/VtsActionsConsole.vue +3 -3
- package/lib/components/console/VtsClipboardConsole.vue +4 -4
- package/lib/components/copy-button/VtsCopyButton.vue +1 -1
- package/lib/components/dropdown/VtsDropdownTitle.vue +2 -2
- package/lib/components/layout/VtsLayoutSidebar.vue +1 -1
- package/lib/components/{label-value-list/VtsLabelValueList.vue → recursive-fields/VtsRecursiveFields.vue} +4 -4
- package/lib/components/select/VtsSelect.vue +1 -1
- package/lib/components/state-hero/VtsStateHero.vue +1 -1
- package/lib/components/table/cells/VtsTruncatedTextCell.vue +1 -1
- package/lib/components/task/VtsQuickTaskButton.vue +2 -2
- package/lib/components/task/VtsQuickTaskList.vue +3 -2
- package/lib/components/task/VtsQuickTaskTabBar.vue +6 -6
- package/lib/components/ui/account-menu-button/UiAccountMenuButton.vue +1 -1
- package/lib/components/ui/breadcrumb/UiBreadcrumb.vue +1 -1
- package/lib/components/ui/character-limit/UiCharacterLimit.vue +1 -1
- package/lib/components/ui/circle-progress-bar/UiCircleProgressBar.vue +1 -1
- package/lib/components/ui/collapsible-list/UiCollapsibleList.vue +1 -1
- package/lib/components/ui/log-entry-viewer/UiLogEntryViewer.vue +1 -1
- package/lib/components/ui/query-search-bar/UiQuerySearchBar.vue +6 -6
- package/lib/components/ui/quick-task-item/UiQuickTaskItem.vue +2 -13
- package/lib/components/ui/quick-task-panel/UiQuickTaskPanel.vue +1 -1
- package/lib/components/ui/table-pagination/UiTablePagination.vue +3 -3
- package/lib/components/ui/task-item/UiTaskItem.vue +26 -16
- package/lib/components/ui/task-list/UiTaskList.vue +14 -3
- package/lib/components/ui/text-area/UiTextarea.vue +1 -1
- package/lib/components/ui/top-bottom-table/UiTopBottomTable.vue +3 -3
- package/lib/components/ui/tree-item-label/UiTreeItemLabel.vue +1 -1
- package/lib/i18n.ts +8 -4
- package/lib/layouts/CoreLayout.vue +1 -1
- package/lib/locales/cs.json +297 -294
- package/lib/locales/da.json +181 -200
- package/lib/locales/de.json +243 -251
- package/lib/locales/en.json +312 -310
- package/lib/locales/es.json +282 -300
- package/lib/locales/fa.json +239 -239
- package/lib/locales/fr.json +314 -312
- package/lib/locales/it.json +190 -186
- package/lib/locales/ja.json +23 -0
- package/lib/locales/ko.json +23 -1
- package/lib/locales/nb-NO.json +696 -0
- package/lib/locales/nl.json +296 -295
- package/lib/locales/pt-BR.json +170 -0
- package/lib/locales/ru.json +209 -206
- package/lib/locales/sv.json +244 -254
- package/lib/locales/uk.json +151 -149
- package/lib/packages/remote-resource/define-remote-resource.ts +37 -4
- package/lib/types/task.type.ts +15 -0
- package/package.json +1 -1
- package/lib/locales/nb_NO.json +0 -1
- package/lib/locales/pt_BR.json +0 -158
package/lib/i18n.ts
CHANGED
|
@@ -53,8 +53,8 @@ export const locales: Locales = {
|
|
|
53
53
|
code: 'nl',
|
|
54
54
|
name: 'Nederlands',
|
|
55
55
|
},
|
|
56
|
-
|
|
57
|
-
code: '
|
|
56
|
+
'pt-BR': {
|
|
57
|
+
code: 'pt-BR',
|
|
58
58
|
name: 'Português (Brasil)',
|
|
59
59
|
},
|
|
60
60
|
da: {
|
|
@@ -65,10 +65,14 @@ export const locales: Locales = {
|
|
|
65
65
|
code: 'ko',
|
|
66
66
|
name: '한국어',
|
|
67
67
|
},
|
|
68
|
-
|
|
69
|
-
code: '
|
|
68
|
+
'nb-NO': {
|
|
69
|
+
code: 'nb-NO',
|
|
70
70
|
name: 'Norsk (Bokmål)',
|
|
71
71
|
},
|
|
72
|
+
ja: {
|
|
73
|
+
code: 'ja',
|
|
74
|
+
name: '日本語',
|
|
75
|
+
},
|
|
72
76
|
}
|
|
73
77
|
|
|
74
78
|
export default createI18n({
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<slot name="app-logo" />
|
|
5
5
|
<UiButtonIcon
|
|
6
6
|
v-tooltip="{
|
|
7
|
-
content: sidebarStore.isExpanded ? t('
|
|
7
|
+
content: sidebarStore.isExpanded ? t('action:sidebar-close') : t('action:sidebar-open'),
|
|
8
8
|
placement: 'right',
|
|
9
9
|
}"
|
|
10
10
|
accent="brand"
|