@sapui5/sap.ushell 1.114.0 → 1.115.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (534) 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/ApplicationType.js +33 -48
  4. package/src/main/js/sap/ushell/CanvasShapesManager.js +2 -2
  5. package/src/main/js/sap/ushell/Config.js +5 -0
  6. package/src/main/js/sap/ushell/Container.js +20 -5
  7. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  8. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  9. package/src/main/js/sap/ushell/Layout.js +7 -10
  10. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  11. package/src/main/js/sap/ushell/SessionHandler.js +2 -4
  12. package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
  13. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  14. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  15. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
  16. package/src/main/js/sap/ushell/_ApplicationType/guiResolution.js +120 -128
  17. package/src/main/js/sap/ushell/_ApplicationType/systemAlias.js +297 -304
  18. package/src/main/js/sap/ushell/_ApplicationType/utils.js +8 -4
  19. package/src/main/js/sap/ushell/_ApplicationType/wdaResolution.js +50 -64
  20. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  21. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  22. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  23. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  24. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  25. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  26. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
  27. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
  28. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
  30. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  35. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +39 -38
  41. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +8 -8
  42. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +3 -4
  43. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +13 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  48. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +2 -2
  51. package/src/main/js/sap/ushell/adapters/cep/SearchCEPApplicationAdapter.js +264 -0
  52. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
  57. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  59. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  61. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  62. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +3 -5
  63. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  64. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +4 -7
  65. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  66. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
  67. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  68. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +40 -23
  69. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +1 -1
  70. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +80 -23
  71. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +14 -7
  72. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +66 -8
  73. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +5 -0
  74. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  75. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  76. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
  77. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  78. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +4 -1
  79. package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +35 -40
  80. package/src/main/js/sap/ushell/components/CatalogsManager.js +47 -21
  81. package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +22 -0
  82. package/src/main/js/sap/ushell/components/HomepageManager.js +23 -1
  83. package/src/main/js/sap/ushell/components/SharedComponentUtils.js +9 -15
  84. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +15 -17
  85. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +53 -12
  86. package/src/main/js/sap/ushell/components/appfinder/Component.js +5 -3
  87. package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +21 -16
  88. package/src/main/js/sap/ushell/components/appfinder/EasyAccessView.js +2 -1
  89. package/src/main/js/sap/ushell/components/appfinder/HierarchyApps.controller.js +39 -8
  90. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  91. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +30 -11
  92. package/src/main/js/sap/ushell/components/applicationIntegration/Storage.js +1 -1
  93. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +1 -1
  94. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +3 -3
  95. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +11 -2
  96. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +1 -1
  97. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  98. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  99. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
  100. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +16 -20
  101. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.view.xml +0 -2
  102. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Component.js +74 -42
  103. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Config.js +237 -0
  104. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Extension.js +40 -0
  105. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n.properties +58 -1
  106. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ar.properties +37 -88
  107. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_bg.properties +34 -0
  108. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ca.properties +34 -0
  109. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cs.properties +34 -0
  110. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cy.properties +34 -0
  111. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_da.properties +34 -0
  112. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_de.properties +34 -0
  113. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_el.properties +34 -0
  114. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en.properties +34 -0
  115. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_GB.properties +34 -0
  116. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_sappsd.properties +34 -0
  117. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_saprigi.properties +30 -0
  118. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_saptrc.properties +34 -0
  119. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_es.properties +34 -0
  120. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_es_MX.properties +34 -0
  121. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_et.properties +34 -0
  122. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fi.properties +34 -0
  123. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr.properties +34 -0
  124. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr_CA.properties +34 -0
  125. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hi.properties +34 -0
  126. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hr.properties +34 -0
  127. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hu.properties +34 -0
  128. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_id.properties +34 -0
  129. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_it.properties +34 -0
  130. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_iw.properties +34 -0
  131. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ja.properties +34 -0
  132. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_kk.properties +34 -0
  133. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ko.properties +34 -0
  134. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lt.properties +34 -0
  135. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lv.properties +34 -0
  136. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ms.properties +34 -0
  137. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_nl.properties +34 -0
  138. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_no.properties +34 -0
  139. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pl.properties +34 -0
  140. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pt.properties +34 -0
  141. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pt_PT.properties +34 -0
  142. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ro.properties +34 -0
  143. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ru.properties +34 -0
  144. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sh.properties +34 -0
  145. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sk.properties +34 -0
  146. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sl.properties +34 -0
  147. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sv.properties +34 -0
  148. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_th.properties +34 -0
  149. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_tr.properties +34 -0
  150. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_uk.properties +34 -0
  151. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_vi.properties +34 -0
  152. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_CN.properties +34 -0
  153. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_TW.properties +34 -0
  154. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/manifest.json +49 -25
  155. package/src/main/js/sap/ushell/components/cepsearchresult/app/css/style.css +4 -0
  156. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/Edition.js +45 -0
  157. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.css +103 -3
  158. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.js +248 -168
  159. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Paginator.js +1 -1
  160. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +43 -24
  161. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Event.js +10 -9
  162. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/People.js +20 -5
  163. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Workpage.js +1 -7
  164. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n.properties +30 -1
  165. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ar.properties +23 -0
  166. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_bg.properties +23 -0
  167. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ca.properties +23 -0
  168. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cs.properties +23 -0
  169. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cy.properties +23 -0
  170. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_da.properties +23 -0
  171. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_de.properties +23 -0
  172. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_el.properties +23 -0
  173. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en.properties +23 -0
  174. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_GB.properties +23 -0
  175. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_sappsd.properties +23 -0
  176. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_saprigi.properties +23 -0
  177. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_saptrc.properties +23 -0
  178. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es.properties +23 -0
  179. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es_MX.properties +23 -0
  180. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_et.properties +23 -0
  181. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fi.properties +23 -0
  182. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr.properties +23 -0
  183. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr_CA.properties +23 -0
  184. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hi.properties +23 -0
  185. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hr.properties +23 -0
  186. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hu.properties +23 -0
  187. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_id.properties +23 -0
  188. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_it.properties +23 -0
  189. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_iw.properties +23 -0
  190. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ja.properties +23 -0
  191. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_kk.properties +23 -0
  192. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ko.properties +23 -0
  193. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lt.properties +23 -0
  194. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lv.properties +23 -0
  195. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ms.properties +23 -0
  196. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_nl.properties +23 -0
  197. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_no.properties +23 -0
  198. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pl.properties +23 -0
  199. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt.properties +23 -0
  200. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt_PT.properties +23 -0
  201. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ro.properties +23 -0
  202. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ru.properties +23 -0
  203. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sh.properties +23 -0
  204. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sk.properties +23 -0
  205. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sl.properties +23 -0
  206. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sv.properties +23 -0
  207. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_th.properties +23 -0
  208. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_tr.properties +23 -0
  209. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_uk.properties +23 -0
  210. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_vi.properties +23 -0
  211. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_zh_CN.properties +23 -0
  212. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_zh_TW.properties +23 -0
  213. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +1 -1
  214. package/src/main/js/sap/ushell/components/contentFinder/Component.js +172 -42
  215. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +59 -96
  216. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  217. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  218. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  219. package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLListBinding.js +37 -0
  220. package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLModel.js +35 -0
  221. package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +5 -8
  222. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +14 -0
  223. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ar.properties +9 -0
  224. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_bg.properties +9 -0
  225. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ca.properties +9 -0
  226. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cs.properties +9 -0
  227. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cy.properties +9 -0
  228. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_da.properties +9 -0
  229. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_de.properties +9 -0
  230. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_el.properties +9 -0
  231. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en.properties +9 -0
  232. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_GB.properties +9 -0
  233. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_sappsd.properties +9 -0
  234. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saprigi.properties +9 -0
  235. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saptrc.properties +9 -0
  236. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es.properties +9 -0
  237. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es_MX.properties +9 -0
  238. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_et.properties +9 -0
  239. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fi.properties +9 -0
  240. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr.properties +9 -0
  241. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr_CA.properties +9 -0
  242. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hi.properties +9 -0
  243. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hr.properties +9 -0
  244. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hu.properties +9 -0
  245. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_id.properties +9 -0
  246. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_it.properties +9 -0
  247. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_iw.properties +9 -0
  248. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ja.properties +9 -0
  249. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_kk.properties +9 -0
  250. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ko.properties +9 -0
  251. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lt.properties +9 -0
  252. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lv.properties +9 -0
  253. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ms.properties +9 -0
  254. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_nl.properties +9 -0
  255. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_no.properties +9 -0
  256. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pl.properties +9 -0
  257. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt.properties +9 -0
  258. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt_PT.properties +9 -0
  259. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ro.properties +9 -0
  260. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ru.properties +9 -0
  261. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +9 -0
  262. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sk.properties +9 -0
  263. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sl.properties +9 -0
  264. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sv.properties +9 -0
  265. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_th.properties +9 -0
  266. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_tr.properties +9 -0
  267. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_uk.properties +9 -0
  268. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_vi.properties +9 -0
  269. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_CN.properties +9 -0
  270. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_TW.properties +9 -0
  271. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +45 -32
  272. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchBox.fragment.xml +65 -0
  273. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchPaginated.view.xml +119 -0
  274. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  275. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +5 -1
  276. package/src/main/js/sap/ushell/components/homepage/Component.js +5 -0
  277. package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +6 -1
  278. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +3 -1
  279. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +5 -2
  280. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +5 -2
  281. package/src/main/js/sap/ushell/components/homepage/FLPAnalytics.js +5 -0
  282. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  283. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  284. package/src/main/js/sap/ushell/components/pages/Component.js +5 -1
  285. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  286. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +1 -1
  287. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  288. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  289. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  290. package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +2 -2
  291. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  292. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +10 -13
  293. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  294. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  295. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  296. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  297. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  298. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
  299. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/NavigationSvcSearchProvider.js +1 -1
  300. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
  301. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  302. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  303. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +65 -28
  304. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.view.xml +23 -3
  305. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  306. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -14
  307. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +29 -16
  308. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.xml +1 -1
  309. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +30 -16
  310. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.xml +1 -1
  311. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
  312. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +27 -3
  313. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +161 -57
  314. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +215 -150
  315. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +177 -0
  316. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  317. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  318. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +171 -154
  319. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +114 -102
  320. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +1 -0
  321. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  322. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +16 -8
  323. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  324. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +67 -0
  325. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ar.properties +36 -4
  326. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_bg.properties +36 -4
  327. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ca.properties +36 -4
  328. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cs.properties +36 -4
  329. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cy.properties +36 -4
  330. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_da.properties +36 -4
  331. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_de.properties +36 -4
  332. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_el.properties +36 -4
  333. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en.properties +32 -0
  334. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_GB.properties +32 -0
  335. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_sappsd.properties +7 -0
  336. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +32 -0
  337. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saptrc.properties +7 -0
  338. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es.properties +36 -4
  339. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es_MX.properties +36 -4
  340. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_et.properties +36 -4
  341. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fi.properties +36 -4
  342. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr.properties +36 -4
  343. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr_CA.properties +36 -4
  344. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hi.properties +36 -4
  345. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +36 -4
  346. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hu.properties +36 -4
  347. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_id.properties +36 -4
  348. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_it.properties +36 -4
  349. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_iw.properties +36 -4
  350. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ja.properties +36 -4
  351. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_kk.properties +36 -4
  352. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ko.properties +36 -4
  353. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lt.properties +36 -4
  354. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lv.properties +36 -4
  355. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ms.properties +36 -4
  356. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_nl.properties +36 -4
  357. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_no.properties +36 -4
  358. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pl.properties +36 -4
  359. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt.properties +36 -4
  360. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt_PT.properties +36 -4
  361. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ro.properties +36 -4
  362. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ru.properties +36 -4
  363. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +36 -4
  364. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sk.properties +36 -4
  365. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sl.properties +36 -4
  366. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sv.properties +36 -4
  367. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +36 -4
  368. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_tr.properties +36 -4
  369. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_uk.properties +36 -4
  370. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_vi.properties +36 -4
  371. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_CN.properties +36 -4
  372. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_TW.properties +36 -4
  373. package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +39 -14
  374. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  375. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +1 -1
  376. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  377. package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +1 -1
  378. package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +1 -1
  379. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  380. package/src/main/js/sap/ushell/library.js +1 -26
  381. package/src/main/js/sap/ushell/navigationMode.js +1 -1
  382. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  383. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  384. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  385. package/src/main/js/sap/ushell/renderers/fiori2/AccessKeysHandler.js +4 -3
  386. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +71 -98
  387. package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +111 -39
  388. package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +142 -204
  389. package/src/main/js/sap/ushell/renderers/fiori2/ShellAsync.view.js +165 -220
  390. package/src/main/js/sap/ushell/renderers/fiori2/ShellLayout.js +20 -26
  391. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources.properties +7 -35
  392. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ar.properties +17 -21
  393. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_bg.properties +17 -21
  394. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ca.properties +17 -21
  395. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cs.properties +17 -21
  396. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cy.properties +17 -21
  397. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_da.properties +17 -21
  398. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_de.properties +17 -21
  399. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_el.properties +17 -21
  400. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en.properties +15 -19
  401. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_GB.properties +15 -19
  402. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_sappsd.properties +15 -26
  403. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saprigi.properties +15 -26
  404. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saptrc.properties +15 -19
  405. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es.properties +17 -21
  406. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es_MX.properties +17 -21
  407. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_et.properties +17 -21
  408. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fi.properties +17 -21
  409. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr.properties +17 -21
  410. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr_CA.properties +17 -21
  411. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hi.properties +17 -21
  412. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hr.properties +17 -21
  413. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hu.properties +17 -21
  414. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_id.properties +17 -21
  415. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_it.properties +17 -21
  416. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_iw.properties +17 -21
  417. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ja.properties +17 -21
  418. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_kk.properties +17 -21
  419. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ko.properties +17 -21
  420. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lt.properties +17 -21
  421. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lv.properties +17 -21
  422. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ms.properties +17 -21
  423. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_nl.properties +17 -21
  424. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_no.properties +17 -21
  425. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pl.properties +17 -21
  426. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt.properties +17 -21
  427. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt_PT.properties +17 -21
  428. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ro.properties +18 -22
  429. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ru.properties +17 -21
  430. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sh.properties +17 -21
  431. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sk.properties +17 -21
  432. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sl.properties +17 -21
  433. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sv.properties +17 -21
  434. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_th.properties +17 -21
  435. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_tr.properties +17 -21
  436. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_uk.properties +17 -21
  437. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_vi.properties +17 -21
  438. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_CN.properties +17 -21
  439. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_TW.properties +17 -21
  440. package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
  441. package/src/main/js/sap/ushell/services/AppConfiguration.js +2 -0
  442. package/src/main/js/sap/ushell/services/AppLifeCycle.js +13 -17
  443. package/src/main/js/sap/ushell/services/AppState.js +1 -1
  444. package/src/main/js/sap/ushell/services/Bookmark.js +45 -12
  445. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +1 -1
  446. package/src/main/js/sap/ushell/services/CommonDataModel.js +1 -1
  447. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  448. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  449. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +4 -6
  450. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +22 -16
  451. package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -1
  452. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  453. package/src/main/js/sap/ushell/services/Menu.js +1 -1
  454. package/src/main/js/sap/ushell/services/Message.js +1 -1
  455. package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
  456. package/src/main/js/sap/ushell/services/NavTargetResolution.js +12 -7
  457. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  458. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  459. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  460. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  461. package/src/main/js/sap/ushell/services/Pages.js +1 -1
  462. package/src/main/js/sap/ushell/services/Personalization.js +1 -1
  463. package/src/main/js/sap/ushell/services/PluginManager.js +1 -1
  464. package/src/main/js/sap/ushell/services/ReferenceResolver.js +1 -1
  465. package/src/main/js/sap/ushell/services/Search.js +1 -1
  466. package/src/main/js/sap/ushell/services/SearchCEP.js +54 -6
  467. package/src/main/js/sap/ushell/services/SearchableContent.js +6 -3
  468. package/src/main/js/sap/ushell/services/SmartNavigation.js +1 -1
  469. package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
  470. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  471. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  472. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
  473. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
  474. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +1 -1
  475. package/src/main/js/sap/ushell/services/UserInfo.js +20 -1
  476. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  477. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  478. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  479. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  480. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
  481. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
  482. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
  483. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +1 -1
  484. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  485. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
  486. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  487. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  488. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +1 -1
  489. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  490. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  491. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  492. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  493. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
  494. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  495. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  496. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  497. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  498. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
  499. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +1 -1
  500. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  501. package/src/main/js/sap/ushell/themes/base/ContentFinder.less +21 -0
  502. package/src/main/js/sap/ushell/themes/base/ShellAppTitle.less +4 -1
  503. package/src/main/js/sap/ushell/themes/base/ShellHeader.less +1 -6
  504. package/src/main/js/sap/ushell/themes/base/WorkPageCell.less +44 -10
  505. package/src/main/js/sap/ushell/themes/base/WorkPageColumnResizer.less +1 -0
  506. package/src/main/js/sap/ushell/themes/base/WorkPageRow.less +1 -1
  507. package/src/main/js/sap/ushell/themes/base/library.source.less +0 -1
  508. package/src/main/js/sap/ushell/themes/sap_horizon/TileContainer.less +2 -11
  509. package/src/main/js/sap/ushell/themes/sap_horizon_dark/TileContainer.less +2 -11
  510. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/TileContainer.less +2 -1
  511. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/TileContainer.less +2 -1
  512. package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +0 -2
  513. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  514. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +3 -0
  515. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +2 -2
  516. package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBar.js +18 -1
  517. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  518. package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
  519. package/src/main/js/sap/ushell/ui/launchpad/Section.js +11 -3
  520. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  521. package/src/main/js/sap/ushell/ui/shell/FloatingContainer.js +17 -4
  522. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
  523. package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +14 -0
  524. package/src/main/js/sap/ushell/ui/shell/SidePane.js +6 -4
  525. package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +1 -1
  526. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  527. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  528. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  529. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  530. package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
  531. package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
  532. package/src/main/js/sap/ushell/themes/base/ContentFinderAppBox.less +0 -182
  533. package/src/main/js/sap/ushell/ui/contentFinder/AppBox.js +0 -404
  534. package/src/main/js/sap/ushell/ui/contentFinder/AppBoxRenderer.js +0 -299
