@sapui5/sap.ushell 1.124.3 → 1.126.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (482) hide show
  1. package/package.json +1 -1
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/AppInfoParameters.js +29 -27
  4. package/src/main/js/sap/ushell/Container.js +143 -72
  5. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  6. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +13 -10
  7. package/src/main/js/sap/ushell/Layout.js +7 -4
  8. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  9. package/src/main/js/sap/ushell/SessionHandler.js +35 -31
  10. package/src/main/js/sap/ushell/TechnicalParameters.js +5 -3
  11. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  12. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  13. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +9 -3
  14. package/src/main/js/sap/ushell/UserActivityLog.js +5 -3
  15. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  16. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  17. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  18. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  19. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  20. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  21. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +4 -4
  22. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +2 -4
  23. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  24. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
  25. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +12 -10
  26. package/src/main/js/sap/ushell/adapters/cdm/MenuAdapter.js +8 -6
  27. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +14 -13
  28. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
  30. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  35. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +7 -5
  38. package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +15 -13
  39. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/cdm/v3/utilsCdm.js +34 -0
  48. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionInternalAdapter.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +6 -4
  51. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +7 -5
  52. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +10 -12
  55. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +7 -5
  57. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +5 -3
  59. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionInternalAdapter.js +6 -4
  61. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  62. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  63. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  64. package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +1 -1
  65. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  66. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  67. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  68. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  69. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +5 -4
  70. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +5 -4
  71. package/src/main/js/sap/ushell/api/RTA.js +14 -2
  72. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +10 -5
  73. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/CheckConditions.js +1 -3
  74. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_sh.properties +2 -2
  75. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +5 -0
  76. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppConfiguration.js +37 -0
  77. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +21 -2
  78. package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +21 -1
  79. package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +38 -1
  80. package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +19 -1
  81. package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +20 -3
  82. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +28 -1
  83. package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension/Item.js +1 -1
  84. package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension.js +25 -2
  85. package/src/main/js/sap/ushell/appRuntime/ui5/services/FrameBoundExtension.js +8 -1
  86. package/src/main/js/sap/ushell/appRuntime/ui5/services/LaunchPage.js +20 -1
  87. package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +18 -1
  88. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +16 -0
  89. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolutionInternal.js +14 -0
  90. package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +24 -1
  91. package/src/main/js/sap/ushell/appRuntime/ui5/services/ReferenceResolver.js +18 -1
  92. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +23 -1
  93. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +21 -1
  94. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +28 -4
  95. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +19 -1
  96. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  97. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  98. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
  99. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  100. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +15 -5
  101. package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +2 -2
  102. package/src/main/js/sap/ushell/bootstrap/common/common.util.js +8 -1
  103. package/src/main/js/sap/ushell/bootstrap/sandbox2.js +11 -6
  104. package/src/main/js/sap/ushell/components/CatalogsManager.js +28 -17
  105. package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +14 -12
  106. package/src/main/js/sap/ushell/components/HomepageManager.js +6 -4
  107. package/src/main/js/sap/ushell/components/MessagingHelper.js +5 -4
  108. package/src/main/js/sap/ushell/components/SharedComponentUtils.js +6 -4
  109. package/src/main/js/sap/ushell/components/_HeaderManager/ControlManager.js +6 -4
  110. package/src/main/js/sap/ushell/components/_HeaderManager/ShellHeader.controller.js +6 -3
  111. package/src/main/js/sap/ushell/components/_HomepageManager/PersistentPageOperationAdapter.js +4 -2
  112. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +18 -23
  113. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +6 -4
  114. package/src/main/js/sap/ushell/components/appfinder/Component.js +6 -4
  115. package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +10 -10
  116. package/src/main/js/sap/ushell/components/appfinder/HierarchyApps.controller.js +6 -4
  117. package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +5 -3
  118. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  119. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +78 -3
  120. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +1 -1
  121. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +1 -1
  122. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxesCache.js +37 -7
  123. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +239 -94
  124. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +1 -1
  125. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  126. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  127. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +3 -2
  128. package/src/main/js/sap/ushell/components/cards/Card.controller.js +5 -3
  129. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +9 -14
  130. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sh.properties +5 -5
  131. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +7 -14
  132. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sh.properties +19 -19
  133. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +2 -2
  134. package/src/main/js/sap/ushell/components/container/IframePOSTUtils.js +1 -1
  135. package/src/main/js/sap/ushell/components/container/resources/resources_sh.properties +1 -1
  136. package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
  137. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +3 -3
  138. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  139. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  140. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  141. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +3 -3
  142. package/src/main/js/sap/ushell/components/contentFinder/view/WidgetGallery.view.xml +3 -5
  143. package/src/main/js/sap/ushell/components/contentFinderStandalone/Component.js +1 -1
  144. package/src/main/js/sap/ushell/components/contentFinderStandalone/controller/ContentFinderStandalone.controller.js +1 -1
  145. package/src/main/js/sap/ushell/components/contentFinderStandalone/manifest.json +1 -1
  146. package/src/main/js/sap/ushell/components/contentFinderStandalone/manifestAppSearch.json +1 -1
  147. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  148. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  149. package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +2 -27
  150. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
  151. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
  152. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +1 -1
  153. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  154. package/src/main/js/sap/ushell/components/pages/ActionMode.js +6 -5
  155. package/src/main/js/sap/ushell/components/pages/Component.js +5 -4
  156. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +9 -7
  157. package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +10 -8
  158. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +18 -13
  159. package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +6 -5
  160. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  161. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +31 -34
  162. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  163. package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +8 -6
  164. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  165. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -1
  166. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  167. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  168. package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +1 -1
  169. package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +8 -5
  170. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +6 -4
  171. package/src/main/js/sap/ushell/components/shell/Search/Component.js +5 -4
  172. package/src/main/js/sap/ushell/components/shell/Search/ESearch.js +5 -4
  173. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  174. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  175. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
  176. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
  177. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  178. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +1 -1
  179. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +10 -8
  180. package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +17 -5
  181. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +9 -7
  182. package/src/main/js/sap/ushell/components/shell/Settings/appearance/AppearanceEntry.js +6 -4
  183. package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageEntry.js +5 -3
  184. package/src/main/js/sap/ushell/components/shell/Settings/notifications/NotificationsSetting.controller.js +3 -3
  185. package/src/main/js/sap/ushell/components/shell/Settings/spaces/SpacesEntry.js +6 -4
  186. package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountEntry.js +6 -4
  187. package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.controller.js +9 -7
  188. package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.controller.js +6 -4
  189. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsEntry.js +7 -5
  190. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +11 -9
  191. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +10 -7
  192. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/UserLanguageRegionEntry.js +5 -3
  193. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +6 -4
  194. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +11 -9
  195. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +5 -3
  196. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +6 -4
  197. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +5 -3
  198. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/Component.js +3 -0
  199. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +5 -3
  200. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +10 -10
  201. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
  202. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
  203. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +6 -6
  204. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  205. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  206. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
  207. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
  208. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  209. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +2 -2
  210. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  211. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +17 -17
  212. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  213. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +6 -4
  214. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  215. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  216. package/src/main/js/sap/ushell/library.js +1 -1
  217. package/src/main/js/sap/ushell/navigationMode.js +1 -1
  218. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +8 -6
  219. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  220. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  221. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_sh.properties +2 -2
  222. package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +6 -4
  223. package/src/main/js/sap/ushell/renderer/History.js +1 -2
  224. package/src/main/js/sap/ushell/renderer/LogonFrameProvider.js +5 -3
  225. package/src/main/js/sap/ushell/renderer/Renderer.js +34 -35
  226. package/src/main/js/sap/ushell/renderer/Shell.controller.js +37 -37
  227. package/src/main/js/sap/ushell/renderer/Shell.view.js +9 -4
  228. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.controller.js +8 -6
  229. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsManager.js +13 -11
  230. package/src/main/js/sap/ushell/renderer/resources/resources.properties +4 -4
  231. package/src/main/js/sap/ushell/renderer/resources/resources_ar.properties +23 -26
  232. package/src/main/js/sap/ushell/renderer/resources/resources_bg.properties +24 -27
  233. package/src/main/js/sap/ushell/renderer/resources/resources_ca.properties +21 -24
  234. package/src/main/js/sap/ushell/renderer/resources/resources_cnr.properties +4 -10
  235. package/src/main/js/sap/ushell/renderer/resources/resources_cs.properties +19 -22
  236. package/src/main/js/sap/ushell/renderer/resources/resources_cy.properties +24 -27
  237. package/src/main/js/sap/ushell/renderer/resources/resources_da.properties +30 -33
  238. package/src/main/js/sap/ushell/renderer/resources/resources_de.properties +23 -26
  239. package/src/main/js/sap/ushell/renderer/resources/resources_el.properties +28 -31
  240. package/src/main/js/sap/ushell/renderer/resources/resources_en.properties +4 -928
  241. package/src/main/js/sap/ushell/renderer/resources/resources_en_GB.properties +30 -33
  242. package/src/main/js/sap/ushell/renderer/resources/resources_en_US_saprigi.properties +4 -4
  243. package/src/main/js/sap/ushell/renderer/resources/resources_es.properties +23 -26
  244. package/src/main/js/sap/ushell/renderer/resources/resources_es_MX.properties +18 -21
  245. package/src/main/js/sap/ushell/renderer/resources/resources_et.properties +25 -28
  246. package/src/main/js/sap/ushell/renderer/resources/resources_fi.properties +24 -27
  247. package/src/main/js/sap/ushell/renderer/resources/resources_fr.properties +28 -31
  248. package/src/main/js/sap/ushell/renderer/resources/resources_fr_CA.properties +53 -56
  249. package/src/main/js/sap/ushell/renderer/resources/resources_hi.properties +29 -32
  250. package/src/main/js/sap/ushell/renderer/resources/resources_hr.properties +21 -24
  251. package/src/main/js/sap/ushell/renderer/resources/resources_hu.properties +24 -27
  252. package/src/main/js/sap/ushell/renderer/resources/resources_id.properties +24 -27
  253. package/src/main/js/sap/ushell/renderer/resources/resources_it.properties +20 -23
  254. package/src/main/js/sap/ushell/renderer/resources/resources_iw.properties +20 -23
  255. package/src/main/js/sap/ushell/renderer/resources/resources_ja.properties +20 -23
  256. package/src/main/js/sap/ushell/renderer/resources/resources_kk.properties +28 -31
  257. package/src/main/js/sap/ushell/renderer/resources/resources_ko.properties +23 -26
  258. package/src/main/js/sap/ushell/renderer/resources/resources_lt.properties +20 -23
  259. package/src/main/js/sap/ushell/renderer/resources/resources_lv.properties +25 -28
  260. package/src/main/js/sap/ushell/renderer/resources/resources_mk.properties +4 -10
  261. package/src/main/js/sap/ushell/renderer/resources/resources_ms.properties +22 -25
  262. package/src/main/js/sap/ushell/renderer/resources/resources_nl.properties +21 -24
  263. package/src/main/js/sap/ushell/renderer/resources/resources_no.properties +33 -36
  264. package/src/main/js/sap/ushell/renderer/resources/resources_pl.properties +24 -27
  265. package/src/main/js/sap/ushell/renderer/resources/resources_pt.properties +22 -25
  266. package/src/main/js/sap/ushell/renderer/resources/resources_pt_PT.properties +17 -20
  267. package/src/main/js/sap/ushell/renderer/resources/resources_ro.properties +20 -23
  268. package/src/main/js/sap/ushell/renderer/resources/resources_ru.properties +21 -24
  269. package/src/main/js/sap/ushell/renderer/resources/resources_sh.properties +121 -124
  270. package/src/main/js/sap/ushell/renderer/resources/resources_sk.properties +21 -24
  271. package/src/main/js/sap/ushell/renderer/resources/resources_sl.properties +23 -26
  272. package/src/main/js/sap/ushell/renderer/resources/resources_sr.properties +4 -10
  273. package/src/main/js/sap/ushell/renderer/resources/resources_sv.properties +22 -25
  274. package/src/main/js/sap/ushell/renderer/resources/resources_th.properties +24 -27
  275. package/src/main/js/sap/ushell/renderer/resources/resources_tr.properties +24 -27
  276. package/src/main/js/sap/ushell/renderer/resources/resources_uk.properties +25 -28
  277. package/src/main/js/sap/ushell/renderer/resources/resources_vi.properties +22 -25
  278. package/src/main/js/sap/ushell/renderer/resources/resources_zh_CN.properties +19 -22
  279. package/src/main/js/sap/ushell/renderer/resources/resources_zh_TW.properties +25 -28
  280. package/src/main/js/sap/ushell/renderer/search/searchComponent/Component.js +4 -3
  281. package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
  282. package/src/main/js/sap/ushell/services/AppConfiguration.js +326 -274
  283. package/src/main/js/sap/ushell/services/AppLifeCycle.js +14 -14
  284. package/src/main/js/sap/ushell/services/AppState.js +1 -1
  285. package/src/main/js/sap/ushell/services/Bookmark.js +1 -1
  286. package/src/main/js/sap/ushell/services/BookmarkV2.js +12 -10
  287. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +635 -755
  288. package/src/main/js/sap/ushell/services/CommonDataModel.js +25 -16
  289. package/src/main/js/sap/ushell/services/Configuration.js +5 -4
  290. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  291. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
  292. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +2 -2
  293. package/src/main/js/sap/ushell/services/DarkModeSupport.js +9 -7
  294. package/src/main/js/sap/ushell/services/Extension/Item.js +1 -1
  295. package/src/main/js/sap/ushell/services/Extension.js +18 -1
  296. package/src/main/js/sap/ushell/services/FlpLaunchPage.js +8 -6
  297. package/src/main/js/sap/ushell/services/FrameBoundExtension/FloatingContainer.js +1 -1
  298. package/src/main/js/sap/ushell/services/FrameBoundExtension/Footer.js +1 -1
  299. package/src/main/js/sap/ushell/services/FrameBoundExtension/Item.js +1 -1
  300. package/src/main/js/sap/ushell/services/FrameBoundExtension/SidePane.js +1 -1
  301. package/src/main/js/sap/ushell/services/FrameBoundExtension/ToolArea.js +1 -1
  302. package/src/main/js/sap/ushell/services/FrameBoundExtension.js +18 -1
  303. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  304. package/src/main/js/sap/ushell/services/Menu.js +6 -4
  305. package/src/main/js/sap/ushell/services/Message.js +91 -412
  306. package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
  307. package/src/main/js/sap/ushell/services/MessageInternal.js +448 -0
  308. package/src/main/js/sap/ushell/services/NavTargetResolution.js +2 -1
  309. package/src/main/js/sap/ushell/services/NavTargetResolutionInternal.js +1 -1
  310. package/src/main/js/sap/ushell/services/Navigation/compatibility.js +1 -1
  311. package/src/main/js/sap/ushell/services/Navigation/utils.js +1 -1
  312. package/src/main/js/sap/ushell/services/Navigation.js +3 -3
  313. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  314. package/src/main/js/sap/ushell/services/Notifications.js +4 -2
  315. package/src/main/js/sap/ushell/services/NotificationsV2.js +7 -5
  316. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  317. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  318. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  319. package/src/main/js/sap/ushell/services/Pages.js +1 -1
  320. package/src/main/js/sap/ushell/services/Personalization.js +1 -1
  321. package/src/main/js/sap/ushell/services/PersonalizationV2.js +1 -1
  322. package/src/main/js/sap/ushell/services/PluginManager.js +7 -5
  323. package/src/main/js/sap/ushell/services/ReferenceResolver.js +234 -238
  324. package/src/main/js/sap/ushell/services/Search.js +1 -1
  325. package/src/main/js/sap/ushell/services/SearchCEP.js +5 -4
  326. package/src/main/js/sap/ushell/services/SearchableContent.js +1 -1
  327. package/src/main/js/sap/ushell/services/ShellNavigation.js +3 -3
  328. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +38 -56
  329. package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +1 -1
  330. package/src/main/js/sap/ushell/services/SmartNavigation.js +8 -6
  331. package/src/main/js/sap/ushell/services/SpaceContent.js +16 -14
  332. package/src/main/js/sap/ushell/services/UITracer.js +1 -1
  333. package/src/main/js/sap/ushell/services/URLParsing.js +6 -4
  334. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  335. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  336. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
  337. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +89 -78
  338. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +229 -273
  339. package/src/main/js/sap/ushell/services/UserInfo.js +1 -1
  340. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  341. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  342. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  343. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +11 -11
  344. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +9 -6
  345. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +16 -25
  346. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/ParameterMapping.js +3 -1
  347. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +20 -24
  348. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +52 -45
  349. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +3 -5
  350. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +5 -2
  351. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  352. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  353. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +63 -80
  354. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  355. package/src/main/js/sap/ushell/services/_CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +1 -1
  356. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  357. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  358. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  359. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
  360. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +6 -4
  361. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  362. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  363. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +3 -3
  364. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +2 -2
  365. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  366. package/src/main/js/sap/ushell/themes/base/ShellHeader.less +32 -24
  367. package/src/main/js/sap/ushell/themes/sap_belize/library.source.less +10 -1
  368. package/src/main/js/sap/ushell/themes/sap_belize_base/.theming +4 -0
  369. package/src/main/js/sap/ushell/themes/sap_belize_base/ActionMode.less +107 -0
  370. package/src/main/js/sap/ushell/themes/sap_belize_base/AddBookmarkButton.less +37 -0
  371. package/src/main/js/sap/ushell/themes/sap_belize_base/AnchorItem.less +81 -0
  372. package/src/main/js/sap/ushell/themes/sap_belize_base/AnchorNavigationBar.less +86 -0
  373. package/src/main/js/sap/ushell/themes/sap_belize_base/AppearanceView.less +213 -0
  374. package/src/main/js/sap/ushell/themes/sap_belize_base/ApplicationContainer.less +37 -0
  375. package/src/main/js/sap/ushell/themes/sap_belize_base/Catalog.less +387 -0
  376. package/src/main/js/sap/ushell/themes/sap_belize_base/ContactSupport.less +12 -0
  377. package/src/main/js/sap/ushell/themes/sap_belize_base/ContentFinder.less +26 -0
  378. package/src/main/js/sap/ushell/themes/sap_belize_base/CustomGroupHeaderListItem.less +10 -0
  379. package/src/main/js/sap/ushell/themes/sap_belize_base/Dashboard.less +66 -0
  380. package/src/main/js/sap/ushell/themes/sap_belize_base/DynamicTile.less +114 -0
  381. package/src/main/js/sap/ushell/themes/sap_belize_base/Factsheet.less +225 -0
  382. package/src/main/js/sap/ushell/themes/sap_belize_base/FloatingContainer.less +125 -0
  383. package/src/main/js/sap/ushell/themes/sap_belize_base/FlpSettings.less +83 -0
  384. package/src/main/js/sap/ushell/themes/sap_belize_base/GroupList.less +68 -0
  385. package/src/main/js/sap/ushell/themes/sap_belize_base/GroupListItem.less +54 -0
  386. package/src/main/js/sap/ushell/themes/sap_belize_base/IconFonts.less +21 -0
  387. package/src/main/js/sap/ushell/themes/sap_belize_base/ImageTile.less +23 -0
  388. package/src/main/js/sap/ushell/themes/sap_belize_base/LoadingDialog.less +47 -0
  389. package/src/main/js/sap/ushell/themes/sap_belize_base/MenuBar.less +23 -0
  390. package/src/main/js/sap/ushell/themes/sap_belize_base/Notifications.less +135 -0
  391. package/src/main/js/sap/ushell/themes/sap_belize_base/Page.less +49 -0
  392. package/src/main/js/sap/ushell/themes/sap_belize_base/PictureTile.less +119 -0
  393. package/src/main/js/sap/ushell/themes/sap_belize_base/PictureViewer.less +25 -0
  394. package/src/main/js/sap/ushell/themes/sap_belize_base/PlusTile.less +38 -0
  395. package/src/main/js/sap/ushell/themes/sap_belize_base/QuickAccess.less +18 -0
  396. package/src/main/js/sap/ushell/themes/sap_belize_base/RightFloatingContainerItem.less +82 -0
  397. package/src/main/js/sap/ushell/themes/sap_belize_base/SearchCEP.less +121 -0
  398. package/src/main/js/sap/ushell/themes/sap_belize_base/SearchFLP.less +10 -0
  399. package/src/main/js/sap/ushell/themes/sap_belize_base/Section.less +60 -0
  400. package/src/main/js/sap/ushell/themes/sap_belize_base/ShellAppTitle.less +207 -0
  401. package/src/main/js/sap/ushell/themes/sap_belize_base/ShellFloatingAction.less +61 -0
  402. package/src/main/js/sap/ushell/themes/sap_belize_base/ShellFloatingActions.less +14 -0
  403. package/src/main/js/sap/ushell/themes/sap_belize_base/ShellHeader.less +389 -0
  404. package/src/main/js/sap/ushell/themes/sap_belize_base/ShellLayout.less +168 -0
  405. package/src/main/js/sap/ushell/themes/sap_belize_base/SidePane.less +8 -0
  406. package/src/main/js/sap/ushell/themes/sap_belize_base/StaticTile.less +9 -0
  407. package/src/main/js/sap/ushell/themes/sap_belize_base/SubHeader.less +3 -0
  408. package/src/main/js/sap/ushell/themes/sap_belize_base/SysInfoBar.less +164 -0
  409. package/src/main/js/sap/ushell/themes/sap_belize_base/TargetMappingConfiguration.less +8 -0
  410. package/src/main/js/sap/ushell/themes/sap_belize_base/Tile.less +223 -0
  411. package/src/main/js/sap/ushell/themes/sap_belize_base/TileBase.less +152 -0
  412. package/src/main/js/sap/ushell/themes/sap_belize_base/TileContainer.less +495 -0
  413. package/src/main/js/sap/ushell/themes/sap_belize_base/TilePlaceholder.less +75 -0
  414. package/src/main/js/sap/ushell/themes/sap_belize_base/TileState.less +62 -0
  415. package/src/main/js/sap/ushell/themes/sap_belize_base/ToolAreaItem.less +85 -0
  416. package/src/main/js/sap/ushell/themes/sap_belize_base/UserActionsMenu.less +23 -0
  417. package/src/main/js/sap/ushell/themes/sap_belize_base/UserConsentDialog.less +52 -0
  418. package/src/main/js/sap/ushell/themes/sap_belize_base/UserSettings.less +113 -0
  419. package/src/main/js/sap/ushell/themes/sap_belize_base/ViewPortContainer.less +28 -0
  420. package/src/main/js/sap/ushell/themes/sap_belize_base/WorkPage.less +58 -0
  421. package/src/main/js/sap/ushell/themes/sap_belize_base/WorkPageButton.less +60 -0
  422. package/src/main/js/sap/ushell/themes/sap_belize_base/WorkPageCell.less +144 -0
  423. package/src/main/js/sap/ushell/themes/sap_belize_base/WorkPageColumn.less +39 -0
  424. package/src/main/js/sap/ushell/themes/sap_belize_base/WorkPageColumnResizer.less +128 -0
  425. package/src/main/js/sap/ushell/themes/sap_belize_base/WorkPageRow.less +987 -0
  426. package/src/main/js/sap/ushell/themes/sap_belize_base/library.source.less +64 -0
  427. package/src/main/js/sap/ushell/themes/sap_belize_base/shared.less +40 -0
  428. package/src/main/js/sap/ushell/themes/sap_belize_hcb/library.source.less +10 -1
  429. package/src/main/js/sap/ushell/themes/sap_belize_hcw/library.source.less +10 -1
  430. package/src/main/js/sap/ushell/themes/sap_horizon/ShellHeader.less +9 -18
  431. package/src/main/js/sap/ushell/themes/sap_horizon/Tile.less +2 -6
  432. package/src/main/js/sap/ushell/themes/sap_horizon_dark/ShellHeader.less +9 -18
  433. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/ShellHeader.less +7 -14
  434. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/ShellHeader.less +7 -14
  435. package/src/main/js/sap/ushell/ui/AppContainer.js +5 -3
  436. package/src/main/js/sap/ushell/ui/ContentNodeSelector.js +78 -21
  437. package/src/main/js/sap/ushell/ui/ContentNodeSelectorRenderer.js +32 -0
  438. package/src/main/js/sap/ushell/ui/ShellHeader.js +8 -5
  439. package/src/main/js/sap/ushell/ui/appfinder/AppBoxInternal.js +1 -1
  440. package/src/main/js/sap/ushell/ui/cards/FrequentActivitiesExtension.js +5 -4
  441. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +6 -5
  442. package/src/main/js/sap/ushell/ui/footerbar/AboutDialog.controller.js +11 -7
  443. package/src/main/js/sap/ushell/ui/footerbar/AboutDialog.fragment.xml +3 -3
  444. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +4 -4
  445. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.controller.js +6 -4
  446. package/src/main/js/sap/ushell/ui/footerbar/JamDiscussButton.js +8 -5
  447. package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +8 -6
  448. package/src/main/js/sap/ushell/ui/footerbar/LogoutButton.js +10 -7
  449. package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.controller.js +5 -3
  450. package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +8 -6
  451. package/src/main/js/sap/ushell/ui/launchpad/CatalogEntryContainer.js +7 -4
  452. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  453. package/src/main/js/sap/ushell/ui/launchpad/Section.js +3 -6
  454. package/src/main/js/sap/ushell/ui/launchpad/TileContainer.js +14 -10
  455. package/src/main/js/sap/ushell/ui/launchpad/ViewPortState.js +1 -1
  456. package/src/main/js/sap/ushell/ui/launchpad/VizInstance.js +10 -7
  457. package/src/main/js/sap/ushell/ui/launchpad/VizInstanceAbap.js +4 -3
  458. package/src/main/js/sap/ushell/ui/launchpad/VizInstanceCdm.js +5 -3
  459. package/src/main/js/sap/ushell/ui/launchpad/VizInstanceLaunchPage.js +3 -0
  460. package/src/main/js/sap/ushell/ui/launchpad/VizInstanceLink.js +5 -3
  461. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  462. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +3 -8
  463. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -2
  464. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  465. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  466. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  467. package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +9 -7
  468. package/src/main/js/sap/ushell/utils/UriParameters.js +43 -0
  469. package/src/main/js/sap/ushell/utils/UrlParsing.js +2 -4
  470. package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
  471. package/src/main/js/sap/ushell/utils/WindowUtils.js +20 -5
  472. package/src/main/js/sap/ushell/utils/chipsUtils.js +4 -3
  473. package/src/main/js/sap/ushell/utils/tilecard/TileCard.js +305 -305
  474. package/src/main/js/sap/ushell/utils/workpage/WorkPageHost.js +1 -1
  475. package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +22 -5
  476. package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +7 -6
  477. package/src/main/js/sap/ushell/utils/workpage/resources/resources_en.properties +5 -4
  478. package/src/main/js/sap/ushell/utils/workpage/resources/resources_sh.properties +21 -20
  479. package/src/main/js/sap/ushell/utils.js +69 -64
  480. package/src/test/js/sap/ushell/bootstrap/sandbox.js +6 -8
  481. package/ui5.yaml +1 -1
  482. package/src/main/js/sap/ushell/ui/ContentNodeSelector.control.xml +0 -26
