@red-hat-developer-hub/backstage-plugin-global-header 1.20.0 → 1.20.1
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/CHANGELOG.md +9 -0
- package/dist/plugin.esm.js +1 -1
- package/dist/plugin.esm.js.map +1 -1
- package/dist/translations/fr.esm.js +25 -25
- package/dist/translations/fr.esm.js.map +1 -1
- package/dist/translations/index.esm.js +2 -1
- package/dist/translations/index.esm.js.map +1 -1
- package/dist/translations/it.esm.js +17 -17
- package/dist/translations/it.esm.js.map +1 -1
- package/dist/translations/ja.esm.js +43 -0
- package/dist/translations/ja.esm.js.map +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @red-hat-developer-hub/backstage-plugin-global-header
|
|
2
2
|
|
|
3
|
+
## 1.20.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 350a081: Updated dependency `@red-hat-developer-hub/backstage-plugin-theme` to `^0.12.0`.
|
|
8
|
+
- 322c6ad: Updated dependency `@scalprum/react-core` to `0.11.1`.
|
|
9
|
+
Updated dependency `@red-hat-developer-hub/backstage-plugin-theme` to `^0.11.0`.
|
|
10
|
+
- f74564d: Added 'ja' i18n support and updated 'it' and 'fr' translation strings.
|
|
11
|
+
|
|
3
12
|
## 1.20.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/dist/plugin.esm.js
CHANGED
|
@@ -50,7 +50,7 @@ import { globalHeaderTranslationRef } from './translations/ref.esm.js';
|
|
|
50
50
|
const globalHeaderPlugin = createPlugin({
|
|
51
51
|
id: "global-header",
|
|
52
52
|
__experimentalTranslations: {
|
|
53
|
-
availableLanguages: ["en", "de", "es", "fr", "it"],
|
|
53
|
+
availableLanguages: ["en", "de", "es", "fr", "it", "ja"],
|
|
54
54
|
resources: [globalHeaderTranslationRef]
|
|
55
55
|
}
|
|
56
56
|
});
|
package/dist/plugin.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { ComponentType } from 'react';\n\nimport {\n createPlugin,\n createComponentExtension,\n} from '@backstage/core-plugin-api';\n\nimport { GlobalHeaderComponentProps } from './components/GlobalHeaderComponent';\nimport { MenuItemLinkProps } from './components/MenuItemLink/MenuItemLink';\nimport { SoftwareTemplatesSectionProps } from './components/HeaderDropdownComponent/SoftwareTemplatesSection';\nimport { RegisterAComponentSectionProps } from './components/HeaderDropdownComponent/RegisterAComponentSection';\nimport { CreateDropdownProps } from './components/HeaderDropdownComponent/CreateDropdown';\nimport { ProfileDropdownProps } from './components/HeaderDropdownComponent/ProfileDropdown';\nimport { SupportButtonProps } from './plugin';\nimport { HelpDropdownProps } from './components/HeaderDropdownComponent/HelpDropdown';\nimport { globalHeaderTranslationRef } from './translations';\n\nexport type { GlobalHeaderComponentProps } from './components/GlobalHeaderComponent';\n\nexport type { HeaderButtonProps } from './components/HeaderButton/HeaderButton';\nexport type { HeaderIconProps } from './components/HeaderIcon/HeaderIcon';\nexport type { HeaderIconButtonProps } from './components/HeaderIconButton/HeaderIconButton';\nexport type { CreateDropdownProps } from './components/HeaderDropdownComponent/CreateDropdown';\nexport type { ProfileDropdownProps } from './components/HeaderDropdownComponent/ProfileDropdown';\nexport type { HelpDropdownProps } from './components/HeaderDropdownComponent/HelpDropdown';\n\nexport type { MenuItemLinkProps } from './components/MenuItemLink/MenuItemLink';\nexport type { MenuItemConfig } from './components/HeaderDropdownComponent/MenuSection';\nexport type { SoftwareTemplatesSectionProps } from './components/HeaderDropdownComponent/SoftwareTemplatesSection';\nexport type { RegisterAComponentSectionProps } from './components/HeaderDropdownComponent/RegisterAComponentSection';\nexport type { DividerProps } from './components/Divider/Divider';\nexport type { SpacerProps } from './components/Spacer/Spacer';\nexport type { SupportButtonProps } from './components/SupportButton/SupportButton';\nexport type { NotificationButtonProps } from './components/NotificationButton/NotificationButton';\nexport type {\n LogoURLs,\n CompanyLogoProps,\n} from './components/CompanyLogo/CompanyLogo';\n\nexport type {\n NotificationBannerProps,\n NotificationBannerDismiss,\n} from './components/NotificationBanner';\n\nexport type {\n GlobalHeaderComponentMountPoint,\n GlobalHeaderComponentMountPointConfig,\n} from './types';\n\nexport { defaultGlobalHeaderComponentsMountPoints } from './defaultMountPoints/defaultMountPoints';\n\n/**\n * Global Header Plugin\n *\n * @public\n */\nexport const globalHeaderPlugin = createPlugin({\n id: 'global-header',\n __experimentalTranslations: {\n availableLanguages: ['en', 'de', 'es', 'fr', 'it'],\n resources: [globalHeaderTranslationRef],\n },\n} as any);\n\n/**\n * Global Header\n *\n * @public\n */\nexport const GlobalHeader = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'GlobalHeader',\n component: {\n lazy: () => import('./components/GlobalHeader').then(m => m.GlobalHeader),\n },\n }),\n);\n\n/**\n * Global Header Component\n *\n * @public\n */\nexport const GlobalHeaderComponent: ComponentType<GlobalHeaderComponentProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'GlobalHeaderComponent',\n component: {\n lazy: () =>\n import('./components/GlobalHeaderComponent').then(\n m => m.GlobalHeaderComponent,\n ),\n },\n }),\n );\n\n/**\n * @public\n */\nexport const HeaderButton = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HeaderButton',\n component: {\n lazy: () =>\n import('./components/HeaderButton/HeaderButton').then(\n m => m.HeaderButton,\n ),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const HeaderIcon = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HeaderIcon',\n component: {\n lazy: () =>\n import('./components/HeaderIcon/HeaderIcon').then(m => m.HeaderIcon),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const HeaderIconButton = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HeaderIconButton',\n component: {\n lazy: () =>\n import('./components/HeaderIconButton/HeaderIconButton').then(\n m => m.HeaderIconButton,\n ),\n },\n }),\n);\n\n/**\n * Search Component\n *\n * @public\n */\nexport const SearchComponent: ComponentType = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'SearchComponent',\n component: {\n lazy: () =>\n import('./components/SearchComponent/SearchComponent').then(\n m => m.SearchComponent,\n ),\n },\n }),\n);\n\n/**\n * Create Dropdown\n *\n * @public\n */\nexport const CreateDropdown: ComponentType<CreateDropdownProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'CreateDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/CreateDropdown').then(\n m => m.CreateDropdown,\n ),\n },\n }),\n );\n\n/**\n * Profile Dropdown\n *\n * @public\n */\nexport const ProfileDropdown: ComponentType<ProfileDropdownProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'ProfileDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/ProfileDropdown').then(\n m => m.ProfileDropdown,\n ),\n },\n }),\n );\n\n/**\n * Help Dropdown\n *\n * @public\n */\nexport const HelpDropdown: ComponentType<HelpDropdownProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HelpDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/HelpDropdown').then(\n m => m.HelpDropdown,\n ),\n },\n }),\n );\n\n/**\n * Software Templates List\n *\n * @public\n */\nexport const SoftwareTemplatesSection: ComponentType<SoftwareTemplatesSectionProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'SoftwareTemplatesSection',\n component: {\n lazy: () =>\n import(\n './components/HeaderDropdownComponent/SoftwareTemplatesSection'\n ).then(m => m.SoftwareTemplatesSection),\n },\n }),\n );\n\n/**\n * Register A Component Link\n *\n * @public\n */\nexport const RegisterAComponentSection: ComponentType<RegisterAComponentSectionProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'RegisterAComponentSection',\n component: {\n lazy: () =>\n import(\n './components/HeaderDropdownComponent/RegisterAComponentSection'\n ).then(m => m.RegisterAComponentSection),\n },\n }),\n );\n\n/**\n * Header Link\n *\n * @public\n */\nexport const MenuItemLink: ComponentType<MenuItemLinkProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'MenuItemLink',\n component: {\n lazy: () =>\n import('./components/MenuItemLink/MenuItemLink').then(\n m => m.MenuItemLink,\n ),\n },\n }),\n );\n\n/**\n * Header Logout Button\n *\n * @public\n */\nexport const LogoutButton: ComponentType = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'LogoutButton',\n component: {\n lazy: () =>\n import('./components/LogoutButton/LogoutButton').then(\n m => m.LogoutButton,\n ),\n },\n }),\n);\n\n/**\n * Spacer component that allow users to add a flexible spacing between components.\n *\n * Supports two props: `growFactor` with default 1 and `minWidth` width default 8 pixels.\n *\n * @public\n */\nexport const Spacer = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'Spacer',\n component: {\n lazy: () => import('./components/Spacer/Spacer').then(m => m.Spacer),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const Divider = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'Divider',\n component: {\n lazy: () => import('./components/Divider/Divider').then(m => m.Divider),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const SupportButton: ComponentType<SupportButtonProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'SupportButton',\n component: {\n lazy: () =>\n import('./components/SupportButton/SupportButton').then(\n m => m.SupportButton,\n ),\n },\n }),\n );\n\n/**\n * @public\n */\nexport const NotificationButton = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'NotificationButton',\n component: {\n lazy: () =>\n import('./components/NotificationButton/NotificationButton').then(\n m => m.NotificationButton,\n ),\n },\n }),\n);\n\n/**\n * NotificationBanner\n *\n * @public\n */\nexport const NotificationBanner = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'NotificationBanner',\n component: {\n lazy: () =>\n import('./components/NotificationBanner').then(\n m => m.NotificationBanner,\n ),\n },\n }),\n);\n\n/**\n * Starred Dropdown\n *\n * @public\n */\nexport const StarredDropdown = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'StarredDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/StarredDropdown').then(\n m => m.StarredDropdown,\n ),\n },\n }),\n);\n\n/**\n * Application Launcher Dropdown\n *\n * @public\n */\nexport const ApplicationLauncherDropdown = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'ApplicationLauncherDropdown',\n component: {\n lazy: () =>\n import(\n './components/HeaderDropdownComponent/ApplicationLauncherDropdown'\n ).then(m => m.ApplicationLauncherDropdown),\n },\n }),\n);\n\n/**\n * Company Logo\n *\n * @public\n */\nexport const CompanyLogo = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'CompanyLogo',\n component: {\n lazy: () =>\n import('./components/CompanyLogo/CompanyLogo').then(m => m.CompanyLogo),\n },\n }),\n);\n\n/**\n * Translation resource for the global header plugin\n *\n * @public\n */\nexport { globalHeaderTranslations } from './translations';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { ComponentType } from 'react';\n\nimport {\n createPlugin,\n createComponentExtension,\n} from '@backstage/core-plugin-api';\n\nimport { GlobalHeaderComponentProps } from './components/GlobalHeaderComponent';\nimport { MenuItemLinkProps } from './components/MenuItemLink/MenuItemLink';\nimport { SoftwareTemplatesSectionProps } from './components/HeaderDropdownComponent/SoftwareTemplatesSection';\nimport { RegisterAComponentSectionProps } from './components/HeaderDropdownComponent/RegisterAComponentSection';\nimport { CreateDropdownProps } from './components/HeaderDropdownComponent/CreateDropdown';\nimport { ProfileDropdownProps } from './components/HeaderDropdownComponent/ProfileDropdown';\nimport { SupportButtonProps } from './plugin';\nimport { HelpDropdownProps } from './components/HeaderDropdownComponent/HelpDropdown';\nimport { globalHeaderTranslationRef } from './translations';\n\nexport type { GlobalHeaderComponentProps } from './components/GlobalHeaderComponent';\n\nexport type { HeaderButtonProps } from './components/HeaderButton/HeaderButton';\nexport type { HeaderIconProps } from './components/HeaderIcon/HeaderIcon';\nexport type { HeaderIconButtonProps } from './components/HeaderIconButton/HeaderIconButton';\nexport type { CreateDropdownProps } from './components/HeaderDropdownComponent/CreateDropdown';\nexport type { ProfileDropdownProps } from './components/HeaderDropdownComponent/ProfileDropdown';\nexport type { HelpDropdownProps } from './components/HeaderDropdownComponent/HelpDropdown';\n\nexport type { MenuItemLinkProps } from './components/MenuItemLink/MenuItemLink';\nexport type { MenuItemConfig } from './components/HeaderDropdownComponent/MenuSection';\nexport type { SoftwareTemplatesSectionProps } from './components/HeaderDropdownComponent/SoftwareTemplatesSection';\nexport type { RegisterAComponentSectionProps } from './components/HeaderDropdownComponent/RegisterAComponentSection';\nexport type { DividerProps } from './components/Divider/Divider';\nexport type { SpacerProps } from './components/Spacer/Spacer';\nexport type { SupportButtonProps } from './components/SupportButton/SupportButton';\nexport type { NotificationButtonProps } from './components/NotificationButton/NotificationButton';\nexport type {\n LogoURLs,\n CompanyLogoProps,\n} from './components/CompanyLogo/CompanyLogo';\n\nexport type {\n NotificationBannerProps,\n NotificationBannerDismiss,\n} from './components/NotificationBanner';\n\nexport type {\n GlobalHeaderComponentMountPoint,\n GlobalHeaderComponentMountPointConfig,\n} from './types';\n\nexport { defaultGlobalHeaderComponentsMountPoints } from './defaultMountPoints/defaultMountPoints';\n\n/**\n * Global Header Plugin\n *\n * @public\n */\nexport const globalHeaderPlugin = createPlugin({\n id: 'global-header',\n __experimentalTranslations: {\n availableLanguages: ['en', 'de', 'es', 'fr', 'it', 'ja'],\n resources: [globalHeaderTranslationRef],\n },\n} as any);\n\n/**\n * Global Header\n *\n * @public\n */\nexport const GlobalHeader = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'GlobalHeader',\n component: {\n lazy: () => import('./components/GlobalHeader').then(m => m.GlobalHeader),\n },\n }),\n);\n\n/**\n * Global Header Component\n *\n * @public\n */\nexport const GlobalHeaderComponent: ComponentType<GlobalHeaderComponentProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'GlobalHeaderComponent',\n component: {\n lazy: () =>\n import('./components/GlobalHeaderComponent').then(\n m => m.GlobalHeaderComponent,\n ),\n },\n }),\n );\n\n/**\n * @public\n */\nexport const HeaderButton = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HeaderButton',\n component: {\n lazy: () =>\n import('./components/HeaderButton/HeaderButton').then(\n m => m.HeaderButton,\n ),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const HeaderIcon = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HeaderIcon',\n component: {\n lazy: () =>\n import('./components/HeaderIcon/HeaderIcon').then(m => m.HeaderIcon),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const HeaderIconButton = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HeaderIconButton',\n component: {\n lazy: () =>\n import('./components/HeaderIconButton/HeaderIconButton').then(\n m => m.HeaderIconButton,\n ),\n },\n }),\n);\n\n/**\n * Search Component\n *\n * @public\n */\nexport const SearchComponent: ComponentType = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'SearchComponent',\n component: {\n lazy: () =>\n import('./components/SearchComponent/SearchComponent').then(\n m => m.SearchComponent,\n ),\n },\n }),\n);\n\n/**\n * Create Dropdown\n *\n * @public\n */\nexport const CreateDropdown: ComponentType<CreateDropdownProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'CreateDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/CreateDropdown').then(\n m => m.CreateDropdown,\n ),\n },\n }),\n );\n\n/**\n * Profile Dropdown\n *\n * @public\n */\nexport const ProfileDropdown: ComponentType<ProfileDropdownProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'ProfileDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/ProfileDropdown').then(\n m => m.ProfileDropdown,\n ),\n },\n }),\n );\n\n/**\n * Help Dropdown\n *\n * @public\n */\nexport const HelpDropdown: ComponentType<HelpDropdownProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'HelpDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/HelpDropdown').then(\n m => m.HelpDropdown,\n ),\n },\n }),\n );\n\n/**\n * Software Templates List\n *\n * @public\n */\nexport const SoftwareTemplatesSection: ComponentType<SoftwareTemplatesSectionProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'SoftwareTemplatesSection',\n component: {\n lazy: () =>\n import(\n './components/HeaderDropdownComponent/SoftwareTemplatesSection'\n ).then(m => m.SoftwareTemplatesSection),\n },\n }),\n );\n\n/**\n * Register A Component Link\n *\n * @public\n */\nexport const RegisterAComponentSection: ComponentType<RegisterAComponentSectionProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'RegisterAComponentSection',\n component: {\n lazy: () =>\n import(\n './components/HeaderDropdownComponent/RegisterAComponentSection'\n ).then(m => m.RegisterAComponentSection),\n },\n }),\n );\n\n/**\n * Header Link\n *\n * @public\n */\nexport const MenuItemLink: ComponentType<MenuItemLinkProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'MenuItemLink',\n component: {\n lazy: () =>\n import('./components/MenuItemLink/MenuItemLink').then(\n m => m.MenuItemLink,\n ),\n },\n }),\n );\n\n/**\n * Header Logout Button\n *\n * @public\n */\nexport const LogoutButton: ComponentType = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'LogoutButton',\n component: {\n lazy: () =>\n import('./components/LogoutButton/LogoutButton').then(\n m => m.LogoutButton,\n ),\n },\n }),\n);\n\n/**\n * Spacer component that allow users to add a flexible spacing between components.\n *\n * Supports two props: `growFactor` with default 1 and `minWidth` width default 8 pixels.\n *\n * @public\n */\nexport const Spacer = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'Spacer',\n component: {\n lazy: () => import('./components/Spacer/Spacer').then(m => m.Spacer),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const Divider = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'Divider',\n component: {\n lazy: () => import('./components/Divider/Divider').then(m => m.Divider),\n },\n }),\n);\n\n/**\n * @public\n */\nexport const SupportButton: ComponentType<SupportButtonProps> =\n globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'SupportButton',\n component: {\n lazy: () =>\n import('./components/SupportButton/SupportButton').then(\n m => m.SupportButton,\n ),\n },\n }),\n );\n\n/**\n * @public\n */\nexport const NotificationButton = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'NotificationButton',\n component: {\n lazy: () =>\n import('./components/NotificationButton/NotificationButton').then(\n m => m.NotificationButton,\n ),\n },\n }),\n);\n\n/**\n * NotificationBanner\n *\n * @public\n */\nexport const NotificationBanner = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'NotificationBanner',\n component: {\n lazy: () =>\n import('./components/NotificationBanner').then(\n m => m.NotificationBanner,\n ),\n },\n }),\n);\n\n/**\n * Starred Dropdown\n *\n * @public\n */\nexport const StarredDropdown = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'StarredDropdown',\n component: {\n lazy: () =>\n import('./components/HeaderDropdownComponent/StarredDropdown').then(\n m => m.StarredDropdown,\n ),\n },\n }),\n);\n\n/**\n * Application Launcher Dropdown\n *\n * @public\n */\nexport const ApplicationLauncherDropdown = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'ApplicationLauncherDropdown',\n component: {\n lazy: () =>\n import(\n './components/HeaderDropdownComponent/ApplicationLauncherDropdown'\n ).then(m => m.ApplicationLauncherDropdown),\n },\n }),\n);\n\n/**\n * Company Logo\n *\n * @public\n */\nexport const CompanyLogo = globalHeaderPlugin.provide(\n createComponentExtension({\n name: 'CompanyLogo',\n component: {\n lazy: () =>\n import('./components/CompanyLogo/CompanyLogo').then(m => m.CompanyLogo),\n },\n }),\n);\n\n/**\n * Translation resource for the global header plugin\n *\n * @public\n */\nexport { globalHeaderTranslations } from './translations';\n"],"names":[],"mappings":"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"}
|
|
@@ -4,38 +4,38 @@ import { globalHeaderTranslationRef } from './ref.esm.js';
|
|
|
4
4
|
const globalHeaderTranslationFr = createTranslationMessages({
|
|
5
5
|
ref: globalHeaderTranslationRef,
|
|
6
6
|
messages: {
|
|
7
|
-
"
|
|
8
|
-
"applicationLauncher.noLinksSubtitle": "Configurez les liens d'application dans la configuration du plugin dynamique pour un acc\xE8s rapide \xE0 partir d'ici.",
|
|
9
|
-
"applicationLauncher.noLinksTitle": "Aucun lien d'application configur\xE9",
|
|
10
|
-
"applicationLauncher.rhdhLocal": "RHDH Local",
|
|
11
|
-
"applicationLauncher.sections.developerTools": "Outils de d\xE9veloppement",
|
|
12
|
-
"applicationLauncher.sections.documentation": "Documentation",
|
|
13
|
-
"applicationLauncher.tooltip": "Lanceur d'applications",
|
|
14
|
-
"create.registerComponent.subtitle": "Importez-le sur la page du catalogue",
|
|
15
|
-
"create.registerComponent.title": "Enregistrer un composant",
|
|
16
|
-
"create.templates.allTemplates": "Tous les mod\xE8les",
|
|
17
|
-
"create.templates.errorFetching": "Erreur lors de la r\xE9cup\xE9ration des mod\xE8les",
|
|
18
|
-
"create.templates.noTemplatesAvailable": "Aucun mod\xE8le disponible",
|
|
19
|
-
"create.templates.sectionTitle": "Utiliser un mod\xE8le",
|
|
20
|
-
"create.title": "Self-service",
|
|
7
|
+
"help.tooltip": "Aide",
|
|
21
8
|
"help.noSupportLinks": "Aucun lien de support",
|
|
22
9
|
"help.noSupportLinksSubtitle": "Votre administrateur doit configurer des liens d\u2019assistance.",
|
|
23
10
|
"help.quickStart": "D\xE9marrage rapide",
|
|
24
|
-
"help.supportTitle": "
|
|
25
|
-
"help.tooltip": "Aide",
|
|
26
|
-
"notifications.title": "Notifications",
|
|
27
|
-
"notifications.unsupportedDismissOption": "Option de rejet non prise en charge \xAB\xA0{{option}}\xA0\xBB, actuellement prise en charge \xAB\xA0none\xA0\xBB, \xAB\xA0session\xA0\xBB ou \xAB\xA0localstorage\xA0\xBB\xA0!",
|
|
28
|
-
"profile.myProfile": "Mon profil",
|
|
11
|
+
"help.supportTitle": "Assistance",
|
|
29
12
|
"profile.picture": "Photo de profil",
|
|
30
13
|
"profile.settings": "Param\xE8tres",
|
|
31
|
-
"profile.
|
|
32
|
-
"
|
|
33
|
-
"search.noResults": "Aucun r\xE9sultat trouv\xE9",
|
|
14
|
+
"profile.myProfile": "Mon profil",
|
|
15
|
+
"profile.signOut": "D\xE9connection",
|
|
34
16
|
"search.placeholder": "Recherche...",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
17
|
+
"search.noResults": "Aucun r\xE9sultat trouv\xE9",
|
|
18
|
+
"search.errorFetching": "Erreur lors de la r\xE9cup\xE9ration des r\xE9sultats",
|
|
19
|
+
"applicationLauncher.tooltip": "Lanceur d'applications",
|
|
20
|
+
"applicationLauncher.noLinksTitle": "Aucun lien d'application configur\xE9",
|
|
21
|
+
"applicationLauncher.noLinksSubtitle": "Configurez les liens d'application dans la configuration du plugin dynamique pour un acc\xE8s rapide \xE0 partir d'ici.",
|
|
22
|
+
"applicationLauncher.developerHub": "Centre des d\xE9veloppeurs",
|
|
23
|
+
"applicationLauncher.rhdhLocal": "RHDH Local",
|
|
24
|
+
"applicationLauncher.sections.documentation": "Documentation",
|
|
25
|
+
"applicationLauncher.sections.developerTools": "Outils de d\xE9veloppement",
|
|
26
|
+
"starred.title": "Vos articles favoris",
|
|
37
27
|
"starred.removeTooltip": "Supprimer de la liste",
|
|
38
|
-
"starred.
|
|
28
|
+
"starred.noItemsTitle": "Aucun \xE9l\xE9ment \xE9toil\xE9 pour le moment",
|
|
29
|
+
"starred.noItemsSubtitle": "Cliquez sur l'ic\xF4ne \xE9toile \xE0 c\xF4t\xE9 du nom d'une entit\xE9 pour l'enregistrer ici pour un acc\xE8s rapide.",
|
|
30
|
+
"notifications.title": "Notifications",
|
|
31
|
+
"notifications.unsupportedDismissOption": "Option de rejet non prise en charge \xAB\xA0{{option}}\xA0\xBB, actuellement prise en charge \xAB\xA0none\xA0\xBB, \xAB\xA0session\xA0\xBB ou \xAB\xA0localstorage\xA0\xBB\xA0!",
|
|
32
|
+
"create.title": "Self-service",
|
|
33
|
+
"create.registerComponent.title": "Enregistrer un composant",
|
|
34
|
+
"create.registerComponent.subtitle": "Importez-le sur la page du catalogue",
|
|
35
|
+
"create.templates.sectionTitle": "Utiliser un mod\xE8le",
|
|
36
|
+
"create.templates.allTemplates": "Tous les mod\xE8les",
|
|
37
|
+
"create.templates.errorFetching": "Erreur lors de la r\xE9cup\xE9ration des mod\xE8les",
|
|
38
|
+
"create.templates.noTemplatesAvailable": "Aucun mod\xE8le disponible"
|
|
39
39
|
}
|
|
40
40
|
});
|
|
41
41
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.esm.js","sources":["../../src/translations/fr.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\nconst globalHeaderTranslationFr = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n '
|
|
1
|
+
{"version":3,"file":"fr.esm.js","sources":["../../src/translations/fr.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\n/**\n * fr translation for plugin.global-header.\n * @public\n */\nconst globalHeaderTranslationFr = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'Aide',\n 'help.noSupportLinks': 'Aucun lien de support',\n 'help.noSupportLinksSubtitle':\n 'Votre administrateur doit configurer des liens d’assistance.',\n 'help.quickStart': 'Démarrage rapide',\n 'help.supportTitle': 'Assistance',\n 'profile.picture': 'Photo de profil',\n 'profile.settings': 'Paramètres',\n 'profile.myProfile': 'Mon profil',\n 'profile.signOut': 'Déconnection',\n 'search.placeholder': 'Recherche...',\n 'search.noResults': 'Aucun résultat trouvé',\n 'search.errorFetching': 'Erreur lors de la récupération des résultats',\n 'applicationLauncher.tooltip': \"Lanceur d'applications\",\n 'applicationLauncher.noLinksTitle': \"Aucun lien d'application configuré\",\n 'applicationLauncher.noLinksSubtitle':\n \"Configurez les liens d'application dans la configuration du plugin dynamique pour un accès rapide à partir d'ici.\",\n 'applicationLauncher.developerHub': 'Centre des développeurs',\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.documentation': 'Documentation',\n 'applicationLauncher.sections.developerTools': 'Outils de développement',\n 'starred.title': 'Vos articles favoris',\n 'starred.removeTooltip': 'Supprimer de la liste',\n 'starred.noItemsTitle': 'Aucun élément étoilé pour le moment',\n 'starred.noItemsSubtitle':\n \"Cliquez sur l'icône étoile à côté du nom d'une entité pour l'enregistrer ici pour un accès rapide.\",\n 'notifications.title': 'Notifications',\n 'notifications.unsupportedDismissOption':\n 'Option de rejet non prise en charge « {{option}} », actuellement prise en charge « none », « session » ou « localstorage » !',\n 'create.title': 'Self-service',\n 'create.registerComponent.title': 'Enregistrer un composant',\n 'create.registerComponent.subtitle': 'Importez-le sur la page du catalogue',\n 'create.templates.sectionTitle': 'Utiliser un modèle',\n 'create.templates.allTemplates': 'Tous les modèles',\n 'create.templates.errorFetching':\n 'Erreur lors de la récupération des modèles',\n 'create.templates.noTemplatesAvailable': 'Aucun modèle disponible',\n },\n});\n\nexport default globalHeaderTranslationFr;\n"],"names":[],"mappings":";;;AAuBA,MAAM,4BAA4B,yBAA0B,CAAA;AAAA,EAC1D,GAAK,EAAA,0BAAA;AAAA,EACL,QAAU,EAAA;AAAA,IACR,cAAgB,EAAA,MAAA;AAAA,IAChB,qBAAuB,EAAA,uBAAA;AAAA,IACvB,6BACE,EAAA,mEAAA;AAAA,IACF,iBAAmB,EAAA,qBAAA;AAAA,IACnB,mBAAqB,EAAA,YAAA;AAAA,IACrB,iBAAmB,EAAA,iBAAA;AAAA,IACnB,kBAAoB,EAAA,eAAA;AAAA,IACpB,mBAAqB,EAAA,YAAA;AAAA,IACrB,iBAAmB,EAAA,iBAAA;AAAA,IACnB,oBAAsB,EAAA,cAAA;AAAA,IACtB,kBAAoB,EAAA,6BAAA;AAAA,IACpB,sBAAwB,EAAA,uDAAA;AAAA,IACxB,6BAA+B,EAAA,wBAAA;AAAA,IAC/B,kCAAoC,EAAA,uCAAA;AAAA,IACpC,qCACE,EAAA,yHAAA;AAAA,IACF,kCAAoC,EAAA,4BAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,eAAA;AAAA,IAC9C,6CAA+C,EAAA,4BAAA;AAAA,IAC/C,eAAiB,EAAA,sBAAA;AAAA,IACjB,uBAAyB,EAAA,uBAAA;AAAA,IACzB,sBAAwB,EAAA,iDAAA;AAAA,IACxB,yBACE,EAAA,yHAAA;AAAA,IACF,qBAAuB,EAAA,eAAA;AAAA,IACvB,wCACE,EAAA,iLAAA;AAAA,IACF,cAAgB,EAAA,cAAA;AAAA,IAChB,gCAAkC,EAAA,0BAAA;AAAA,IAClC,mCAAqC,EAAA,sCAAA;AAAA,IACrC,+BAAiC,EAAA,uBAAA;AAAA,IACjC,+BAAiC,EAAA,qBAAA;AAAA,IACjC,gCACE,EAAA,qDAAA;AAAA,IACF,uCAAyC,EAAA;AAAA;AAE7C,CAAC;;;;"}
|
|
@@ -7,7 +7,8 @@ const globalHeaderTranslations = createTranslationResource({
|
|
|
7
7
|
de: () => import('./de.esm.js'),
|
|
8
8
|
es: () => import('./es.esm.js'),
|
|
9
9
|
fr: () => import('./fr.esm.js'),
|
|
10
|
-
it: () => import('./it.esm.js')
|
|
10
|
+
it: () => import('./it.esm.js'),
|
|
11
|
+
ja: () => import('./ja.esm.js')
|
|
11
12
|
}
|
|
12
13
|
});
|
|
13
14
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":["../../src/translations/index.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationResource } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\n/**\n * Translation resource for the global header plugin, providing support for multiple languages.\n *\n * @public\n */\nexport const globalHeaderTranslations = createTranslationResource({\n ref: globalHeaderTranslationRef,\n translations: {\n de: () => import('./de'),\n es: () => import('./es'),\n fr: () => import('./fr'),\n it: () => import('./it'),\n },\n});\n\nexport { globalHeaderTranslationRef };\n"],"names":[],"mappings":";;;AAwBO,MAAM,2BAA2B,yBAA0B,CAAA;AAAA,EAChE,GAAK,EAAA,0BAAA;AAAA,EACL,YAAc,EAAA;AAAA,IACZ,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM;AAAA;AAE3B,CAAC;;;;"}
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/translations/index.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationResource } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\n/**\n * Translation resource for the global header plugin, providing support for multiple languages.\n *\n * @public\n */\nexport const globalHeaderTranslations = createTranslationResource({\n ref: globalHeaderTranslationRef,\n translations: {\n de: () => import('./de'),\n es: () => import('./es'),\n fr: () => import('./fr'),\n it: () => import('./it'),\n ja: () => import('./ja'),\n },\n});\n\nexport { globalHeaderTranslationRef };\n"],"names":[],"mappings":";;;AAwBO,MAAM,2BAA2B,yBAA0B,CAAA;AAAA,EAChE,GAAK,EAAA,0BAAA;AAAA,EACL,YAAc,EAAA;AAAA,IACZ,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM;AAAA;AAE3B,CAAC;;;;"}
|
|
@@ -4,37 +4,37 @@ import { globalHeaderTranslationRef } from './ref.esm.js';
|
|
|
4
4
|
const globalHeaderTranslationIt = createTranslationMessages({
|
|
5
5
|
ref: globalHeaderTranslationRef,
|
|
6
6
|
messages: {
|
|
7
|
-
"help.tooltip": "
|
|
7
|
+
"help.tooltip": "Guida",
|
|
8
8
|
"help.noSupportLinks": "Nessun link di supporto",
|
|
9
|
-
"help.noSupportLinksSubtitle": "
|
|
9
|
+
"help.noSupportLinksSubtitle": "L'amministratore deve impostare i link di supporto.",
|
|
10
10
|
"help.quickStart": "Avvio rapido",
|
|
11
11
|
"help.supportTitle": "Supporto",
|
|
12
12
|
"profile.picture": "Immagine del profilo",
|
|
13
13
|
"profile.settings": "Impostazioni",
|
|
14
14
|
"profile.myProfile": "Il mio profilo",
|
|
15
|
-
"profile.signOut": "
|
|
15
|
+
"profile.signOut": "Disconnetti",
|
|
16
16
|
"search.placeholder": "Cerca...",
|
|
17
17
|
"search.noResults": "Nessun risultato trovato",
|
|
18
|
-
"search.errorFetching": "Errore
|
|
19
|
-
"applicationLauncher.tooltip": "
|
|
20
|
-
"applicationLauncher.noLinksTitle": "Nessun
|
|
21
|
-
"applicationLauncher.noLinksSubtitle": "
|
|
18
|
+
"search.errorFetching": "Errore durante il recupero dei risultati",
|
|
19
|
+
"applicationLauncher.tooltip": "Avvio applicazione",
|
|
20
|
+
"applicationLauncher.noLinksTitle": "Nessun collegamento all'applicazione configurato",
|
|
21
|
+
"applicationLauncher.noLinksSubtitle": "Configurare i collegamenti all'applicazione nella configurazione del plugin dinamico per accedere rapidamente da qui.",
|
|
22
22
|
"applicationLauncher.developerHub": "Developer Hub",
|
|
23
23
|
"applicationLauncher.rhdhLocal": "RHDH Local",
|
|
24
24
|
"applicationLauncher.sections.documentation": "Documentazione",
|
|
25
25
|
"applicationLauncher.sections.developerTools": "Strumenti per sviluppatori",
|
|
26
|
-
"starred.title": "I tuoi
|
|
27
|
-
"starred.removeTooltip": "Rimuovi
|
|
28
|
-
"starred.noItemsTitle": "
|
|
29
|
-
"starred.noItemsSubtitle": "
|
|
26
|
+
"starred.title": "I tuoi articoli contrassegnati",
|
|
27
|
+
"starred.removeTooltip": "Rimuovi dall'elenco",
|
|
28
|
+
"starred.noItemsTitle": "Non \xE8 stato ancora contrassegnato alcun articolo",
|
|
29
|
+
"starred.noItemsSubtitle": "Fare clic sull'icona a forma di stella accanto al nome di un'entit\xE0 per salvarla qui e accedervi rapidamente.",
|
|
30
30
|
"notifications.title": "Notifiche",
|
|
31
|
-
"notifications.unsupportedDismissOption": 'Opzione di
|
|
32
|
-
"create.title": "
|
|
33
|
-
"create.registerComponent.title": "
|
|
34
|
-
"create.registerComponent.subtitle": "
|
|
35
|
-
"create.templates.sectionTitle": "
|
|
31
|
+
"notifications.unsupportedDismissOption": 'Opzione di esclusione non supportata "{{option}}"; attualmente sono supportate le opzioni "none", "session" o "localstorage"!',
|
|
32
|
+
"create.title": "Self-service",
|
|
33
|
+
"create.registerComponent.title": "Registrare un componente",
|
|
34
|
+
"create.registerComponent.subtitle": "Importare il componente nella pagina del catalogo",
|
|
35
|
+
"create.templates.sectionTitle": "Utilizzare un modello",
|
|
36
36
|
"create.templates.allTemplates": "Tutti i modelli",
|
|
37
|
-
"create.templates.errorFetching": "Errore
|
|
37
|
+
"create.templates.errorFetching": "Errore durante il recupero dei modelli",
|
|
38
38
|
"create.templates.noTemplatesAvailable": "Nessun modello disponibile"
|
|
39
39
|
}
|
|
40
40
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"it.esm.js","sources":["../../src/translations/it.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\nconst globalHeaderTranslationIt = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': '
|
|
1
|
+
{"version":3,"file":"it.esm.js","sources":["../../src/translations/it.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\n/**\n * Italian translation for plugin.global-header.\n * @public\n */\nconst globalHeaderTranslationIt = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'Guida',\n 'help.noSupportLinks': 'Nessun link di supporto',\n 'help.noSupportLinksSubtitle':\n \"L'amministratore deve impostare i link di supporto.\",\n 'help.quickStart': 'Avvio rapido',\n 'help.supportTitle': 'Supporto',\n 'profile.picture': 'Immagine del profilo',\n 'profile.settings': 'Impostazioni',\n 'profile.myProfile': 'Il mio profilo',\n 'profile.signOut': 'Disconnetti',\n 'search.placeholder': 'Cerca...',\n 'search.noResults': 'Nessun risultato trovato',\n 'search.errorFetching': 'Errore durante il recupero dei risultati',\n 'applicationLauncher.tooltip': 'Avvio applicazione',\n 'applicationLauncher.noLinksTitle':\n \"Nessun collegamento all'applicazione configurato\",\n 'applicationLauncher.noLinksSubtitle':\n \"Configurare i collegamenti all'applicazione nella configurazione del plugin dinamico per accedere rapidamente da qui.\",\n 'applicationLauncher.developerHub': 'Developer Hub',\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.documentation': 'Documentazione',\n 'applicationLauncher.sections.developerTools': 'Strumenti per sviluppatori',\n 'starred.title': 'I tuoi articoli contrassegnati',\n 'starred.removeTooltip': \"Rimuovi dall'elenco\",\n 'starred.noItemsTitle': 'Non è stato ancora contrassegnato alcun articolo',\n 'starred.noItemsSubtitle':\n \"Fare clic sull'icona a forma di stella accanto al nome di un'entità per salvarla qui e accedervi rapidamente.\",\n 'notifications.title': 'Notifiche',\n 'notifications.unsupportedDismissOption':\n 'Opzione di esclusione non supportata \"{{option}}\"; attualmente sono supportate le opzioni \"none\", \"session\" o \"localstorage\"!',\n 'create.title': 'Self-service',\n 'create.registerComponent.title': 'Registrare un componente',\n 'create.registerComponent.subtitle':\n 'Importare il componente nella pagina del catalogo',\n 'create.templates.sectionTitle': 'Utilizzare un modello',\n 'create.templates.allTemplates': 'Tutti i modelli',\n 'create.templates.errorFetching': 'Errore durante il recupero dei modelli',\n 'create.templates.noTemplatesAvailable': 'Nessun modello disponibile',\n },\n});\n\nexport default globalHeaderTranslationIt;\n"],"names":[],"mappings":";;;AAuBA,MAAM,4BAA4B,yBAA0B,CAAA;AAAA,EAC1D,GAAK,EAAA,0BAAA;AAAA,EACL,QAAU,EAAA;AAAA,IACR,cAAgB,EAAA,OAAA;AAAA,IAChB,qBAAuB,EAAA,yBAAA;AAAA,IACvB,6BACE,EAAA,qDAAA;AAAA,IACF,iBAAmB,EAAA,cAAA;AAAA,IACnB,mBAAqB,EAAA,UAAA;AAAA,IACrB,iBAAmB,EAAA,sBAAA;AAAA,IACnB,kBAAoB,EAAA,cAAA;AAAA,IACpB,mBAAqB,EAAA,gBAAA;AAAA,IACrB,iBAAmB,EAAA,aAAA;AAAA,IACnB,oBAAsB,EAAA,UAAA;AAAA,IACtB,kBAAoB,EAAA,0BAAA;AAAA,IACpB,sBAAwB,EAAA,0CAAA;AAAA,IACxB,6BAA+B,EAAA,oBAAA;AAAA,IAC/B,kCACE,EAAA,kDAAA;AAAA,IACF,qCACE,EAAA,uHAAA;AAAA,IACF,kCAAoC,EAAA,eAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,gBAAA;AAAA,IAC9C,6CAA+C,EAAA,4BAAA;AAAA,IAC/C,eAAiB,EAAA,gCAAA;AAAA,IACjB,uBAAyB,EAAA,qBAAA;AAAA,IACzB,sBAAwB,EAAA,qDAAA;AAAA,IACxB,yBACE,EAAA,kHAAA;AAAA,IACF,qBAAuB,EAAA,WAAA;AAAA,IACvB,wCACE,EAAA,+HAAA;AAAA,IACF,cAAgB,EAAA,cAAA;AAAA,IAChB,gCAAkC,EAAA,0BAAA;AAAA,IAClC,mCACE,EAAA,mDAAA;AAAA,IACF,+BAAiC,EAAA,uBAAA;AAAA,IACjC,+BAAiC,EAAA,iBAAA;AAAA,IACjC,gCAAkC,EAAA,wCAAA;AAAA,IAClC,uCAAyC,EAAA;AAAA;AAE7C,CAAC;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { createTranslationMessages } from '@backstage/core-plugin-api/alpha';
|
|
2
|
+
import { globalHeaderTranslationRef } from './ref.esm.js';
|
|
3
|
+
|
|
4
|
+
const globalHeaderTranslationJa = createTranslationMessages({
|
|
5
|
+
ref: globalHeaderTranslationRef,
|
|
6
|
+
messages: {
|
|
7
|
+
"help.tooltip": "\u30D8\u30EB\u30D7",
|
|
8
|
+
"help.noSupportLinks": "\u30B5\u30DD\u30FC\u30C8\u30EA\u30F3\u30AF\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
9
|
+
"help.noSupportLinksSubtitle": "\u7BA1\u7406\u8005\u304C\u30B5\u30DD\u30FC\u30C8\u30EA\u30F3\u30AF\u3092\u8A2D\u5B9A\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002",
|
|
10
|
+
"help.quickStart": "\u30AF\u30A4\u30C3\u30AF\u30B9\u30BF\u30FC\u30C8",
|
|
11
|
+
"help.supportTitle": "\u30B5\u30DD\u30FC\u30C8",
|
|
12
|
+
"profile.picture": "\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u5199\u771F",
|
|
13
|
+
"profile.settings": "\u8A2D\u5B9A",
|
|
14
|
+
"profile.myProfile": "\u30DE\u30A4\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB",
|
|
15
|
+
"profile.signOut": "\u30B5\u30A4\u30F3\u30A2\u30A6\u30C8",
|
|
16
|
+
"search.placeholder": "\u691C\u7D22...",
|
|
17
|
+
"search.noResults": "\u7D50\u679C\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093",
|
|
18
|
+
"search.errorFetching": "\u7D50\u679C\u306E\u53D6\u5F97\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F",
|
|
19
|
+
"applicationLauncher.tooltip": "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u30E9\u30F3\u30C1\u30E3\u30FC",
|
|
20
|
+
"applicationLauncher.noLinksTitle": "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u30EA\u30F3\u30AF\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
21
|
+
"applicationLauncher.noLinksSubtitle": "\u3053\u3053\u304B\u3089\u3059\u3070\u3084\u304F\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u308B\u3088\u3046\u306B\u3001\u52D5\u7684\u30D7\u30E9\u30B0\u30A4\u30F3\u8A2D\u5B9A\u3067\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u30EA\u30F3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
22
|
+
"applicationLauncher.developerHub": "Developer Hub",
|
|
23
|
+
"applicationLauncher.rhdhLocal": "RHDH Local",
|
|
24
|
+
"applicationLauncher.sections.documentation": "\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8",
|
|
25
|
+
"applicationLauncher.sections.developerTools": "\u958B\u767A\u8005\u30C4\u30FC\u30EB",
|
|
26
|
+
"starred.title": "\u30B9\u30BF\u30FC\u4ED8\u304D\u9805\u76EE",
|
|
27
|
+
"starred.removeTooltip": "\u30EA\u30B9\u30C8\u304B\u3089\u524A\u9664",
|
|
28
|
+
"starred.noItemsTitle": "\u30B9\u30BF\u30FC\u4ED8\u304D\u9805\u76EE\u306F\u307E\u3060\u3042\u308A\u307E\u305B\u3093",
|
|
29
|
+
"starred.noItemsSubtitle": "\u30A8\u30F3\u30C6\u30A3\u30C6\u30A3\u30FC\u306E\u540D\u524D\u306E\u6A2A\u306B\u3042\u308B\u661F\u306E\u30A2\u30A4\u30B3\u30F3\u3092\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068\u3001\u3059\u3050\u306B\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u308B\u3088\u3046\u306B\u3001\u3053\u3053\u306B\u4FDD\u5B58\u3055\u308C\u307E\u3059\u3002",
|
|
30
|
+
"notifications.title": "\u901A\u77E5",
|
|
31
|
+
"notifications.unsupportedDismissOption": '\u7D42\u4E86\u30AA\u30D7\u30B7\u30E7\u30F3 "{{option}}" \u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002\u73FE\u5728\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u308B\u306E\u306F\u3001"none"\u3001"session"\u3001\u307E\u305F\u306F "localstorage" \u3067\u3059!',
|
|
32
|
+
"create.title": "\u30BB\u30EB\u30D5\u30B5\u30FC\u30D3\u30B9",
|
|
33
|
+
"create.registerComponent.title": "\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u767B\u9332",
|
|
34
|
+
"create.registerComponent.subtitle": "\u30AB\u30BF\u30ED\u30B0\u30DA\u30FC\u30B8\u3078\u306E\u30A4\u30F3\u30DD\u30FC\u30C8",
|
|
35
|
+
"create.templates.sectionTitle": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u4F7F\u7528",
|
|
36
|
+
"create.templates.allTemplates": "\u3059\u3079\u3066\u306E\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
37
|
+
"create.templates.errorFetching": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u53D6\u5F97\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F",
|
|
38
|
+
"create.templates.noTemplatesAvailable": "\u5229\u7528\u3067\u304D\u308B\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u304C\u3042\u308A\u307E\u305B\u3093"
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
export { globalHeaderTranslationJa as default };
|
|
43
|
+
//# sourceMappingURL=ja.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.esm.js","sources":["../../src/translations/ja.ts"],"sourcesContent":["/*\n * Copyright Red Hat, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { globalHeaderTranslationRef } from './ref';\n\n/**\n * Japanese translation for plugin.global-header.\n * @public\n */\nconst globalHeaderTranslationJa = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'ヘルプ',\n 'help.noSupportLinks': 'サポートリンクがありません',\n 'help.noSupportLinksSubtitle':\n '管理者がサポートリンクを設定する必要があります。',\n 'help.quickStart': 'クイックスタート',\n 'help.supportTitle': 'サポート',\n 'profile.picture': 'プロファイル写真',\n 'profile.settings': '設定',\n 'profile.myProfile': 'マイプロファイル',\n 'profile.signOut': 'サインアウト',\n 'search.placeholder': '検索...',\n 'search.noResults': '結果が見つかりません',\n 'search.errorFetching': '結果の取得中にエラーが発生しました',\n 'applicationLauncher.tooltip': 'アプリケーションランチャー',\n 'applicationLauncher.noLinksTitle':\n 'アプリケーションリンクが設定されていません',\n 'applicationLauncher.noLinksSubtitle':\n 'ここからすばやくアクセスできるように、動的プラグイン設定でアプリケーションリンクを設定してください。',\n 'applicationLauncher.developerHub': 'Developer Hub',\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.documentation': 'ドキュメント',\n 'applicationLauncher.sections.developerTools': '開発者ツール',\n 'starred.title': 'スター付き項目',\n 'starred.removeTooltip': 'リストから削除',\n 'starred.noItemsTitle': 'スター付き項目はまだありません',\n 'starred.noItemsSubtitle':\n 'エンティティーの名前の横にある星のアイコンをクリックすると、すぐにアクセスできるように、ここに保存されます。',\n 'notifications.title': '通知',\n 'notifications.unsupportedDismissOption':\n '終了オプション \"{{option}}\" はサポートされていません。現在サポートされているのは、\"none\"、\"session\"、または \"localstorage\" です!',\n 'create.title': 'セルフサービス',\n 'create.registerComponent.title': 'コンポーネントの登録',\n 'create.registerComponent.subtitle': 'カタログページへのインポート',\n 'create.templates.sectionTitle': 'テンプレートの使用',\n 'create.templates.allTemplates': 'すべてのテンプレート',\n 'create.templates.errorFetching':\n 'テンプレートの取得中にエラーが発生しました',\n 'create.templates.noTemplatesAvailable':\n '利用できるテンプレートがありません',\n },\n});\n\nexport default globalHeaderTranslationJa;\n"],"names":[],"mappings":";;;AAuBA,MAAM,4BAA4B,yBAA0B,CAAA;AAAA,EAC1D,GAAK,EAAA,0BAAA;AAAA,EACL,QAAU,EAAA;AAAA,IACR,cAAgB,EAAA,oBAAA;AAAA,IAChB,qBAAuB,EAAA,gFAAA;AAAA,IACvB,6BACE,EAAA,kJAAA;AAAA,IACF,iBAAmB,EAAA,kDAAA;AAAA,IACnB,mBAAqB,EAAA,0BAAA;AAAA,IACrB,iBAAmB,EAAA,kDAAA;AAAA,IACnB,kBAAoB,EAAA,cAAA;AAAA,IACpB,mBAAqB,EAAA,kDAAA;AAAA,IACrB,iBAAmB,EAAA,sCAAA;AAAA,IACnB,oBAAsB,EAAA,iBAAA;AAAA,IACtB,kBAAoB,EAAA,8DAAA;AAAA,IACpB,sBAAwB,EAAA,wGAAA;AAAA,IACxB,6BAA+B,EAAA,gFAAA;AAAA,IAC/B,kCACE,EAAA,gIAAA;AAAA,IACF,qCACE,EAAA,8SAAA;AAAA,IACF,kCAAoC,EAAA,eAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,sCAAA;AAAA,IAC9C,6CAA+C,EAAA,sCAAA;AAAA,IAC/C,eAAiB,EAAA,4CAAA;AAAA,IACjB,uBAAyB,EAAA,4CAAA;AAAA,IACzB,sBAAwB,EAAA,4FAAA;AAAA,IACxB,yBACE,EAAA,sUAAA;AAAA,IACF,qBAAuB,EAAA,cAAA;AAAA,IACvB,wCACE,EAAA,sSAAA;AAAA,IACF,cAAgB,EAAA,4CAAA;AAAA,IAChB,gCAAkC,EAAA,8DAAA;AAAA,IAClC,mCAAqC,EAAA,sFAAA;AAAA,IACrC,+BAAiC,EAAA,wDAAA;AAAA,IACjC,+BAAiC,EAAA,8DAAA;AAAA,IACjC,gCACE,EAAA,gIAAA;AAAA,IACF,uCACE,EAAA;AAAA;AAEN,CAAC;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@red-hat-developer-hub/backstage-plugin-global-header",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@mui/icons-material": "5.18.0",
|
|
53
53
|
"@mui/material": "5.18.0",
|
|
54
54
|
"@mui/styled-engine": "5.18.0",
|
|
55
|
-
"@scalprum/react-core": "0.
|
|
55
|
+
"@scalprum/react-core": "0.11.1",
|
|
56
56
|
"react-use": "^17.5.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@backstage/plugin-search-common": "^1.2.21",
|
|
69
69
|
"@backstage/test-utils": "^1.7.13",
|
|
70
70
|
"@openshift/dynamic-plugin-sdk": "^5.0.1",
|
|
71
|
-
"@red-hat-developer-hub/backstage-plugin-theme": "^0.
|
|
71
|
+
"@red-hat-developer-hub/backstage-plugin-theme": "^0.12.0",
|
|
72
72
|
"@testing-library/jest-dom": "^6.0.0",
|
|
73
73
|
"@testing-library/react": "^14.0.0",
|
|
74
74
|
"@testing-library/user-event": "^14.0.0",
|