@@ -0,0 +1,237 @@
1
+ // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
+
3
+ sap.ui.define(["sap/ui/integration/Designtime"], function (
4
+ Designtime
5
+ ) {
6
+ "use strict";
7
+ return function () {
8
+ var oDT = new Designtime({
9
+ form: {
10
+ items: {
11
+ groupheader1: {
12
+ label: "{i18n>CARD.Config.HeaderSettings}",
13
+ type: "group",
14
+ expanded: false
15
+ },
16
+ header: {
17
+ manifestpath: "/sap.card/configuration/parameters/header/value",
18
+ type: "string",
19
+ label: "{i18n>CARD.Config.HeaderType.Lbl}",
20
+ control: "Select",
21
+ cols: 2,
22
+ values: {
23
+ data: {
24
+ json: {
25
+ values: [
26
+ { text: "{i18n>CARD.Config.HeaderType.Default}", key: "default" },
27
+ { text: "{i18n>CARD.Config.HeaderType.Custom}", key: "custom" },
28
+ { text: "{i18n>CARD.Config.HeaderType.None}", key: "none" }
29
+ ]
30
+ },
31
+ path: "/values"
32
+ },
33
+ item: {
34
+ text: "{text}",
35
+ key: "{key}"
36
+ }
37
+ }
38
+ },
39
+ title: {
40
+ manifestpath: "/sap.card/header/title",
41
+ type: "string",
42
+ label: "{i18n>CARD.Config.Header.Title.Lbl}",
43
+ description: "{i18n>CARD.Config.Header.Title.Desc}",
44
+ translatable: true,
45
+ visible: "{= ${items>header/value} === 'custom'}",
46
+ cols: 2
47
+ },
48
+ subtitle: {
49
+ manifestpath: "/sap.card/header/subtitle",
50
+ type: "string",
51
+ label: "{i18n>CARD.Config.Header.SubTitle.Lbl}",
52
+ description: "{i18n>CARD.Config.Header.SubTitle.Desc}",
53
+ translatable: true,
54
+ visible: "{= ${items>header/value} === 'custom'}",
55
+ cols: 2
56
+ },
57
+ icon: {
58
+ manifestpath: "/sap.card/header/icon/src",
59
+ type: "string",
60
+ label: "{i18n>CARD.Config.Header.Icon.Lbl}",
61
+ cols: 2,
62
+ allowDynamicValues: false,
63
+ allowSettings: false,
64
+ visible: "{= ${items>header/value} === 'custom'}",
65
+ visualization: {
66
+ type: "IconSelect",
67
+ settings: {
68
+ value: "{currentSettings>value}",
69
+ editable: "{currentSettings>editable}"
70
+ }
71
+ }
72
+ },
73
+ color: {
74
+ manifestpath: "/sap.card/header/icon/backgroundColor",
75
+ type: "string",
76
+ label: "{i18n>CARD.Config.Header.IconColor.Lbl}",
77
+ visible: "{= ${items>header/value} === 'custom'}",
78
+ visualization: {
79
+ type: "ColorSelect",
80
+ settings: {
81
+ enumValue: "{currentSettings>value}",
82
+ editable: "{currentSettings>editable}"
83
+ }
84
+ },
85
+ cols: 1
86
+ },
87
+ shape: {
88
+ manifestpath: "/sap.card/header/icon/shape",
89
+ type: "string",
90
+ label: "{i18n>CARD.Config.Header.IconShape.Lbl}",
91
+ visible: "{= ${items>header/value} === 'custom'}",
92
+ visualization: {
93
+ type: "ShapeSelect",
94
+ settings: {
95
+ value: "{currentSettings>value}",
96
+ editable: "{currentSettings>editable}"
97
+ }
98
+ },
99
+ cols: 1
100
+ },
101
+ headerNavigation: {
102
+ manifestpath: "/sap.card/configuration/parameters/headerNavigation/value",
103
+ type: "boolean",
104
+ label: "{i18n>CARD.Config.Header.Nav.Lbl}",
105
+ description: "{i18n>CARD.Config.Header.Nav.Desc}",
106
+ visible: "{= ${items>header/value} === 'custom'}",
107
+ cols: 2,
108
+ visualization: {
109
+ type: "Switch",
110
+ settings: {
111
+ state: "{currentSettings>value}",
112
+ customTextOn: "{i18n>CARD.Config.Yes}",
113
+ customTextOff: "{i18n>CARD.Config.No}",
114
+ enabled: "{currentSettings>editable}"
115
+ }
116
+ }
117
+ },
118
+ groupheader2: {
119
+ label: "Content Settings",
120
+ type: "group"
121
+ },
122
+ searchTerm: {
123
+ manifestpath: "/sap.card/configuration/parameters/searchTerm/value",
124
+ type: "string",
125
+ label: "{i18n>CARD.Config.Content.SearchTerm.Lbl}",
126
+ translatable: false,
127
+ cols: 2,
128
+ allowDynamicValues: true
129
+ },
130
+ category: {
131
+ manifestpath: "/sap.card/configuration/parameters/category/value",
132
+ type: "string",
133
+ label: "{i18n>CARD.Config.Content.Category.Lbl}",
134
+ values: {
135
+ data: {
136
+ extension: {
137
+ method: "getCategoryListItems"
138
+ },
139
+ path: "/"
140
+ },
141
+ item: {
142
+ text: "{text}",
143
+ key: "{key}",
144
+ icon: "{icon}"
145
+ }
146
+ }
147
+ },
148
+ view: {
149
+ manifestpath: "/sap.card/configuration/parameters/view/value",
150
+ type: "string",
151
+ label: "{i18n>CARD.Config.Content.View.Lbl}",
152
+ cols: 2,
153
+ values: {
154
+ data: {
155
+ extension: {
156
+ method: "getCategoryViews",
157
+ args: ["{items>category/value}"]
158
+ },
159
+ path: "/views"
160
+ },
161
+ item: {
162
+ text: "{text}",
163
+ key: "{key}",
164
+ icon: "{icon}"
165
+ }
166
+ }
167
+ },
168
+ pageSize: {
169
+ manifestpath: "/sap.card/configuration/parameters/pageSize/value",
170
+ type: "integer",
171
+ label: "{i18n>CARD.Config.Content.PageSize.Lbl}",
172
+ cols: 2,
173
+ visualization: {
174
+ type: "Slider",
175
+ settings: {
176
+ value: "{currentSettings>value}",
177
+ min: 0,
178
+ max: 20,
179
+ width: "100%",
180
+ showAdvancedTooltip: true,
181
+ showHandleTooltip: false,
182
+ inputsAsTooltips: true,
183
+ enabled: "{currentSettings>editable}"
184
+ }
185
+ }
186
+ },
187
+ highlightResult: {
188
+ manifestpath: "/sap.card/configuration/parameters/highlightResult/value",
189
+ type: "boolean",
190
+ label: "{i18n>CARD.Config.Content.Highlight.Lbl}",
191
+ description: "{i18n>CARD.Config.Content.Highlight.Desc}",
192
+ cols: 1,
193
+ visualization: {
194
+ type: "Switch",
195
+ settings: {
196
+ state: "{currentSettings>value}",
197
+ customTextOn: "{i18n>CARD.Config.Yes}",
198
+ customTextOff: "{i18n>CARD.Config.No}",
199
+ enabled: "{currentSettings>editable}"
200
+ }
201
+ }
202
+ },
203
+ footer: {
204
+ manifestpath: "/sap.card/configuration/parameters/footer/value",
205
+ type: "string",
206
+ label: "{i18n>CARD.Config.Content.FooterActions.Lbl}",
207
+ control: "Select",
208
+ cols: 2,
209
+ values: {
210
+ data: {
211
+ json: {
212
+ values: [
213
+ { text: "{i18n>CARD.Config.Content.FooterActions.Page}", key: "paginator"},
214
+ { text: "{i18n>CARD.Config.Content.FooterActions.Navigate}", key: "viewAll"},
215
+ { text: "{i18n>CARD.Config.Content.FooterActions.None}", key: "none" }
216
+ ]
217
+ },
218
+ path: "/values"
219
+ },
220
+ item: {
221
+ text: "{text}",
222
+ key: "{key}",
223
+ additionalText: "{additionalText}",
224
+ icon: "{icon}"
225
+ }
226
+ }
227
+
228
+ }
229
+ }
230
+ },
231
+ preview: {
232
+ modes: "Live"
233
+ }
234
+ });
235
+ return oDT;
236
+ };
237
+ });
@@ -0,0 +1,40 @@
1
+ // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
+
3
+ sap.ui.define([
4
+ "sap/ui/integration/Extension"
5
+ ], function (Extension) {
6
+
7
+ "use strict";
8
+
9
+ var DTExtension = Extension.extend("sap.ushell.components.cepsearchresult.cards.searchresultwidget.Extension");
10
+
11
+ DTExtension.prototype.onCardReady = function () {
12
+ this._oCard = this.getCard();
13
+ };
14
+
15
+ DTExtension.prototype.editionLoaded = function () {
16
+ this.oCard = this.getCard();
17
+ return new Promise(function (resolve) {
18
+ sap.ui.require(["sap/ushell/components/cepsearchresult/app/util/Edition"], function (Edition) {
19
+ this._oEdition = new Edition(Edition.getEditionName());
20
+ this._oEdition.loaded().then(function () {
21
+ resolve();
22
+ });
23
+ }.bind(this));
24
+ }.bind(this));
25
+ };
26
+
27
+ DTExtension.prototype.getCategoryListItems = function () {
28
+ return this.editionLoaded().then(function () {
29
+ return this._oEdition.getCategoryListItems();
30
+ }.bind(this));
31
+ };
32
+
33
+ DTExtension.prototype.getCategoryViews = function (sCategoryKey) {
34
+ return this.editionLoaded().then(function () {
35
+ return this._oEdition.getCategoryViews(sCategoryKey);
36
+ }.bind(this));
37
+ };
38
+
39
+ return DTExtension;
40
+ });
@@ -15,4 +15,61 @@ CARD.List.Button.ViewAll=View All
15
15
  CARD.List.Title.SearchResults=Results for {0}
