@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.
Files changed (52) hide show
  1. package/lib/components/card/VtsCardRowKeyValue.vue +2 -4
  2. package/lib/components/cell-object/VtsCellObject.vue +1 -1
  3. package/lib/components/console/VtsActionsConsole.vue +3 -3
  4. package/lib/components/console/VtsClipboardConsole.vue +4 -4
  5. package/lib/components/copy-button/VtsCopyButton.vue +1 -1
  6. package/lib/components/dropdown/VtsDropdownTitle.vue +2 -2
  7. package/lib/components/layout/VtsLayoutSidebar.vue +1 -1
  8. package/lib/components/{label-value-list/VtsLabelValueList.vue → recursive-fields/VtsRecursiveFields.vue} +4 -4
  9. package/lib/components/select/VtsSelect.vue +1 -1
  10. package/lib/components/state-hero/VtsStateHero.vue +1 -1
  11. package/lib/components/table/cells/VtsTruncatedTextCell.vue +1 -1
  12. package/lib/components/task/VtsQuickTaskButton.vue +2 -2
  13. package/lib/components/task/VtsQuickTaskList.vue +3 -2
  14. package/lib/components/task/VtsQuickTaskTabBar.vue +6 -6
  15. package/lib/components/ui/account-menu-button/UiAccountMenuButton.vue +1 -1
  16. package/lib/components/ui/breadcrumb/UiBreadcrumb.vue +1 -1
  17. package/lib/components/ui/character-limit/UiCharacterLimit.vue +1 -1
  18. package/lib/components/ui/circle-progress-bar/UiCircleProgressBar.vue +1 -1
  19. package/lib/components/ui/collapsible-list/UiCollapsibleList.vue +1 -1
  20. package/lib/components/ui/log-entry-viewer/UiLogEntryViewer.vue +1 -1
  21. package/lib/components/ui/query-search-bar/UiQuerySearchBar.vue +6 -6
  22. package/lib/components/ui/quick-task-item/UiQuickTaskItem.vue +2 -13
  23. package/lib/components/ui/quick-task-panel/UiQuickTaskPanel.vue +1 -1
  24. package/lib/components/ui/table-pagination/UiTablePagination.vue +3 -3
  25. package/lib/components/ui/task-item/UiTaskItem.vue +26 -16
  26. package/lib/components/ui/task-list/UiTaskList.vue +14 -3
  27. package/lib/components/ui/text-area/UiTextarea.vue +1 -1
  28. package/lib/components/ui/top-bottom-table/UiTopBottomTable.vue +3 -3
  29. package/lib/components/ui/tree-item-label/UiTreeItemLabel.vue +1 -1
  30. package/lib/i18n.ts +8 -4
  31. package/lib/layouts/CoreLayout.vue +1 -1
  32. package/lib/locales/cs.json +297 -294
  33. package/lib/locales/da.json +181 -200
  34. package/lib/locales/de.json +243 -251
  35. package/lib/locales/en.json +312 -310
  36. package/lib/locales/es.json +282 -300
  37. package/lib/locales/fa.json +239 -239
  38. package/lib/locales/fr.json +314 -312
  39. package/lib/locales/it.json +190 -186
  40. package/lib/locales/ja.json +23 -0
  41. package/lib/locales/ko.json +23 -1
  42. package/lib/locales/nb-NO.json +696 -0
  43. package/lib/locales/nl.json +296 -295
  44. package/lib/locales/pt-BR.json +170 -0
  45. package/lib/locales/ru.json +209 -206
  46. package/lib/locales/sv.json +244 -254
  47. package/lib/locales/uk.json +151 -149
  48. package/lib/packages/remote-resource/define-remote-resource.ts +37 -4
  49. package/lib/types/task.type.ts +15 -0
  50. package/package.json +1 -1
  51. package/lib/locales/nb_NO.json +0 -1
  52. 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
- pt_BR: {
57
- code: 'pt_BR',
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
- nb_NO: {
69
- code: 'nb_NO',
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('core.sidebar.close') : t('core.sidebar.open'),
7
+ content: sidebarStore.isExpanded ? t('action:sidebar-close') : t('action:sidebar-open'),
8
8
  placement: 'right',
9
9
  }"
10
10
  accent="brand"