@@ -1,1914 +1,990 @@
1
- # Translatable texts for the Fiori Launchpad
2
- #
3
1
 
4
- # Search Panel
5
2
 
6
- #XMSG
7
3
  time_days={0} days ago
8
- #XMSG
9
4
  time_minutes={0} minutes ago
10
- #XMSG
11
5
  time_hours={0} hours ago
12
- #XMSG
13
6
  just_now=Just now
14
- #XMSG
15
7
  notification_arrival_time_now=Now
16
- #XMSG
17
8
  time_day={0} day ago
18
- #XMSG
19
9
  time_minute={0} minute ago
20
- #XMSG
21
10
  time_hour={0} hour ago
22
- #XTIT
23
11
  searchAppTitle=Search
24
- #XINS
25
12
  search=Search
26
- #XBUT
27
13
  searchBtn=Search
28
- #XBUT
29
14
  openSearchBtn=Open Search
30
- #XTIT
31
15
  recentActivities=Recent Activities
32
- #XMSG
33
16
  recentActivitiesNoDataText=There are no recent activities
34
- #XFLD: List of recent activities: description of a "recent search" entry
35
17
  recentActivitiesSearchDescription=Searched Previously
36
- #XTIT
37
18
  frequentActivities=Frequently Used
38
- #XGRP
39
19
  frequentAppsCEPSearch=Frequently Used Apps
40
- #XGRP
41
20
  frequentProductsCEPSearch=Frequently Used Products
42
- #XMSG
43
21
  frequentActivitiesNoDataText=No frequently used items to display
44
- #XTOL
45
22
  frequentActivitiesTooltip=The items you have used most frequently in the last 30 days
46
- #XFLD: Type of an activity - Overview Page
47
23
  Apptype.OVP=Overview Page
48
- #XFLD: Type of an activity - Search
49
24
  Apptype.SEARCH=Search
50
- #XFLD: Type of an activity - Fact Sheet
51
25
  Apptype.FACTSHEET=Fact Sheet
52
- #XFLD: Type of an activity - Digital Assistant (Co - Pilot)
53
26
  Apptype.COPILOT=Digital Assistant
54
- #XFLD: Type of an activity - External Link
55
27
  Apptype.URL=External Link
56
- #XFLD: Type of an activity - Application
57
28
  Apptype.APP=Application
58
- #XGRP
59
29
  suggestion_in_apps={0} in Apps
60
- #XGRP
61
30
  label_apps=Apps
62
- #XGRP
63
31
  label_all=All
64
- #XTOL
65
32
  more_groups=More groups
66
- #XTOL
67
33
  scrollToEnd=Scroll to end
68
- #XTOL
69
34
  scrollToTop=Scroll to start
70
- #XFLD
71
35
  dataSource=Data Source
72
- #XFLD
73
36
  showMore=Show More
74
- #XFLD
75
37
  showAllFilters=Show All Filters
76
- #XFLD
77
38
  showMoreApps=Show More Apps
78
- #XFLD
79
39
  showAllNApps="Show all {0} apps"
80
- #XMSG: Search suggestion term. "{0}" is the suggested search term. "{1}" is the suggested data source in which to search for the suggested term. The data source should be enclosed in <i> tags. Example: Hasso <i>in Employees</i>.
81
40
  resultsIn={0} <i>in {1}</i>
82
- #XTIT
83
41
  searchInPlaceholder=Search in\: {0}
