@sapui5/sap.ushell 1.114.0 → 1.115.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 (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
@@ -5,3 +5,37 @@ CARD.Widget.Title=Widget Hasil Pencarian
5
5
  CARD.Widget.SubTitle=Tampilkan Hasil Pencarian di Hasil Pencarian
6
6
 
7
7
  CARD.List.Button.ViewAll=Lihat Semua
8
+
9
+ CARD.List.Title.SearchResults=Hasil untuk {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} dari {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 risultati ricerca
5
5
  CARD.Widget.SubTitle=Mostra risultati ricerca in un risultato ricerca
6
6
 
7
7
  CARD.List.Button.ViewAll=Vis. tutto
8
+
9
+ CARD.List.Title.SearchResults=Risultati per {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} di {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=\u05D9\u05D9\u05E9\u05D5\u05DE\u05D5\u05DF Widget \u05E9\u05DC
5
5
  CARD.Widget.SubTitle=\u05D4\u05E6\u05D2 \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05D7\u05D9\u05E4\u05D5\u05E9 \u05D1\u05EA\u05D5\u05E6\u05D0\u05EA \u05D7\u05D9\u05E4\u05D5\u05E9
6
6
 
7
7
  CARD.List.Button.ViewAll=\u05D4\u05E6\u05D2 \u05D4\u05DB\u05D5\u05DC
8
+
9
+ CARD.List.Title.SearchResults=\u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} \u05DE\u05EA\u05D5\u05DA {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=\u691C\u7D22\u7D50\u679C\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8
5
5
  CARD.Widget.SubTitle=\u691C\u7D22\u7D50\u679C\u3092\u691C\u7D22\u7D50\u679C\u306B\u8868\u793A
6
6
 
7
7
  CARD.List.Button.ViewAll=\u3059\u3079\u3066\u8868\u793A
8
+
9
+ CARD.List.Title.SearchResults={0} \u306E\u7D50\u679C
10
+
11
+ CARD.List.RowStatus={2} \u306E {0} \uFF5E {1}
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=\u0406\u0437\u0434\u0435\u0443 \u043D\u04D9\u0442\u0438\u0436\
5
5
  CARD.Widget.SubTitle=\u0406\u0437\u0434\u0435\u0443 \u043D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440\u0456\u043D "\u0406\u0437\u0434\u0435\u0443 \u043D\u04D9\u0442\u0438\u0436\u0435\u0441\u0456" \u0456\u0448\u0456\u043D\u0434\u0435 \u043A\u04E9\u0440\u0441\u0435\u0442\u0443
6
6
 
7
7
  CARD.List.Button.ViewAll=\u0411\u0430\u0440\u043B. \u043A\u04E9\u0440\u0443
8
+
9
+ CARD.List.Title.SearchResults={0} \u04AF\u0448\u0456\u043D \u043D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440
10
+
11
+ CARD.List.RowStatus={0}-{1} / {2}
12
+
13
+ CARD.Config.Yes=\u0418\u04D9
14
+ CARD.Config.No=\u0416\u043E\u049B
15
+ CARD.Config.HeaderSettings=\u0422\u0430\u049B\u044B\u0440\u044B\u043F \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440\u0456
16
+ CARD.Config.HeaderType.Lbl=\u0422\u0430\u049B\u044B\u0440\u044B\u043F \u0442\u04AF\u0440\u0456
17
+ CARD.Config.HeaderType.Default=\u04D8\u0434\u0435\u043F\u043A\u0456 \u0442\u0430\u049B\u044B\u0440\u044B\u043F
18
+ CARD.Config.HeaderType.Custom=\u0422\u0435\u04A3\u0448\u0435\u043B\u043C\u0435\u043B\u0456 \u0442\u0430\u049B\u044B\u0440\u044B\u043F
19
+ CARD.Config.HeaderType.None=\u0422\u0430\u049B\u044B\u0440\u044B\u043F \u0436\u043E\u049B
20
+ CARD.Config.Header.Title.Lbl=\u0410\u0442\u0430\u0443
21
+ CARD.Config.Header.Title.Desc=\u0421\u04D9\u0439\u043A\u0435\u0441 \u043C\u04D9\u043D\u0434\u0435\u0440 \u049B\u043E\u0441\u0443 \u04AF\u0448\u0456\u043D \u043C\u04D9\u0442\u0456\u043D\u0434\u0435 ($count) \u043D\u0435 ($searchText) \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443.
22
+ CARD.Config.Header.SubTitle.Lbl=\u0421\u0438\u043F\u0430\u0442\u0442\u0430\u043C\u0430
23
+ CARD.Config.Header.SubTitle.Desc=\u0421\u04D9\u0439\u043A\u0435\u0441 \u043C\u04D9\u043D\u0434\u0435\u0440 \u049B\u043E\u0441\u0443 \u04AF\u0448\u0456\u043D \u043C\u04D9\u0442\u0456\u043D\u0434\u0435 ($count) \u043D\u0435 ($searchText) \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443.
24
+ CARD.Config.Header.Icon.Lbl=\u0411\u0435\u043B\u0433\u0456\u0448\u0435
25
+ CARD.Config.Header.IconColor.Lbl=\u0411\u0435\u043B\u0433\u0456\u0448\u0435 \u0442\u04AF\u0441\u0456
26
+ CARD.Config.Header.IconShape.Lbl=\u0411\u0435\u043B\u0433\u0456\u0448\u0435 \u043F\u0456\u0448\u0456\u043D\u0456
27
+ CARD.Config.Header.Nav.Lbl=\u0406\u0437\u0434\u0435\u0443 \u049B\u043E\u043B\u0434\u0430\u043D\u0431\u0430\u0441\u044B\u043D\u0430 \u04E9\u0442\u0443
28
+ CARD.Config.Header.Nav.Desc=\u0422\u0430\u049B\u044B\u0440\u044B\u043F \u0431\u0430\u0441\u044B\u043B\u0441\u0430, \u0456\u0437\u0434\u0435\u0443 \u049B\u043E\u043B\u0434\u0430\u043D\u0431\u0430\u0441\u044B\u043D\u0430 \u04E9\u0442\u0435\u0434\u0456
29
+ CARD.Config.ContentSettings=\u041C\u0430\u0437\u043C\u04B1\u043D \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440\u0456
30
+ CARD.Config.Content.SearchTerm.Lbl=\u0406\u0437\u0434\u0435\u0443 \u043C\u04D9\u0442\u0456\u043D\u0456
31
+ CARD.Config.Content.Category.Lbl=\u0421\u0430\u043D\u0430\u0442
32
+ CARD.Config.Content.View.Lbl=\u0421\u0430\u043D\u0430\u0442
33
+ CARD.Config.Content.PageSize.Lbl=\u04D8\u0440 \u0431\u0435\u0442\u0442\u0435\u0433\u0456 \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0442\u0435\u0440
34
+ CARD.Config.Content.Highlight.Lbl=\u041D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440\u0434\u0456 \u0431\u04E9\u043B\u0435\u043A\u0442\u0435\u0443
35
+ CARD.Config.Content.Highlight.Desc=\u041D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440\u0434\u0435\u0433\u0456 \u0456\u0437\u0434\u0435\u043B\u0433\u0435\u043D \u043C\u04D9\u0442\u0456\u043D\u0434\u0456 \u0431\u04E9\u043B\u0435\u043A\u0442\u0435\u0443.
36
+ CARD.Config.Content.FooterActions.Lbl=\u0422\u04E9\u043C\u0435\u043D\u0433\u0456 \u043A\u043E\u043B\u043E\u043D\u0442\u0438\u0442\u0443\u043B \u043E\u043F\u0435\u0440\u0430\u0446\u0438\u044F\u043B\u0430\u0440\u044B
37
+ CARD.Config.Content.FooterActions.Page=\u0406\u0437\u0434\u0435\u0443 \u043D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440\u0456\u043D \u043F\u0430\u0440\u0430\u049B\u0442\u0430\u0443
38
+ CARD.Config.Content.FooterActions.Navigate=\u0411\u0430\u0440\u043B\u044B\u049B \u043D\u04D9\u0442\u0438\u0436\u0435\u043B\u0435\u0440\u0434\u0456 \u043A\u04E9\u0440\u0443 \u04AF\u0448\u0456\u043D \u0456\u0437\u0434\u0435\u0443 \u049B\u043E\u043B\u0434\u0430\u043D\u0431\u0430\u0441\u044B\u043D\u0430 \u04E9\u0442\u0443
39
+ CARD.Config.Content.FooterActions.None=\u041E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u0436\u043E\u049B
40
+
41
+
@@ -5,3 +5,37 @@ CARD.Widget.Title=\uAC80\uC0C9 \uACB0\uACFC \uC704\uC82F
5
5
  CARD.Widget.SubTitle=\uAC80\uC0C9 \uACB0\uACFC\uC5D0 \uAC80\uC0C9 \uACB0\uACFC \uD45C\uC2DC
6
6
 
7
7
  CARD.List.Button.ViewAll=\uBAA8\uB450 \uBCF4\uAE30
8
+
9
+ CARD.List.Title.SearchResults={0}\uC5D0 \uB300\uD55C \uACB0\uACFC
10
+
11
+ CARD.List.RowStatus={2}\uC758 {0}-{1}
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=Ie\u0161kos rezultat\u0173 valdiklis
5
5
  CARD.Widget.SubTitle=Rodyti ie\u0161kos rezultatus srityje Ie\u0161kos rezultatas
6
6
 
7
7
  CARD.List.Button.ViewAll=Per\u017E.visk\u0105
8
+
9
+ CARD.List.Title.SearchResults={0} rezultatai
10
+
11
+ CARD.List.RowStatus={0}\u2013{1} i\u0161 {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=Mekl\u0113\u0161anas rezult\u0101tu logr\u012Bks
5
5
  CARD.Widget.SubTitle=Mekl\u0113\u0161anas rezult\u0101t\u0101 r\u0101d\u012Bt mekl\u0113\u0161anas rezult\u0101tus
6
6
 
7
7
  CARD.List.Button.ViewAll=Skat\u012Bt visu
8
+
9
+ CARD.List.Title.SearchResults=Rezult\u0101ti attiec\u012Bb\u0101 uz {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} no {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=Cari Widget Hasil
5
5
  CARD.Widget.SubTitle=Tunjukkan Hasil Carian dalam Hasil Carian
6
6
 
7
7
  CARD.List.Button.ViewAll=Pprkn Smua
8
+
9
+ CARD.List.Title.SearchResults=Hasil untuk {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} daripada {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=Zoekresultaatwidget
5
5
  CARD.Widget.SubTitle=Zoekresultaten weergeven in een zoekresultaat
6
6
 
7
7
  CARD.List.Button.ViewAll=Alles weergeven
8
+
9
+ CARD.List.Title.SearchResults=Resultaten voor {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} van {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\u00F8keresultat-widget
5
5
  CARD.Widget.SubTitle=Vis s\u00F8keresultater i et s\u00F8keresultat
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} av {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=Wid\u017Cet wynik\u00F3w wyszukiwania
5
5
  CARD.Widget.SubTitle=Wy\u015Bwietlanie wynik\u00F3w wyszukiwania
6
6
 
7
7
  CARD.List.Button.ViewAll=Wy\u015Bwietl wszys.
8
+
9
+ CARD.List.Title.SearchResults=Wyniki dla {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} z {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 resultado da pesquisa
5
5
  CARD.Widget.SubTitle=Exibir resultados pesq.em um resultado pesquisa
6
6
 
7
7
  CARD.List.Button.ViewAll=Visualizar tudo
8
+
9
+ CARD.List.Title.SearchResults=Resultados para {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=Widget de resultado de pesquisa
5
5
  CARD.Widget.SubTitle=Mostrar resultados pesquisa num resultado pesquisa
6
6
 
7
7
  CARD.List.Button.ViewAll=Ver tudo
8
+
9
+ CARD.List.Title.SearchResults=Resultados para {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=C\u0103utare widger rezultat
5
5
  CARD.Widget.SubTitle=Afi\u0219are rezultate c\u0103utare \u00EEntr-un rezultat c\u0103utare
6
6
 
7
7
  CARD.List.Button.ViewAll=Afi\u0219are tot
8
+
9
+ CARD.List.Title.SearchResults=Rezultate pentru {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} din {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=\u0412\u0438\u0434\u0436\u0435\u0442 \u0440\u0435\u0437\u0443\
5
5
  CARD.Widget.SubTitle=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u043F\u043E\u0438\u0441\u043A\u0430 \u0432 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0430\u0445 \u043F\u043E\u0438\u0441\u043A\u0430
6
6
 
7
7
  CARD.List.Button.ViewAll=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0435
8
+
9
+ CARD.List.Title.SearchResults=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u0434\u043B\u044F {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} \u0438\u0437 {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=Vid\u017Eet rezultata tra\u017Eenja
5
5
  CARD.Widget.SubTitle=Poka\u017Ei rezultate tra\u017Eenja u Rezultatu tra\u017Eenja
6
6
 
7
7
  CARD.List.Button.ViewAll=Poka\u017Ei sve
8
+
9
+ CARD.List.Title.SearchResults=Rezultati za {0}
10
+
11
+ CARD.List.RowStatus={0}-{1} od {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
+