16
16
 
17
17
  #XBUT,50: RowStatus for search result showing rowX-rowY of totalRows, example 1-7 or 100
18
- CARD.List.RowStatus={0}-{1} of {2}
18
+ CARD.List.RowStatus={0}-{1} of {2}
19
+
20
+ #XBUT,10: Switch yes
21
+ CARD.Config.Yes=Yes
22
+ #XBUT,10: Switch no
23
+ CARD.Config.No=No
24
+ #XTIT,50: Title for header settings
25
+ CARD.Config.HeaderSettings=Header Settings
26
+ #XFLD,50: Label for the header type
27
+ CARD.Config.HeaderType.Lbl=Header Type
28
+ #XFLD,50: Default Header
29
+ CARD.Config.HeaderType.Default=Default Header
30
+ #XFLD,50: Custom Header
31
+ CARD.Config.HeaderType.Custom=Custom Header
32
+ #XFLD,50: No Header
33
+ CARD.Config.HeaderType.None=No Header
34
+ #XFLD,50: Label for header title field
35
+ CARD.Config.Header.Title.Lbl=Title
36
+ #XTOL,50: Description for header title field
37
+ CARD.Config.Header.Title.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
38
+ #XFLD,50: Label for header description/subtitle field
39
+ CARD.Config.Header.SubTitle.Lbl=Description
40
+ #XTOL,50: Description for header description/subtitle field
41
+ CARD.Config.Header.SubTitle.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
42
+ #XFLD,50: Label for the Icon Selection field
43
+ CARD.Config.Header.Icon.Lbl=Icon
44
+ #XFLD,50: Label for the Icon Color field
45
+ CARD.Config.Header.IconColor.Lbl=Icon Color
46
+ #XFLD,50: Label for the Icon Shape field
47
+ CARD.Config.Header.IconShape.Lbl=Icon Shape
48
+ #XFLD,50: Label for the navigation select (yes/no)
49
+ CARD.Config.Header.Nav.Lbl=Navigate to Search Application
50
+ #XTOL,50: Description for the navigation select (yes/no)
51
+ CARD.Config.Header.Nav.Desc=Clicking the header will navigate to the Search Application
52
+ #XTIT,50: Title for content settings
53
+ CARD.Config.ContentSettings=Content Settings
54
+ #XFLD,50: Label for the Search Term/Search Text field
55
+ CARD.Config.Content.SearchTerm.Lbl=Search Text
56
+ #XFLD,50: Label for the Category select field
57
+ CARD.Config.Content.Category.Lbl=Category
58
+ #XFLD,50: Label for the View select field
59
+ CARD.Config.Content.View.Lbl=Category
60
+ #XFLD,50: Label for the PageSize slider
61
+ CARD.Config.Content.PageSize.Lbl=Items per page
62
+ #XFLD,50: Label for the Highlight select
63
+ CARD.Config.Content.Highlight.Lbl=Highlight Results
64
+ #XTOL,50: Description for the Highlight select
65
+ CARD.Config.Content.Highlight.Desc=Highlight the searched text within the results.
66
+ #XFLD,50: Label for the Footer Action select
67
+ CARD.Config.Content.FooterActions.Lbl=Footer Actions
68
+ #XFLD,50: Footer Action Paging
69
+ CARD.Config.Content.FooterActions.Page=Paging search results
70
+ #XFLD,50: Footer Action Navigation
71
+ CARD.Config.Content.FooterActions.Navigate=Navigate to Search Application to view all results
72
+ #XFLD,50: Footer Action None
73
+ CARD.Config.Content.FooterActions.None=No Actions
74
+
75
+
@@ -1,92 +1,41 @@
1
1
 