84
- #XTIT: Template for (a) FLP tile title of a pre-defined search and for (b) browser title and entry in browser history. Only used if search scope is not All
85
42
  searchTileTitleProposal=Search for {0} in {1}
86
- #XTIT: Template for (a) FLP tile title of a pre-defined search and for (b) browser title and entry in browser history. Only used if search scope is All
87
43
  searchTileTitleProposalAll=Search for {0}
88
- #XGRP
89
44
  searchFor=Search For
90
- #XGRP
91
45
  searchWithin=Search Within
92
- #XGRP
93
46
  products=Products
94
- #XFLD
95
47
  results=Results
96
- #XMSG: This information is supposed to be read by a screenreader when a visually handicapped user navigates to the search result list for the first time. Will be prepended to an items ARIA description.
97
48
  result_list_announcement_screenreaders=Search result list.
98
- #XMSG: This information is supposed to be read by a screenreader when a visually handicapped user navigates to the search result list for the first time. Will be appended to an items ARIA description.
99
49
  results_count_for_screenreaders=Search result list has a total count of {0} hits.
100
- #XMSG
101
50
  result_list_item_type_link_description=Click this link to narrow down search results to this object type.
102
- #XMSG
103
51
  result_list_item_aria_has_attributes=This search result list item has the following attributes\:\n
104
- #XMSG
105
52
  result_list_item_aria_attribute_and_value={0}. {1}.\n
106
- #XMSG
107
53
  result_list_item_aria_no_attributes=This search result list item has no attributes.
108
- #XMSG
109
54
  result_list_item_aria_collapsed=This search result list item is currently collapsed. To expand it, press the space bar.
110
- #XMSG
111
55
  result_list_item_aria_has_links=This search result list item has additional navigation links. Use the tab key to navigate within the item.
112
- #XMSG
113
56
  result_list_item_aria_expanded=This search result list item is currently expanded. To collapse it, press the space bar.
114
- #XMSG
115
57
  result_list_item_aria_has_more_links=There are more navigation links for this item. Use the arrow keys to navigate between links.
116
- #XGRP
117
58
  no_results_info=We did not find any matches for <b>"{0}"</b>.<br>Try searching again.
118
- #XGRP
119
59
  enterprise_search=Enterprise Search
120
- #XGRP
121
60
  no_apps_found=No matches found for "{0}".\nTry searching within a specific search engine\:
122
- #XGRP
123
61
  no_results_search_aria=No results
124
- #XGRP
125
62
  one_result_search_aria={0} result available
126
- #XGRP
127
63
  multiple_results_search_aria={0} results are available
128
- #XGRP: "{0}" is the translated name of app finder (appFinderTitle)
129
64
  no_results_link_appfinder=You might want to browse the {0}.
130
- #YGRP
131
65
  no_results_tips=<b>Search tips\:</b><ul><li>Make sure that all words are spelled correctly.</li><li>Try different keywords.</li><li>Try more general keywords.</li></ul>
132
- #XEXP
133
66
  showDetailBtn_tooltip=Show details
134
- #XEXP
135
67
  hideDetailBtn_tooltip=Hide details
136
- #XEXP
137
68
  showFacetBtn_tooltip=Show filters
138
- #XEXP
139
69
  hideFacetBtn_tooltip=Hide filters
140
- #XFLD: "{0}" is a comma-separated list of values
141
70
  filtered_by=Filtered By\: {0}
142
- #XFLD
143
71
  filtered_by_aria_label=Filtered By
144
- #XGRP
145
72
  searchIn=Search In
146
- #XEXP
147
73
  searchInTooltip=Search In
148
- #XEXP
149
74
  searchInDataSourceTooltip=Search In\: {0}
150
- #XGRP
151
75
  filterBy=Filter By
152
- #XGRP
153
76
  filters=Filters
154
- #XFLD
155
77
  filterPlaceholder=Filter
156
- #XFLD
157
78
  fromPlaceholder=From
158
- #XFLD
159
79
  toPlaceholder=To
160
- #XSEL
161
80
  sortByName=Sort by Name
162
- #XSEL
163
81
  sortByCount=Sort by Count
164
- #XSEL
165
82
  notSorted=(Not Sorted)
166
- #XCKL
167
83
  showSelectedOnTop=Show Selected on Top
168
- #XHED
169
84
  filterInputErrorTitle=Filter Value\: Validation Error
170
- #XMSE
171
85
  filterInputError=Invalid filter value entered.
172
- #XHED
173
86
  searchUrlErrorTitle=URL Update Failure
174
- #YMSE
175
87
  searchUrlErrorMessage=Due to technical restrictions the UI state cannot be stored in the URL.\nYou can proceed with your work but you cannot bookmark this page.\nThis message is displayed only once.
176
- #XMSE
177
88
  searchUrlParsingError=URL is invalid.
178
- #XMSG
179
89
  searchUrlParsingErrorLong=This may happen when copying the URL from another system. Invalid URL parts are ignored.
180
- #XTIT
181
90
  filterCondition=Filter Condition
182
- #XGRP
183
91
  facetList=List
184
- #XGRP
185
92
  facetBarChart=Bar Chart
186
- #XGRP
187
93
  facetPieChart=Pie Chart
188
- #XGRP
189
94
  infoZeileNumberMoreSelected={0} more selected
190
- #XGRP
191
95
  facetPieChartOverflowText={0}% of data is outside the top 5 shown in pie chart
192
- #XGRP
193
96
  facetPieChartOverflowText2={0}% of data is outside the top {1} shown in pie chart
194
- #XGRP
195
97
  displayAs=Display as\: {0}
196
- #XGRP
197
98
  dropDown=Dropdown
198
- #XGRP
199
99
  selectFromList=Select Items
200
- #XGRP
201
100
  defineCondition=Define Conditions
202
- #XSEL
203
101
  equals=Equal to
204
- #XSEL
205
102
  beginsWith=Begins with
206
- #XSEL
207
103
  endsWith=Ends with
208
- #XSEL
209
104
  contains=Contains
210
- #XSEL
211
105
  containsWords=Contains all of these words
212
- #XTIT
213
106
  operator=Operator
214
- #XTIT
215
107
  checkBox=Condition Check Box
216
- #XEXP
217
108
  removeButton=Remove
218
- #XEXP
219
109
  facetListTooltip={0}\: {1}
220
- #XFLD
221
110
  transactionText=Transaction
222
- #XEXP
223
111
  sortTable=Sort
224
- #XEXP
225
112
  personalizeTable=Select Columns
226
- #XEXP
227
113
  exportData=Export Results
228
- #XEXP
229
114
  titleDescription=Title Description
230
- #XEXP
231
115
  displayList=Display as List
232
- #XEXP
233
116
  displayTable=Display as Table
234
- #XEXP
235
117
  displayMap=Display as Map
236
- #XTIT
237
118
  defaultRank=Best Match on Top
238
- #XEXP
239
119
  intents=Related Apps
240
- #XEXP
241
120
  resetFilterButton_tooltip=Reset Filters
242
- #XEXP
243
121
  noCloumnsSelected=No columns have been selected in the table settings.
244
- #XEXP
245
122
  searchError=Search error
246
- #XEXP
247
123
  searchInitialError=Failed to initialize Business Object search.
248
- #XMSE
249
124
  preserveFormerResultErrorTitle=Unable to restore former result list status.
250
- #XMSE
251
125
  exportDataInfo=The result set is very large. The export will contain the first 1000 results.
252
- #XMSE
253
126
  exportFileName=Search Result Export
254
- #XEXP
255
127
  NavigationUnsupported=Target Navigation is not supported. Please check the configuration in Fiori Launchpad Designer and RFC.
256
- #YMSE
257
128
  preserveFormerResultErrorDetails=The previous result list status (such as selected items or expanded items) cannot be restored due to technical issues.\n\nThe following information might be useful for your system administrator\:\nThe result list item status could not be restored due to missing or wrong key information for one or more of the entities found.\nPlease check the following list of connector keys and ensure that you include all key attributes as response attributes for the respective connector in your search model\: {0}\n
258
129
 
259
- # Side Panel
260
130
 
261
- #XBUT
262
131
  open_appFinderBtn=App Finder
263
- #XEXP
264
132
  new_group_name=Enter group name
265
- #XEXP
266
133
  added_tile_to_group=was moved to
267
- #XBUT
268
134
  add_group_at=Add Group
269
135
 
270
- # Tile Catalog
271
136
 
272
- #XTIT
273
137
  search_easy_access_results=Results ({0}) in {1}
274
- #XMIT
275
138
  all=All
276
- #XFLD
277
139
  my_group=My Home
278
- #XFLD
279
140
  tile=Tile
280
- #XBUT
281
141
  okDialogBtn=OK
282
- #XBUT
283
142
  cancelDialogBtn=Cancel
284
143
 
285
- # Buttons
286
144
 
287
- #XEXP
288
145
  backBtn_tooltip=Back
289
- #XTIT
290
146
  notificationsBtn_title=Notifications
291
- #XEXP
292
147
  shellHeaderOverflowBtn_tooltip=More Options
293
- #XEXP
294
148
  homeBtn_tooltip=Home
295
- #XTOL
296
149
  homeBtn_tooltip_text=Navigate to Home
297
- #XTOL
298
150
  lastPage_tooltip=Navigate to last opened page
299
- #XMSG
300
151
  allMyApps_customString=There are {0} custom apps that cannot be displayed here.
301
- #XMSG
302
152
  allMyApps_customStringSingle=There is 1 custom app that cannot be displayed here.
303
- #XMSG
304
153
  allMyApps_customLinkHomePage=View them in your home page.
305
- #XMSG
306
154
  allMyApps_customLinkHomePageSingle=View it in your home page.
307
- #XMSG
308
155
  allMyApps_customLinkAppFinder=View them in the app finder.
309
- #XMSG
310
156
  allMyApps_customLinkAppFinderSingle=View it in the app finder.
311
- #XTIT
312
157
  allMyApps_headerTitle=All My Apps
313
- #XBUT
314
158
  allMyApps_launchingButtonTitle=All My Apps
315
- #XTND
316
159
  allMyApps_homeEntryTitle=Home Page Apps
317
- #XACT
318
160
  allMyApps_CatalogsList=List of Catalogs
319
- #XACT: Aria label for the area that contains applications from the selected catalog
320
161
  allMyApps_ListOfApps=List of Applications in the Catalog
321
- #XTIT
322
162
  logoutBtn_title=Sign Out
323
- #XEXP
324
163
  logoutBtn_tooltip=Sign Out
325
- #XTIT
326
164
  signoutBtn_title=Sign Out
327
- #XEXP
328
165
  signoutBtn_tooltip=Sign Out
329
- #XMSG
330
166
  hideGroups_error=Internal error; could not hide/show one or more groups
331
- #XBUT
332
167
  sendEmailBtn=Send Email
333
- #XEXP
334
168
  sendEmailBtn_tooltip=Send an Email
335
- #XEXP
336
169
  addgroupBtn_tooltip=New group
337
- #XTIT
338
170
  delete_group=Delete
339
- #XTIT
340
171
  reset_group=Reset
341
- #XMSG
342
172
  delete_group_msg=Are you sure you want to delete the group "{0}"?
343
- #XMSG
344
173
  reset_group_msg=Are you sure you want to reset the group "{0}"?
345
- #XEXP
346
174
  addAssociatedTileToContextGroup=Add to Group "{0}"
347
- #XEXP
348
175
  removeAssociatedTileFromContextGroup=Remove from Group "{0}"
349
- #XEXP
350
176
  launchTile_tooltip=Launch tile
351
177
 
352
- # User Messages
353
178
 
354
- #XMSG: Short text on a tile indicating that the tile's content could not be loaded
355
179
  Tile.failedToLoadView=Failed to load.
356
- #XMSG
357
180
  tile_deleted_msg="{0}" has been removed from the group
358
- #XMSG
359
181
  tile_created_msg=Tile created.
360
- #XMSG
361
182
  SaveAsTileDialog.MessageToast.TileCreatedInPage=The tile was created and added to your page.
362
- #XMSG
363
183
  SaveAsTileDialog.MessageToast.TileCreatedInPages=The tile was created and added to your pages.
364
- #XBUT
365
184
  SaveAsTileDialog.MessageBox.Action.Discard=Discard
366
- #XTIT
367
185
  SaveAsTileDialog.MessageBox.Title.Discard=Discard
368
- #XMSG
369
186
  SaveAsTileDialog.MessageBox.Message.Discard=Are you sure you want to discard your actions?
370
- #XMSG
371
187
  SaveAsTileDialog.MessageBox.SinglePageError=The tile couldn't be added to the page.
372
- #XMSG
373
188
  SaveAsTileDialog.MessageBox.OnePageError=The Tile couldn't be added to one of the pages you selected.
374
- #XMSG
375
189
  SaveAsTileDialog.MessageToast.ValidationFailed=A required entry is missing. Please check.
376
- #XMSG: "{0}" is the title of a tile; "{1}" is the id of a page.
377
190
  SaveAsTileDialog.MessageBox.PageErrorDetail=Tile\: {0}\nPage affected\: {1}
378
- #XMSG
379
191
  SaveAsTileDialog.MessageBox.AllPagesError=The tile couldn't be added to the pages you selected.
380
- #XMSG
381
192
  SaveAsTileDialog.MessageBox.SomePagesError=The tile couldn't be added to some of the pages you selected.
382
- #XMSG: "{0}" is the title of a tile; "{1}" is a list of page ids.
383
193
  SaveAsTileDialog.MessageBox.PagesErrorDetail=Tile\: {0}\nPages affected\:\n{1}
384
- #XMSG
385
194
  SaveAsTileDialog.MessageBox.PageErrorSolution=Reload the launchpad or contact your administrator.
386
- #XMSG
387
195
  group_deleted_msg=Group "{0}" has been deleted
388
- #XMSG
389
196
  group_reset_msg=Group "{0}" has been reset
390
- #XMSG
391
197
  fail_to_add_tile_msg=Failure - Unable to add tile
392
- #XMSG
393
198
  fail_to_remove_tile_msg=Failure - Unable to remove tile
394
- #XMSG
395
199
  fail_to_move_tile_msg=Failure - Unable to move tile
396
- #XMSG
397
200
  fail_to_delete_group_msg=Failure - Unable to delete group
398
- #XMSG
399
201
  fail_to_reset_group_msg=Failure - Unable to reset group
400
- #XMSG
401
202
  fail_to_create_group_msg=Failure - Unable to create group
402
- #XMSG
403
203
  fail_to_move_group_msg=Failure - Unable to move group
404
- #XMSG
405
204
  fail_to_rename_group_msg=Failure - Unable to rename group
406
- #XMSG
407
205
  fail_to_load_groups_msg=Failure - Unable to load groups
408
- #XMSG
409
206
  fail_to_load_catalog_msg=Failed to load catalogs
410
- #XMSG
411
207
  fail_to_load_catalog_tiles_msg=Failure - Unable to load catalog tiles
412
- #XMSG
413
208
  fail_tile_operation_add_to_group="{0}" could not be added to group "{1}"
414
- #XMSG
415
209
  fail_tile_operation_remove_from_group="{0}" could not be removed from group "{1}"
416
- #XMSG
417
210
  fail_tile_operation_add_to_several_groups="{0}" could not be added to multiple groups
418
- #XMSG
419
211
  fail_tile_operation_remove_from_several_groups="{0}" could not be removed from multiple groups
