@gooddata/sdk-ui-pluggable-host 11.40.0-alpha.3
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/LICENSE +19 -0
- package/README.md +20 -0
- package/esm/assets/logo-white.svg +3 -0
- package/esm/components/FullScreenLoader.d.ts +1 -0
- package/esm/components/FullScreenLoader.js +8 -0
- package/esm/components/HostUiContainer.d.ts +16 -0
- package/esm/components/HostUiContainer.js +141 -0
- package/esm/components/HostUiContainer.scss +5 -0
- package/esm/components/Root.d.ts +16 -0
- package/esm/components/Root.js +64 -0
- package/esm/components/Root.scss +14 -0
- package/esm/components/lib/translations.d.ts +7 -0
- package/esm/components/lib/translations.js +64 -0
- package/esm/components/useRedirectNavigation.d.ts +7 -0
- package/esm/components/useRedirectNavigation.js +23 -0
- package/esm/components/useRedirectTarget.d.ts +19 -0
- package/esm/components/useRedirectTarget.js +62 -0
- package/esm/debug.d.ts +9 -0
- package/esm/debug.js +18 -0
- package/esm/index.d.ts +11 -0
- package/esm/index.js +10 -0
- package/esm/lib/chunkReloadGuard.d.ts +89 -0
- package/esm/lib/chunkReloadGuard.js +203 -0
- package/esm/lib/hostNotifications.d.ts +20 -0
- package/esm/lib/hostNotifications.js +50 -0
- package/esm/lib/isProduction.d.ts +12 -0
- package/esm/lib/isProduction.js +13 -0
- package/esm/loader/lastVisitedApp.d.ts +11 -0
- package/esm/loader/lastVisitedApp.js +43 -0
- package/esm/loader/localLoader.d.ts +16 -0
- package/esm/loader/localLoader.js +38 -0
- package/esm/loader/pluggableApplicationsLoader.d.ts +13 -0
- package/esm/loader/pluggableApplicationsLoader.js +55 -0
- package/esm/loader/redirectLogic.d.ts +30 -0
- package/esm/loader/redirectLogic.js +143 -0
- package/esm/loader/remoteLoader.d.ts +5 -0
- package/esm/loader/remoteLoader.js +117 -0
- package/esm/loader/remoteUrlSecurity.d.ts +1 -0
- package/esm/loader/remoteUrlSecurity.js +26 -0
- package/esm/loader/routing.d.ts +22 -0
- package/esm/loader/routing.js +87 -0
- package/esm/platformContext/backend.d.ts +44 -0
- package/esm/platformContext/backend.js +131 -0
- package/esm/platformContext/bootstrap.d.ts +15 -0
- package/esm/platformContext/bootstrap.js +122 -0
- package/esm/platformContext/loadPlatformContext.d.ts +18 -0
- package/esm/platformContext/loadPlatformContext.js +50 -0
- package/esm/platformContext/tigerNotAuthenticatedHandler.d.ts +3 -0
- package/esm/platformContext/tigerNotAuthenticatedHandler.js +16 -0
- package/esm/platformContext/types.d.ts +17 -0
- package/esm/platformContext/types.js +2 -0
- package/esm/platformContext/useLoadPlatformContext.d.ts +35 -0
- package/esm/platformContext/useLoadPlatformContext.js +131 -0
- package/esm/platformContext/useWorkspacePermissions.d.ts +26 -0
- package/esm/platformContext/useWorkspacePermissions.js +52 -0
- package/esm/platformContext/useWorkspaceSettings.d.ts +25 -0
- package/esm/platformContext/useWorkspaceSettings.js +46 -0
- package/esm/registry/pluggableApplicationsRegistry.d.ts +55 -0
- package/esm/registry/pluggableApplicationsRegistry.js +203 -0
- package/esm/sdk-ui-pluggable-host.d.ts +262 -0
- package/esm/styles/global.css +16 -0
- package/esm/translations/de-DE.json +34 -0
- package/esm/translations/en-AU.json +34 -0
- package/esm/translations/en-GB.json +34 -0
- package/esm/translations/en-US.json +130 -0
- package/esm/translations/es-419.json +34 -0
- package/esm/translations/es-ES.json +34 -0
- package/esm/translations/fi-FI.json +34 -0
- package/esm/translations/fr-CA.json +34 -0
- package/esm/translations/fr-FR.json +34 -0
- package/esm/translations/id-ID.json +34 -0
- package/esm/translations/it-IT.json +34 -0
- package/esm/translations/ja-JP.json +34 -0
- package/esm/translations/ko-KR.json +34 -0
- package/esm/translations/nl-NL.json +34 -0
- package/esm/translations/pl-PL.json +34 -0
- package/esm/translations/pt-BR.json +34 -0
- package/esm/translations/pt-PT.json +34 -0
- package/esm/translations/ru-RU.json +34 -0
- package/esm/translations/sl-SI.json +34 -0
- package/esm/translations/th-TH.json +34 -0
- package/esm/translations/tr-TR.json +34 -0
- package/esm/translations/uk-UA.json +34 -0
- package/esm/translations/vi-VN.json +34 -0
- package/esm/translations/zh-HK.json +34 -0
- package/esm/translations/zh-Hans.json +34 -0
- package/esm/translations/zh-Hant.json +34 -0
- package/esm/tsdoc-metadata.json +11 -0
- package/esm/types/lifecycle.d.ts +18 -0
- package/esm/types/lifecycle.js +2 -0
- package/esm/ui/DefaultHostUi.d.ts +12 -0
- package/esm/ui/DefaultHostUi.js +101 -0
- package/esm/ui/DefaultHostUi.scss +8 -0
- package/esm/ui/GenAIChat.d.ts +43 -0
- package/esm/ui/GenAIChat.js +102 -0
- package/esm/ui/HostChrome.d.ts +19 -0
- package/esm/ui/HostChrome.js +115 -0
- package/esm/ui/HostChrome.scss +24 -0
- package/esm/ui/HostIntlProvider.d.ts +9 -0
- package/esm/ui/HostIntlProvider.js +13 -0
- package/esm/ui/HostNotificationDispatcher.d.ts +12 -0
- package/esm/ui/HostNotificationDispatcher.js +42 -0
- package/esm/ui/PluggableApplicationRenderer.d.ts +10 -0
- package/esm/ui/PluggableApplicationRenderer.js +100 -0
- package/esm/ui/PluggableApplicationRenderer.scss +29 -0
- package/esm/ui/SemanticSearch.d.ts +23 -0
- package/esm/ui/SemanticSearch.js +46 -0
- package/esm/ui/WorkspacePicker.d.ts +9 -0
- package/esm/ui/WorkspacePicker.js +29 -0
- package/esm/ui/appMenuItems.d.ts +17 -0
- package/esm/ui/appMenuItems.js +81 -0
- package/esm/ui/chromeHelpers.d.ts +17 -0
- package/esm/ui/chromeHelpers.js +29 -0
- package/esm/ui/hostChromeBem.d.ts +1 -0
- package/esm/ui/hostChromeBem.js +3 -0
- package/esm/ui/resolveHostUiModule.d.ts +8 -0
- package/esm/ui/resolveHostUiModule.js +22 -0
- package/esm/ui/useHostChromeChat.d.ts +29 -0
- package/esm/ui/useHostChromeChat.js +38 -0
- package/esm/ui/useHostChromePricing.d.ts +52 -0
- package/esm/ui/useHostChromePricing.js +37 -0
- package/esm/ui/useHostChromeSearch.d.ts +20 -0
- package/esm/ui/useHostChromeSearch.js +18 -0
- package/esm/ui/useHostChromeWorkspaceFeatures.d.ts +19 -0
- package/esm/ui/useHostChromeWorkspaceFeatures.js +36 -0
- package/package.json +114 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": {
|
|
3
|
+
"text": "Help",
|
|
4
|
+
"crowdinContext": "Label for the help button in the global application header. Clicking this opens the help menu or documentation."
|
|
5
|
+
},
|
|
6
|
+
"gs.header.help.label": {
|
|
7
|
+
"text": "Help links",
|
|
8
|
+
"crowdinContext": "ARIA label for the help links section in the help menu. Used for accessibility purposes to describe the collection of help-related links."
|
|
9
|
+
},
|
|
10
|
+
"gs.header.logout": {
|
|
11
|
+
"text": "Logout",
|
|
12
|
+
"crowdinContext": "Label for the logout button in the user menu. Clicking this signs the user out of their current session."
|
|
13
|
+
},
|
|
14
|
+
"gs.header.menu": {
|
|
15
|
+
"text": "Menu",
|
|
16
|
+
"crowdinContext": "Label for the menu title in vertical mobile menu."
|
|
17
|
+
},
|
|
18
|
+
"gs.header.accessibility.label": {
|
|
19
|
+
"text": "Global application header",
|
|
20
|
+
"crowdinContext": "ARIA label for the main header section of the application. Used by screen readers to identify the header area."
|
|
21
|
+
},
|
|
22
|
+
"gs.header.href.accessibility": {
|
|
23
|
+
"text": "Go to homepage",
|
|
24
|
+
"crowdinContext": "Accessibility text describing the action of clicking the application logo in the header, which navigates to the homepage."
|
|
25
|
+
},
|
|
26
|
+
"gs.header.logo.title.accessibility": {
|
|
27
|
+
"text": "{organizationName} logo",
|
|
28
|
+
"crowdinContext": "Accessibility text for the application logo in the header. Used by screen readers to identify the logo element."
|
|
29
|
+
},
|
|
30
|
+
"gs.header.mainMenu.ariaLabel": {
|
|
31
|
+
"text": "Main menu",
|
|
32
|
+
"crowdinContext": "Accessibility label for the main menu button in the header, used by screen readers"
|
|
33
|
+
},
|
|
34
|
+
"gs.header.menu.accessibility.label": {
|
|
35
|
+
"text": "Global navigation",
|
|
36
|
+
"crowdinContext": "ARIA label for the primary navigation menu in the header. Used by screen readers to identify the main navigation area."
|
|
37
|
+
},
|
|
38
|
+
"gs.header.account.title": {
|
|
39
|
+
"text": "Account",
|
|
40
|
+
"crowdinContext": "Title for the user account menu in the header. Displays user-related options like profile settings and logout."
|
|
41
|
+
},
|
|
42
|
+
"gs.header.slack": {
|
|
43
|
+
"text": "Slack",
|
|
44
|
+
"crowdinContext": "Link to Slack community channel"
|
|
45
|
+
},
|
|
46
|
+
"gs.header.community": {
|
|
47
|
+
"text": "Community",
|
|
48
|
+
"crowdinContext": "Link to community forum"
|
|
49
|
+
},
|
|
50
|
+
"gs.header.university": {
|
|
51
|
+
"text": "University",
|
|
52
|
+
"crowdinContext": "Link to GoodData University training resources"
|
|
53
|
+
},
|
|
54
|
+
"gs.header.documentation": {
|
|
55
|
+
"text": "Documentation",
|
|
56
|
+
"crowdinContext": "Link to product documentation"
|
|
57
|
+
},
|
|
58
|
+
"gs.host.error.applicationFailedToLoad": {
|
|
59
|
+
"text": "Application failed to load",
|
|
60
|
+
"crowdinContext": "Heading displayed when a pluggable application module fails to mount or load."
|
|
61
|
+
},
|
|
62
|
+
"gs.host.error.failedToLoad": {
|
|
63
|
+
"text": "Failed to load",
|
|
64
|
+
"crowdinContext": "Heading displayed when the application platform context fails to load during startup."
|
|
65
|
+
},
|
|
66
|
+
"gs.host.error.pageNotFound": {
|
|
67
|
+
"text": "Page not found",
|
|
68
|
+
"crowdinContext": "Heading displayed when the user navigates to a URL that does not match any known application or route."
|
|
69
|
+
},
|
|
70
|
+
"gs.host.error.pageNotFoundDescription": {
|
|
71
|
+
"text": "The page you are looking for does not exist or you do not have access to it.",
|
|
72
|
+
"crowdinContext": "Description shown below the 'Page not found' heading, explaining that the requested page is either missing or inaccessible."
|
|
73
|
+
},
|
|
74
|
+
"gs.host.error.somethingWentWrong": {
|
|
75
|
+
"text": "Something went wrong",
|
|
76
|
+
"crowdinContext": "Heading displayed when an unexpected error occurs during application redirect resolution."
|
|
77
|
+
},
|
|
78
|
+
"gs.host.notification.newDeployment.message": {
|
|
79
|
+
"text": "A new version of GoodData is available.",
|
|
80
|
+
"crowdinContext": "Toast message shown when the host detects that a newer build of the application has been deployed while the user's tab was open. Followed by a reload link."
|
|
81
|
+
},
|
|
82
|
+
"gs.host.notification.newDeployment.reloadLink": {
|
|
83
|
+
"text": "Reload",
|
|
84
|
+
"crowdinContext": "Clickable text inside the new-deployment toast that triggers a full page reload to load the latest application version."
|
|
85
|
+
},
|
|
86
|
+
"gs.header.helpMenu.gettingStarted": {
|
|
87
|
+
"text": "Getting started",
|
|
88
|
+
"crowdinContext": "Link to getting started guide in help menu"
|
|
89
|
+
},
|
|
90
|
+
"gs.header.helpMenu.connectData": {
|
|
91
|
+
"text": "Connecting data",
|
|
92
|
+
"crowdinContext": "Link to data connection guide in help menu"
|
|
93
|
+
},
|
|
94
|
+
"gs.header.helpMenu.manage.ws": {
|
|
95
|
+
"text": "Managing workspaces and workspace hierarchy",
|
|
96
|
+
"crowdinContext": "Link to workspace management documentation in help menu"
|
|
97
|
+
},
|
|
98
|
+
"gs.header.helpMenu.manage.user": {
|
|
99
|
+
"text": "Managing users and user groups",
|
|
100
|
+
"crowdinContext": "Link to user management documentation in help menu"
|
|
101
|
+
},
|
|
102
|
+
"messages.genAi.visualisation.saved.success": {
|
|
103
|
+
"text": "Great! We saved your visualization.",
|
|
104
|
+
"crowdinContext": "Success message when generative AI visualization is saved"
|
|
105
|
+
},
|
|
106
|
+
"messages.genAi.visualisation.saved.error": {
|
|
107
|
+
"text": "Oops, there was an issue when saving your visualization.",
|
|
108
|
+
"crowdinContext": "Error message when generative AI visualization save fails"
|
|
109
|
+
},
|
|
110
|
+
"messages.genAi.visualisation.saved.error.detail": {
|
|
111
|
+
"text": "{errorType}: {errorMessage}",
|
|
112
|
+
"crowdinContext": "Detailed error message format. {errorType} and {errorMessage} are replaced with specific error details."
|
|
113
|
+
},
|
|
114
|
+
"messages.genAi.visualisation.link.copied": {
|
|
115
|
+
"text": "The visualization link has been copied to your clipboard.",
|
|
116
|
+
"crowdinContext": "Confirmation message."
|
|
117
|
+
},
|
|
118
|
+
"messages.showMore": {
|
|
119
|
+
"text": "Show more",
|
|
120
|
+
"crowdinContext": "Button text to expand and show more message content"
|
|
121
|
+
},
|
|
122
|
+
"messages.showLess": {
|
|
123
|
+
"text": "Show less",
|
|
124
|
+
"crowdinContext": "Button text to collapse and show less message content"
|
|
125
|
+
},
|
|
126
|
+
"gen-ai.ask-assistant.search": {
|
|
127
|
+
"text": "Build new visualization based on: {question}",
|
|
128
|
+
"crowdinContext": "This is used as prefix for the search term when the user starts a new conversation related to a requested term. For example: \"I want to show more about: <term>\"."
|
|
129
|
+
}
|
|
130
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Ayuda",
|
|
3
|
+
"gs.header.help.label": "Enlaces de ayuda",
|
|
4
|
+
"gs.header.logout": "Cerrar sesión",
|
|
5
|
+
"gs.header.menu": "Menú",
|
|
6
|
+
"gs.header.accessibility.label": "Cabecera global de la aplicación",
|
|
7
|
+
"gs.header.href.accessibility": "Ir a la página de inicio",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logotipo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menú principal",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navegación global",
|
|
11
|
+
"gs.header.account.title": "Cuenta",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Comunidad",
|
|
14
|
+
"gs.header.university": "Universidad",
|
|
15
|
+
"gs.header.documentation": "Documentación",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "La aplicación no se pudo cargar",
|
|
17
|
+
"gs.host.error.failedToLoad": "No se pudo cargar",
|
|
18
|
+
"gs.host.error.pageNotFound": "Página no encontrada",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "La página que busca no existe o no tiene acceso a ella.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Se ha producido un error imprevisto.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Hay una nueva versión de GoodData disponible.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Recargar",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Primeros pasos",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Conexión de datos",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gestión de espacios de trabajo y jerarquía de espacios de trabajo",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gestión de usuarios y grupos de usuarios",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "¡Genial! Hemos guardado tu visualización.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Oops, hubo un problema al guardar tu visualización.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "El enlace de visualización se ha copiado en el portapapeles.",
|
|
31
|
+
"messages.showMore": "Mostrar más",
|
|
32
|
+
"messages.showLess": "Mostrar menos",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Crear una nueva visualización basada en: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Ayuda",
|
|
3
|
+
"gs.header.help.label": "Enlaces de ayuda",
|
|
4
|
+
"gs.header.logout": "Cerrar sesión",
|
|
5
|
+
"gs.header.menu": "Menú",
|
|
6
|
+
"gs.header.accessibility.label": "Encabezado de aplicación global",
|
|
7
|
+
"gs.header.href.accessibility": "Ir a la página de inicio",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logotipo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menú principal",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navegación global",
|
|
11
|
+
"gs.header.account.title": "Cuenta",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Comunidad",
|
|
14
|
+
"gs.header.university": "Universidad",
|
|
15
|
+
"gs.header.documentation": "Documentación",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Error al cargar la aplicación",
|
|
17
|
+
"gs.host.error.failedToLoad": "Error al cargar",
|
|
18
|
+
"gs.host.error.pageNotFound": "Página no encontrada",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "La página que busca no existe o no tiene acceso a ella.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Se ha producido un error imprevisto.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Hay una nueva versión de GoodData disponible.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Recargar",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Primeros pasos",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Conexión de datos",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gestión de espacios de trabajo y jerarquía de espacios de trabajo",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gestión de usuarios y grupos de usuarios",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "¡Genial! Hemos guardado su visualización.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Oops, hubo un problema al guardar tu visualización.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "El enlace de visualización se ha copiado en el portapapeles.",
|
|
31
|
+
"messages.showMore": "Mostrar más",
|
|
32
|
+
"messages.showLess": "Mostrar menos",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Construir una nueva visualización basada en{question}: "
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Apua",
|
|
3
|
+
"gs.header.help.label": "Ohjelinkit",
|
|
4
|
+
"gs.header.logout": "Kirjaudu ulos",
|
|
5
|
+
"gs.header.menu": "Valikko",
|
|
6
|
+
"gs.header.accessibility.label": "Sovelluksen globaali otsikko",
|
|
7
|
+
"gs.header.href.accessibility": "Siirry kotisivulle",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Päävalikko",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Globaali navigointi",
|
|
11
|
+
"gs.header.account.title": "Tili",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Yhteisö",
|
|
14
|
+
"gs.header.university": "Yliopisto",
|
|
15
|
+
"gs.header.documentation": "Dokumentaatio",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Sovelluksen lataaminen epäonnistui",
|
|
17
|
+
"gs.host.error.failedToLoad": "Lataaminen epäonnistui",
|
|
18
|
+
"gs.host.error.pageNotFound": "Sivua ei löytynyt",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "Etsimääsi sivua ei ole olemassa tai sinulla ei ole siihen käyttöoikeutta.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Tapahtui odottamaton virhe.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "GoodData-ohjelmistosta on saatavilla uusi versio.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Lataa uudelleen",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Aloita",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Tietojen yhdistäminen",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Työtilojen ja työtilahierarkian hallinta",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Käyttäjien ja käyttäjäryhmien hallinta",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Hienoa! Tallensimme visualisointisi.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Hups, visualisoinnin tallentamisessa ilmeni ongelma.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "Visualisointilinkki on kopioitu leikepöydällesi.",
|
|
31
|
+
"messages.showMore": "Näytä lisää",
|
|
32
|
+
"messages.showLess": "Näytä vähemmän",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Luo uusi visualisointi, joka perustuu{question}: "
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Aide",
|
|
3
|
+
"gs.header.help.label": "Liens d’aide",
|
|
4
|
+
"gs.header.logout": "Déconnexion",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "En-tête d’application global",
|
|
7
|
+
"gs.header.href.accessibility": "Aller à la page d’accueil",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menu principal",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navigation globale",
|
|
11
|
+
"gs.header.account.title": "Compte",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Communauté",
|
|
14
|
+
"gs.header.university": "Université",
|
|
15
|
+
"gs.header.documentation": "Documentation",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Échec du chargement de l'application",
|
|
17
|
+
"gs.host.error.failedToLoad": "Échec du chargement",
|
|
18
|
+
"gs.host.error.pageNotFound": "Page introuvable",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "La page que vous recherchez n'existe pas ou vous n'y avez pas accès.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Une erreur imprévue s’est produite.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Une nouvelle version de GoodData est disponible.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Recharger",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Prise en main",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Connexion des données",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gestion des espaces de travail et de la hiérarchie des espaces de travail",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gestion des utilisateurs et des groupes d’utilisateurs",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Parfait ! Votre visualisation a été enregistrée.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Oups, il y a eu un problème lors de l'enregistrement de votre visualisation.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "Le lien de visualisation a été copié dans votre presse-papiers.",
|
|
31
|
+
"messages.showMore": "Montrer plus",
|
|
32
|
+
"messages.showLess": "Montrer moins",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Construire une nouvelle visualisation basée sur: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Aide",
|
|
3
|
+
"gs.header.help.label": "Liens d'aide",
|
|
4
|
+
"gs.header.logout": "Déconnexion",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "En-tête d'application globale",
|
|
7
|
+
"gs.header.href.accessibility": "Aller à la page d'accueil",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menu principal",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navigation globale",
|
|
11
|
+
"gs.header.account.title": "Compte",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Communauté",
|
|
14
|
+
"gs.header.university": "Université",
|
|
15
|
+
"gs.header.documentation": "Documentation",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Échec du chargement de l'application",
|
|
17
|
+
"gs.host.error.failedToLoad": "Échec du chargement",
|
|
18
|
+
"gs.host.error.pageNotFound": "Page introuvable",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "La page que vous recherchez n'existe pas ou vous n'y avez pas accès.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Une erreur imprévue s’est produite.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Une nouvelle version de GoodData est disponible.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Recharger",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Prise en main",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Connexion des données",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gestion des espaces de travail et de la hiérarchie des espaces de travail",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gestion des utilisateurs et des groupes d’utilisateurs",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Parfait ! Votre visualisation a été enregistrée.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Oups, il y a eu un problème lors de l'enregistrement de votre visualisation.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "Le lien de la visualisation a été copié dans votre presse-papiers.",
|
|
31
|
+
"messages.showMore": "Montrer plus",
|
|
32
|
+
"messages.showLess": "Montrer moins",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Construire une nouvelle visualisation bas\u0000e9e sur\u0000a0: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Bantuan",
|
|
3
|
+
"gs.header.help.label": "Tautan bantuan",
|
|
4
|
+
"gs.header.logout": "Keluar",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "Header aplikasi global",
|
|
7
|
+
"gs.header.href.accessibility": "Buka beranda",
|
|
8
|
+
"gs.header.logo.title.accessibility": "logo {organizationName}",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menu utama",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navigasi global",
|
|
11
|
+
"gs.header.account.title": "Akun",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Komunitas",
|
|
14
|
+
"gs.header.university": "Universitas",
|
|
15
|
+
"gs.header.documentation": "Dokumentasi",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Aplikasi gagal dimuat",
|
|
17
|
+
"gs.host.error.failedToLoad": "Gagal dimuat",
|
|
18
|
+
"gs.host.error.pageNotFound": "Halaman tidak ditemukan",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "Halaman yang Anda cari tidak ada atau Anda tidak memiliki akses ke halaman tersebut.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Terjadi kesalahan",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Versi baru GoodData tersedia.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Muat ulang",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Memulai",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Menghubungkan data",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Mengelola ruang kerja dan hierarki ruang kerja",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Mengelola pengguna dan grup pengguna",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Berhasil. Kami menyimpan visualisasi Anda.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Terjadi masalah saat menyimpan visualisasi Anda.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "Tautan visualisasi telah disalin ke clipboard Anda.",
|
|
31
|
+
"messages.showMore": "Tampilkan lebih banyak",
|
|
32
|
+
"messages.showLess": "Tampilkan lebih sedikit",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Bangun visualisasi baru berdasarkan: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Guida",
|
|
3
|
+
"gs.header.help.label": "Link di aiuto",
|
|
4
|
+
"gs.header.logout": "Esci",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "Intestazione globale dell'applicazione",
|
|
7
|
+
"gs.header.href.accessibility": "Vai alla homepage",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menu principale",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navigazione globale",
|
|
11
|
+
"gs.header.account.title": "Account",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Community",
|
|
14
|
+
"gs.header.university": "Università",
|
|
15
|
+
"gs.header.documentation": "Documentazione",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Impossibile caricare l'applicazione",
|
|
17
|
+
"gs.host.error.failedToLoad": "Impossibile caricare",
|
|
18
|
+
"gs.host.error.pageNotFound": "Pagina non trovata",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "La pagina che stai cercando non esiste o non hai accesso a essa.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Si è verificato un errore imprevisto.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "È disponibile una nuova versione di GoodData.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Ricarica",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Primi passi",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Connessione dei dati",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gestione delle aree di lavoro e della gerarchia delle aree di lavoro",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gestione di utenti e gruppi di utenti",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Ottimo! Abbiamo salvato la tua visualizzazione.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Ops, si è verificato un problema durante il salvataggio della visualizzazione.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "Il link di visualizzazione è stato copiato negli appunti.",
|
|
31
|
+
"messages.showMore": "Mostra di più",
|
|
32
|
+
"messages.showLess": "Mostra di meno",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Costruire nuove visualizzazioni basate su: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "ヘルプ",
|
|
3
|
+
"gs.header.help.label": "ヘルプリンク",
|
|
4
|
+
"gs.header.logout": "ログアウト",
|
|
5
|
+
"gs.header.menu": "メニュー",
|
|
6
|
+
"gs.header.accessibility.label": "グローバル・アプリケーション・ヘッダ",
|
|
7
|
+
"gs.header.href.accessibility": "ホームページへ",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} ロゴ",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "メインメニュー",
|
|
10
|
+
"gs.header.menu.accessibility.label": "グローバルナビゲーション",
|
|
11
|
+
"gs.header.account.title": "アカウント",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "コミュニティー",
|
|
14
|
+
"gs.header.university": "大学",
|
|
15
|
+
"gs.header.documentation": "ドキュメント",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "アプリケーションを読み込めませんでした",
|
|
17
|
+
"gs.host.error.failedToLoad": "読み込みに失敗しました",
|
|
18
|
+
"gs.host.error.pageNotFound": "ページが見つかりません",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "お探しのページは存在しないか、アクセス権限がありません。",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "予期せぬエラーが発生しました。",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "GoodData の新しいバージョンが利用可能です。",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "リロード",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "スタートアップガイド",
|
|
24
|
+
"gs.header.helpMenu.connectData": "データを接続中",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "ワークスペースとワークスペース階層の管理",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "ユーザーとユーザーグループの管理",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "完了!ビジュアライゼーションを保存しました。",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "ビジュアライゼーションを保存する際に問題が発生しました。",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "視覚化リンクがクリップボードにコピーされました。",
|
|
31
|
+
"messages.showMore": "もっと表示",
|
|
32
|
+
"messages.showLess": "表示を減らす",
|
|
33
|
+
"gen-ai.ask-assistant.search": "新しいビジュアライゼーションを構築する:{question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "도움말",
|
|
3
|
+
"gs.header.help.label": "도움말 링크",
|
|
4
|
+
"gs.header.logout": "로그아웃",
|
|
5
|
+
"gs.header.menu": "메뉴",
|
|
6
|
+
"gs.header.accessibility.label": "글로벌 애플리케이션 헤더",
|
|
7
|
+
"gs.header.href.accessibility": "홈페이지로 이동",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} 로고",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "메인 메뉴",
|
|
10
|
+
"gs.header.menu.accessibility.label": "글로벌 내비게이션",
|
|
11
|
+
"gs.header.account.title": "계정",
|
|
12
|
+
"gs.header.slack": "슬랙",
|
|
13
|
+
"gs.header.community": "커뮤니티",
|
|
14
|
+
"gs.header.university": "대학교",
|
|
15
|
+
"gs.header.documentation": "문서",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "애플리케이션을 로드하지 못했습니다",
|
|
17
|
+
"gs.host.error.failedToLoad": "로드하지 못했습니다",
|
|
18
|
+
"gs.host.error.pageNotFound": "페이지를 찾을 수 없습니다",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "찾고 있는 페이지가 존재하지 않거나 액세스 권한이 없습니다.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "문제가 발생했습니다",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "GoodData의 새 버전을 사용할 수 있습니다.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "새로 고침",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "시작하기",
|
|
24
|
+
"gs.header.helpMenu.connectData": "데이터 연결",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "작업 공간 및 작업 공간 계층 구조 관리",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "사용자 및 사용자 그룹 관리",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "좋습니다! 시각화를 저장했습니다.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "시각화를 저장하는 중 문제가 발생했습니다.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "시각화 링크가 클립보드에 복사되었습니다.",
|
|
31
|
+
"messages.showMore": "더 보기",
|
|
32
|
+
"messages.showLess": "간단히 보기",
|
|
33
|
+
"gen-ai.ask-assistant.search": "새 시각화 생성 기준: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Help",
|
|
3
|
+
"gs.header.help.label": "Help-links",
|
|
4
|
+
"gs.header.logout": "Afmelden",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "Globale applicatieheader",
|
|
7
|
+
"gs.header.href.accessibility": "Ga naar de startpagina",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Hoofdmenu",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Globale navigatie",
|
|
11
|
+
"gs.header.account.title": "Account",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Community",
|
|
14
|
+
"gs.header.university": "Universiteit",
|
|
15
|
+
"gs.header.documentation": "Documentatie",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Toepassing kan niet worden geladen",
|
|
17
|
+
"gs.host.error.failedToLoad": "Kan niet worden geladen",
|
|
18
|
+
"gs.host.error.pageNotFound": "Pagina niet gevonden",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "De pagina die u zoekt, bestaat niet of u hebt er geen toegang toe.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Er is een onvoorziene fout opgetreden.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Er is een nieuwe versie van GoodData beschikbaar.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Herladen",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Aan de slag",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Gegevens verbinden",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Werkruimten en hiërarchie van werkruimten beheren",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gebruikers en gebruikersgroepen beheren",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Geweldig We hebben uw visualisatie opgeslagen.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Oeps, er was een probleem bij het opslaan van je visualisatie.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "De visualisatielink is gekopieerd naar je klembord.",
|
|
31
|
+
"messages.showMore": "Meer tonen",
|
|
32
|
+
"messages.showLess": "Minder tonen",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Bouw nieuwe visualisatie gebaseerd op: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Pomoc",
|
|
3
|
+
"gs.header.help.label": "Linki pomocy",
|
|
4
|
+
"gs.header.logout": "Wyloguj się",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "Globalny nagłówek aplikacji",
|
|
7
|
+
"gs.header.href.accessibility": "Przejdź do strony głównej",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName}logo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Główne menu",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Globalna nawigacja",
|
|
11
|
+
"gs.header.account.title": "Konto",
|
|
12
|
+
"gs.header.slack": "Luz",
|
|
13
|
+
"gs.header.community": "Społeczność",
|
|
14
|
+
"gs.header.university": "Uniwersytet",
|
|
15
|
+
"gs.header.documentation": "Dokumentacja",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Nie udało się załadować aplikacji",
|
|
17
|
+
"gs.host.error.failedToLoad": "Nie udało się załadować",
|
|
18
|
+
"gs.host.error.pageNotFound": "Nie znaleziono strony",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "Strona, której szukasz, nie istnieje lub nie masz do niej dostępu.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Coś poszło nie tak",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Nowa wersja GoodData jest dostępna.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Przeładuj",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Pierwsze kroki",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Łączenie danych",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Zarządzanie przestrzeniami roboczymi i hierarchią przestrzeni roboczych",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Zarządzanie użytkownikami i grupami użytkowników",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Świetnie! Zapisaliśmy Twoją wizualizację.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Wystąpił problem podczas zapisywania Twojej Wizualizacji.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "Link do Wizualizacji został skopiowany do schowka.",
|
|
31
|
+
"messages.showMore": "Pokaż więcej",
|
|
32
|
+
"messages.showLess": "Pokaż mniej",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Utwórz nową wizualizację na podstawie: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Ajuda",
|
|
3
|
+
"gs.header.help.label": "Links de ajuda",
|
|
4
|
+
"gs.header.logout": "Sair",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "Cabeçalho global do aplicativo",
|
|
7
|
+
"gs.header.href.accessibility": "Ir para a página inicial",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logotipo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menu principal",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navegação global",
|
|
11
|
+
"gs.header.account.title": "Conta",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Communidade",
|
|
14
|
+
"gs.header.university": "Universidade",
|
|
15
|
+
"gs.header.documentation": "Documentação",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Falha ao carregar o aplicativo",
|
|
17
|
+
"gs.host.error.failedToLoad": "Falha ao carregar",
|
|
18
|
+
"gs.host.error.pageNotFound": "Página não encontrada",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "A página que você está procurando não existe ou você não tem acesso a ela.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Ocorreu um erro imprevisto.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Uma nova versão do GoodData está disponível.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Recarregar",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Guia Rápido",
|
|
24
|
+
"gs.header.helpMenu.connectData": "Conectando dados",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gerenciar espaços de trabalho e hierarquia de espaços de trabalho",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gerenciar usuários e grupos de usuários",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Legal! Salvamos sua visualização.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Opa, houve um problema ao salvar sua visualização.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "O link de visualização foi copiado para a área de transferência.",
|
|
31
|
+
"messages.showMore": "Exibir mais",
|
|
32
|
+
"messages.showLess": "Exibir menos",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Crie uma nova visualização com base em: {question}"
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gs.header.help": "Ajuda",
|
|
3
|
+
"gs.header.help.label": "Links de ajuda",
|
|
4
|
+
"gs.header.logout": "Terminar sessão",
|
|
5
|
+
"gs.header.menu": "Menu",
|
|
6
|
+
"gs.header.accessibility.label": "Cabeçalho global do aplicativo",
|
|
7
|
+
"gs.header.href.accessibility": "Ir para a página inicial",
|
|
8
|
+
"gs.header.logo.title.accessibility": "{organizationName} logotipo",
|
|
9
|
+
"gs.header.mainMenu.ariaLabel": "Menu principal",
|
|
10
|
+
"gs.header.menu.accessibility.label": "Navegação global",
|
|
11
|
+
"gs.header.account.title": "Conta",
|
|
12
|
+
"gs.header.slack": "Slack",
|
|
13
|
+
"gs.header.community": "Comunidade",
|
|
14
|
+
"gs.header.university": "Universidade",
|
|
15
|
+
"gs.header.documentation": "Documentação",
|
|
16
|
+
"gs.host.error.applicationFailedToLoad": "Falha ao carregar a aplicação",
|
|
17
|
+
"gs.host.error.failedToLoad": "Falha ao carregar",
|
|
18
|
+
"gs.host.error.pageNotFound": "Página não encontrada",
|
|
19
|
+
"gs.host.error.pageNotFoundDescription": "A página que procura não existe ou não tem acesso a ela.",
|
|
20
|
+
"gs.host.error.somethingWentWrong": "Ocorreu um erro imprevisto.",
|
|
21
|
+
"gs.host.notification.newDeployment.message": "Está disponível uma nova versão do GoodData.",
|
|
22
|
+
"gs.host.notification.newDeployment.reloadLink": "Recarregar",
|
|
23
|
+
"gs.header.helpMenu.gettingStarted": "Introdução",
|
|
24
|
+
"gs.header.helpMenu.connectData": "A ligar dados",
|
|
25
|
+
"gs.header.helpMenu.manage.ws": "Gestão de espaços de trabalho e hierarquia de espaços de trabalho",
|
|
26
|
+
"gs.header.helpMenu.manage.user": "Gestão de utilizadores e grupos de utilizadores",
|
|
27
|
+
"messages.genAi.visualisation.saved.success": "Ótimo! Salvámos a sua visualização.",
|
|
28
|
+
"messages.genAi.visualisation.saved.error": "Opa, houve um problema ao salvar sua visualização.",
|
|
29
|
+
"messages.genAi.visualisation.saved.error.detail": "{errorType}: {errorMessage}",
|
|
30
|
+
"messages.genAi.visualisation.link.copied": "O link de visualização foi copiado para a área de transferência.",
|
|
31
|
+
"messages.showMore": "Mostrar mais",
|
|
32
|
+
"messages.showLess": "Mostrar menos",
|
|
33
|
+
"gen-ai.ask-assistant.search": "Crie uma nova visualização com base em: {question}"
|
|
34
|
+
}
|