@red-hat-developer-hub/backstage-plugin-global-header 1.20.0 → 1.20.2

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @red-hat-developer-hub/backstage-plugin-global-header
2
2
 
3
+ ## 1.20.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f6d5102: Translation updated for German and Spanish
8
+
9
+ ## 1.20.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 350a081: Updated dependency `@red-hat-developer-hub/backstage-plugin-theme` to `^0.12.0`.
14
+ - 322c6ad: Updated dependency `@scalprum/react-core` to `0.11.1`.
15
+ Updated dependency `@red-hat-developer-hub/backstage-plugin-theme` to `^0.11.0`.
16
+ - f74564d: Added 'ja' i18n support and updated 'it' and 'fr' translation strings.
17
+
3
18
  ## 1.20.0
4
19
 
5
20
  ### Minor Changes
@@ -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
  });
@@ -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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"}
@@ -5,37 +5,30 @@ const globalHeaderTranslationDe = createTranslationMessages({
5
5
  ref: globalHeaderTranslationRef,
6
6
  messages: {
7
7
  "help.tooltip": "Hilfe",
8
- "help.noSupportLinks": "Keine Support-Links",
9
- "help.noSupportLinksSubtitle": "Ihr Administrator muss Support-Links einrichten.",
8
+ "help.noSupportLinks": "Keine Support-Verkn\xFCpfungen",
9
+ "help.noSupportLinksSubtitle": "Ihr Administrator muss Support-Verkn\xFCpfungen einrichten.",
10
10
  "help.quickStart": "Schnellstart",
11
11
  "help.supportTitle": "Support",
12
12
  "profile.picture": "Profilbild",
13
+ "profile.settings": "Einstellungen",
14
+ "profile.myProfile": "Mein Profil",
13
15
  "profile.signOut": "Abmelden",
14
16
  "search.placeholder": "Suchen...",
15
17
  "search.noResults": "Keine Ergebnisse gefunden",
16
18
  "search.errorFetching": "Fehler beim Abrufen der Ergebnisse",
17
- "applicationLauncher.tooltip": "Anwendungs-Starter",
18
- "applicationLauncher.noLinksTitle": "Keine Anwendungslinks konfiguriert",
19
- "applicationLauncher.noLinksSubtitle": "Konfigurieren Sie Anwendungslinks in der dynamischen Plugin-Konfiguration f\xFCr schnellen Zugriff von hier aus.",
19
+ "applicationLauncher.tooltip": "Anwendungsstartprogramm",
20
+ "applicationLauncher.noLinksTitle": "Keine Anwendungsverkn\xFCpfungen konfiguriert",
21
+ "applicationLauncher.noLinksSubtitle": "Konfigurieren Sie Anwendungsverkn\xFCpfungen in der dynamischen Plugin-Konfiguration, um von hier aus schnell darauf zugreifen zu k\xF6nnen.",
22
+ "applicationLauncher.developerHub": "Developer Hub",
23
+ "applicationLauncher.rhdhLocal": "RHDH Local",
24
+ "applicationLauncher.sections.documentation": "Dokumentation",
25
+ "applicationLauncher.sections.developerTools": "Entwicklertools",
20
26
  "starred.title": "Ihre markierten Elemente",
21
- "starred.removeTooltip": "Aus Liste entfernen",
27
+ "starred.removeTooltip": "Aus der Liste entfernen",
22
28
  "starred.noItemsTitle": "Noch keine markierten Elemente",
23
- "starred.noItemsSubtitle": "Klicken Sie auf das Stern-Symbol neben dem Namen einer Entit\xE4t, um sie hier f\xFCr schnellen Zugriff zu speichern.",
29
+ "starred.noItemsSubtitle": "Klicken Sie auf das Sternsymbol neben dem Namen eines Elements, um es hier f\xFCr den Schnellzugriff zu speichern.",
24
30
  "notifications.title": "Benachrichtigungen",
25
- "notifications.unsupportedDismissOption": 'Nicht unterst\xFCtzte Dismiss-Option "{{option}}", derzeit unterst\xFCtzt "none", "session" oder "localstorage"!',
26
- "create.title": "Selbstbedienung",
27
- "create.registerComponent.title": "Eine Komponente registrieren",
28
- "create.registerComponent.subtitle": "In die Katalogseite importieren",
29
- "create.templates.sectionTitle": "Eine Vorlage verwenden",
30
- "create.templates.allTemplates": "Alle Vorlagen",
31
- "create.templates.errorFetching": "Fehler beim Abrufen der Vorlagen",
32
- "create.templates.noTemplatesAvailable": "Keine Vorlagen verf\xFCgbar",
33
- "profile.settings": "Einstellungen",
34
- "profile.myProfile": "Mein Profil",
35
- "applicationLauncher.developerHub": "Developer Hub",
36
- "applicationLauncher.rhdhLocal": "RHDH Lokal",
37
- "applicationLauncher.sections.documentation": "Dokumentation",
38
- "applicationLauncher.sections.developerTools": "Entwickler-Tools"
31
+ "notifications.unsupportedDismissOption": 'Option "{{option}}" zum Verwerfen nicht unterst\xFCtzt; aktuell werden "none", "session" oder "localstorage" unterst\xFCtzt.'
39
32
  }
40
33
  });