420
- #XMSG
421
212
  fail_tile_operation_create_new_group=New group could not be created
422
- #XMSG
423
213
  fail_tile_operation_some_actions=Could not complete all your actions
424
- #XMSG
425
214
  fail_to_start_app_try_later=Could not open app. Please try again later.
426
- #XMSG
427
- failed_to_open_app_missing_configuration_or_role_assignment=App could not be opened either due to an incorrect SAP Fiori launchpad configuration or a missing role assignment.
428
- #YMSG
429
- cannot_resolve_navigation_target_details=Failed to resolve navigation target "{0}". This is most likely caused by an incorrect SAP Fiori launchpad content configuration or by a missing role assignment.
430
- #XMSG
215
+ failed_to_open_app_missing_configuration_or_role_assignment=App could not be opened either due to an incorrect configuration or a missing role assignment.
216
+ cannot_resolve_navigation_target_details=The navigation target "{0}" of the app could not be resolved. This can be caused, for example, by an incorrect SAP Fiori launchpad content configuration or an incorrect or missing role assignment.
431
217
  failed_to_open_ui5_component=App could not be opened because the SAP UI5 component of the application could not be loaded.
432
- #XMSG
433
218
  cannot_load_ui5_component_details=Failed to load UI5 component for navigation intent "{0}"
434
- #YMSG
435
219
  fail_to_start_app_popup_blocker=An active pop-up blocker prevented the app from opening. In your browser, turn off the pop-up blocker for \u201C{0}\u201D, and then open the app.
436
- #XMSG
437
220
  unsaved_data_warning_popup_message=You have not saved your changes. Are you sure you want to leave this page?
438
- #XMSG
439
221
  savedChanges=Your changes have been saved.
440
- #XMSG
441
222
  historyCleared=Your history has been cleared.
442
- #XTIT
443
223
  unsaved_data_warning_popup_title=Warning
444
224
 
445
- # User Action Buttons
446
225
 
447
- #XBUT
448
226
  okBtn=OK
449
- #XBUT
450
227
  saveBtn=Save
451
- #XBUT
452
228
  cancelBtn=Cancel
453
- #XBUT
454
229
  closeBtn=Close
455
230
 
456
- # Footer Bar
457
231
 
458
- #XBUT
459
232
  about=About
460
- #XBUT
461
233
  discussBtn=Discuss
462
- #XBUT
463
234
  shareBtn=Share
464
- #XBUT
465
235
  addToHomePageBtn=Save as Tile
466
- #XBUT
467
236
  errorBtn=Show Errors
468
- #XEXP
469
237
  helpBtn_tooltip=Help
470
- #XFLD
471
238
  technicalName=Technical Name
472
- #XFLD
473
239
  fioriVersionFld=Version
474
- #XFLD
475
240
  sapui5Fld=SAPUI5
476
- #XFLD
477
241
  userAgentFld=User Agent
478
- #XFLD
479
242
  activeTheme=Theme
480
- #XFLD
481
243
  deviceType=Device Type
482
- #XFLD
483
244
  touchSupported=Touch Input Supported
484
- #XTXT
485
245
  yes=Yes
486
- #XTXT
487
246
  no=No
488
- #XFLD
489
247
  productVersionFld=Product Version
490
- #XFLD
491
248
  systemName=System Name
492
- #XFLD
493
249
  systemRole=System Role
494
- #XFLD
495
250
  tenantRole=Tenant Role
496
- #XFLD
497
251
  fioriAppId=App ID
498
- #XFLD
499
252
  sapAch=Application Component Hierarchy
500
- #XTIT
501
253
  loginDetails=Login Details
502
- #XEXP
503
254
  settings_tooltip=Settings
504
- #XFLD
505
255
  userFld=User
506
- #XFLD
507
256
  serverFld=Server
508
- #XFLD
509
257
  eMailFld=Email
510
- #XFLD
511
258
  linkToApplication=Link to Application
512
- #XFLD
513
259
  linkTo=Link to
514
- #XFLD
515
260
  languageFld=Language
516
- #XFLD
517
261
  navigationDataFld=Navigation Data
518
- #XFLD
519
262
  hashFld=Navigation Intent
520
- #XFLD
521
263
  applicationInformationFld=Application Information
522
- #XFLD
523
264
  applicationTypeFld=Application Type
524
- #XMSW
525
265
  applicationTypeDeprecated=Usage of this Application Type is deprecated. See SAP Note 2614740.
526
- #XFLD
527
266
  urlFld=URL
528
- #XFLD
529
267
  formFactorFld=Form Factor
530
- #XFLD
531
268
  additionalInfoFld=Additional Information
532
- #XFLD
533
269
  ContactSupportArialLabel=Contact Support
534
- #XFLD
535
270
  titleFld=Title\:
536
- #XFLD
537
271
  subtitleFld=Subtitle\:
538
- #XFLD
539
272
  previewFld=Preview\:
540
- #XFLD
541
273
  toggleSelectionModeBtn=Enable or Disable Selection Mode
542
- #XFLD
543
274
  languageRegionFld=Language
544
- #XTIT
545
275
  languageAndRegionTit=Language and Region
546
- #XTIT
547
276
  languageAndRegionForm=Language and Region Settings
548
- #XFLD
549
277
  dateFormatFld=Date Format
550
- #XFLD
551
278
  timeFormatFld=Time Format
552
- #XFLD
553
279
  numberFormatFld=Decimal Format
554
- #XFLD
555
280
  timeZoneFld=Time Zone
556
- #XBUT
557
281
  btn12h=12 h
558
- #XBUT
559
282
  btn24h=24 h
560
283
 
561
- #XFLD
562
284
  appFrameworkId=Framework ID
563
- #XFLD
564
285
  appFrameworkVersion=Framework Version
565
- #XFLD
566
286
  productName=Product Name
567
- #XFLD
568
287
  appId=ID
569
- #XFLD
570
288
  appVersion=Version
571
- #XFLD
572
289
  technicalAppComponentId=Technical Component ID
573
- #XFLD
574
290
  appSupportInfo=Component
575
- #XFLD
576
291
  appTitle=Title
577
- #XFLD
578
292
  aboutCategoryApplication=Application
579
- #XFLD
580
293
  aboutCategorySystem=System
581
- #XFLD
582
294
  aboutCategoryUser=Environment
583
295
 
584
- #XFLD: The label of a table column containing the labels of FLP pages
585
296
  contentNodeSelectorPage=Page
586
- #XFLD: The label of a table column containing the labels of FLP homepage groups
587
297
  contentNodeSelectorHomepageGroup=Group
588
- #XFLD: The label of the content node selector that is automatically set if the FLP is in classic mode
589
298
  contentNodeSelectorHomepageGroups=Groups
590
- #XFLD: The label of the content node selector that is automatically set if the FLP is in spaces mode
591
299
  contentNodeSelectorHomepagePages=Pages
592
- #XFLD: The label of a table column containing the labels of FLP spaces
593
300
  contentNodeSelectorSpace=Space
594
- #XTIT: The title of the value help dialog if in space mode
595
301
  valueHelpDialogTitlePages=Select Pages
596
- #XTIT: The title of the value help dialog if in classic homepage mode
597
302
  valueHelpDialogTitleGroups=Select Groups
598
- #XBUT: The label of a button in the value help dialog to add bookmarks to groups/pages
599
303
  valueHelpDialogButtonApply=Apply
600
- #XBUT: The label of a button in the value help dialog to cancel the dialog
601
304
  valueHelpDialogButtonCancel=Cancel
602
- #XFLD
603
305
  contentProviderLabel=Source System
604
- #XFLD
605
306
  ariaLabelEditModeGroupDefault={0} Group default
606
- #XFLD
607
307
  ariaLabelEditModeGroupLocked={0} Group locked
608
- #XFLD
609
308
  ariaLabelEditModeGroup={0} Group
610
309
 
611
- # Generic Translations
612
310
 
613
- #XBUT
614
311
  samlCloseBtn=Close
615
- #XTIT
616
312
  samlDialogTitle=Authentication Information
617
- #XFLD
618
313
  dataLossInternalMessage=This page contains unsaved data. Are you sure you want to leave the page?
619
- #XFLD
620
314
  dataLossExternalMessage=This page contains unsaved data
621
- #XBUT
622
315
  removeButtonTitle=Remove
623
- #XBUT: Text that is read by screen reader on tile focus in edit mode
624
316
  removeButtonLabel=Removable
625
- #XFLD
626
317
  error=Error
627
- #XMSG
628
318
  beforeLogoutMsg=You are now being signed out
629
- #XMSG
630
319
  savingEntryError=Could not save changes to
631
- #XMSG
632
320
  savingEntriesError=Could not save changes to the following\:
633
- #XTIT
634
321
  signoutMsgTitle=Sign Out
635
- #XMSG
636
322
  tileHasNoActions=No actions
637
- #XBUT,22: Action button (max two lines wrap, width: 2x11, max word length: 11 characters)
638
323
  activateActionMode=Personalize Home Page
639
- #XBUT,22: Action button (max two lines wrap, width: 2x11, max word length: 11 characters)
640
324
  activateEditMode=Edit Home Page
641
- #XBUT,22: Action button (max two lines wrap, width: 2x11, max word length: 11 characters)
642
325
  exitEditMode=Exit Edit Mode
643
- #XBUT
644
326
  closeEditMode=Close
645
- #XTIT
646
327
  close=Close
647
- #XMSG
648
328
  signoutConfirmationMsg=Are you sure you want to sign out?
649
- #XMSG
650
329
  noFilteredItems=No matches found
651
- #XMSG
652
330
  tileTypeListItem=List item
653
- #XMSG
654
331
  noCatalogs=No catalogs found
655
- #XMSG
656
332
  catalogsLoading=Loading catalogs...
657
- #XMSG
658
333
  genericLoading=Loading...
659
- #XMSG
660
334
  screenReaderNavigationLoading=Loading application
661
- #XMSG
662
335
  loadingComplete=Loading complete
663
- #XMSG
664
336
  loadingErrorMessage=Could not load data
665
- #XMSG
666
337
  partialCatalogFail=Failed to load one or more catalogs
667
- #XMSG
668
338
  SpacePageNavgiationRegion=Space Page
669
- #XMSG
670
339
  PageSectionRegion=Page Sections
671
340
 
672
- #XTIT
673
341
  hotKeysGlossary=Keyboard Shortcuts
674
- #XFLD
675
342
  hotkeyFocusOnSearchField=Set the focus on the search entry field
676
- #XFLD
677
343
  hotkeyFocusOnSearchButton=Set the focus on the search button
678
- #XFLD
679
344
  hotkeyFocusOnSettingsButton=Set the focus on the Settings button
680
- #XFLD
681
345
  hotkeyFocusOnNotifications=Display the notifications area
682
- #XFLD
683
346
  hotkeyFocusOnUserActionMenu=Set the focus on the User Actions menu
684
- #XFLD
685
347
  hotkeyOpenSettings=Open the Settings dialog
686
- #XFLD
687
348
  hotkeyHomePage=Set the focus on either the logo or the home button
688
- #XFLD
689
349
  hotkeyFocusOnAppFinderButton=Set the focus on the App Finder button
690
- #XFLD
691
350
  hotkeyExitEditing=Exit edit mode
692
- #XTIT: Name of the MacOs Option key on the keyboard
693
351
  OptionKey=Option
694
- #XTIT: Name of the MacOs Command key on the keyboard
695
352
  CommandKey=Command
696
- #XTIT: Name of the Windows Alt key on the keyboard
697
353
  AltKey=Alt
698
- #XTIT: Name of the Control key on the keyboard
699
354
  ControlKey=Control
700
- #XTIT: Name of the Comma key on the keyboard
701
355
  CommaKey=Comma
702
- #XTIT: Name of the Enter key on the keyboard
703
356
  EnterKey=Enter
704
- #XTIT: Name of the Shift key on the keyboard
705
357
  ShiftKey=Shift
706
358
 
707
- #XMSG
708
359
  userSettings.noContent=No settings content is provided.
709
- #XBUT,22: Action button (max two lines wrap, width: 2x11, max word length: 11 characters)
710
360
  userSettings=Settings
711
- #XBUT,22: Action button (max two lines wrap, width: 2x11, max word length: 11 characters)
712
361
  userAppSettings=App Settings
713
- #XMSG
714
362
  userSettings.SavingError.Undefined=An internal error occurred. Settings could not be saved.
715
- #XMSG
716
363
  userSettings.SavingError.SomeChanges=Some changes could not be saved.
717
- #XMSG: "{0}" is a detailed description of the error
718
364
  userSettings.SavingError.WithMessage=An internal error occurred\: {0}
719
- #XSEL
720
365
  trackingEnabled=Enabled
721
- #XSEL
722
366
  trackingDisabled=Disabled
723
- #XTOL
724
367
  defaultsValuesEntry=Default Values
725
- #XTOL
726
368
  userDefaultsExtendedParametersTooltip=Define more than one value for this field.
727
- #XFLD
728
369
  userDefaultsExtendedParametersTitle=Additional Values
729
- #XTIT
730
370
  userDefaultsGeneralGroup=General
731
- #YINF
732
371
  userDefaultsSystemContextInfo=Select a source system to show the default values defined for it. The parameters from the selected system are displayed below and can be changed. Default values of other source systems cannot be changed.
733
- #XTIT
734
372
  userDefaultsSystemTitle=Source System\:
735
- #XBUT: The "save" button in the confirmation dialog shown if there are unsaved user default values.
736
373
  userDefaultsSave=Save
737
- #XBUT: The "discard" button in the confirmation dialog shown if there are unsaved user default values.
738
374
  userDefaultsDiscard=Discard
739
- #XTIT: The title of the confirmation dialog shown if there are unsaved user default values.
740
375
  userDefaultsUnsavedChangesTitle=Save
741
- #XINF: The explanatory text of the confirmation dialog shown if there are unsaved user default values.
742
376
  userDefaultsUnsavedChangesMessage=You have unsaved changes. Do you want to save the changes?
743
- #XTIT
744
377
  userDefaultsStandardView=Saved Values
745
- #XTXT
746
378
  userDefaultsDiffState=The displayed values have not been saved yet.
747
- #XTIT
748
379
  userSettings.browserLanguage=Browser Language
749
380
 
750
- #XFLD
751
381
  actionHomePage=Home
752
- #XTIT
753
382
  tile.display.action_chip=Target Mapping
754
383
 
755
- #XBUT
756
384
  configuration.cancel=Cancel
757
- #XGRP
758
385
  configuration.category.general=General
759
- #XGRP
760
386
  configuration.category.action_chip_configuration=Intent
761
- #XFLD
762
387
  configuration.mapping_signature=Mapping Signature
763
- #XFLD
764
388
  configuration.form_factor=Device Types
765
- #XFLD
766
389
  configuration.form_factor_phone=Phone
767
- #XFLD
768
390
  configuration.form_factor_tablet=Tablet
769
- #XFLD
770
391
  configuration.form_factor_desktop=Desktop
771
- #XFLD
772
392
  configuration.form_factor_combi=Combi Device
773
- #XEXP
774
393
  configuration.form_factor.tooltip=All the devices whose form factor is suitable for this target
775
- #XTIT
776
394
  configuration.signature.table.title=Parameters
777
- #XCOL
778
395
  configuration.signature.table.name=Name
779
- #XCOL
780
396
  configuration.signature.table.value=Value
