@sapui5/sap.ushell 1.115.0 → 1.116.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 (519) hide show
  1. package/package.json +7 -2
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/CanvasShapesManager.js +2 -2
  4. package/src/main/js/sap/ushell/Container.js +10 -2
  5. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  6. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  7. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  8. package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
  9. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  10. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  11. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
  12. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  13. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  14. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  15. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  16. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  17. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  18. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
  19. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
  20. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  21. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
  22. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +1 -1
  23. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
  24. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  25. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  26. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  27. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  28. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  30. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +41 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +3 -4
  35. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +62 -53
  42. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +222 -59
  44. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +2 -2
  47. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
  48. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +2 -2
  49. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +35 -0
  51. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  52. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +2 -10
  56. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +902 -218
  57. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +2 -3
  58. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  59. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +12 -2
  61. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +18 -9
  62. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +1 -2
  63. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +7 -27
  64. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +3 -3
  65. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +7 -3
  66. package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +99 -3
  67. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +1 -1
  68. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +3 -0
  69. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  70. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  71. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
  72. package/src/main/js/sap/ushell/bootstrap/cdm/cdm.constants.js +8 -8
  73. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  74. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5language.js +2 -2
  75. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +3 -0
  76. package/src/main/js/sap/ushell/components/HeaderManager.js +3 -0
  77. package/src/main/js/sap/ushell/components/HomepageManager.js +1 -1
  78. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  79. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +167 -299
  80. package/src/main/js/sap/ushell/components/applicationIntegration/Storage.js +14 -189
  81. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +19 -12
  82. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +296 -216
  83. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxesCache.js +40 -10
  84. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +43 -2
  85. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +1 -1
  86. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  87. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  88. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
  89. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +4 -2
  90. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n.properties +7 -7
  91. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ar.properties +27 -27
  92. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_bg.properties +27 -27
  93. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ca.properties +26 -26
  94. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cy.properties +27 -27
  95. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_da.properties +27 -27
  96. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_de.properties +27 -27
  97. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_el.properties +27 -27
  98. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_GB.properties +3 -3
  99. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_sappsd.properties +5 -5
  100. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_es_MX.properties +26 -26
  101. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fi.properties +27 -27
  102. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr_CA.properties +26 -26
  103. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hi.properties +27 -27
  104. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hr.properties +27 -27
  105. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hu.properties +27 -27
  106. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_id.properties +27 -27
  107. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_it.properties +26 -26
  108. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_iw.properties +27 -27
  109. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ja.properties +27 -27
  110. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ko.properties +27 -27
  111. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lt.properties +27 -27
  112. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lv.properties +27 -27
  113. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ms.properties +27 -27
  114. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_nl.properties +27 -27
  115. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_no.properties +27 -27
  116. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pl.properties +27 -27
  117. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pt.properties +27 -27
  118. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pt_PT.properties +27 -27
  119. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ro.properties +26 -26
  120. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ru.properties +27 -27
  121. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sh.properties +27 -27
  122. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sl.properties +27 -27
  123. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sv.properties +27 -27
  124. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_th.properties +27 -27
  125. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_uk.properties +27 -27
  126. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_vi.properties +27 -27
  127. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_CN.properties +27 -27
  128. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_TW.properties +27 -27
  129. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +39 -79
  130. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ar.properties +18 -18
  131. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_bg.properties +18 -18
  132. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ca.properties +15 -15
  133. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cy.properties +18 -18
  134. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_da.properties +18 -18
  135. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_de.properties +15 -15
  136. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_el.properties +18 -18
  137. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_GB.properties +2 -2
  138. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es_MX.properties +15 -15
  139. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fi.properties +18 -18
  140. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr_CA.properties +15 -15
  141. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hi.properties +18 -18
  142. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hr.properties +18 -18
  143. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hu.properties +18 -18
  144. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_id.properties +18 -18
  145. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_it.properties +17 -17
  146. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_iw.properties +18 -18
  147. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ja.properties +18 -18
  148. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ko.properties +18 -18
  149. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lt.properties +18 -18
  150. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lv.properties +18 -18
  151. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ms.properties +18 -18
  152. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_nl.properties +18 -18
  153. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_no.properties +18 -18
  154. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pl.properties +18 -18
  155. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt.properties +18 -18
  156. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt_PT.properties +18 -18
  157. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ro.properties +17 -17
  158. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ru.properties +18 -18
  159. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sl.properties +18 -18
  160. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_th.properties +17 -17
  161. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_uk.properties +18 -18
  162. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_vi.properties +18 -18
  163. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_zh_CN.properties +18 -18
  164. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_zh_TW.properties +18 -18
  165. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +16 -6
  166. package/src/main/js/sap/ushell/components/contentFinder/Component.js +28 -28
  167. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +2 -2
  168. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  169. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  170. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  171. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +2 -2
  172. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ar.properties +8 -10
  173. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_bg.properties +8 -10
  174. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ca.properties +8 -10
  175. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cs.properties +1 -3
  176. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cy.properties +8 -10
  177. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_da.properties +8 -10
  178. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_de.properties +8 -10
  179. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_el.properties +7 -9
  180. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en.properties +1 -3
  181. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_GB.properties +1 -3
  182. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_sappsd.properties +1 -3
  183. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saprigi.properties +1 -3
  184. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saptrc.properties +1 -3
  185. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es.properties +1 -3
  186. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es_MX.properties +8 -10
  187. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_et.properties +1 -3
  188. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fi.properties +8 -10
  189. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr.properties +1 -3
  190. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr_CA.properties +8 -10
  191. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hi.properties +7 -9
  192. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hr.properties +7 -9
  193. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hu.properties +8 -10
  194. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_id.properties +8 -10
  195. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_it.properties +10 -12
  196. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_iw.properties +8 -10
  197. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ja.properties +7 -9
  198. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_kk.properties +1 -3
  199. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ko.properties +7 -9
  200. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lt.properties +7 -9
  201. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lv.properties +7 -9
  202. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ms.properties +8 -10
  203. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_nl.properties +7 -9
  204. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_no.properties +8 -10
  205. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pl.properties +8 -10
  206. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt.properties +8 -10
  207. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt_PT.properties +8 -10
  208. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ro.properties +8 -10
  209. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ru.properties +8 -10
  210. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +1 -3
  211. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sk.properties +1 -3
  212. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sl.properties +8 -10
  213. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sv.properties +1 -3
  214. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_th.properties +7 -9
  215. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_tr.properties +1 -3
  216. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_uk.properties +8 -10
  217. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_vi.properties +8 -10
  218. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_CN.properties +8 -10
  219. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_TW.properties +7 -9
  220. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +7 -1
  221. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchBox.fragment.xml +1 -1
  222. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchPaginated.view.xml +2 -3
  223. package/src/main/js/sap/ushell/components/contentFinder/view/WidgetGallery.view.xml +2 -8
  224. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  225. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  226. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
  227. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
  228. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +1 -1
  229. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  230. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  231. package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
  232. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  233. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +1 -1
  234. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  235. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  236. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  237. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  238. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -1
  239. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  240. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/view/NavigationBarMenu.view.xml +1 -1
  241. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  242. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  243. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  244. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  245. package/src/main/js/sap/ushell/components/shell/SearchCEP/ProvidersExecuter.js +4 -4
  246. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchCEP.controller.js +626 -598
  247. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchFieldFragment.fragment.xml +2 -102
  248. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +28 -33
  249. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +12 -14
  250. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +80 -17
  251. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +164 -0
  252. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  253. package/src/main/js/sap/ushell/components/shell/Settings/ContentWrapper.fragment.xml +1 -3
  254. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.view.xml +6 -5
  255. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +21 -10
  256. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.view.xml +8 -1
  257. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  258. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
  259. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.view.js +5 -0
  260. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.view.js +5 -0
  261. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/Component.js +12 -0
  262. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +13 -3
  263. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.js +1 -1
  264. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.xml +1 -1
  265. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/Component.js +24 -0
  266. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +57 -4
  267. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.js +1 -1
  268. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.xml +1 -1
  269. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
  270. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +71 -34
  271. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +35 -1
  272. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +360 -227
  273. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.layout.js +369 -0
  274. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +1 -1
  275. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +24 -5
  276. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +2 -2
  277. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +69 -39
  278. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +16 -11
  279. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +13 -1
  280. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +2 -2
  281. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRenderer.js +7 -1
  282. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +11 -10
  283. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRowRenderer.js +5 -0
  284. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  285. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +5 -1
  286. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ar.properties +31 -27
  287. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_bg.properties +31 -27
  288. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ca.properties +31 -27
  289. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cs.properties +27 -23
  290. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cy.properties +31 -27
  291. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_da.properties +31 -27
  292. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_de.properties +31 -27
  293. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_el.properties +31 -27
  294. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en.properties +21 -17
  295. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_GB.properties +21 -17
  296. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_sappsd.properties +34 -5
  297. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +4 -0
  298. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saptrc.properties +35 -6
  299. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es.properties +26 -22
  300. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es_MX.properties +31 -27
  301. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_et.properties +26 -22
  302. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fi.properties +31 -27
  303. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr.properties +26 -22
  304. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr_CA.properties +31 -27
  305. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hi.properties +31 -27
  306. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +33 -29
  307. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hu.properties +31 -27
  308. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_id.properties +31 -27
  309. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_it.properties +30 -26
  310. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_iw.properties +32 -28
  311. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ja.properties +31 -27
  312. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_kk.properties +26 -22
  313. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ko.properties +31 -27
  314. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lt.properties +32 -28
  315. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lv.properties +31 -27
  316. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ms.properties +31 -27
  317. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_nl.properties +31 -27
  318. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_no.properties +31 -27
  319. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pl.properties +31 -27
  320. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt.properties +31 -27
  321. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt_PT.properties +31 -27
  322. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ro.properties +31 -27
  323. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ru.properties +31 -27
  324. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +26 -22
  325. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sk.properties +26 -22
  326. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sl.properties +31 -27
  327. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sv.properties +31 -27
  328. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +31 -27
  329. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_tr.properties +26 -22
  330. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_uk.properties +31 -27
  331. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_vi.properties +31 -27
  332. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_CN.properties +31 -27
  333. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_TW.properties +31 -27
  334. package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +88 -42
  335. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  336. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +6 -5
  337. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  338. package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +1 -1
  339. package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +32 -30
  340. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  341. package/src/main/js/sap/ushell/library.js +1 -1
  342. package/src/main/js/sap/ushell/navigationMode.js +1 -1
  343. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  344. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  345. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  346. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +7 -5
  347. package/src/main/js/sap/ushell/renderers/fiori2/RendererExtensions.js +0 -48
  348. package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +26 -25
  349. package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +7 -2
  350. package/src/main/js/sap/ushell/renderers/fiori2/ShellAsync.view.js +1 -1
  351. package/src/main/js/sap/ushell/renderers/fiori2/ShellLayout.js +1 -1
  352. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ar.properties +1 -0
  353. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_bg.properties +19 -18
  354. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ca.properties +1 -0
  355. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cs.properties +7 -6
  356. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cy.properties +2 -1
  357. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_da.properties +1 -0
  358. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_de.properties +14 -13
  359. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_el.properties +2 -1
  360. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en.properties +2 -1
  361. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_GB.properties +1 -0
  362. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_sappsd.properties +1 -0
  363. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saprigi.properties +1 -0
  364. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saptrc.properties +1 -0
  365. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es.properties +1 -0
  366. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es_MX.properties +1 -0
  367. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_et.properties +1 -0
  368. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fi.properties +1 -0
  369. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr.properties +3 -2
  370. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr_CA.properties +1 -0
  371. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hi.properties +1 -0
  372. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hr.properties +1 -0
  373. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hu.properties +1 -0
  374. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_id.properties +1 -0
  375. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_it.properties +1 -0
  376. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_iw.properties +1 -0
  377. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ja.properties +1 -0
  378. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_kk.properties +1 -0
  379. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ko.properties +3 -2
  380. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lt.properties +1 -0
  381. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lv.properties +1 -0
  382. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ms.properties +4 -3
  383. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_nl.properties +1 -0
  384. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_no.properties +2 -1
  385. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pl.properties +7 -6
  386. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt.properties +1 -0
  387. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt_PT.properties +1 -0
  388. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ro.properties +1 -0
  389. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ru.properties +1 -0
  390. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sh.properties +1 -0
  391. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sk.properties +2 -1
  392. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sl.properties +1 -0
  393. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sv.properties +1 -0
  394. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_th.properties +1 -0
  395. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_tr.properties +2 -1
  396. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_uk.properties +1 -0
  397. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_vi.properties +1 -0
  398. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_CN.properties +1 -0
  399. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_TW.properties +1 -0
  400. package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
  401. package/src/main/js/sap/ushell/renderers/fiori2/utils.js +28 -0
  402. package/src/main/js/sap/ushell/services/AppLifeCycle.js +37 -10
  403. package/src/main/js/sap/ushell/services/AppState.js +19 -7
  404. package/src/main/js/sap/ushell/services/Bookmark.js +2 -2
  405. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +1 -1
  406. package/src/main/js/sap/ushell/services/CommonDataModel.js +1 -1
  407. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  408. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  409. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
  410. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +4 -4
  411. package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -1
  412. package/src/main/js/sap/ushell/services/EndUserFeedback.js +3 -3
  413. package/src/main/js/sap/ushell/services/LaunchPage.js +22 -4
  414. package/src/main/js/sap/ushell/services/Menu.js +5 -1
  415. package/src/main/js/sap/ushell/services/Message.js +8 -7
  416. package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
  417. package/src/main/js/sap/ushell/services/NavTargetResolution.js +1 -1
  418. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  419. package/src/main/js/sap/ushell/services/Notifications.js +18 -15
  420. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  421. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  422. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  423. package/src/main/js/sap/ushell/services/Pages.js +1 -1
  424. package/src/main/js/sap/ushell/services/Personalization.js +10 -8
  425. package/src/main/js/sap/ushell/services/PluginManager.js +1 -1
  426. package/src/main/js/sap/ushell/services/ReferenceResolver.js +1 -1
  427. package/src/main/js/sap/ushell/services/Search.js +1 -1
  428. package/src/main/js/sap/ushell/services/SearchCEP.js +278 -30
  429. package/src/main/js/sap/ushell/services/SearchableContent.js +77 -18
  430. package/src/main/js/sap/ushell/services/SmartNavigation.js +1 -1
  431. package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
  432. package/src/main/js/sap/ushell/services/SupportTicket.js +10 -7
  433. package/src/main/js/sap/ushell/services/UITracer.js +244 -0
  434. package/src/main/js/sap/ushell/services/URLParsing.js +10 -7
  435. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  436. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  437. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
  438. package/src/main/js/sap/ushell/services/UsageAnalytics.js +6 -3
  439. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
  440. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +19 -27
  441. package/src/main/js/sap/ushell/services/UserInfo.js +6 -5
  442. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  443. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  444. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  445. package/src/main/js/sap/ushell/services/_AppState/AppStatePersistencyMethod.js +13 -2
  446. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  447. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
  448. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
  449. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
  450. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +1 -1
  451. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  452. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
  453. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  454. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  455. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +1 -1
  456. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  457. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  458. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  459. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  460. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
  461. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  462. package/src/main/js/sap/ushell/services/_Personalization/TransientPersonalizer.js +10 -16
  463. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  464. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  465. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  466. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
  467. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstance.js +33 -8
  468. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceCdm.js +44 -2
  469. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +1 -1
  470. package/src/main/js/sap/ushell/services/{_AppState → appstate}/AppState.js +1 -1
  471. package/src/main/js/sap/ushell/services/appstate/AppStatePersistencyMethod.js +14 -0
  472. package/src/main/js/sap/ushell/services/{_AppState → appstate}/SequentializingAdapter.js +1 -1
  473. package/src/main/js/sap/ushell/services/{_AppState → appstate}/WindowAdapter.js +1 -1
  474. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  475. package/src/main/js/sap/ushell/themes/base/ContentFinder.less +0 -9
  476. package/src/main/js/sap/ushell/themes/base/SearchCEP.less +32 -198
  477. package/src/main/js/sap/ushell/themes/base/SearchFLP.less +5 -0
  478. package/src/main/js/sap/ushell/themes/base/WorkPage.less +7 -24
  479. package/src/main/js/sap/ushell/themes/base/WorkPageCell.less +57 -20
  480. package/src/main/js/sap/ushell/themes/base/WorkPageColumn.less +37 -12
  481. package/src/main/js/sap/ushell/themes/base/WorkPageColumnResizer.less +59 -0
  482. package/src/main/js/sap/ushell/themes/base/WorkPageRow.less +12 -37
  483. package/src/main/js/sap/ushell/themes/sap_horizon/SearchCEP.less +16 -96
  484. package/src/main/js/sap/ushell/themes/sap_horizon/WorkPageCell.less +2 -7
  485. package/src/main/js/sap/ushell/themes/sap_horizon_dark/SearchCEP.less +15 -124
  486. package/src/main/js/sap/ushell/themes/sap_horizon_dark/WorkPageCell.less +2 -7
  487. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/SearchCEP.less +10 -196
  488. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/WorkPageCell.less +2 -7
  489. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/SearchCEP.less +9 -189
  490. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/WorkPageCell.less +2 -7
  491. package/src/main/js/sap/ushell/ui/ContentNodeSelector.js +5 -0
  492. package/src/main/js/sap/ushell/ui/bookmark/SaveOnPage.view.xml +15 -17
  493. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  494. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +8 -7
  495. package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.view.js +6 -6
  496. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  497. package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
  498. package/src/main/js/sap/ushell/ui/launchpad/Section.js +2 -2
  499. package/src/main/js/sap/ushell/ui/launchpad/Tile.js +16 -2
  500. package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +3 -2
  501. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  502. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
  503. package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +1 -1
  504. package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +1 -1
  505. package/src/main/js/sap/ushell/ui/shell/ToolArea.js +9 -5
  506. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  507. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  508. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +7 -2
  509. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  510. package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
  511. package/src/main/js/sap/ushell/utils/WindowUtils.js +2 -2
  512. package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
  513. package/ui5.yaml +26 -25
  514. package/src/main/js/sap/ushell/adapters/cep/SearchCEPApplicationAdapter.js +0 -264
  515. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/jsSearch.js +0 -919
  516. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/NavigationSvcSearchProvider.js +0 -126
  517. /package/src/main/js/sap/ushell/services/{_AppState → appstate}/AppStatePersistencySettings.js +0 -0
  518. /package/src/main/js/sap/ushell/services/{_AppState → appstate}/LimitedBuffer.js +0 -0
  519. /package/src/main/js/sap/ushell/services/{_AppState → appstate}/Sequentializer.js +0 -0
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Tambahkan ({0})
3
3
  ContentFinder.Button.Cancel=Batalkan
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galeri Widget
6
+ ContentFinder.WidgetGallery.Title=Tambahkan Widget
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Semua Widget
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplikasi
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Tidak Ada Aplikasi yang Dipilih
20
20
  ContentFinder.AppSearch.Title.SearchResult=Hasil untuk\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Tidak Ada Hasil untuk\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Tampilkan Semua Aplikasi yang Dipilih
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Luncurkan Aplikasi
24
+ ContentFinder.AppSearch.Label.Information=Informasi
25
+ ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID Sistem
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Tidak tersedia
28
+ ContentFinder.AppSearch.Button.Preview=Pratinjau
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Sudah Digunakan
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Aggiungi ({0})
3
3
  ContentFinder.Button.Cancel=Annulla
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galleria widget
6
+ ContentFinder.WidgetGallery.Title=Aggiungi widget
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Tutti i widget
8
8
  ContentFinder.WidgetGallery.Applications.Title=Applicazioni