2
- CATEGORIES.All.Title=\u062C\u0645\u064A\u0639 \u0627\u0644\u0641\u0626\u0627\u062A
3
- CATEGORIES.All.ShortTitle=\u0627\u0644\u0643\u0644
4
- CATEGORIES.All.Card.Title=\u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0628\u062D\u062B
5
- CATEGORIES.All.Card.SubTitle=
6
- CATEGORIES.All.LoadingData=\u0642\u064A\u062F \u0627\u0644\u0628\u062D\u062B
7
- CATEGORIES.All.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0637\u0627\u0628\u0642\u0627\u062A
8
2
 
3
+ CARD.Widget.Title=\u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0623\u062F\u0627\u0629 \u0645\u0635\u0648\u0631\u0629 \u0644\u0644\u0646\u062A\u064A\u062C\u0629
4
+
5
+ CARD.Widget.SubTitle=\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0641\u064A \u0646\u062A\u064A\u062C\u0629 \u0627\u0644\u0628\u062D\u062B
6
+
7
+ CARD.List.Button.ViewAll=\u0639\u0631\u0636 \u0627\u0644\u0643\u0644
8
+
9
+ CARD.List.Title.SearchResults=\u0646\u062A\u0627\u0626\u062C \u0644\u0640 {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} \u0645\u0646 \u0623\u0635\u0644 {2}
12
+
13
+ CARD.Config.Yes=Yes
14
+ CARD.Config.No=No
15
+ CARD.Config.HeaderSettings=Header Settings
16
+ CARD.Config.HeaderType.Lbl=Header Type
17
+ CARD.Config.HeaderType.Default=Default Header
18
+ CARD.Config.HeaderType.Custom=Custom Header
19
+ CARD.Config.HeaderType.None=No Header
20
+ CARD.Config.Header.Title.Lbl=Title
21
+ CARD.Config.Header.Title.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
22
+ CARD.Config.Header.SubTitle.Lbl=Description
23
+ CARD.Config.Header.SubTitle.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
24
+ CARD.Config.Header.Icon.Lbl=Icon
25
+ CARD.Config.Header.IconColor.Lbl=Icon Color
26
+ CARD.Config.Header.IconShape.Lbl=Icon Shape
27
+ CARD.Config.Header.Nav.Lbl=Navigate to Search Application
28
+ CARD.Config.Header.Nav.Desc=Clicking the header will navigate to the Search Application
29
+ CARD.Config.ContentSettings=Content Settings
30
+ CARD.Config.Content.SearchTerm.Lbl=Search Text
31
+ CARD.Config.Content.Category.Lbl=Category
32
+ CARD.Config.Content.View.Lbl=Category
33
+ CARD.Config.Content.PageSize.Lbl=Items per page
34
+ CARD.Config.Content.Highlight.Lbl=Highlight Results
35
+ CARD.Config.Content.Highlight.Desc=Highlight the searched text within the results.
36
+ CARD.Config.Content.FooterActions.Lbl=Footer Actions
37
+ CARD.Config.Content.FooterActions.Page=Paging search results
38
+ CARD.Config.Content.FooterActions.Navigate=Navigate to Search Application to view all results
39
+ CARD.Config.Content.FooterActions.None=No Actions
9
40
 