781
- #XCOL
782
397
  configuration.signature.table.defaultValue=Default Value
783
- #XCOL
784
398
  configuration.signature.table.isRegEx=Is Regular Expression
785
- #XCOL
786
399
  configuration.signature.table.mandatory=Mandatory
787
- #XCOL
788
400
  configuration.signature.table.renameTo=Target Name
789
- #XTOL
790
401
  configuration.signature.table.renameTo.tooltip=URL parameter name expected by target application
791
- #XCKL
792
402
  configuration.signature.table.allowUndefined=Allow additional parameters
793
- #XTOL
794
403
  configuration.signature.table.nameFieldLbl=Enter a name
795
- #XTOL
796
404
  configuration.signature.table.valueFieldLbl=Enter a value
797
- #XBUT
798
405
  configuration.signature.table.add=Add
799
- #XBUT
800
406
  configuration.signature.table.delete=Delete
801
- #XTIT
802
407
  configuration.signature.uniqueParamMessage.title=Error
803
- #XMSG
804
408
  configuration.signature.uniqueParamMessage.text=Parameter name already exists; enter another name
805
- #YMSG
806
409
  configuration.signature.invalidParamMessage.text=Invalid parameter name; enter a string containing either [a-z], [A-Z], or a combination of alphanumeric characters and "_"
807
- #YMSG
808
410
  configuration.signature.invalidSapPrelaunchOperationsMessage.text=Invalid format of sap-prelaunch-operations parameter. Please ensure the parameter is specified as a default value in the form of a valid JSON array of objects with valid operation types. For example\: {0}
809
- #XGRP
810
411
  configuration.category.target_application=Target
811
- #XGRP
812
412
  configuration.category.dynamic_data=Dynamic Data
813
- #XGRP
814
413
  configuration.category.navigation=Navigation
815
- #XGRP
816
414
  configuration.category.tile_actions=Tile Actions
817
- #XFLD
818
415
  configuration.display_icon_url=Icon
819
- #XMSG
820
416
  configuration.display_icon_url.warning=Warning\: Icon URI is not valid; it must start with "sap-icon\://" and adhere to the URI format
821
- #XEXP
822
417
  configuration.display_icon_url.tooltip=Icon to be displayed on the tile
823
- #XFLD
824
418
  configuration.keywords=Keywords
825
- #XEXP
826
419
  configuration.keywords.tooltip=Comma-separated list of keywords
827
- #XFLD
828
420
  configuration.semantic_object=Semantic Object
829
- #XMSG
830
421
  configuration.semantic_object.error_invalid_chars=Error\: Invalid characters in semantic object. The following characters are invalid\: "?&\#-".
831
- #XEXP
832
422
  configuration.semantic_object.tooltip=Semantic object of the intent to be mapped
833
- #XFLD
834
423
  configuration.semantic_action=Action
835
- #XMSG
836
424
  configuration.semantic_action.error_invalid_chars=Error\: Invalid characters in action. The following characters are invalid\: "?&\#-".
837
- #XMSG
838
425
  configuration.navigation_provider.error_invalid_provider=Error\: Select a valid navigation target
839
- #XEXP
840
426
  configuration.semantic_action.tooltip=Action of the intent to be mapped to a target
841
- #XFLD
842
427
  configuration.display_info_text=Information
843
- #XEXP
844
428
  configuration.display_info_text.tooltip=Additional tile status information
845
- #XFLD
846
429
  configuration.target_application_alias=Application Alias
847
- #XEXP
848
430
  configuration.target_application_alias.tooltip=Application alias as defined in transaction LPD_CUST
849
- #XFLD
850
431
  configuration.navigation_semantic_parameters=Parameters
851
- #XEXP
852
432
  configuration.navigation_semantic_parameters.tooltip=URL parameters for semantic object navigation
853
- #XFLD
854
433
  configuration.target_application_id=Application ID
855
- #XEXP
856
434
  configuration.target_application_id.tooltip=Application ID as defined in transaction LPD_CUST
857
- #XFLD
858
435
  configuration.target_transaction=Transaction
859
- #XEXP
860
436
  configuration.target_transaction.tooltip=Transaction
861
- #XFLD
862
437
  configuration.target_wcf.application_id=Application ID
863
- #XFLD
864
438
  configuration.target_web_dynpro.application=Application
865
- #XFLD
866
439
  configuration.target_web_dynpro.configuration=Configuration
867
- #XFLD
868
440
  configuration.navigation_semantic_action=Action
869
- #XEXP
870
441
  configuration.navigation_semantic_action.tooltip=Action of the intent to be mapped to a target
871
- #XFLD
872
442
  configuration.display_number_unit=Number Unit
873
- #XEXP
874
443
  configuration.display_number_unit.tooltip=Number Unit
875
- #XBUT
876
444
  configuration.ok=OK
877
- #XFLD
878
445
  configuration.service_refresh_interval=Refresh Interval in Seconds
879
- #XMSG
880
446
  configuration.service_refresh_interval.warning=Specified interval is not a valid number
881
- #XFLD
882
447
  configuration.seconds=Seconds
883
- #XEXP
884
448
  configuration.seconds.tooltip=Number of seconds after which data is refreshed ('0' for no refresh)
885
- #XTIT
886
449
  configuration.select_icon=Select Icon
887
- #XFLD
888
450
  configuration.service_url=Service URL
889
- #XEXP
890
451
  configuration.service_url.tooltip=Service URL to load dynamic data from
891
- #XFLD
892
452
  configuration.navigation_provider_instance=Launchpad Instance
893
- #XEXP
894
453
  configuration.navigation_provider_instance.tooltip=Instance key as defined in transaction LPD_CUST
895
- #XFLD
896
454
  configuration.navigation_target_url=Target URL
897
- #XEXP
898
455
  configuration.navigation_target_url.tooltip=Absolute or relative HTTP(S) URL of the navigation target
899
- #XFLD
900
456
  configuration.display_title_text=Title
901
- #XEXP
902
457
  configuration.display_title_text.tooltip=Title to be displayed on the tile
903
- #XFLD
904
458
  configuration.display_subtitle_text=Subtitle
905
- #XEXP
906
459
  configuration.display_subtitle_text.tooltip=Subtitle to be displayed on the tile (optional)
907
- #XFLD
908
460
  configuration.navigation_provider_role=Launchpad Role
909
- #XEXP
910
461
  configuration.navigation_provider_role.tooltip=Role key as defined in transaction LPD_CUST
911
- #XFLD
912
462
  configuration.navigation_use_semantic_object=Use semantic object navigation
913
- #XEXP
914
463
  configuration.navigation_use_semantic_object.tooltip=Defines whether to construct the target URL from a semantic object
915
- #XMSG
916
464
  dynamic_data.error=Error
917
- #XEXP
918
465
  edit_configuration.tooltip=Edit tile configuration
919
- #YEXP
920
466
  edit_configuration.original_locale_not_fit_tooltip=The master language of this tile is "{0}", and your user language is "{1}"; therefore this editable property is read-only. Change your user language to edit these properties
921
- #YMSG
922
467
  edit_configuration.original_locale_not_fit_message=The master language of this tile is "{0}", and your logon language is "{1}". Log on to the system with the master language of the tile to edit text-based properties
923
- #XMSG: "{0}" is the id of a successor application
924
468
  configuration.app_deprecated=<strong>Warning.</strong> The app is deprecated. The successor is "{0}".
925
- #XMSG: "{0}" is the id of a successor application
926
469
  configuration.app_archived=<strong>Warning.</strong> The app is archived. The successor is "{0}".
927
470
 
928
- #XMSG
929
471
  supportTicketCreationSuccess=Your message has been sent; the support team will contact you
930
- #XMSG
931
472
  supportTicketCreationFailed=Your message could not be sent.\nTry sending the message again, or contact your system administrator.
932
473
 
933
- #XEXP
934
474
  searchbox_tooltip=Search
935
- #XEXP
936
475
  searchResultsView_tooltip=Search results
937
- #XEXP
938
476
  openAppFinder_tooltip=Open App Finder
939
- #XEXP
940
477
  catalogSelect_tooltip=Filter by Catalog
941
- #XTOL
942
478
  catalogTilesTagfilter_tooltip=Filter by tags
943
- #XMSG
944
479
  catalogTilesTagfilter_HintText=Filter by tags
945
- #XEXP
946
480
  bookmarkDialogoTitle_tooltip=Enter tile title
947
- #XEXP
948
481
  bookmarkTitleInputError=Please enter a title
949
- #XEXP
950
482
  bookmarkPageSelectError=Please select at least one page
951
- #XEXP
952
483
  bookmarkDialogoSubTitle_tooltip=Enter tile subtitle
953
- #XEXP
954
484
  bookmarkDialogoDescription_tooltip=Enter tile description
955
- #XFLD
956
485
  configuration.target_applicationType=Application Type
957
- #XRBL
958
486
  configuration.target_application.sapui5=SAPUI5 Fiori App
959
- #XRBL
960
487
  configuration.target_application.lpd_cust=SAP Fiori App using LPD_CUST
961
- #XRBL
962
488
  configuration.target_application.transaction=Transaction
963
- #XRBL
964
489
  configuration.target_application.wcf=Web Client UI Application
965
- #XRBL
966
490
  configuration.target_application.urlt=SAPUI5 Fiori App on SAP Cloud Platform
967
- #XRBL
968
491
  configuration.target_application.web_dynpro=Web Dynpro
969
- #XFLD
970
492
  configuration.target_application.description=Title
971
- #XTOL
972
493
  configuration.target_application.description.tooltip=Title of SAPUI5 Fiori application
973
- #XFLD
974
494
  configuration.target_application.url=URL
975
- #XTOL
976
495
  configuration.target_application.url.tooltip=Base URL of SAPUI5 Fiori application. Optional for SAP Fiori applications located in SAPUI5 ABAP repository.
977
- #XFLD
978
496
  configuration.target_system_alias=System Alias
979
- #XTOL
980
497
  configuration.target_system_alias.tooltip=System alias
981
- #XFLD
982
498
  configuration.target_application.component=ID
983
- #XTOL
984
499
  configuration.target_application.component.tooltip=Descriptor ID or component ID of SAPUI5 application
985
- #XMSE
986
500
  configuration.target_application.url.error_invalid_chars=Enter a string containing either [a-z], [A-Z], or a combination of alphanumeric characters and "_~,;-.\:/?%&+\#\="
987
- #XMSE
988
501
  configuration.target_application.component.error_invalid_input=Enter a string value without "SAPUI5.Component\="
989
- #XMSE
990
502
  configuration.target_application.role.error_invalid_chars=Enter a string containing either [a-z], [A-Z], or a combination of alphanumeric characters and "_"
991
- #XMSE
992
503
  configuration.target_application.instance.error_invalid_chars=Enter a string containing either [a-z], [A-Z], or a combination of alphanumeric characters and "_"
993
- #XMSE
994
504
  configuration.target_application.alias_id.warning=Enter either application alias or application ID
995
- #XMSE
996
505
  configuration.target_application.alias_id.error_invalid_chars=Enter a string containing either [a-f], [A-F], or a combination of [a-f], [A-F] and [0-9]
997
- #XMSE
998
506
  configuration.form_factor.warning=Select at least one device type
999
- #XCOL
1000
507
  configuration.tile_actions.table.menu_item=Menu Item
1001
- #XTOL
1002
508
  configuration.tile_actions.table.menu_item_tooltip=Title of the menu item
1003
- #XCOL
1004
509
  configuration.tile_actions.table.target_type=Target Type
1005
- #XTOL
1006
510
  configuration.tile_actions.table.target_type_tooltip=Type of target to which the action navigates
1007
- #XCOL
1008
511
  configuration.tile_actions.table.navigation_target=Navigation Target
1009
- #XTOL
1010
512
  configuration.tile_actions.table.navigation_target_tooltip=URL or semantic object of the navigation target
1011
- #XCOL
1012
513
  configuration.tile_actions.table.action=Action
1013
- #XTOL
1014
514
  configuration.tile_actions.table.action_tooltip=Action that defines the intent together with the semantic object
1015
- #XCOL
1016
515
  configuration.tile_actions.table.icon=Icon
1017
- #XTOL
1018
516
  configuration.tile_actions.table.icon_tooltip=Icon to be displayed with the action
1019
- #XBLI
1020
517
  configuration.tile_actions.table.target_type.url=URL
1021
- #XBLI
1022
518
  configuration.tile_actions.table.target_type.intent=Intent
1023
- #XBUT
1024
519
  configuration.tile_actions.table.add=Add
1025
- #XTOL
1026
520
  configuration.tile_actions.table.add_tooltip=Add tile action
1027
- #XBUT
1028
521
  configuration.tile_actions.table.remove=Remove
1029
- #XTOL
1030
522
  configuration.tile_actions.table.remove_tooltip=Remove tile action
1031
- #XGRP
1032
523
  configuration.category.card_manifest=Card Manifest
1033
- #XCAP
1034
524
  cardTileCaption=Card
1035
- #XMSG
1036
525
  configuration.invalidJSONProvided=Invalid JSON provided
1037
- #XTIT
1038
526
  featuredGroup.title=Feature
1039
- #XCAP: The top n items of a list
1040
527
  top=Top {0}
1041
528
 
1042
- # Fiori Aria Labels
1043
529
 
1044
- #XFLD
1045
530
  Settings_EntryList_label=Settings
1046
- #XFLD
1047
531
  Settings_Dialog_Main_label=Settings
1048
- #XFLD
1049
532
  TileDetails_lable=Tile details
1050
- #XFLD
1051
533
  TileTitle_lable=Title
1052
- #XFLD
1053
534
  tileSettingsDialog_informationField=Description\:
1054
- #XFLD
1055
535
  TileSubTitle_lable=Subtitle
1056
- #XFLD
1057
536
  TileInfo_lable=Information
1058
- #XFLD
1059
537
  TileUnits_lable=Units
1060
- #XFLD
1061
538
  TileValue_lable=Value
1062
- #XFLD
1063
539
  TilePlus_label=Empty group. Activate to add tiles from catalog.
1064
- #XACT: Accessibility label for the navigation bar
1065
540
  Dashboard.Page.Header.AriaLabel=Tile Group
1066
- #XACT: Accessibility label for the tile groups container
1067
541
  Dashboard.Page.Content.AriaLabel=Tile Groups
1068
- #XFLD
1069
542
  GroupListItem_label=Group\:
1070
- #XFLD
1071
543
  SpaceListItem_label=Space\:
1072
- #XFLD
1073
544
  PagesSelection_label=Pages\:
1074
- #XBUT
1075
545
  contactSupportBtn=Contact Support
1076
- #XBUT
1077
546
  DeleteGroupBtn=Delete
1078
- #XBUT
1079
547
  ResetGroupBtn=Reset
1080
- #XBUT
1081
548
  ShowGroupBtn=Show
1082
- #XBUT
1083
549
  HideGroupBtn=Hide
1084
- #XMSG
1085
550
  Group.nowBeingShown=Group is now being shown.
1086
- #XMSG
1087
551
  Group.nowBeingHidden=Group is now being hidden.
1088
- #XBUT
1089
552
  AddTileBtn=Add Tile
1090
- #XBUT
1091
553
  CopyToClipboardBtn=Copy
1092
- #XEXP
1093
554
  CopyToClipboardBtn_tooltip=Copy to clipboard
1094
- #XMSE
1095
555
  CopyWasSuccessful=Details were copied successfully.