9
9
 
@@ -13,19 +13,17 @@ ContentFinder.AppSearch.AddCards.Title=Aggiungi carta
13
13
  ContentFinder.AppSearch.SearchPlaceholder=Cerca per titolo app
14
14
  ContentFinder.AppSearch.Title.AllTiles=Tutti i tile ({0})
15
15
  ContentFinder.AppSearch.Title.NoTiles=Nessun tile disponibile
16
- ContentFinder.AppSearch.Title.AllCards=Tutte le carte ({0})
17
- ContentFinder.AppSearch.Title.NoCards=Nessuna carta disponibile
16
+ ContentFinder.AppSearch.Title.AllCards=Tutte le schede ({0})
17
+ ContentFinder.AppSearch.Title.NoCards=Nessuna scheda disponibile
18
18
  ContentFinder.AppSearch.Title.SelectedApp=Tutte le applicazioni selezionate ({0})
19
19
  ContentFinder.AppSearch.Title.NoSelectedApp=Nessuna applicazione selezionata
20
20
  ContentFinder.AppSearch.Title.SearchResult=Risultati per\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Nessun risultato per\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Visualizza tutte le app selezionate
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Avvia applicazione
24
+ ContentFinder.AppSearch.Label.Information=Informazioni
25
+ ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID sistema
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Non disponibile
28
+ ContentFinder.AppSearch.Button.Preview=Anteprima
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Gi\u00E0 utilizzato
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=\u05D4\u05D5\u05E1\u05E3 ({0})
3
3
  ContentFinder.Button.Cancel=\u05D1\u05D8\u05DC
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=\u05D2\u05DC\u05E8\u05D9\u05D9\u05EA \u05D9\u05D9\u05E9\u05D5\u05DE\u05D5\u05E0\u05D9 Widget
6
+ ContentFinder.WidgetGallery.Title=\u05D4\u05D5\u05E1\u05E3 \u05D9\u05D9\u05E9\u05D5\u05DE\u05D5\u05E0\u05D9 Widget
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=\u05DB\u05DC \u05D9\u05D9\u05E9\u05D5\u05DE\u05D5\u05E0\u05D9 Widget
8
8
  ContentFinder.WidgetGallery.Applications.Title=\u05D9\u05D9\u05E9\u05D5\u05DE\u05D9\u05DD
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=\u05D0\u05D9\u05DF \u05D9\u05D9\u05E
20
20
  ContentFinder.AppSearch.Title.SearchResult=\u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u05D0\u05D9\u05DF \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=\u05D4\u05E6\u05D2 \u05D0\u05EA \u05DB\u05DC \u05D4\u05D9\u05D9\u05E9\u05D5\u05DE\u05D9\u05DD \u05E9\u05E0\u05D1\u05D7\u05E8\u05D5
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=\u05D4\u05E4\u05E2\u05DC \u05D9\u05D9\u05E9\u05D5\u05DD
24
+ ContentFinder.AppSearch.Label.Information=\u05DE\u05D9\u05D3\u05E2
25
+ ContentFinder.AppSearch.Label.FioriId=\u05D6\u05D9\u05D4\u05D5\u05D9 \u05E9\u05DC SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=\u05D6\u05D9\u05D4\u05D5\u05D9 \u05DE\u05E2\u05E8\u05DB\u05EA
27
+ ContentFinder.AppSearch.Text.FieldEmpty=\u05DC\u05D0 \u05D6\u05DE\u05D9\u05DF
28
+ ContentFinder.AppSearch.Button.Preview=\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=\u05DB\u05D1\u05E8 \u05E0\u05DE\u05E6\u05D0 \u05D1\u05E9\u05D9\u05DE\u05D5\u05E9
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=\u8FFD\u52A0 ({0})
3
3
  ContentFinder.Button.Cancel=\u30AD\u30E3\u30F3\u30BB\u30EB
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u30AE\u30E3\u30E9\u30EA\u30FC
6
+ ContentFinder.WidgetGallery.Title=\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u3092\u8FFD\u52A0
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=\u3059\u3079\u3066\u306E\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8
8
8
  ContentFinder.WidgetGallery.Applications.Title=\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=\u9078\u629E\u3057\u305F\u30A2\u30D7