41
34
 
@@ -1 +1 @@
1
- {"version":3,"file":"de.esm.js","sources":["../../src/translations/de.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 globalHeaderTranslationDe = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'Hilfe',\n 'help.noSupportLinks': 'Keine Support-Links',\n 'help.noSupportLinksSubtitle':\n 'Ihr Administrator muss Support-Links einrichten.',\n 'help.quickStart': 'Schnellstart',\n 'help.supportTitle': 'Support',\n 'profile.picture': 'Profilbild',\n 'profile.signOut': 'Abmelden',\n 'search.placeholder': 'Suchen...',\n 'search.noResults': 'Keine Ergebnisse gefunden',\n 'search.errorFetching': 'Fehler beim Abrufen der Ergebnisse',\n 'applicationLauncher.tooltip': 'Anwendungs-Starter',\n 'applicationLauncher.noLinksTitle': 'Keine Anwendungslinks konfiguriert',\n 'applicationLauncher.noLinksSubtitle':\n 'Konfigurieren Sie Anwendungslinks in der dynamischen Plugin-Konfiguration für schnellen Zugriff von hier aus.',\n 'starred.title': 'Ihre markierten Elemente',\n 'starred.removeTooltip': 'Aus Liste entfernen',\n 'starred.noItemsTitle': 'Noch keine markierten Elemente',\n 'starred.noItemsSubtitle':\n 'Klicken Sie auf das Stern-Symbol neben dem Namen einer Entität, um sie hier für schnellen Zugriff zu speichern.',\n 'notifications.title': 'Benachrichtigungen',\n 'notifications.unsupportedDismissOption':\n 'Nicht unterstützte Dismiss-Option \"{{option}}\", derzeit unterstützt \"none\", \"session\" oder \"localstorage\"!',\n 'create.title': 'Selbstbedienung',\n 'create.registerComponent.title': 'Eine Komponente registrieren',\n 'create.registerComponent.subtitle': 'In die Katalogseite importieren',\n 'create.templates.sectionTitle': 'Eine Vorlage verwenden',\n 'create.templates.allTemplates': 'Alle Vorlagen',\n 'create.templates.errorFetching': 'Fehler beim Abrufen der Vorlagen',\n 'create.templates.noTemplatesAvailable': 'Keine Vorlagen verfügbar',\n 'profile.settings': 'Einstellungen',\n 'profile.myProfile': 'Mein Profil',\n 'applicationLauncher.developerHub': 'Developer Hub',\n 'applicationLauncher.rhdhLocal': 'RHDH Lokal',\n 'applicationLauncher.sections.documentation': 'Dokumentation',\n 'applicationLauncher.sections.developerTools': 'Entwickler-Tools',\n },\n});\n\nexport default globalHeaderTranslationDe;\n"],"names":[],"mappings":";;;AAmBA,MAAM,4BAA4B,yBAA0B,CAAA;AAAA,EAC1D,GAAK,EAAA,0BAAA;AAAA,EACL,QAAU,EAAA;AAAA,IACR,cAAgB,EAAA,OAAA;AAAA,IAChB,qBAAuB,EAAA,qBAAA;AAAA,IACvB,6BACE,EAAA,kDAAA;AAAA,IACF,iBAAmB,EAAA,cAAA;AAAA,IACnB,mBAAqB,EAAA,SAAA;AAAA,IACrB,iBAAmB,EAAA,YAAA;AAAA,IACnB,iBAAmB,EAAA,UAAA;AAAA,IACnB,oBAAsB,EAAA,WAAA;AAAA,IACtB,kBAAoB,EAAA,2BAAA;AAAA,IACpB,sBAAwB,EAAA,oCAAA;AAAA,IACxB,6BAA+B,EAAA,oBAAA;AAAA,IAC/B,kCAAoC,EAAA,oCAAA;AAAA,IACpC,qCACE,EAAA,kHAAA;AAAA,IACF,eAAiB,EAAA,0BAAA;AAAA,IACjB,uBAAyB,EAAA,qBAAA;AAAA,IACzB,sBAAwB,EAAA,gCAAA;AAAA,IACxB,yBACE,EAAA,uHAAA;AAAA,IACF,qBAAuB,EAAA,oBAAA;AAAA,IACvB,wCACE,EAAA,kHAAA;AAAA,IACF,cAAgB,EAAA,iBAAA;AAAA,IAChB,gCAAkC,EAAA,8BAAA;AAAA,IAClC,mCAAqC,EAAA,iCAAA;AAAA,IACrC,+BAAiC,EAAA,wBAAA;AAAA,IACjC,+BAAiC,EAAA,eAAA;AAAA,IACjC,gCAAkC,EAAA,kCAAA;AAAA,IAClC,uCAAyC,EAAA,6BAAA;AAAA,IACzC,kBAAoB,EAAA,eAAA;AAAA,IACpB,mBAAqB,EAAA,aAAA;AAAA,IACrB,kCAAoC,EAAA,eAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,eAAA;AAAA,IAC9C,6CAA+C,EAAA;AAAA;AAEnD,CAAC;;;;"}
1
+ {"version":3,"file":"de.esm.js","sources":["../../src/translations/de.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 * de translation for plugin.global-header.\n * @public\n */\nconst globalHeaderTranslationDe = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'Hilfe',\n 'help.noSupportLinks': 'Keine Support-Verknüpfungen',\n 'help.noSupportLinksSubtitle':\n 'Ihr Administrator muss Support-Verknüpfungen einrichten.',\n 'help.quickStart': 'Schnellstart',\n 'help.supportTitle': 'Support',\n 'profile.picture': 'Profilbild',\n 'profile.settings': 'Einstellungen',\n 'profile.myProfile': 'Mein Profil',\n 'profile.signOut': 'Abmelden',\n 'search.placeholder': 'Suchen...',\n 'search.noResults': 'Keine Ergebnisse gefunden',\n 'search.errorFetching': 'Fehler beim Abrufen der Ergebnisse',\n 'applicationLauncher.tooltip': 'Anwendungsstartprogramm',\n 'applicationLauncher.noLinksTitle':\n 'Keine Anwendungsverknüpfungen konfiguriert',\n 'applicationLauncher.noLinksSubtitle':\n 'Konfigurieren Sie Anwendungsverknüpfungen in der dynamischen Plugin-Konfiguration, um von hier aus schnell darauf zugreifen zu können.',\n 'applicationLauncher.developerHub': 'Developer Hub',\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.documentation': 'Dokumentation',\n 'applicationLauncher.sections.developerTools': 'Entwicklertools',\n 'starred.title': 'Ihre markierten Elemente',\n 'starred.removeTooltip': 'Aus der Liste entfernen',\n 'starred.noItemsTitle': 'Noch keine markierten Elemente',\n 'starred.noItemsSubtitle':\n 'Klicken Sie auf das Sternsymbol neben dem Namen eines Elements, um es hier für den Schnellzugriff zu speichern.',\n 'notifications.title': 'Benachrichtigungen',\n 'notifications.unsupportedDismissOption':\n 'Option \"{{option}}\" zum Verwerfen nicht unterstützt; aktuell werden \"none\", \"session\" oder \"localstorage\" unterstützt.',\n },\n});\n\nexport default globalHeaderTranslationDe;\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,gCAAA;AAAA,IACvB,6BACE,EAAA,6DAAA;AAAA,IACF,iBAAmB,EAAA,cAAA;AAAA,IACnB,mBAAqB,EAAA,SAAA;AAAA,IACrB,iBAAmB,EAAA,YAAA;AAAA,IACnB,kBAAoB,EAAA,eAAA;AAAA,IACpB,mBAAqB,EAAA,aAAA;AAAA,IACrB,iBAAmB,EAAA,UAAA;AAAA,IACnB,oBAAsB,EAAA,WAAA;AAAA,IACtB,kBAAoB,EAAA,2BAAA;AAAA,IACpB,sBAAwB,EAAA,oCAAA;AAAA,IACxB,6BAA+B,EAAA,yBAAA;AAAA,IAC/B,kCACE,EAAA,+CAAA;AAAA,IACF,qCACE,EAAA,8IAAA;AAAA,IACF,kCAAoC,EAAA,eAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,eAAA;AAAA,IAC9C,6CAA+C,EAAA,iBAAA;AAAA,IAC/C,eAAiB,EAAA,0BAAA;AAAA,IACjB,uBAAyB,EAAA,yBAAA;AAAA,IACzB,sBAAwB,EAAA,gCAAA;AAAA,IACxB,yBACE,EAAA,oHAAA;AAAA,IACF,qBAAuB,EAAA,oBAAA;AAAA,IACvB,wCACE,EAAA;AAAA;AAEN,CAAC;;;;"}
@@ -5,37 +5,30 @@ const globalHeaderTranslationEs = createTranslationMessages({
5
5
  ref: globalHeaderTranslationRef,
6
6
  messages: {
7
7
  "help.tooltip": "Ayuda",
8
- "help.noSupportLinks": "Sin enlaces de soporte",
9
- "help.noSupportLinksSubtitle": "Tu administrador necesita configurar los enlaces de soporte.",
8
+ "help.noSupportLinks": "No hay enlaces de soporte",
9
+ "help.noSupportLinksSubtitle": "Su administrador debe configurar enlaces de soporte.",
10
10
  "help.quickStart": "Inicio r\xE1pido",
11
11
  "help.supportTitle": "Soporte",
12
- "profile.picture": "Imagen de perfil",
12
+ "profile.picture": "Foto de perfil",
13
13
  "profile.settings": "Configuraci\xF3n",
14
14
  "profile.myProfile": "Mi perfil",
15
15
  "profile.signOut": "Cerrar sesi\xF3n",
16
16
  "search.placeholder": "Buscar...",
17
17
  "search.noResults": "No se encontraron resultados",
18
- "search.errorFetching": "Error al obtener resultados",
19
- "applicationLauncher.tooltip": "Lanzador de aplicaciones",
18
+ "search.errorFetching": "Error al extraer los resultados",
19
+ "applicationLauncher.tooltip": "Iniciador de aplicaciones",
20
20
  "applicationLauncher.noLinksTitle": "No hay enlaces de aplicaci\xF3n configurados",
21
- "applicationLauncher.noLinksSubtitle": "Configura enlaces de aplicaciones en la configuraci\xF3n del plugin din\xE1mico para acceso r\xE1pido desde aqu\xED.",
22
- "applicationLauncher.developerHub": "Developer Hub",
21
+ "applicationLauncher.noLinksSubtitle": "Configure los enlaces de aplicaci\xF3n en la configuraci\xF3n del complemento din\xE1mico para obtener acceso r\xE1pido desde aqu\xED.",
22
+ "applicationLauncher.developerHub": "Developer\xA0Hub",
23
23
  "applicationLauncher.rhdhLocal": "RHDH Local",
24
24
  "applicationLauncher.sections.documentation": "Documentaci\xF3n",
25
- "applicationLauncher.sections.developerTools": "Herramientas de desarrollo",
26
- "starred.title": "Tus elementos destacados",
25
+ "applicationLauncher.sections.developerTools": "Herramientas para desarrolladores",
26
+ "starred.title": "Sus art\xEDculos destacados",
27
27
  "starred.removeTooltip": "Eliminar de la lista",
28
28
  "starred.noItemsTitle": "A\xFAn no hay elementos destacados",
29
- "starred.noItemsSubtitle": "Haz clic en el icono de estrella junto al nombre de una entidad para guardarla aqu\xED para acceso r\xE1pido.",
29
+ "starred.noItemsSubtitle": "Haga clic en el icono de la estrella junto al nombre de una entidad para guardarla aqu\xED y acceder a ella r\xE1pidamente.",
30
30
  "notifications.title": "Notificaciones",
31
- "notifications.unsupportedDismissOption": 'Opci\xF3n de descarte no compatible "{{option}}", actualmente compatible "none", "session" o "localstorage"!',
32
- "create.title": "Autoservicio",
33
- "create.registerComponent.title": "Registrar un componente",
34
- "create.registerComponent.subtitle": "Importarlo a la p\xE1gina de cat\xE1logo",
35
- "create.templates.sectionTitle": "Usar una plantilla",
36
- "create.templates.allTemplates": "Todas las plantillas",
37
- "create.templates.errorFetching": "Error al obtener plantillas",
38
- "create.templates.noTemplatesAvailable": "No hay plantillas disponibles"
31
+ "notifications.unsupportedDismissOption": 'Opci\xF3n para desestimar "{{option}}" no admitida. Opciones admitidas actualmente: "none", "session" o "localstorage".'
39
32
  }
40
33
  });
41
34
 
@@ -1 +1 @@
1
- {"version":3,"file":"es.esm.js","sources":["../../src/translations/es.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 globalHeaderTranslationEs = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'Ayuda',\n 'help.noSupportLinks': 'Sin enlaces de soporte',\n 'help.noSupportLinksSubtitle':\n 'Tu administrador necesita configurar los enlaces de soporte.',\n 'help.quickStart': 'Inicio rápido',\n 'help.supportTitle': 'Soporte',\n 'profile.picture': 'Imagen de perfil',\n 'profile.settings': 'Configuración',\n 'profile.myProfile': 'Mi perfil',\n 'profile.signOut': 'Cerrar sesión',\n 'search.placeholder': 'Buscar...',\n 'search.noResults': 'No se encontraron resultados',\n 'search.errorFetching': 'Error al obtener resultados',\n 'applicationLauncher.tooltip': 'Lanzador de aplicaciones',\n 'applicationLauncher.noLinksTitle':\n 'No hay enlaces de aplicación configurados',\n 'applicationLauncher.noLinksSubtitle':\n 'Configura enlaces de aplicaciones en la configuración del plugin dinámico para acceso rápido desde aquí.',\n 'applicationLauncher.developerHub': 'Developer Hub',\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.documentation': 'Documentación',\n 'applicationLauncher.sections.developerTools': 'Herramientas de desarrollo',\n 'starred.title': 'Tus elementos destacados',\n 'starred.removeTooltip': 'Eliminar de la lista',\n 'starred.noItemsTitle': 'Aún no hay elementos destacados',\n 'starred.noItemsSubtitle':\n 'Haz clic en el icono de estrella junto al nombre de una entidad para guardarla aquí para acceso rápido.',\n 'notifications.title': 'Notificaciones',\n 'notifications.unsupportedDismissOption':\n 'Opción de descarte no compatible \"{{option}}\", actualmente compatible \"none\", \"session\" o \"localstorage\"!',\n 'create.title': 'Autoservicio',\n 'create.registerComponent.title': 'Registrar un componente',\n 'create.registerComponent.subtitle': 'Importarlo a la página de catálogo',\n 'create.templates.sectionTitle': 'Usar una plantilla',\n 'create.templates.allTemplates': 'Todas las plantillas',\n 'create.templates.errorFetching': 'Error al obtener plantillas',\n 'create.templates.noTemplatesAvailable': 'No hay plantillas disponibles',\n },\n});\n\nexport default globalHeaderTranslationEs;\n"],"names":[],"mappings":";;;AAmBA,MAAM,4BAA4B,yBAA0B,CAAA;AAAA,EAC1D,GAAK,EAAA,0BAAA;AAAA,EACL,QAAU,EAAA;AAAA,IACR,cAAgB,EAAA,OAAA;AAAA,IAChB,qBAAuB,EAAA,wBAAA;AAAA,IACvB,6BACE,EAAA,8DAAA;AAAA,IACF,iBAAmB,EAAA,kBAAA;AAAA,IACnB,mBAAqB,EAAA,SAAA;AAAA,IACrB,iBAAmB,EAAA,kBAAA;AAAA,IACnB,kBAAoB,EAAA,kBAAA;AAAA,IACpB,mBAAqB,EAAA,WAAA;AAAA,IACrB,iBAAmB,EAAA,kBAAA;AAAA,IACnB,oBAAsB,EAAA,WAAA;AAAA,IACtB,kBAAoB,EAAA,8BAAA;AAAA,IACpB,sBAAwB,EAAA,6BAAA;AAAA,IACxB,6BAA+B,EAAA,0BAAA;AAAA,IAC/B,kCACE,EAAA,8CAAA;AAAA,IACF,qCACE,EAAA,sHAAA;AAAA,IACF,kCAAoC,EAAA,eAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,kBAAA;AAAA,IAC9C,6CAA+C,EAAA,4BAAA;AAAA,IAC/C,eAAiB,EAAA,0BAAA;AAAA,IACjB,uBAAyB,EAAA,sBAAA;AAAA,IACzB,sBAAwB,EAAA,oCAAA;AAAA,IACxB,yBACE,EAAA,+GAAA;AAAA,IACF,qBAAuB,EAAA,gBAAA;AAAA,IACvB,wCACE,EAAA,8GAAA;AAAA,IACF,cAAgB,EAAA,cAAA;AAAA,IAChB,gCAAkC,EAAA,yBAAA;AAAA,IAClC,mCAAqC,EAAA,0CAAA;AAAA,IACrC,+BAAiC,EAAA,oBAAA;AAAA,IACjC,+BAAiC,EAAA,sBAAA;AAAA,IACjC,gCAAkC,EAAA,6BAAA;AAAA,IAClC,uCAAyC,EAAA;AAAA;AAE7C,CAAC;;;;"}
1
+ {"version":3,"file":"es.esm.js","sources":["../../src/translations/es.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 * es translation for plugin.global-header.\n * @public\n */\nconst globalHeaderTranslationEs = createTranslationMessages({\n ref: globalHeaderTranslationRef,\n messages: {\n 'help.tooltip': 'Ayuda',\n 'help.noSupportLinks': 'No hay enlaces de soporte',\n 'help.noSupportLinksSubtitle':\n 'Su administrador debe configurar enlaces de soporte.',\n 'help.quickStart': 'Inicio rápido',\n 'help.supportTitle': 'Soporte',\n 'profile.picture': 'Foto de perfil',\n 'profile.settings': 'Configuración',\n 'profile.myProfile': 'Mi perfil',\n 'profile.signOut': 'Cerrar sesión',\n 'search.placeholder': 'Buscar...',\n 'search.noResults': 'No se encontraron resultados',\n 'search.errorFetching': 'Error al extraer los resultados',\n 'applicationLauncher.tooltip': 'Iniciador de aplicaciones',\n 'applicationLauncher.noLinksTitle':\n 'No hay enlaces de aplicación configurados',\n 'applicationLauncher.noLinksSubtitle':\n 'Configure los enlaces de aplicación en la configuración del complemento dinámico para obtener acceso rápido desde aquí.',\n 'applicationLauncher.developerHub': 'Developer Hub',\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.documentation': 'Documentación',\n 'applicationLauncher.sections.developerTools':\n 'Herramientas para desarrolladores',\n 'starred.title': 'Sus artículos destacados',\n 'starred.removeTooltip': 'Eliminar de la lista',\n 'starred.noItemsTitle': 'Aún no hay elementos destacados',\n 'starred.noItemsSubtitle':\n 'Haga clic en el icono de la estrella junto al nombre de una entidad para guardarla aquí y acceder a ella rápidamente.',\n 'notifications.title': 'Notificaciones',\n 'notifications.unsupportedDismissOption':\n 'Opción para desestimar \"{{option}}\" no admitida. Opciones admitidas actualmente: \"none\", \"session\" o \"localstorage\".',\n },\n});\n\nexport default globalHeaderTranslationEs;\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,2BAAA;AAAA,IACvB,6BACE,EAAA,sDAAA;AAAA,IACF,iBAAmB,EAAA,kBAAA;AAAA,IACnB,mBAAqB,EAAA,SAAA;AAAA,IACrB,iBAAmB,EAAA,gBAAA;AAAA,IACnB,kBAAoB,EAAA,kBAAA;AAAA,IACpB,mBAAqB,EAAA,WAAA;AAAA,IACrB,iBAAmB,EAAA,kBAAA;AAAA,IACnB,oBAAsB,EAAA,WAAA;AAAA,IACtB,kBAAoB,EAAA,8BAAA;AAAA,IACpB,sBAAwB,EAAA,iCAAA;AAAA,IACxB,6BAA+B,EAAA,2BAAA;AAAA,IAC/B,kCACE,EAAA,8CAAA;AAAA,IACF,qCACE,EAAA,wIAAA;AAAA,IACF,kCAAoC,EAAA,kBAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,4CAA8C,EAAA,kBAAA;AAAA,IAC9C,6CACE,EAAA,mCAAA;AAAA,IACF,eAAiB,EAAA,6BAAA;AAAA,IACjB,uBAAyB,EAAA,sBAAA;AAAA,IACzB,sBAAwB,EAAA,oCAAA;AAAA,IACxB,yBACE,EAAA,6HAAA;AAAA,IACF,qBAAuB,EAAA,gBAAA;AAAA,IACvB,wCACE,EAAA;AAAA;AAEN,CAAC;;;;"}
@@ -4,38 +4,38 @@ import { globalHeaderTranslationRef } from './ref.esm.js';
4
4
  const globalHeaderTranslationFr = createTranslationMessages({
5
5
  ref: globalHeaderTranslationRef,
6
6
  messages: {
7
- "applicationLauncher.developerHub": "Centre des d\xE9veloppeurs",
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": "Support",
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.signOut": "se d\xE9connecter",
32
- "search.errorFetching": "Erreur lors de la r\xE9cup\xE9ration des r\xE9sultats",
33
- "search.noResults": "Aucun r\xE9sultat trouv\xE9",
14
+ "profile.myProfile": "Mon profil",
15
+ "profile.signOut": "D\xE9connection",
34
16
  "search.placeholder": "Recherche...",
35
- "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.",
36
- "starred.noItemsTitle": "Aucun \xE9l\xE9ment \xE9toil\xE9 pour le moment",
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.title": "Vos articles favoris"
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 'applicationLauncher.developerHub': 'Centre des développeurs',\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.noLinksTitle': \"Aucun lien d'application configuré\",\n 'applicationLauncher.rhdhLocal': 'RHDH Local',\n 'applicationLauncher.sections.developerTools': 'Outils de développement',\n 'applicationLauncher.sections.documentation': 'Documentation',\n 'applicationLauncher.tooltip': \"Lanceur d'applications\",\n 'create.registerComponent.subtitle': 'Importez-le sur la page du catalogue',\n 'create.registerComponent.title': 'Enregistrer un composant',\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 'create.templates.sectionTitle': 'Utiliser un modèle',\n 'create.title': 'Self-service',\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': 'Support',\n 'help.tooltip': 'Aide',\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 'profile.myProfile': 'Mon profil',\n 'profile.picture': 'Photo de profil',\n 'profile.settings': 'Paramètres',\n 'profile.signOut': 'se déconnecter',\n 'search.errorFetching': 'Erreur lors de la récupération des résultats',\n 'search.noResults': 'Aucun résultat trouvé',\n 'search.placeholder': 'Recherche...',\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 'starred.noItemsTitle': 'Aucun élément étoilé pour le moment',\n 'starred.removeTooltip': 'Supprimer de la liste',\n 'starred.title': 'Vos articles favoris',\n },\n});\n\nexport default globalHeaderTranslationFr;\n"],"names":[],"mappings":";;;AAmBA,MAAM,4BAA4B,yBAA0B,CAAA;AAAA,EAC1D,GAAK,EAAA,0BAAA;AAAA,EACL,QAAU,EAAA;AAAA,IACR,kCAAoC,EAAA,4BAAA;AAAA,IACpC,qCACE,EAAA,yHAAA;AAAA,IACF,kCAAoC,EAAA,uCAAA;AAAA,IACpC,+BAAiC,EAAA,YAAA;AAAA,IACjC,6CAA+C,EAAA,4BAAA;AAAA,IAC/C,4CAA8C,EAAA,eAAA;AAAA,IAC9C,6BAA+B,EAAA,wBAAA;AAAA,IAC/B,mCAAqC,EAAA,sCAAA;AAAA,IACrC,gCAAkC,EAAA,0BAAA;AAAA,IAClC,+BAAiC,EAAA,qBAAA;AAAA,IACjC,gCACE,EAAA,qDAAA;AAAA,IACF,uCAAyC,EAAA,4BAAA;AAAA,IACzC,+BAAiC,EAAA,uBAAA;AAAA,IACjC,cAAgB,EAAA,cAAA;AAAA,IAChB,qBAAuB,EAAA,uBAAA;AAAA,IACvB,6BACE,EAAA,mEAAA;AAAA,IACF,iBAAmB,EAAA,qBAAA;AAAA,IACnB,mBAAqB,EAAA,SAAA;AAAA,IACrB,cAAgB,EAAA,MAAA;AAAA,IAChB,qBAAuB,EAAA,eAAA;AAAA,IACvB,wCACE,EAAA,iLAAA;AAAA,IACF,mBAAqB,EAAA,YAAA;AAAA,IACrB,iBAAmB,EAAA,iBAAA;AAAA,IACnB,kBAAoB,EAAA,eAAA;AAAA,IACpB,iBAAmB,EAAA,mBAAA;AAAA,IACnB,sBAAwB,EAAA,uDAAA;AAAA,IACxB,kBAAoB,EAAA,6BAAA;AAAA,IACpB,oBAAsB,EAAA,cAAA;AAAA,IACtB,yBACE,EAAA,yHAAA;AAAA,IACF,sBAAwB,EAAA,iDAAA;AAAA,IACxB,uBAAyB,EAAA,uBAAA;AAAA,IACzB,eAAiB,EAAA;AAAA;AAErB,CAAC;;;;"}
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": "Aiuto",
7
+ "help.tooltip": "Guida",
8
8
  "help.noSupportLinks": "Nessun link di supporto",
9
- "help.noSupportLinksSubtitle": "Il tuo amministratore deve configurare i link di supporto.",
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": "Esci",
15
+ "profile.signOut": "Disconnetti",
16
16
  "search.placeholder": "Cerca...",
17
17
  "search.noResults": "Nessun risultato trovato",
18
- "search.errorFetching": "Errore nel recupero dei risultati",
19
- "applicationLauncher.tooltip": "Launcher applicazioni",
20
- "applicationLauncher.noLinksTitle": "Nessun link applicazione configurato",
21
- "applicationLauncher.noLinksSubtitle": "Configura i link delle applicazioni nella configurazione del plugin dinamico per un accesso rapido da qui.",
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 elementi preferiti",
27
- "starred.removeTooltip": "Rimuovi dalla lista",
28
- "starred.noItemsTitle": "Nessun elemento preferito ancora",
29
- "starred.noItemsSubtitle": "Clicca sull'icona stella accanto al nome di un'entit\xE0 per salvarla qui per un accesso rapido.",
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 chiusura non supportata "{{option}}", attualmente supportate "none", "session" o "localstorage"!',
32
- "create.title": "Autoservizio",
33
- "create.registerComponent.title": "Registra un componente",
34
- "create.registerComponent.subtitle": "Importalo nella pagina del catalogo",
35
- "create.templates.sectionTitle": "Usa un modello",
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 nel recupero dei modelli",
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': 'Aiuto',\n 'help.noSupportLinks': 'Nessun link di supporto',\n 'help.noSupportLinksSubtitle':\n 'Il tuo amministratore deve configurare 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': 'Esci',\n 'search.placeholder': 'Cerca...',\n 'search.noResults': 'Nessun risultato trovato',\n 'search.errorFetching': 'Errore nel recupero dei risultati',\n 'applicationLauncher.tooltip': 'Launcher applicazioni',\n 'applicationLauncher.noLinksTitle': 'Nessun link applicazione configurato',\n 'applicationLauncher.noLinksSubtitle':\n 'Configura i link delle applicazioni nella configurazione del plugin dinamico per un accesso rapido 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 elementi preferiti',\n 'starred.removeTooltip': 'Rimuovi dalla lista',\n 'starred.noItemsTitle': 'Nessun elemento preferito ancora',\n 'starred.noItemsSubtitle':\n \"Clicca sull'icona stella accanto al nome di un'entità per salvarla qui per un accesso rapido.\",\n 'notifications.title': 'Notifiche',\n 'notifications.unsupportedDismissOption':\n 'Opzione di chiusura non supportata \"{{option}}\", attualmente supportate \"none\", \"session\" o \"localstorage\"!',\n 'create.title': 'Autoservizio',\n 'create.registerComponent.title': 'Registra un componente',\n 'create.registerComponent.subtitle': 'Importalo nella pagina del catalogo',\n 'create.templates.sectionTitle': 'Usa un modello',\n 'create.templates.allTemplates': 'Tutti i modelli',\n 'create.templates.errorFetching': 'Errore nel recupero dei modelli',\n 'create.templates.noTemplatesAvailable': 'Nessun modello disponibile',\n },\n});\n\nexport default globalHeaderTranslationIt;\n"],"names":[],"mappings":";;;AAmBA,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,4DAAA;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,MAAA;AAAA,IACnB,oBAAsB,EAAA,UAAA;AAAA,IACtB,kBAAoB,EAAA,0BAAA;AAAA,IACpB,sBAAwB,EAAA,mCAAA;AAAA,IACxB,6BAA+B,EAAA,uBAAA;AAAA,IAC/B,kCAAoC,EAAA,sCAAA;AAAA,IACpC,qCACE,EAAA,4GAAA;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,2BAAA;AAAA,IACjB,uBAAyB,EAAA,qBAAA;AAAA,IACzB,sBAAwB,EAAA,kCAAA;AAAA,IACxB,yBACE,EAAA,kGAAA;AAAA,IACF,qBAAuB,EAAA,WAAA;AAAA,IACvB,wCACE,EAAA,6GAAA;AAAA,IACF,cAAgB,EAAA,cAAA;AAAA,IAChB,gCAAkC,EAAA,wBAAA;AAAA,IAClC,mCAAqC,EAAA,qCAAA;AAAA,IACrC,+BAAiC,EAAA,gBAAA;AAAA,IACjC,+BAAiC,EAAA,iBAAA;AAAA,IACjC,gCAAkC,EAAA,iCAAA;AAAA,IAClC,uCAAyC,EAAA;AAAA;AAE7C,CAAC;;;;"}
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.0",
3
+ "version": "1.20.2",
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.9.5",
55
+ "@scalprum/react-core": "0.11.1",
56
56
  "react-use": "^17.5.0"
57
57
  },
58
58
  "peerDependencies": {
@@ -67,8 +67,9 @@
67
67
  "@backstage/frontend-test-utils": "^0.4.1",
68
68
  "@backstage/plugin-search-common": "^1.2.21",
69
69
  "@backstage/test-utils": "^1.7.13",
70
+ "@backstage/ui": "^0.9.1",
70
71
  "@openshift/dynamic-plugin-sdk": "^5.0.1",
71
- "@red-hat-developer-hub/backstage-plugin-theme": "^0.10.0",
72
+ "@red-hat-developer-hub/backstage-plugin-theme": "^0.12.0",
72
73
  "@testing-library/jest-dom": "^6.0.0",
73
74
  "@testing-library/react": "^14.0.0",
74
75
  "@testing-library/user-event": "^14.0.0",