1096
- #XMSE
1097
556
  CopyWasNotSuccessful=An error occurred while copying details.
1098
- #XFLD: This is a Link and will onclick extend an error message to show more details
1099
557
  ViewDetails=View Details
1100
558
 
1101
- # Move Tile Dialog
1102
559
 
1103
- #XFLD
1104
560
  moveTile_action=Move
1105
- #XFLD
1106
561
  addToMyHome_action=Add to My Home
1107
- #XFLD
1108
562
  moveTileDialog_title=Move to Group
1109
563
 
1110
- #XMIT
1111
564
  ConvertToTile=Convert to Tile
1112
- #XMIT
1113
565
  ConvertToLink=Convert to Link
1114
- #XMSG
1115
566
  emptyLinkContainerInEditMode=Drag apps here to create links.
1116
- #XMSG
1117
567
  transformationErrorText=This type of tile cannot be converted to a link.
1118
- #XMIT
1119
568
  tileSettingsBtn=Edit Tile Information
1120
- #XMIT
1121
569
  linkSettingsBtn=Edit Link Information
1122
- #XTIT
1123
570
  tileSettingsDialogTitle=Tile Information
1124
- #XTIT
1125
571
  linkSettingsDialogTitle=Link Information
1126
572
 
1127
- # Quick Access
1128
573
 
1129
- #XTIT
1130
574
  quickAccessDialog_title=Quick Access
1131
575
 
1132
- # Contact Support Button
1133
576
 
1134
- #XEXP
1135
577
  feedbackGoBackBtn_tooltip=Go back
1136
- #XFLD
1137
578
  feedbackHeaderText=SAP Fiori
1138
- #XBUT
1139
579
  sendBtn=Send
1140
- #XBUT
1141
580
  approveBtn=Accept
1142
- #XBUT
1143
581
  declineBtn=Decline
1144
- #XFLD
1145
582
  subjectLabel=Subject
1146
- #XFLD
1147
583
  txtAreaLabel=Description
1148
- #YFLD
1149
584
  subjectPlaceHolderHeader=A short text summarizing the issue.
1150
- #YFLD
1151
585
  txtAreaPlaceHolderHeader=Describe the issue in detail. To help diagnose the issue, relevant technical data is added to this message automatically
1152
- #XMSG
1153
586
  subjectEmptyErrorMessage=Please enter a subject
1154
- #XMSG
1155
587
  txtAreaEmptyErrorMessage=Please enter a description.
1156
588
 
1157
- #XTIT
1158
589
  technicalDataTitle=Technical data
1159
- #XLNK
1160
590
  technicalDataLink=Show technical data
1161
- #XLNK
1162
591
  technicalDataLinkHide=Hide technical data
1163
592
 
1164
- #XMSG
1165
593
  appAddedToSingleGroup=App "{0}" was added to group "{1}"
1166
- #XMSG
1167
594
  appAddedToSeveralGroups=App "{0}" was added to {1} groups
1168
595
 
1169
- #XMSG
1170
596
  fail_app_operation_add_to_group=App "{0}" could not be added to group "{1}"
1171
- #XMSG
1172
597
  fail_app_operation_add_to_several_groups=App "{0}" could not be added to multiple groups
1173
598
 
1174
- #XMSG
1175
599
  tileRemovedFromSingleGroup="{0}" was removed from group "{1}"
1176
- #XMSG
1177
600
  tileRemovedFromSeveralGroups="{0}" was removed from {1} groups
1178
- #XMSG
1179
601
  tileAddedToSingleGroup="{0}" was added to group "{1}"
1180
- #XMSG
1181
602
  tileAddedToSingleGroupAndRemovedFromSingleGroup="{0}" was added to group "{1}" and removed from group "{2}"
1182
- #XMSG
1183
603
  tileAddedToSingleGroupAndRemovedFromSeveralGroups="{0}" was added to group "{1}" and removed from {2} groups
1184
- #XMSG
1185
604
  tileAddedToSeveralGroups="{0}" was added to {1} groups
1186
- #XMSG
1187
605
  failedTileCreationMsg=Unknown error while loading Catalog Tile view
1188
- #XMSG
1189
606
  tileAddedToSeveralGroupsAndRemovedFromSingleGroup="{0}" was added to {1} groups and removed from group "{2}"
1190
- #XMSG
1191
607
  tileAddedToSeveralGroupsAndRemovedFromSeveralGroups="{0}" was added to {1} groups and removed from {2} groups
1192
- #XMIT
1193
608
  newGroup_listItemText=New Group
1194
- #XTIT
1195
609
  newGroup_popoverTitle=Add to New Group
1196
- #XEXP
1197
610
  newGroupGoBackBtn_tooltip=Go back
1198
- #XTIT
1199
611
  addTileToGroups_popoverTitle=Add to Group
1200
- #XMSG
1201
612
  cannotLoadTile=Cannot load tile
1202
- #XMSG
1203
613
  cannotLoadLinkInformation=Cannot load link information.
1204
614
 
1205
- #XTIT
1206
615
  noNotificationsMsg=You have no notifications
1207
- #XTIT
1208
616
  errorOccurredMsg=An error has occurred
1209
- #XTIT
1210
617
  notificationsSortByPriority=By Priority
1211
- #XTIT
1212
618
  notificationsSortByDate=By Date
1213
- #XTIT
1214
619
  notificationsSortByType=By Type
1215
- #XMSG
1216
620
  ActionAppliedToNotification="{0}" action was applied to the notification
1217
- #XTIT
1218
621
  notificationSettingsEntry_title=Notifications
1219
- #XCOL
1220
622
  notificationType_column=Notification Type
1221
- #XCOL
1222
623
  iOSNotification_column=Mobile Notifications
1223
- #XCOL
1224
624
  highNotificationsBanner_column=High Priority
1225
- #XMSG
1226
625
  noNotificationTypesEnabledHeader_message=You have not yet received any notifications
1227
- #YMSG
1228
626
  noNotificationTypesEnabled_message=In this view you can adjust the settings for notifications enabled at app level. Currently, no notifications are enabled for your apps.
1229
- #XMSG
1230
627
  moreNotificationsAvailable_message=You have additional unread notifications.
1231
- #XMSG
1232
628
  processNotifications_message=Process or clear some listed notifications to display more.
1233
- #XFLD
1234
629
  moreNotifications=More
1235
- #XCOL
1236
630
  Notifications_Settings_Show_Type_column=Enable
1237
- #XFLD
1238
631
  Label.ShowAlertsForHighNotifications=Show High-Priority Notification Alerts
1239
632
 
1240
- #YMSG
1241
633
  notificationsFailedExecuteAction=Could not update the notification. Refresh the browser and try again
1242
- #XMSG
1243
634
  notificationsFailedDismiss=Could not dismiss notification, please refresh and try again later
1244
- #XMSG
1245
635
  notificationsFailedMarkRead=Could not mark notification as read. Please refresh and try again later
1246
- #XMSG
1247
636
  notificationsFailedExecuteBulkAction=Could not update the notifications in the selected group. Refresh the browser and try again
1248
- #XMSG
1249
637
  notificationsPartialSuccessExecuteBulkAction="{0}" action applied to {1} out of {2} notifications in the "{3}" group. {4} notifications remain listed.
1250
- #XMSG
1251
638
  notificationsSuccessExecuteBulkAction="{0}" action applied to notifications in the "{1}" group
1252
639
 
1253
- # Fact Sheet Object Page
1254
640
 
1255
- #XFLD
1256
641
  mobile=Mobile
1257
- #XFLD
1258
642
  fax=Fax
1259
643
 
1260
- # Smartbusiness Tiles
1261
644
 
1262
- #XFLD
1263
645
  sb.noData=No Data
1264
- #XTIT
1265
646
  sb.status=Status
1266
- #XTIT
1267
647
  sb.actual=Actual
1268
- #XTIT
1269
648
  sb.target=Target
1270
- #XTIT
1271
649
  sb.ch=Critical High
1272
- #XTIT
1273
650
  sb.wh=Warning High
1274
- #XTIT
1275
651
  sb.wl=Warning Low
1276
- #XTIT
1277
652
  sb.cl=Critical Low
1278
- #XTIT
1279
653
  sb.neutral=Neutral
1280
- #XTIT
1281
654
  sb.error=Critical
1282
- #XTIT
1283
655
  sb.critical=Warning
1284
- #XTIT
1285
656
  sb.good=Good
1286
- #XTIT
1287
657
  sb.topn=Top 3
1288
- #XTIT
1289
658
  sb.bottomn=Bottom 3
1290
- #XFLD
1291
659
  sb.noDataAvailable=No Data Available
1292
660
 
1293
- #XTIT
1294
661
  default_app_title=App View
1295
- #XTIT
1296
662
  catalog_title=Tile Catalog
1297
- #XTIT
1298
663
  flp_page_name=SAP Fiori Launchpad
1299
664
 
1300
- #XACT: accessibility label for an arbitrary logo image in the header of the shell control
1301
665
  SHELL_LOGO_TOOLTIP=Company Logo
1302
- #XACT: accessibility description text for the SAP logo image in the header of the shell control
1303
666
  sapLogoText=SAP Logo
1304
667
 
1305
- #XTOL
1306
668
  Shell_Header_AriaLabel=Shell Bar
1307
669
 
1308
- # Shell Header Menu
1309
670
 
1310
- #XTOL
1311
671
  shellNavMenu_relatedApps=Related Apps
1312
- #XTOL shell app title tooltip for navigation menu case
1313
672
  shellNavMenu_openMenuTooltip_navigationMenu=Navigation menu
1314
- #XTOL shell app title tooltip for all my apps menu case
1315
673
  shellNavMenu_openMenuTooltip_allMyApps=All My Apps menu
1316
674
 
1317
- # Search User Preferences Dialog
1318
- #XTIT
1319
675
  searchSetting=Search
1320
- #XTIT
1321
676
  sp.persSearchOn=Personalized Search\: On
1322
- #XTIT
1323
677
  sp.persSearchOff=Personalized Search\: Off
1324
- #XTIT
1325
678
  sp.userProfiling=Personalized Search
1326
- #XSEL
1327
679
  sp.on=ON
1328
- #XSEL
1329
680
  sp.off=OFF
1330
- #YMSG
1331
681
  sp.profileWillBeReset=You are about to reset your user profile by clearing the data that has been collected for your user. System activities that rely on this data to present personalized results will be provided once sufficient new data has been collected. In the meantime, the system will use default logic as a fallback.\n\nAre you sure you want to clear the collected data?
1332
- #XBUT
1333
682
  sp.clear=Clear
1334
- #XFLD
1335
683
  sp.userProfilingField=Use Personalized Search
1336
- #XBUT
1337
684
  sp.clearCollectedData=Clear My History
1338
- #XTIT
1339
685
  sp.disableUserProfiling=Disable User Profiling
1340
- #YMSG
1341
686
  sp.disablingUserProfilingMsg=Disabling user profiling stops the collection of new profile data and deletes all data that has been collected for your user. System activities that rely on this data to display personalized results use default logic as a fallback until user profiling is enabled and sufficient new data is collected.\nUser profiling will only be disabled after you have saved all settings.
1342
- #XBUT
1343
687
  sp.disable=Disable
1344
- #YMSG
1345
688
  sp.disclaimer=If this feature is turned on, some of your activities will be recorded. This data will be used to provide individual, personalized results for future searches.
1346
- #XTIT
1347
689
  sp.resetFailedTitle=Error
1348
- #XMSG
1349
690
  sp.resetFailed=Your history could not be cleared.
1350
691
 
1351
- #XTIT
1352
692
  sessionTimeoutMessage_title=Attention
1353
- #XMSG: "{0}" is a number. "{1}" is the time units. Example: "5 seconds", "10 minutes", etc.
1354
693
  sessionTimeoutMessage_main=Due to inactivity, your session is going to time out in {0} {1}.
1355
- #XMSG: "{0}" is a number. "{1}" is the time units. Example: "5 seconds", "10 minutes", etc.
1356
694
  sessionTimeoutMessage_kioskMode_main=Due to inactivity, you are going to be signed out in {0} {1}.
1357
- #XGLS
1358
695
  sessionTimeoutMessage_units_minutes=Minutes
1359
- #XGLS
1360
696
  sessionTimeoutMessage_units_seconds=Seconds
1361
- #XMSG
1362
697
  sessionTimeoutMessage_unsavedData=Unsaved data will be lost.
1363
- #XBUT
1364
698
  sessionTimeoutMessage_continue_button_title=Continue Working
1365
- #XTIT
1366
699
  sessionExpiredMessage_title=Session Timeout
1367
- #XMSG
1368
700
  sessionExpiredMessage_main=Your session expired due to inactivity. Reload the page to continue working.
1369
- #XBUT
1370
701
  sessionExpiredMessage_reloadPage_button_title=Reload Page
1371
702
 
1372
- #XTIT
1373
703
  bootstrap.xhr.authenticationRequired=Authentication Required
1374
- #XMSG
1375
704
  bootstrap.xhr.windowOpenFailed=Logon window cannot be opened. Ensure popup windows are not blocked.
1376
- #XMSG
1377
705
  bootstrap.xhr.sessionExpired=Your session has expired. Press OK to reload.
1378
706
 
1379
- # Easy Access Menu
1380
707
 
1381
- #XTIT
1382
708
  easyAccessSelectSystemDialogTitle=Select System
1383
- #XBUT
1384
709
  easyAccessSelectSystemTextWithoutSystem=Select System
1385
- #XMSG
1386
710
  easyAccessErrorGetDataErrorMsg=Cannot get "{0}" data\: {1}
1387
- #XMSG
1388
711
  easyAccessErrorGetDataErrorMsgWithDetails=Cannot get "{0}" data\: {1}\nError details\: {2}
1389
- #XMSG
1390
712
  easyAccessErrorGetDataErrorMsgNoReason=Cannot get "{0}" data
1391
- #XMSG
1392
713
  easyAccessUserMenuNameParameter=User menu
1393
- #XMSG
1394
714
  easyAccessSapMenuNameParameter=SAP menu
1395
- #XMSG
1396
715
  easyAccessListNavigationContainer=Categories
1397
- #XMSG
1398
716
  easyAccessTileContainer=Groups
1399
- #XMSG
1400
717
  easyAccessFolderWithNoItems=No subfolders
1401
718
 
1402
- #XBUT
1403
719
  appFinderTitle=App Finder
1404
- #XBUT
1405
720
  appFinderCatalogTitle=Catalog
1406
- #XBUT
1407
721
  appFinderUserMenuTitle=User Menu
1408
- #XBUT
1409
722
  appFinderSapMenuTitle=SAP Menu
1410
- #XMSG
1411
723
  AppFinder.SegmentedButton.Catalog.Describedby=Access apps from your assigned catalogs
1412
- #XMSG
1413
724
  AppFinder.SegmentedButton.UserMenu.Describedby=Access your favorite apps from the front-end system
1414
- #XMSG
1415
725
  AppFinder.SegmentedButton.SAPMenu.Describedby=Access your assigned apps from the front-end system
1416
- #XTIT
1417
726
  appFinder_group_context_title=App Finder - Personalize Group "{0}"
1418
- #XFLD
1419
727
  UserAccountFld=User Account
1420
- #XFLD
1421
728
  UserAccountServerFld=Server
1422
- #XFLD
1423
729
  UserAccountEmailFld=Email