20
20
  ContentFinder.AppSearch.Title.SearchResult=\u6B21\u306E\u7D50\u679C\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u6B21\u306E\u7D50\u679C\u306A\u3057\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=\u9078\u629E\u3057\u305F\u3059\u3079\u3066\u306E\u30A2\u30D7\u30EA\u3092\u8868\u793A
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u8D77\u52D5
24
+ ContentFinder.AppSearch.Label.Information=\u60C5\u5831
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
26
+ ContentFinder.AppSearch.Label.SystemId=\u30B7\u30B9\u30C6\u30E0 ID
27
+ ContentFinder.AppSearch.Text.FieldEmpty=\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093
28
+ ContentFinder.AppSearch.Button.Preview=\u30D7\u30EC\u30D3\u30E5\u30FC
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=\u4F7F\u7528\u4E2D
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=\u049A\u043E\u0441\u0443 ({0})
3
3
  ContentFinder.Button.Cancel=\u0411\u043E\u043B\u0434\u044B\u0440\u043C\u0430\u0443
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=\u0412\u0438\u0434\u0436\u0435\u0442 \u0433\u0430\u043B\u0435\u0440\u0435\u044F\u0441\u044B
6
+ ContentFinder.WidgetGallery.Title=\u0412\u0438\u0434\u0436\u0435\u0442\u0442\u0435\u0440 \u049B\u043E\u0441\u0443
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=\u0411\u0430\u0440\u043B\u044B\u049B \u0432\u0438\u0434\u0436\u0435\u0442\u0442\u0435\u0440
8
8
  ContentFinder.WidgetGallery.Applications.Title=\u049A\u043E\u043B\u0434\u0430\u043D\u0431\u0430\u043B\u0430\u0440