10
- CATEGORIES.App.Title=\u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A
11
- CATEGORIES.App.ShortTitle=\u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A
12
- CATEGORIES.App.Card.Title=\u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A
13
- CATEGORIES.App.Card.SubTitle=
14
- CATEGORIES.App.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u062A\u0637\u0628\u064A\u0642\u0627\u062A...
15
- CATEGORIES.App.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u062A\u0637\u0628\u064A\u0642\u0627\u062A \u0645\u0637\u0627\u0628\u0642\u0629
16
41
 
17
- CATEGORIES.Content.Title=\u0627\u0644\u0645\u062D\u062A\u0648\u0649
18
- CATEGORIES.Content.ShortTitle=\u0627\u0644\u0645\u062D\u062A\u0648\u0649
19
- CATEGORIES.Content.Card.Title=\u0627\u0644\u0645\u062D\u062A\u0648\u0649
20
- CATEGORIES.Content.Card.SubTitle=
21
- CATEGORIES.Content.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0645\u062D\u062A\u0648\u0649...
22
- CATEGORIES.Content.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u062D\u062A\u0648\u0649 \u0645\u0637\u0627\u0628\u0642
23
-
24
- CATEGORIES.Event.Title=\u0627\u0644\u0623\u062D\u062F\u0627\u062B
25
- CATEGORIES.Event.ShortTitle=\u0627\u0644\u0623\u062D\u062F\u0627\u062B
26
- CATEGORIES.Event.Card.Title=\u0627\u0644\u0623\u062D\u062F\u0627\u062B
27
- CATEGORIES.Event.Card.SubTitle=
28
- CATEGORIES.Event.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0623\u062D\u062F\u0627\u062B...
29
- CATEGORIES.Event.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0623\u062D\u062F\u0627\u062B \u0645\u0637\u0627\u0628\u0642\u0629
30
-
31
- CATEGORIES.People.Title=\u0627\u0644\u0623\u0634\u062E\u0627\u0635
32
- CATEGORIES.People.ShortTitle=\u0627\u0644\u0623\u0634\u062E\u0627\u0635
33
- CATEGORIES.People.Card.Title=\u0627\u0644\u0623\u0634\u062E\u0627\u0635
34
- CATEGORIES.People.Card.SubTitle=
35
- CATEGORIES.People.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0623\u0634\u062E\u0627\u0635...
36
- CATEGORIES.People.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0623\u0634\u062E\u0627\u0635 \u0645\u0637\u0627\u0628\u0642\u064A\u0646
37
-
38
- CATEGORIES.Task.Title=\u0627\u0644\u0645\u0647\u0627\u0645
39
- CATEGORIES.Task.ShortTitle=\u0627\u0644\u0645\u0647\u0627\u0645
40
- CATEGORIES.Task.Card.Title=\u0627\u0644\u0645\u0647\u0627\u0645
41
- CATEGORIES.Task.Card.SubTitle=
42
- CATEGORIES.Task.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0627\u0644\u0645\u0647\u0627\u0645...
43
- CATEGORIES.Task.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0647\u0627\u0645 \u0645\u0637\u0627\u0628\u0642\u0629
44
-
45
- CATEGORIES.Forum.Title=\u0627\u0644\u0645\u0646\u062A\u062F\u064A\u0627\u062A
46
- CATEGORIES.Forum.ShortTitle=\u0627\u0644\u0645\u0646\u062A\u062F\u064A\u0627\u062A
47
- CATEGORIES.Forum.Card.Title=\u0627\u0644\u0645\u0646\u062A\u062F\u064A\u0627\u062A
48
- CATEGORIES.Forum.Card.SubTitle=
49
- CATEGORIES.Forum.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0645\u0646\u062A\u062F\u064A\u0627\u062A...
50
- CATEGORIES.Forum.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0646\u062A\u062F\u064A\u0627\u062A \u0645\u0637\u0627\u0628\u0642\u0629
51
-
52
- CATEGORIES.KnowledgeBase.Title=\u0645\u0642\u0627\u0644\u0627\u062A \u0642\u0627\u0639\u062F\u0629 \u0627\u0644\u0645\u0639\u0631\u0641\u0629
53
- CATEGORIES.KnowledgeBase.ShortTitle=\u0642\u0627\u0639\u062F\u0629\u0627\u0644\u0645\u0639\u0631\u0641\u0629
54
- CATEGORIES.KnowledgeBase.Card.Title=\u0645\u0642\u0627\u0644\u0627\u062A \u0642\u0627\u0639\u062F\u0629 \u0627\u0644\u0645\u0639\u0631\u0641\u0629
55
- CATEGORIES.KnowledgeBase.Card.SubTitle=
56
- CATEGORIES.KnowledgeBase.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0645\u0642\u0627\u0644\u0627\u062A \u0642\u0627\u0639\u062F\u0629 \u0627\u0644\u0645\u0639\u0631\u0641\u0629...
57
- CATEGORIES.KnowledgeBase.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0642\u0627\u0644\u0627\u062A \u0642\u0627\u0639\u062F\u0629 \u0645\u0639\u0631\u0641\u0629 \u0645\u0637\u0627\u0628\u0642\u0629
58
-
59
- CATEGORIES.Tag.Title=\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062A
60
- CATEGORIES.Tag.ShortTitle=\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062A
61
- CATEGORIES.Tag.Card.Title=\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062A
62
- CATEGORIES.Tag.Card.SubTitle=
63
- CATEGORIES.Tag.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0639\u0644\u0627\u0645\u0627\u062A...
64
- CATEGORIES.Tag.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0639\u0644\u0627\u0645\u0627\u062A \u0645\u0637\u0627\u0628\u0642\u0629
65
-
66
- CATEGORIES.WorkPage.Title=\u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
67
- CATEGORIES.WorkPage.ShortTitle=\u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
68
- CATEGORIES.WorkPage.Card.Title=\u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
69
- CATEGORIES.WorkPage.Card.SubTitle=
70
- CATEGORIES.WorkPage.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644...
71
- CATEGORIES.WorkPage.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0635\u0641\u062D\u0627\u062A \u0639\u0645\u0644 \u0645\u0637\u0627\u0628\u0642\u0629
72
-
73
- CATEGORIES.WorkSpace.Title=\u0645\u0633\u0627\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
74
- CATEGORIES.WorkSpace.ShortTitle=\u0645\u0633\u0627\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
75
- CATEGORIES.WorkSpace.Card.Title=\u0645\u0633\u0627\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
76
- CATEGORIES.WorkSpace.Card.SubTitle=
77
- CATEGORIES.WorkSpace.LoadingData=\u062C\u0627\u0631\u064D \u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u0645\u0633\u0627\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644...
78
- CATEGORIES.WorkSpace.NoData=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0645\u0633\u0627\u062D\u0627\u062A \u0639\u0645\u0644 \u0645\u0637\u0627\u0628\u0642\u0629
79
-
80
- CATEGORIES.Comment.Title=Comments
81
- CATEGORIES.Comment.ShortTitle=Comments
82
- CATEGORIES.Comment.Card.Title=Comments
83
- CATEGORIES.Comment.Card.SubTitle=
84
- CATEGORIES.Comment.LoadingData=Searching for comments
85
- CATEGORIES.Comment.NoData=No matching comments found
86
-
87
- CATEGORIES.BusinessRecord.Title=Business Records
88
- CATEGORIES.BusinessRecord.ShortTitle=Records
89
- CATEGORIES.BusinessRecord.Card.Title=Business Records
90
- CATEGORIES.BusinessRecord.Card.SubTitle=
91
- CATEGORIES.BusinessRecord.LoadingData=Searching for business records
92
- CATEGORIES.BusinessRecord.NoData=No matching business records found
@@ -5,3 +5,37 @@ CARD.Widget.Title=\u0423\u0438\u0434\u0436\u0435\u0442 \u0437\u0430 \u0440\u0435
5
5
  CARD.Widget.SubTitle=\u041F\u043E\u043A\u0430\u0437\u0432. \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0438 \u043E\u0442 \u0442\u044A\u0440\u0441\u0435\u043D\u0435 \u0432 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442 \u043E\u0442 \u0442\u044A\u0440\u0441\u0435\u043D\u0435