1424
- #XFLD
1425
730
  UserAccountNameFld=Name
1426
- #XFLD
1427
731
  UserAccountIdFld=User ID
1428
- #XFLD
1429
732
  userAccountPersonalizationLabel=Personalization
1430
- #XBUT
1431
733
  userAccountResetPersonalizationButton=Reset All Personalization
1432
- #YFLD
1433
734
  userAccountResetPersonalizationDescriptionText=Reset your personalization settings for the launchpad (such as theme, language, user activities, and home page content).
1434
- #XFLD
1435
735
  userAccountResetPersonalizationWarningDialogDescription=Clicking on reset will delete your personalization settings for the launchpad (e.g. theme, language, user activities, and home page content) and for apps using the launchpad personalization features (e.g. filter settings, table columns).\nThis action is irreversible.\nFurther changes in the dialog will not be applied.\nAre you sure you want to proceed with the reset?
1436
- #XMSG
1437
736
  userAccountResetPersonalizationWarningDialogSuccessToast=Settings were successfully reset to default.
1438
- #XFLD
1439
737
  userAccountResetPersonalizationWarningDialogErrorDialog=Could not reset your personalization data.\nPlease try again later.
1440
- #XFLD
1441
738
  AppearanceContentDensityLabel=Optimized for Touch Input
1442
- #XTIT
1443
739
  HomePageSettingsForm=Home Page Settings
1444
- #XFLD
1445
740
  AnchorBarLabel=Home Page Display
1446
- #XTIT
1447
741
  AppearanceThemeMenu=Theme
1448
- #XTIT
1449
742
  AppearanceLayoutAndBehaviorMenu=Display Settings
1450
743
 
1451
- #XTIT
1452
744
  userActivities=User Activities
1453
- #XTIT
1454
745
  userActivitiesTabName=App Use Data
1455
- #XMSG
1456
746
  trackingLabel=Track my recent activity and frequently used apps
1457
- #XMSG
1458
747
  cleanActivityLabel=Clear my history
1459
- #XBUT
1460
748
  cleanActivityButton=Clear
1461
749
 
1462
- #XFLD
1463
750
  Appearance=Appearance
1464
- #XTIT
1465
751
  FlpSettings_entry_title=Home Page
1466
- #XRBL
1467
752
  anchorBarScrollMode=Show all content
1468
- #XRBL
1469
753
  anchorBarTabMode=Show one group at a time
1470
- #YINF
1471
754
  homePageGroupDisplayDescriptionText=The home page displays your tiles and links in groups. You can choose to show all your groups on a single page or show one group at a time. For large amounts of apps, the single-group display may be better.
1472
- #YINF
1473
755
  homePageGroupDisplayDescriptionText_secondParagraph=To rearrange the home page when all groups are shown, you can drag and drop your tiles and links as you like. To rearrange tiles and links on the home page when shown per group, you must first enter edit mode from the User Name Area.
1474
756
 
1475
- #XFLD: Spaces and Pages mode differ from the classical home page. Instead of a single page - groups - tiles, content is organized in spaces - pages - sections - tiles
1476
757
  spaces=Spaces and Pages
1477
- #XFLD
1478
758
  spacesModeLabel=Use Spaces
1479
- #YFLD
1480
759
  spacesModeDescriptionText=Enable to see your apps clustered in different spaces. Disable to see the classic home page. When you change the setting and save, the launchpad will be restarted.
1481
- #XFLD
1482
760
  hideEmptySpacesLabel=Hide Empty Spaces and Pages
1483
- #XFLD
1484
761
  hideEmptySpacesDescriptionText=Enable to hide empty spaces and pages.
1485
762
 
1486
- #XFLD: Checkbox to show My Home page in spaces mode. My Home is a special page that contains user added applications and bookmarks
1487
763
  showMyHomeLabel=Show My Home
1488
- #YFLD
1489
764
  showMyHomeDescriptionText=Enable to see your My Home space as the first space. You can add your preferred apps to this page or import them from the classic home page. When you change the setting and save, the launchpad will be restarted.
1490
- #XTIT: Settings dialog
1491
765
  settingsMyHomeShown=My Home Shown
1492
- #XFLD: Settings dialog
1493
766
  settingsMyHomeHidden=My Home Hidden
1494
767
 
1495
- #XFLD: User setting: show My Home Import message again (in case the user has dismissed the message before)
1496
768
  showMyHomeImportLabel=Show Import Message
1497
- #YFLD: User setting: show My Home Import message again (in case when the user has dismissed the message before)
1498
769
  showMyHomeImportDescription=Show message with option to import apps from the classic home page again on My Home.
1499
770
 
1500
- #XACT: Accessibility label for the user profile button. "{0}" is the user fullname.
1501
771
  UserActionsMenuToggleButtonAria=Profile of {0}
1502
772
 
1503
- #XACT: Read out when describing the notifications Popover IconTabBar Header items (i.e. "notificationsSortByDate", "notificationsSortByType", and "notificationsSortByPriority")
1504
773
  Notifications.Popover.IconTabBar.Header.AriaLabel=Sort Options
1505
- #XACT
1506
774
  Notifications.ByDateDescending.AriaLabel=Notifications by Date Descending
1507
- #XACT
1508
775
  Notifications.ByType.AriaLabel=Notifications by Type
1509
- #XACT
1510
776
  Notifications.ByPriority.AriaLabel=Notifications by Priority
1511
- #XFLD: Also shown as the header button tooltip.
1512
777
  NotificationToggleButton.NoNewNotifications=Notifications
1513
- #XFLD: "{0}" is the number of new notifications. Also shown as part of the header button tooltip.
1514
778
  NotificationToggleButton.NewNotifications={0} New Notifications
1515
- #XFLD: "{0}" is the number set as the limit of new notifications. Also shown as part of the header button tooltip.
1516
779
  NotificationToggleButton.NewNotifications.MaxExceeded=More Than {0} New Notifications
1517
780
 
1518
- #XTIT
1519
781
  ProfileImgId=Profile Image
1520
- #XMSG
1521
782
  imgConsentMsg=I agree to display my SAP Jam profile image in the launchpad
1522
783
 
1523
- #XTIT
1524
784
  userImageConsentDialogTitle=Display Profile Image
1525
- #YMSG
1526
785
  userImageConsentText=If you have uploaded a profile image to SAP Jam, you can display it in the launchpad as well.\nDo you want to use your SAP Jam image in the launchpad?\n\nYou can change this at any time in the Settings dialog box.
1527
- #XLNK
1528
786
  userImageConsentDialogShowTermsOfUse=Show Terms of Use
1529
- #XLNK
1530
787
  userImageConsentDialogHideTermsOfUse=Hide Terms of Use
1531
- #YFLD
1532
788
  userImageConsentDialogTermsOfUse=The SAP Fiori Launchpad provides the option of showing your SAP Jam profile picture. If you agree to show a picture of yourself, SAP SE will use it in order to display it in the Fiori Launchpad and the front ends of apps which are integrated into it to other users in connection with your name.\n\nYour consent will also apply to future applications integrated into the SAP Fiori Launchpad.\n\nThereby it is always SAP SE's goal to personalize the virtual communication and collaboration of SAP employees, to increase social connections and cooperative ties between internal SAP users, and to increase their communication.\n\nIt is therefore possible that SAP SE will forward your picture to other SAP affiliates if a certain app is operated by another SAP affiliate.\nHowever, SAP SE will not forward your picture to external third parties.\n\nTo ensure that the picture can be displayed, it must be processed outside of the territory of the European Union (EU).\nThis might comprise countries where personal data is subject to a different level of protection than in the EU.\n\nWithin the described use of your picture, it is possible that all SAP employees globally who can access the relevant apps can see your picture.\nIf you agree to the storage and use of your picture asset as described above, please provide us with your consent. Your consent is absolutely voluntary.\nIn particular, there will be no disadvantages for you if you do not want to provide your picture of yourself or if you do not provide your consent.\n\nYou can revoke the consent provided hereunder regarding the use of your picture at any time.\nTo do this, please go to the Fiori Launchpad\u2019s settings panel and switch off the display of your profile picture.
1533
789
 
1534
- #XBUT
1535
790
  DisplayImg=Display Image
1536
- #XBUT
1537
791
  DontDisplayImg=Do Not Display Image
1538
792
 
1539
- #XTIT
1540
793
  AnchorNavigationBar_AriaLabel=Group Navigation
1541
- #XACT
1542
794
  SidePane_AriaLabel=Secondary Content
1543
- #XACT
1544
795
  ShellContent.AriaLabel=Shell Content
1545
- #XACT
1546
796
  ToolArea_AriaLabel=Tool Area
1547
- #XACT
1548
797
  FloatingContainer_AriaLabel=Floating Container
1549
- #XMSG
1550
798
  ShellNavigationMenu_HierarchyItemsAriaLabel=Hierarchical Navigation
1551
799
 
1552
- #XMSG
1553
800
  EasyAccessMenu_NoAppsToDisplayMessagePage_Text=No apps to display
1554
- #XMSG
1555
801
  EasyAccessMenu_SearchPlaceHolder_Catalog=Search in catalog
1556
- #XMSG
1557
802
  EasyAccessMenu_SearchPlaceHolder_UserMenu=Search in user menu
1558
- #XMSG
1559
803
  EasyAccessMenu_SearchPlaceHolder_SAPMenu=Search in SAP menu
1560
- #XTOL
1561
804
  EasyAccessMenu_PinButton_UnToggled_Tooltip=Add tile
1562
- #XTOL
1563
805
  EasyAccessMenu_PinButton_Toggled_Tooltip=Edit assignment
1564
- #XLNK
1565
806
  EasyAccessSearchResults_ShowMoreResults=Show more ({0} of {1})
1566
807
 
1567
- #XTIT
1568
808
  AllMyAppsEmptyText=Select Category
1569
- #XFLD
1570
809
  AppearanceTileSizeLabel=Tile Size
1571
- #XRBL
1572
810
  AppearanceTileSizeSmall=Small
1573
- #XRBL
1574
811
  AppearanceTileSizeLarge=Large
1575
- #YINF
1576
812
  appearanceTileSizeDescriptionText=Sets the size of the tiles on the home page for desktop devices. The tile size on mobile devices is always small and is not affected by this setting.
1577
- #YINF
1578
813
  appearanceCompactCozyDescriptionText=Increases the size and spacing of controls to allow you to interact with them more easily using your fingertip. This is useful for hybrid devices that combine touch and mouse events.
1579
- #XFLD
1580
814
  AppearanceShowContentProviderInfoOnVisualizationsLabel=Show Source System Name on Tiles
1581
- #YINF
1582
815
  AppearanceShowContentProviderInfoOnVisualizationsText=Show from which system the app comes, directly on the tile. We recommend activating this setting if the apps you use are available in multiple systems.
1583
- #XFLD
1584
816
  AppearanceDarkModeLabel=Automatic Dark Mode Detection
1585
- #XINF
1586
817
  AppearanceDarkModeDetectionText=Enable automatic dark mode detection on compatible themes based on your operating system settings.
1587
- #XTIT: Label for the high contract theme in the theme list. {0} is a specific theme ID like "SAP Horizon" or "SAP Quartz", so the final text is like "SAP Quartz High Contrast"
1588
818
  AppearanceHighContrastTheme={0} High Contrast
1589
- #XMSG
1590
819
  LanguageAndRegionHelpingText=After you save your settings, the browser will refresh for the new settings to take effect.
1591
- #XMSG
1592
820
  TimeZoneHelpingText=The time zone will not be applied in UI5 apps. \nIf you don't know the type of an app, you can check it in the "About" dialog in the "ID of the Application Framework\u201D field.
1593
- #XTOL
1594
821
  ToggleButtonShow=Show Menu
1595
- #XTOL
1596
822
  ToggleButtonHide=Hide Menu
1597
- #XEXP
1598
823
  embeddedNavigationMode=Opens in place
1599
- #XEXP
1600
824
  newWindowNavigationMode=Opens in a new window
1601
- #XEXP
1602
825
  replaceNavigationMode=Opens in place without a launchpad shell
1603
- #XEXP
1604
826
  newWindowThenEmbeddedNavigationMode=Opens in a new window without a launchpad shell
1605
827
 
1606
- #XMSG: Message displayed inside of the Page control when there are no sections
1607
828
  Page.NoSectionText=There are no sections. The page is empty.
1608
- #XBUT
1609
829
  Page.Button.AddSection=Add Section
1610
830
 
1611
- #XBUT
1612
831
  Section.Button.Delete=Delete Section
1613
- #XBUT
1614
832
  Section.Button.Reset=Reset Section
1615
- #XBUT
1616
833
  Section.Button.Hide=Hide Section
1617
- #XBUT
1618
834
  Section.Button.Show=Show Section
1619
- #XBUT
1620
835
  Section.Button.AddVisualization=Add Tile
1621
- #XTIT: This is displayed when the input is empty
1622
836
  Section.TitlePlaceholder=Enter a section title
1623
- #XTIT: Label for the section title
1624
837
  Section.Label.Title=Section Title
1625
- #XTIT
1626
838
  Section.NoVisualizationsText=To start, drag/add content from catalogs here.
1627
- #XMSG
1628
839
  Section.nowBeingShown=Section is now being shown.
1629
- #XMSG
1630
840
  Section.nowBeingHidden=Section is now being hidden.
1631
- #XMSG: This message is immediately followed by " Hide Section Button" or " Show Section Button".
1632
841
  Section.ButtonLabelChanged=Button changed to
1633
- #XMSG: "{0}" is the Section Title, this is read when a user navigates to the section and should describe the UI type as well as the title.
1634
842
  Section.Description={0} Section
1635
- #XMSG: If the Section Title is empty this text should be read instead of the section title. "{0}" is the position of the section on the page.
1636
843
  Section.Description.EmptySectionAriaLabel=Unnamed section at position {0}
1637
- #XMSG: Aria label for the compact area of a section (area with link tiles).
1638
844
  Section.CompactArea.Description=Links
1639
845
 
1640
- # Product Switch
1641
846
 
1642
- #XBUT
1643
847
  productSwitch=Product Switch
1644
848
 
1645
- # Pages Runtime
1646
849
 
1647
- #XMSG
1648
850
  PageRuntime.NoAssignedSpace=Cannot find a space assigned to you. Please contact your system administrator.
1649
- #XMSG
1650
851
  PageRuntime.NoAssignedPage=Cannot find a page assigned to you. Please contact your system administrator.
1651
- #XMSG
1652
852
  PageRuntime.InvalidPageId=The page ID is invalid. Please enter a valid page ID.
1653
- #XMSG
1654
853
  PageRuntime.InvalidSpaceId=The space ID is invalid. Please enter a valid space ID.
1655
- #XMSG
1656
854
  PageRuntime.NoPageIdAndSpaceIdProvided=No page ID and space ID entered. Please enter one space ID and one page ID.
1657
- #XMSG
1658
855
  PageRuntime.OnlySpaceIdProvided=You have entered a space ID but no page ID. Please enter a page ID.
1659
- #XMSG
1660
856
  PageRuntime.OnlyPageIdProvided=You have entered a page ID but no space ID. Please enter a space ID.
1661
- #XMSG
1662
857
  PageRuntime.MultiplePageOrSpaceIdProvided=More than one space ID or page ID entered. Please enter one space ID and one page ID only.
1663
- #XBUT
1664
858
  PageRuntime.CannotLoadPage.DetailsButton=View Details