9
9
 
@@ -21,11 +21,9 @@ ContentFinder.AppSearch.Title.SearchResult=\u041A\u0435\u043B\u0435\u0441\u0456
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u041A\u0435\u043B\u0435\u0441\u0456 \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u043D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440 \u0436\u043E\u049B\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=\u0422\u0430\u04A3\u0434\u0430\u043B\u0493\u0430\u043D \u0431\u0430\u0440\u043B\u044B\u049B \u049B\u043E\u043B\u0434\u0430\u043D\u0431\u0430\u043B\u0430\u0440\u0434\u044B \u043A\u04E9\u0440\u0443
23
23
  ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=\u049A\u043E\u043B\u0434\u0430\u043D\u0431\u0430\u043D\u044B \u0456\u0441\u043A\u0435 \u049B\u043E\u0441\u0443
24
- ContentFinder.AppSearch.Label.Type=\u0422\u04AF\u0440\u0456
25
24
  ContentFinder.AppSearch.Label.Information=\u0410\u049B\u043F\u0430\u0440\u0430\u0442
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori \u0438\u0434.
27
26
  ContentFinder.AppSearch.Label.SystemId=\u0416\u04AF\u0439\u0435 \u0438\u0434.
28
- ContentFinder.AppSearch.Label.Preview=\u0410\u043B\u0434\u044B\u043D \u0430\u043B\u0430 \u043A\u04E9\u0440\u0443
29
27
  ContentFinder.AppSearch.Text.FieldEmpty=\u049A\u043E\u043B\u0436\u0435\u0442\u0456\u043C\u0441\u0456\u0437