6
6
 
7
7
  CARD.List.Button.ViewAll=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u0432\u0441\u0438\u0447\u043A\u0438
8
+
9
+ CARD.List.Title.SearchResults=\u0420\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0438 \u0437\u0430\: {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} \u043E\u0442 {2}
12
+
13
+ CARD.Config.Yes=Yes
14
+ CARD.Config.No=No
15
+ CARD.Config.HeaderSettings=Header Settings
16
+ CARD.Config.HeaderType.Lbl=Header Type
17
+ CARD.Config.HeaderType.Default=Default Header
18
+ CARD.Config.HeaderType.Custom=Custom Header
19
+ CARD.Config.HeaderType.None=No Header
20
+ CARD.Config.Header.Title.Lbl=Title
21
+ CARD.Config.Header.Title.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
22
+ CARD.Config.Header.SubTitle.Lbl=Description
23
+ CARD.Config.Header.SubTitle.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
24
+ CARD.Config.Header.Icon.Lbl=Icon
25
+ CARD.Config.Header.IconColor.Lbl=Icon Color
26
+ CARD.Config.Header.IconShape.Lbl=Icon Shape
27
+ CARD.Config.Header.Nav.Lbl=Navigate to Search Application
28
+ CARD.Config.Header.Nav.Desc=Clicking the header will navigate to the Search Application
29
+ CARD.Config.ContentSettings=Content Settings
30
+ CARD.Config.Content.SearchTerm.Lbl=Search Text
31
+ CARD.Config.Content.Category.Lbl=Category
32
+ CARD.Config.Content.View.Lbl=Category
33
+ CARD.Config.Content.PageSize.Lbl=Items per page
34
+ CARD.Config.Content.Highlight.Lbl=Highlight Results
35
+ CARD.Config.Content.Highlight.Desc=Highlight the searched text within the results.
36
+ CARD.Config.Content.FooterActions.Lbl=Footer Actions
37
+ CARD.Config.Content.FooterActions.Page=Paging search results
38
+ CARD.Config.Content.FooterActions.Navigate=Navigate to Search Application to view all results
39
+ CARD.Config.Content.FooterActions.None=No Actions
40
+
41
+
@@ -5,3 +5,37 @@ CARD.Widget.Title=Widget de resultats de cerca
5
5
  CARD.Widget.SubTitle=Mostrar resultats cerca en un resul.cerca