1665
- #XBUT
1666
859
  PageRuntime.CannotLoadPage.CopyButton=Copy
1667
- #XMSG
1668
860
  PageRuntime.CannotLoadPage.CopySuccess=Details were copied successfully
1669
- #XMSG
1670
861
  PageRuntime.CannotLoadPage.CopyFail=An error occurred while copying details.
1671
- #YMSG
1672
862
  PageRuntime.CannotLoadPage.Text=An error occurred while loading this page. This might have happened due to one of the following reasons\:\n - The page or space has been removed or is no longer assigned to you.\n - The URL might be corrupt. Among other things, this might be caused by a corrupt bookmark.\n\nPlease copy the complete error message by using the Copy button below and contact your content administrator.\n\nPageId\: "{0}"\nSpaceId\: "{1}"
1673
- #YMSG
1674
- PageRuntime.GeneralError.Text=An error has occurred. Please refresh the launchpad after a few minutes. If this error keeps occurring, please contact SAP support.
1675
- #XMSG
863
+ PageRuntime.GeneralError.Text=An error has occured. Please refresh the page after a few minutes. If this error occurs multiple times, please contact SAP support.
1676
864
  PageRuntime.CannotLoadPage.Description=The original error message from the corresponding loading request is\:
1677
- #XBUT
1678
865
  PageRuntime.EditMode.Activate=Edit Current Page
1679
- #XBUT: "{0}" is the title of the page
1680
866
  PageRuntime.EditModeForPage.Activate=Edit {0}
1681
- #XBUT: Add tiles to the "My Home" page. "{0}" is the title of the page.
1682
867
  PageRuntime.EditModeForPage.AddTilesToMyHome=Add Tiles to {0}
1683
- #XBUT
1684
868
  PageRuntime.EditMode.Exit=Exit Edit Mode
1685
- #XBUT
1686
869
  PageRuntime.EditMode.ExitAddTilesMode=Exit Add Tiles Mode
1687
- #XMSG
1688
870
  PageRuntime.EditMode.EmptySection=Empty sections will not be displayed on the page. Add your preferred apps using "Add Tile".
1689
- #XTIT
1690
871
  PageRuntime.Dialog.Title.Delete=Delete
1691
- #XTIT
1692
872
  PageRuntime.Dialog.Title.MoveVisualization=Move to Section
1693
- #XMSG
1694
873
  PageRuntime.Message.SectionDeleted=Section deleted
1695
- #XMSG
1696
874
  PageRuntime.Message.SectionReset=Section reset
1697
- #XMSG
1698
875
  PageRuntime.Message.VisualizationRemoved=Tile removed
1699
- #XMSG
1700
876
  PageRuntime.Message.VisualizationAddedToMyHome=Tile added to My Home
1701
- #XMSG
1702
877
  PageRuntime.Message.Section.Delete=Are you sure you want to delete section "{0}"?
1703
- #XMSG
1704
878
  PageRuntime.Message.Section.DeleteNoTitle=Are you sure you want to delete this section?
1705
- #XMSG
1706
879
  PageRuntime.Message.VisualizationMoved=Tile moved
1707
- #XMSG
1708
880
  PageRuntime.Message.VisualizationConverted=Tile converted
1709
- #XMSG
1710
881
  PageRuntime.Message.VisualizationMovedAndConverted=Tile moved and converted
1711
- #XMSG
1712
882
  PageRuntime.Message.SectionMoved=Section moved
1713
- #XMSG
1714
883
  NavigationDataProvider.CannotLoadData=The navigation target data for the tiles on this page could not be loaded due to an error.
1715
- #XMSG
1716
884
  VisualizationDataProvider.CannotLoadData=The details of the tiles on the page could not be loaded due to an error.
1717
- #XMSG
1718
885
  PagePersistenceAdapter.CannotLoadPage=The page could not be loaded from the page repository.
1719
886
 
1720
- # Workpages Runtime
1721
887
 
1722
- #XBUT
1723
888
  WorkpageRuntime.EditMode.Activate=Customize Current Page
1724
889
 
1725
- # Home App
1726
890
 
1727
- #XBUT
1728
891
  HomeApp.Menu.Title=My Home
1729
- #XBUT
1730
892
  HomeApp.CannotLoadApp.CopyButton=Copy Details
1731
- #XMSG
1732
893
  HomeApp.CannotLoadApp.CopySuccess=Details were copied successfully
1733
- #XMSG
1734
894
  HomeApp.CannotLoadApp.CopyFail=An error occurred while copying details.
1735
- #YMSG
1736
- HomeApp.GeneralError.Text=An error has occured. Please wait a few minutes and then refresh the launchpad. If this error persists, please contact your administrator.
895
+ HomeApp.GeneralError.Text=An error has occurred. Please refresh the page after a few minutes. If this error occurs multiple times, please contact your administrator.
1737
896
 
1738
- #XMSG
1739
897
  VisualizationOrganizer.Title=Select the Pages for This Tile
1740
- #XTOL: Tooltip for the search button
1741
898
  VisualizationOrganizer.SearchField.Tooltip=Search
1742
- #XTOL: Tooltip for the toggle button
1743
899
  VisualizationOrganizer.ToggleButton.Tooltip=Selected Pages
1744
- #XTOL: MessageBox Description for discarding changes
1745
900
  VisualizationOrganizer.MessageBox.Description=Are you sure you want to discard the changes?
1746
- #XTOL: MessageBox Title for discarding changes
1747
901
  VisualizationOrganizer.MessageBox.Title=Discard
1748
- #XTOL: MessageBox Action Discard for discarding changes
1749
902
  VisualizationOrganizer.MessageBox.ActionDiscard=Discard
1750
- #XMSG
1751
903
  VisualizationOrganizer.PagesList.NoDataText=No pages available.
1752
- #XMSG
1753
904
  VisualizationOrganizer.PagesList.NoResultsText=No pages found.
1754
- #XMSG: The added or removed visualizations are now saved.
1755
905
  VisualizationOrganizer.MessageToast=Your changes have been saved.
1756
- #XMSG: "{0}" is the title of a visualization. "{1}" is the title of the section. "{2}" is the title of the page.
1757
906
  VisualizationOrganizer.MessageToastSectionContextAdd="{0}\u201D added to section "{1}" of page "{2}"
1758
- #XMSG: "{0}" is the title of a visualization. "{1}" is the title of the section. "{2}" is the title of the page.
1759
907
  VisualizationOrganizer.MessageToastSectionContextRemove="{0}\u201D removed from section "{1}" of page "{2}"
1760
- #XMSG: "{0}" is the title of a visualization. "{1}" is the title of the page.
1761
908
  VisualizationOrganizer.MessageToastPageAdd="{0}" added to "{1}"
1762
- #XMSG: "{0}" is the title of a visualization. "{1}" is the title of the page.
1763
909
  VisualizationOrganizer.MessageToastPageRemove=\u201C{0}" removed from "{1}"
1764
- #XTIT: "{0}" is the title of the page.
1765
910
  VisualizationOrganizer.PageContextTitle=App Finder - Personalize "{0}"
1766
- #XTIT
1767
911
  VisualizationOrganizer.AppFinderSectionContextTitle=App Finder - Personalize "{0}"
1768
- #XTIT
1769
912
  VisualizationOrganizer.AppFinderSectionContextTitleUnnamed=App Finder - Personalize Unnamed Section
1770
- #XTOL
1771
913
  VisualizationOrganizer.Button.Tooltip.AddToSection=Add to Section
1772
- #XTOL
1773
914
  VisualizationOrganizer.Button.Tooltip.RemoveFromSection=Remove from Section
1774
- #XTOL: "{0}" is the name of the Page
1775
915
  VisualizationOrganizer.Button.Tooltip.AddToPage=Add to Page "{0}"
1776
- #XTOL: "{0}" is the name of the Page
1777
916
  VisualizationOrganizer.Button.Tooltip.RemoveFromPage=Remove from Page "{0}"
1778
917
 
1779
- #XTXT
1780
918
  VisualizationInstance.OutOfRoleContext=Out of role context
1781
- #XTXT
1782
919
  VisualizationInstance.ConvertToStandardAction=Convert to Tile
1783
- #XTXT
1784
920
  VisualizationInstance.ConvertToStandardWideAction=Convert to Wide Tile
1785
- #XTXT
1786
921
  VisualizationInstance.ConvertToFlatAction=Convert to Flat Tile
1787
- #XTXT
1788
922
  VisualizationInstance.ConvertToFlatWideAction=Convert to Flat Wide Tile
1789
- #XTXT
1790
923
  VisualizationInstance.ConvertToCompactAction=Convert to Link
1791
924
 
1792
- #XTIT
1793
925
  DefaultSection.Title=Recently Added Apps
1794
926
 
1795
- # Components: Technical Titles
1796
927
 
1797
- #XTIT: Technical name of App Finder component. Not displayed to users.
1798
928
  Component.AppFinder.Title=App Finder
1799
- #XTIT: Technical name of Homepage component. Not displayed to users.
1800
929
  Component.Homepage.Title=Home Page
1801
930
 
1802
- #XMSG
1803
931
  SaveOnPage.CannotLoadPages=An error occured while loading pages.
1804
932
 
1805
- # "Contact Support" feature
1806
933
 
1807
- #XTIT: Subject of the created backend incident; "{0}" is the system's name; "{1}" is the user's ID.
1808
934
  contactSupport.Subject=Issue in {0} reported by {1}
1809
935
 
1810
- # FailedTileDialog
1811
936
 
1812
- #YMSG
1813
937
  FailedTileDialog.Message.Text=This tile could not be loaded. Please remove the tile or reset its group. If the problem persists, contact your system administrator.
1814
- #XBUT
1815
938
  FailedTileDialog.ShowDetails.Text=Show Details
1816
- #XFLD
1817
939
  FailedTileDialog.groupId.Label=Group ID
1818
- #XFLD
1819
940
  FailedTileDialog.chipTitle.Label=Tile Title
1820
- #XFLD
1821
941
  FailedTileDialog.chipDescription.Label=Tile Description
1822
- #XFLD
1823
942
  FailedTileDialog.chipInstanceId.Label=Group Tile ID
1824
- #XFLD
1825
943
  FailedTileDialog.chipId.Label=Catalog Tile ID
1826
- #XFLD
1827
944
  FailedTileDialog.catalogId.Label=Catalog ID
1828
- #XFLD
1829
945
  FailedTileDialog.completelyLoaded.Label=Tile loaded completely
1830
- #XFLD
1831
946
  FailedTileDialog.debugInfo.Label=Debug Information
1832
947
 
1833
- # AppilcationContainer
1834
- #XMSG: Title of the application container iframe, this is written to users on accessing the iframe, when using braille devices: "Application Frame"
1835
948
  AppilcationContainer.IframeTitle=Application
1836
949
 
1837
- # My Home - Initial Page
1838
- #XMSG
1839
950
  MyHome.InitialPage.Description=You can add your preferred apps to this page.
1840
- #XTIT
1841
951
  MyHome.InitialPage.Title=Nothing here yet?
1842
- #XBUT
1843
952
  MyHome.InitialPage.Button.EditPage=Edit Page
1844
- #XLNK
1845
953
  MyHome.InitialPage.MessageStrip.Link=Start importing now.
1846
- #XMSG
1847
954
  MyHome.InitialPage.MessageStrip.Text=You can add your apps from the classic home page.
1848
- #XMSG
1849
955
  MyHome.InitialPage.MessageStrip.Popup=You can display this message again in the user settings on the Spaces and Pages tab.
1850
- #XTIT
1851
956
  MyHome.ImportDialog.Title=Import Personalization Content
1852
- #YMSG
1853
957
  MyHome.ImportDialog.Info=You have personalized groups in the classic home page. You can import these groups to this page. Once you have done this, the launchpad will restart.
1854
- #XBUT
1855
958
  MyHome.ImportDialog.Button.AddAppsToPage=Import
1856
- #XBUT
1857
959
  MyHome.ImportDialog.Button.Cancel=Cancel
1858
- #XMSG
1859
960
  MyHome.InitialPage.Message.HidePage=Want to hide this page?
1860
- #XMSG
1861
961
  MyHome.InitialPage.Message.GoToUserSettings=Go to User Settings.
1862
- #XMSG
1863
962
  MyHome.InitialPage.Message.ImportSuccessful=Import successful
1864
963
 
1865
- # Navigation Bar Menu
1866
964
 
1867
- #XTIT Title of the Navigation Bar Menu with number of pinned spaces
1868
965
  NavigationBarMenu.PinnedSpaces.Title=Pinned Spaces ({0})
1869
- #XTIT Title of the All Spaces Tree
1870
966
  NavigationBarMenu.AllSpaces.Title=All Spaces
1871
- #XBUT Button to pin a single unpinned space
1872
967
  NavigationBarMenu.Button.PinSpace=Pin Space
1873
- #XBUT Button to unpin a single pinned space
1874
968
  NavigationBarMenu.Button.UnpinSpace=Unpin Space
1875
- #XBUT Button to unpin all pinned spaces
1876
969
  NavigationBarMenu.Button.UnpinAll=Unpin All
1877
- #XMSG Button tooltip to unpin all pinned spaces
1878
970
  NavigationBarMenu.Button.UnpinAll.Tooltip=Unpin All Spaces
1879
- #XMSG NoData Text for the Tree that holds the pinned spaces
1880
971
  NavigationBarMenu.PinnedSpaces.NoDataText=Pin your favorite spaces to the navigation bar.
1881
- #XMSG NoData Text for the Tree that holds all spaces
1882
972
  NavigationBarMenu.AllSpaces.NoDataText=There are no spaces assigned to you.
1883
- #XBUT Button Text (tooltip) for the burger button to open the popover
1884
973
  NavigationBarMenu.Button.OpenPopover=Personalize Navigation Bar
1885
- #XMSG Announced when a pinned space is moved
1886
974
  NavigationBarMenu.PinnedSpaces.Moved=Pinned Space moved
1887
975
 
1888
- # System Information Bar
1889
- #XACT: Aria label for the System Information Bar which is placed above the FLP.
1890
976
  SysInfoBarAriaLabel=System Information Bar - {0} {1}
1891
977
 
1892
978
 
1893
- #XFLD: Week Numbering Setting Label
1894
979
  weekNumberingFld=Week Numbering
1895
- #XTIT
1896
980
  DefaultWeekNumberingTitle=Default
1897
- #XTIT
1898
981
  ISO_8601WeekNumberingTitle=ISO 8601
1899
- #XTIT
1900
982
  MiddleEasternWeekNumberingTitle=Middle Eastern
1901
- #XTIT
1902
983
  WesternTraditionalWeekNumberingTitle=Western Traditional
1903
- #XTXT
1904
984
  DefaultWeekNumberingText=Use the default calendar week numbering from the system.
1905
- #XTXT
1906
985
  ISO_8601WeekNumberingText=Monday is the first day of the week; the week containing January 4th is the first week of the year.
1907
- #XTXT
1908
986
  MiddleEasternWeekNumberingText=Saturday is the first day of the week, the week containing January 1st is the first week of the year.
1909
- #XTXT
1910
987
  WesternTraditionalWeekNumberingText=Sunday is the first day of the week; the week containing January 1st is the first week of the year.
1911
988
 
1912
989
 
1913
- #XFLD Announced to screen readers to mark tiles as interactive elements (link)
1914
990
  VizInstance.AriaDescription.Link=Link