30
28
  ContentFinder.AppSearch.Button.Preview=\u0410\u043B\u0434\u044B\u043D \u0430\u043B\u0430 \u043A\u04E9\u0440\u0443
31
29
  ContentFinder.AppSearch.Message.AlreadyUsed=\u04D8\u043B\u0434\u0435\u049B\u0430\u0448\u0430\u043D \u049B\u043E\u043B\u0434\u0430\u043D\u044B\u043B\u0493\u0430\u043D
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=\uCD94\uAC00({0})
3
3
  ContentFinder.Button.Cancel=\uCDE8\uC18C
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=\uC704\uC82F \uAC24\uB7EC\uB9AC
6
+ ContentFinder.WidgetGallery.Title=\uC704\uC82F \uCD94\uAC00
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=\uBAA8\uB4E0 \uC704\uC82F
8
8
  ContentFinder.WidgetGallery.Applications.Title=\uC5B4\uD50C\uB9AC\uCF00\uC774\uC158
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=\uC5B4\uD50C\uB9AC\uCF00\uC774\uC158
20
20
  ContentFinder.AppSearch.Title.SearchResult=\u201C{0}\u201D\uC5D0 \uB300\uD55C \uACB0\uACFC({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u201C{0}\u201D\uC5D0 \uB300\uD55C \uACB0\uACFC \uC5C6\uC74C
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=\uC120\uD0DD\uB41C \uBAA8\uB4E0 \uC571 \uBCF4\uAE30
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=\uC5B4\uD50C\uB9AC\uCF00\uC774\uC158 \uC2E4\uD589
24
+ ContentFinder.AppSearch.Label.Information=\uC815\uBCF4
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
26
+ ContentFinder.AppSearch.Label.SystemId=\uC2DC\uC2A4\uD15C ID
27
+ ContentFinder.AppSearch.Text.FieldEmpty=\uC0AC\uC6A9 \uBD88\uAC00\uB2A5
28
+ ContentFinder.AppSearch.Button.Preview=\uBBF8\uB9AC\uBCF4\uAE30
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=\uC774\uBBF8 \uC0AC\uC6A9\uB429\uB2C8\uB2E4.
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Prid\u0117ti ({0})
3
3
  ContentFinder.Button.Cancel=At\u0161aukti
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Valdikli\u0173 galerija
6
+ ContentFinder.WidgetGallery.Title=Prid\u0117ti grafin\u0117s s\u0105sajos elementus
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Visi grafin\u0117s s\u0105sajos elementai
8
8
  ContentFinder.WidgetGallery.Applications.Title=Taikomosios programos
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Pasirinkt\u0173 program\u0173 n\u011
20
20
  ContentFinder.AppSearch.Title.SearchResult=Rezultatai\: {0} ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Rezultat\u0173 n\u0117ra\: {0}
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Per\u017Ei\u016Br\u0117ti visas pasirinktas programas
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Paleisti program\u0105
24
+ ContentFinder.AppSearch.Label.Information=Informacija
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
26
+ ContentFinder.AppSearch.Label.SystemId=Sistemos ID
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Neprieinama
28
+ ContentFinder.AppSearch.Button.Preview=Per\u017Ei\u016Bra
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Jau naudojama
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Pievienot ({0})
3
3
  ContentFinder.Button.Cancel=Atcelt
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Logr\u012Bku galerija
6
+ ContentFinder.WidgetGallery.Title=Pievienot logr\u012Bkus
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Visi logr\u012Bki
8
8
  ContentFinder.WidgetGallery.Applications.Title=Lietojumprogrammas
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Neviena lietojumprogramma nav atlas\
20
20
  ContentFinder.AppSearch.Title.SearchResult=Rezult\u0101ti par\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Nav rezult\u0101tu par\: "{0}\u201D
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Skat\u012Bt visas atlas\u012Bt\u0101s lietojumprogrammas
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Palaist lietojumprogrammu
24
+ ContentFinder.AppSearch.Label.Information=Inform\u0101cija
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
26
+ ContentFinder.AppSearch.Label.SystemId=Sist\u0113mas ID
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Nav pieejams
28
+ ContentFinder.AppSearch.Button.Preview=Priek\u0161skat\u012Bt
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Jau izmantots
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Tambah ({0})
3
3
  ContentFinder.Button.Cancel=Batal
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galeri Widget
6
+ ContentFinder.WidgetGallery.Title=Tambah Widget
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Semua Widget
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplikasi
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Tiada Aplikasi yang Dipilih
20
20
  ContentFinder.AppSearch.Title.SearchResult=Hasil untuk\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Tiada Hasil untuk\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Papar Semua Aplikasi Terpilih
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Lancarkan Aplikasi
24
+ ContentFinder.AppSearch.Label.Information=Maklumat
25
+ ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID Sistem
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Tidak tersedia
28
+ ContentFinder.AppSearch.Button.Preview=Pratonton
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Telah Digunakan
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Toevoegen ({0})
3
3
  ContentFinder.Button.Cancel=Annuleren
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Widgetgalerij
6
+ ContentFinder.WidgetGallery.Title=Widgets toevoegen
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Alle widgets
8
8
  ContentFinder.WidgetGallery.Applications.Title=Applicaties
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Geen geselecteerde applicaties
20
20
  ContentFinder.AppSearch.Title.SearchResult=Resultaten voor\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Geen resultaten voor\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Alle geselecteerde apps weergeven
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Applicatie starten
24
+ ContentFinder.AppSearch.Label.Information=Informatie
25
+ ContentFinder.AppSearch.Label.FioriId=SAP Fiori-ID
26
+ ContentFinder.AppSearch.Label.SystemId=Systeem-ID
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Niet beschikbaar
30
28
  ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Al gebruikt
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Legg til ({0})
3
3
  ContentFinder.Button.Cancel=Avbryt
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Widgetgalleri
6
+ ContentFinder.WidgetGallery.Title=Legg til widgeter
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Alle widgeter
8
8
  ContentFinder.WidgetGallery.Applications.Title=Applikasjoner
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Ingen valgte applikasjoner
20
20
  ContentFinder.AppSearch.Title.SearchResult=Resultater for\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Ingen resultater for\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Vis alle valgte apper
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Start applikasjon
24
+ ContentFinder.AppSearch.Label.Information=Informasjon
25
+ ContentFinder.AppSearch.Label.FioriId=SAP Fiori-ID
26
+ ContentFinder.AppSearch.Label.SystemId=System-ID
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Ikke tilgjengelig
28
+ ContentFinder.AppSearch.Button.Preview=Forh\u00E5ndsvisning
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Brukes allerede
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Dodaj ({0})
3
3
  ContentFinder.Button.Cancel=Anuluj
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galeria wid\u017Cet\u00F3w
6
+ ContentFinder.WidgetGallery.Title=Dodawanie wid\u017Cet\u00F3w
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Wszystkie wid\u017Cety
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplikacje
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Brak wybranych aplikacji
20
20
  ContentFinder.AppSearch.Title.SearchResult=Wyniki dla\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Brak wynik\u00F3w dla\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Wy\u015Bwietl wszystkie wybrane aplikacje
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Uruchom aplikacj\u0119
24
+ ContentFinder.AppSearch.Label.Information=Informacje
25
+ ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID systemu
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Niedost\u0119pne
28
+ ContentFinder.AppSearch.Button.Preview=Podgl\u0105d
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Ju\u017C w u\u017Cyciu
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Adicionar ({0})
3
3
  ContentFinder.Button.Cancel=Cancelar
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galeria de widgets
6
+ ContentFinder.WidgetGallery.Title=Adicionar widgets
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Todos os widgets
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplica\u00E7\u00F5es
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Nenhuma aplica\u00E7\u00E3o selecion
20
20
  ContentFinder.AppSearch.Title.SearchResult=Resultados para\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Nenhum resultado para\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Visualizar todos os apps selecionados
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Iniciar aplica\u00E7\u00E3o
24
+ ContentFinder.AppSearch.Label.Information=Informa\u00E7\u00E3o
25
+ ContentFinder.AppSearch.Label.FioriId=ID do SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID do sistema
27
+ ContentFinder.AppSearch.Text.FieldEmpty=N\u00E3o dispon\u00EDvel
28
+ ContentFinder.AppSearch.Button.Preview=Visualizar
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=J\u00E1 utilizado
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Adicionar ({0})
3
3
  ContentFinder.Button.Cancel=Cancelar
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galeria de widgets
6
+ ContentFinder.WidgetGallery.Title=Adicionar widgets
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Todos os widgets
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplica\u00E7\u00F5es
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Nenhuma aplica\u00E7\u00E3o selecion
20
20
  ContentFinder.AppSearch.Title.SearchResult=Resultados para\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Nenhum resultado para\: {0}
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Visualizar todas as aplica\u00E7\u00F5es selecionadas
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Iniciar aplica\u00E7\u00E3o
24
+ ContentFinder.AppSearch.Label.Information=Informa\u00E7\u00E3o
25
+ ContentFinder.AppSearch.Label.FioriId=ID do SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID do sistema
27
+ ContentFinder.AppSearch.Text.FieldEmpty=N\u00E3o dispon\u00EDvel
28
+ ContentFinder.AppSearch.Button.Preview=Pr\u00E9-visualiza\u00E7\u00E3o
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=J\u00E1 utilizado
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Ad\u0103ugare ({0})
3
3
  ContentFinder.Button.Cancel=Anulare
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galerie de widgeturi
6
+ ContentFinder.WidgetGallery.Title=Ad\u0103ugare widgeturi
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Toate widgeturile
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplica\u021Bii
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Nicio aplica\u021Bie selectat\u0103
20
20
  ContentFinder.AppSearch.Title.SearchResult=Rezultate pentru\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Niciun rezultat pentru\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Vizualizare toate aplica\u021Biile selectate
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Lansare aplica\u021Bie
24
+ ContentFinder.AppSearch.Label.Information=Informa\u021Bii
25
+ ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID sistem
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Indisponibil
28
+ ContentFinder.AppSearch.Button.Preview=Previzualizare
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=Deja utilizat
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C ({0})
3
3
  ContentFinder.Button.Cancel=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=\u0413\u0430\u043B\u0435\u0440\u0435\u044F \u0432\u0438\u0434\u0436\u0435\u0442\u043E\u0432
6
+ ContentFinder.WidgetGallery.Title=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0432\u0438\u0434\u0436\u0435\u0442\u044B
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=\u0412\u0441\u0435 \u0432\u0438\u0434\u0436\u0435\u0442\u044B
8
8
  ContentFinder.WidgetGallery.Applications.Title=\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=\u041D\u0435\u0442 \u0432\u044B\u043
20
20
  ContentFinder.AppSearch.Title.SearchResult=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u0434\u043B\u044F\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u041D\u0435\u0442 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 \u0434\u043B\u044F\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0435 \u0432\u044B\u0431\u0440\u0430\u043D\u043D\u044B\u0435 \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u044F
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435
24
+ ContentFinder.AppSearch.Label.Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F
25
+ ContentFinder.AppSearch.Label.FioriId=\u0418\u0434. SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=\u0418\u0434. \u0441\u0438\u0441\u0442\u0435\u043C\u044B
27
+ ContentFinder.AppSearch.Text.FieldEmpty=\u041D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E
28
+ ContentFinder.AppSearch.Button.Preview=\u041F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=\u0423\u0436\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043E
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Dodaj ({0})
3
3
  ContentFinder.Button.Cancel=Odustani
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galerija vid\u017Eeta
6
+ ContentFinder.WidgetGallery.Title=Dodaj vid\u017Eete
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Svi vid\u017Eeti
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplikacije
9
9
 
@@ -21,11 +21,9 @@ ContentFinder.AppSearch.Title.SearchResult=Rezultati za\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Nema rezultata za\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Prika\u017Ei sve odabrane aplikacije
23
23
  ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Pokreni aplikaciju
24
- ContentFinder.AppSearch.Label.Type=Tip
25
24
  ContentFinder.AppSearch.Label.Information=Informacije
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
26
  ContentFinder.AppSearch.Label.SystemId=ID sistema
28
- ContentFinder.AppSearch.Label.Preview=Pret.prikaz
29
27
  ContentFinder.AppSearch.Text.FieldEmpty=Nije dostupno
30
28
  ContentFinder.AppSearch.Button.Preview=Pret.prikaz
31
29
  ContentFinder.AppSearch.Message.AlreadyUsed=Ve\u0107 u upotrebi
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Prida\u0165 ({0})
3
3
  ContentFinder.Button.Cancel=Zru\u0161i\u0165
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Gal\u00E9ria miniaplik\u00E1ci\u00ED
6
+ ContentFinder.WidgetGallery.Title=Prida\u0165 miniaplik\u00E1cie
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=V\u0161etky miniaplik\u00E1cie
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplik\u00E1cie
9
9
 
@@ -21,11 +21,9 @@ ContentFinder.AppSearch.Title.SearchResult=V\u00FDsledky pre\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u017Diadne v\u00FDsledky pre\: "{0}\u201C
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Zobrazi\u0165 v\u0161etky vybrat\u00E9 aplik\u00E1cie
23
23
  ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Spusti\u0165 aplik\u00E1ciu
24
- ContentFinder.AppSearch.Label.Type=Typ
25
24
  ContentFinder.AppSearch.Label.Information=Inform\u00E1cie
26
25
  ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
27
26
  ContentFinder.AppSearch.Label.SystemId=ID syst\u00E9mu
28
- ContentFinder.AppSearch.Label.Preview=N\u00E1h\u013Ead
29
27
  ContentFinder.AppSearch.Text.FieldEmpty=Nedostupn\u00E9
30
28
  ContentFinder.AppSearch.Button.Preview=N\u00E1h\u013Ead
31
29
  ContentFinder.AppSearch.Message.AlreadyUsed=U\u017E sa pou\u017E\u00EDva
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=Dodajanje ({0})
3
3
  ContentFinder.Button.Cancel=Preklic
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Galerija okenskih program\u010Dkov
6
+ ContentFinder.WidgetGallery.Title=Dodaj okenske program\u010Dke
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Vsi okenski program\u010Dki
8
8
  ContentFinder.WidgetGallery.Applications.Title=Aplikacije
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=Ni izbranih aplikacij
20
20
  ContentFinder.AppSearch.Title.SearchResult=Rezultati za\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Ni rezultatov za\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Prikaz vseh izbranih aplikacij
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
26
- ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Zagon aplikacije
24
+ ContentFinder.AppSearch.Label.Information=Informacija
25
+ ContentFinder.AppSearch.Label.FioriId=ID SAP Fiori
26
+ ContentFinder.AppSearch.Label.SystemId=ID sistema
27
+ ContentFinder.AppSearch.Text.FieldEmpty=Ni na voljo
28
+ ContentFinder.AppSearch.Button.Preview=Predogled
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=\u017De uporabljeno
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=L\u00E4gg till ({0})
3
3
  ContentFinder.Button.Cancel=Avbryt
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=Widgetgalleri
6
+ ContentFinder.WidgetGallery.Title=L\u00E4gg till widgetar
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Alla widgetar
8
8
  ContentFinder.WidgetGallery.Applications.Title=Applikationer
9
9
 
@@ -21,11 +21,9 @@ ContentFinder.AppSearch.Title.SearchResult=Resultat f\u00F6r\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=Inga resultat f\u00F6r\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=Visa alla valda appar
23
23
  ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Starta applikation
24
- ContentFinder.AppSearch.Label.Type=Typ
25
24
  ContentFinder.AppSearch.Label.Information=Information
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori-ID
27
26
  ContentFinder.AppSearch.Label.SystemId=System-ID
28
- ContentFinder.AppSearch.Label.Preview=F\u00F6rhandsgranskning
29
27
  ContentFinder.AppSearch.Text.FieldEmpty=Ej tillg\u00E4nglig
30
28
  ContentFinder.AppSearch.Button.Preview=F\u00F6rhandsgranska
31
29
  ContentFinder.AppSearch.Message.AlreadyUsed=Redan anv\u00E4nd
@@ -3,7 +3,7 @@ ContentFinder.Button.Add=\u0E40\u0E1E\u0E34\u0E48\u0E21 ({0})
3
3
  ContentFinder.Button.Cancel=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01
4
4
 
5
5
 
6
- ContentFinder.WidgetGallery.Title=\u0E41\u0E01\u0E25\u0E40\u0E25\u0E2D\u0E23\u0E35 Widget
6
+ ContentFinder.WidgetGallery.Title=\u0E40\u0E1E\u0E34\u0E48\u0E21 Widget
7
7
  ContentFinder.WidgetGallery.AllWidgets.Title=Widget \u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14
8
8
  ContentFinder.WidgetGallery.Applications.Title=\u0E41\u0E2D\u0E1E\u0E1E\u0E25\u0E34\u0E40\u0E04\u0E0A\u0E31\u0E19
9
9
 
@@ -20,12 +20,10 @@ ContentFinder.AppSearch.Title.NoSelectedApp=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E41
20
20
  ContentFinder.AppSearch.Title.SearchResult=\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\: "{0}" ({1})
21
21
  ContentFinder.AppSearch.Title.NoSearchResult=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\: "{0}"
22
22
  ContentFinder.AppSearch.Button.Tooltip.ShowSelected=\u0E14\u0E39\u0E41\u0E2D\u0E1E\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01
23
- ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=Launch Application
24
- ContentFinder.AppSearch.Label.Type=Type
25
- ContentFinder.AppSearch.Label.Information=Information
23
+ ContentFinder.AppSearch.Button.Tooltip.LaunchApplication=\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E41\u0E2D\u0E1E\u0E1E\u0E25\u0E34\u0E40\u0E04\u0E0A\u0E31\u0E19
24
+ ContentFinder.AppSearch.Label.Information=\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25
26
25
  ContentFinder.AppSearch.Label.FioriId=SAP Fiori ID
27
- ContentFinder.AppSearch.Label.SystemId=System ID
28
- ContentFinder.AppSearch.Label.Preview=Preview
29
- ContentFinder.AppSearch.Text.FieldEmpty=Not available
30
- ContentFinder.AppSearch.Button.Preview=Preview
31
- ContentFinder.AppSearch.Message.AlreadyUsed=Already Used
26
+ ContentFinder.AppSearch.Label.SystemId=ID \u0E23\u0E30\u0E1A\u0E1A
27
+ ContentFinder.AppSearch.Text.FieldEmpty=\u0E44\u0E21\u0E48\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19
28
+ ContentFinder.AppSearch.Button.Preview=\u0E41\u0E2A\u0E14\u0E07\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07
29
+ ContentFinder.AppSearch.Message.AlreadyUsed=\u0E16\u0E39\u0E01\u0E43\u0E0A\u0E49\u0E41\u0E25\u0E49\u0E27