6
6
 
7
7
  CARD.List.Button.ViewAll=Veure-ho tot
8
+
9
+ CARD.List.Title.SearchResults=Resultats per a {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} de {2}
12
+
13
+ CARD.Config.Yes=Yes
14
+ CARD.Config.No=No
15
+ CARD.Config.HeaderSettings=Header Settings
16
+ CARD.Config.HeaderType.Lbl=Header Type
17
+ CARD.Config.HeaderType.Default=Default Header
18
+ CARD.Config.HeaderType.Custom=Custom Header
19
+ CARD.Config.HeaderType.None=No Header
20
+ CARD.Config.Header.Title.Lbl=Title
21
+ CARD.Config.Header.Title.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
22
+ CARD.Config.Header.SubTitle.Lbl=Description
23
+ CARD.Config.Header.SubTitle.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
24
+ CARD.Config.Header.Icon.Lbl=Icon
25
+ CARD.Config.Header.IconColor.Lbl=Icon Color
26
+ CARD.Config.Header.IconShape.Lbl=Icon Shape
27
+ CARD.Config.Header.Nav.Lbl=Navigate to Search Application
28
+ CARD.Config.Header.Nav.Desc=Clicking the header will navigate to the Search Application
29
+ CARD.Config.ContentSettings=Content Settings
30
+ CARD.Config.Content.SearchTerm.Lbl=Search Text
31
+ CARD.Config.Content.Category.Lbl=Category
32
+ CARD.Config.Content.View.Lbl=Category
33
+ CARD.Config.Content.PageSize.Lbl=Items per page
34
+ CARD.Config.Content.Highlight.Lbl=Highlight Results
35
+ CARD.Config.Content.Highlight.Desc=Highlight the searched text within the results.
36
+ CARD.Config.Content.FooterActions.Lbl=Footer Actions
37
+ CARD.Config.Content.FooterActions.Page=Paging search results
38
+ CARD.Config.Content.FooterActions.Navigate=Navigate to Search Application to view all results
39
+ CARD.Config.Content.FooterActions.None=No Actions
40
+
41
+
@@ -5,3 +5,37 @@ CARD.Widget.Title=Pom\u016Fcka v\u00FDsledku hled\u00E1n\u00ED
5
5
  CARD.Widget.SubTitle=Zobrazit v\u00FDsledky hled\u00E1n\u00ED ve v\u00FDsledku hled\u00E1n\u00ED
6
6
 
7
7
  CARD.List.Button.ViewAll=Zobrazit v\u0161e
8
+
9
+ CARD.List.Title.SearchResults=V\u00FDsledky pro {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} z {2}
12
+
13
+ CARD.Config.Yes=Ano
14
+ CARD.Config.No=Ne
15
+ CARD.Config.HeaderSettings=Nastaven\u00ED hlavi\u010Dky
16
+ CARD.Config.HeaderType.Lbl=Typ hlavi\u010Dky
17
+ CARD.Config.HeaderType.Default=Standardn\u00ED hlavi\u010Dka
18
+ CARD.Config.HeaderType.Custom=Vlastn\u00ED hlavi\u010Dka
19
+ CARD.Config.HeaderType.None=\u017D\u00E1dn\u00E1 hlavi\u010Dka
20
+ CARD.Config.Header.Title.Lbl=Titulek
21
+ CARD.Config.Header.Title.Desc=Pomoc\u00ED ($count) nebo ($searchText) v textu zahr\u0148te odpov\u00EDdaj\u00EDc\u00ED hodnoty.
22
+ CARD.Config.Header.SubTitle.Lbl=Popis
23
+ CARD.Config.Header.SubTitle.Desc=Pomoc\u00ED ($count) nebo ($searchText) v textu zahr\u0148te odpov\u00EDdaj\u00EDc\u00ED hodnoty.
24
+ CARD.Config.Header.Icon.Lbl=Ikona
25
+ CARD.Config.Header.IconColor.Lbl=Barva ikony
26
+ CARD.Config.Header.IconShape.Lbl=Tvar ikony
27
+ CARD.Config.Header.Nav.Lbl=Navigovat do aplikace hled\u00E1n\u00ED
28
+ CARD.Config.Header.Nav.Desc=Kliknut\u00EDm na hlavi\u010Dku p\u0159ejdete do aplikace hled\u00E1n\u00ED
29
+ CARD.Config.ContentSettings=Nastaven\u00ED obsahu
30
+ CARD.Config.Content.SearchTerm.Lbl=Hled\u00E1n\u00ED textu
31
+ CARD.Config.Content.Category.Lbl=Kategorie
32
+ CARD.Config.Content.View.Lbl=Kategorie
33
+ CARD.Config.Content.PageSize.Lbl=Polo\u017Eky na str\u00E1nku
34
+ CARD.Config.Content.Highlight.Lbl=Zv\u00FDraznit v\u00FDsledky
35
+ CARD.Config.Content.Highlight.Desc=Zv\u00FDrazn\u011Bte hledan\u00FD text ve v\u00FDsledc\u00EDch.
36
+ CARD.Config.Content.FooterActions.Lbl=Akce pati\u010Dky
37
+ CARD.Config.Content.FooterActions.Page=Str\u00E1nkov\u00E1n\u00ED v\u00FDsledk\u016F hled\u00E1n\u00ED
38
+ CARD.Config.Content.FooterActions.Navigate=Pro zobrazen\u00ED v\u0161ech v\u00FDsledk\u016F p\u0159ejd\u011Bte do aplikace hled\u00E1n\u00ED
39
+ CARD.Config.Content.FooterActions.None=\u017D\u00E1dn\u00E9 akce
40
+
41
+
@@ -5,3 +5,37 @@ CARD.Widget.Title=Teclyn Canlyniad Chwilio
5
5
  CARD.Widget.SubTitle=Dangos Canlyniadau Chwilio mewn Canlyniad Chwilio
6
6
 
7
7
  CARD.List.Button.ViewAll=Gweld Pob Un
8
+
9
+ CARD.List.Title.SearchResults=Canlyniadau ar gyfer {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} o {2}
12
+
13
+ CARD.Config.Yes=Yes
14
+ CARD.Config.No=No
15
+ CARD.Config.HeaderSettings=Header Settings
16
+ CARD.Config.HeaderType.Lbl=Header Type
17
+ CARD.Config.HeaderType.Default=Default Header
18
+ CARD.Config.HeaderType.Custom=Custom Header
19
+ CARD.Config.HeaderType.None=No Header
20
+ CARD.Config.Header.Title.Lbl=Title
21
+ CARD.Config.Header.Title.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
22
+ CARD.Config.Header.SubTitle.Lbl=Description
23
+ CARD.Config.Header.SubTitle.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
24
+ CARD.Config.Header.Icon.Lbl=Icon
25
+ CARD.Config.Header.IconColor.Lbl=Icon Color
26
+ CARD.Config.Header.IconShape.Lbl=Icon Shape
27
+ CARD.Config.Header.Nav.Lbl=Navigate to Search Application
28
+ CARD.Config.Header.Nav.Desc=Clicking the header will navigate to the Search Application
29
+ CARD.Config.ContentSettings=Content Settings
30
+ CARD.Config.Content.SearchTerm.Lbl=Search Text
31
+ CARD.Config.Content.Category.Lbl=Category
32
+ CARD.Config.Content.View.Lbl=Category
33
+ CARD.Config.Content.PageSize.Lbl=Items per page
34
+ CARD.Config.Content.Highlight.Lbl=Highlight Results
35
+ CARD.Config.Content.Highlight.Desc=Highlight the searched text within the results.
36
+ CARD.Config.Content.FooterActions.Lbl=Footer Actions
37
+ CARD.Config.Content.FooterActions.Page=Paging search results
38
+ CARD.Config.Content.FooterActions.Navigate=Navigate to Search Application to view all results
39
+ CARD.Config.Content.FooterActions.None=No Actions
40
+
41
+
@@ -5,3 +5,37 @@ CARD.Widget.Title=S\u00F8geresultatwidget
5
5
  CARD.Widget.SubTitle=Vis s\u00F8geresultater i et s\u00F8geresultat
6
6
 
7
7
  CARD.List.Button.ViewAll=Vis alt
8
+
9
+ CARD.List.Title.SearchResults=Resultater for {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} af {2}
12
+
13
+ CARD.Config.Yes=Yes
14
+ CARD.Config.No=No
15
+ CARD.Config.HeaderSettings=Header Settings
16
+ CARD.Config.HeaderType.Lbl=Header Type
17
+ CARD.Config.HeaderType.Default=Default Header
18
+ CARD.Config.HeaderType.Custom=Custom Header
19
+ CARD.Config.HeaderType.None=No Header
20
+ CARD.Config.Header.Title.Lbl=Title
21
+ CARD.Config.Header.Title.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
22
+ CARD.Config.Header.SubTitle.Lbl=Description
23
+ CARD.Config.Header.SubTitle.Desc=Using ($count) or ($searchText) within the text to include the corresponding values.
24
+ CARD.Config.Header.Icon.Lbl=Icon
25
+ CARD.Config.Header.IconColor.Lbl=Icon Color
26
+ CARD.Config.Header.IconShape.Lbl=Icon Shape
27
+ CARD.Config.Header.Nav.Lbl=Navigate to Search Application
28
+ CARD.Config.Header.Nav.Desc=Clicking the header will navigate to the Search Application
29
+ CARD.Config.ContentSettings=Content Settings
30
+ CARD.Config.Content.SearchTerm.Lbl=Search Text
31
+ CARD.Config.Content.Category.Lbl=Category
32
+ CARD.Config.Content.View.Lbl=Category
33
+ CARD.Config.Content.PageSize.Lbl=Items per page
34
+ CARD.Config.Content.Highlight.Lbl=Highlight Results
35
+ CARD.Config.Content.Highlight.Desc=Highlight the searched text within the results.
36
+ CARD.Config.Content.FooterActions.Lbl=Footer Actions
37
+ CARD.Config.Content.FooterActions.Page=Paging search results
38
+ CARD.Config.Content.FooterActions.Navigate=Navigate to Search Application to view all results
39
+ CARD.Config.Content.FooterActions.None=No Actions
40
+
41
+