@openui5/sap.ui.integration 1.120.7 → 1.121.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 (229) hide show
  1. package/.reuse/dep5 +23 -21
  2. package/THIRDPARTY.txt +6 -43
  3. package/package.json +6 -6
  4. package/src/sap/ui/integration/.library +1 -1
  5. package/src/sap/ui/integration/ActionDefinition.js +1 -1
  6. package/src/sap/ui/integration/Designtime.js +1 -1
  7. package/src/sap/ui/integration/Extension.js +1 -1
  8. package/src/sap/ui/integration/Host.js +14 -12
  9. package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -16
  10. package/src/sap/ui/integration/cards/AnalyticalContent.js +37 -11
  11. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
  12. package/src/sap/ui/integration/cards/BaseContent.js +13 -4
  13. package/src/sap/ui/integration/cards/BaseContentRenderer.js +1 -1
  14. package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
  15. package/src/sap/ui/integration/cards/CalendarContent.js +9 -9
  16. package/src/sap/ui/integration/cards/CalendarContentRenderer.js +10 -7
  17. package/src/sap/ui/integration/cards/ComponentContent.js +1 -1
  18. package/src/sap/ui/integration/cards/Footer.js +11 -5
  19. package/src/sap/ui/integration/cards/Header.js +4 -4
  20. package/src/sap/ui/integration/cards/ListContent.js +8 -2
  21. package/src/sap/ui/integration/cards/ListContentRenderer.js +5 -3
  22. package/src/sap/ui/integration/cards/NumericHeader.js +4 -4
  23. package/src/sap/ui/integration/cards/ObjectContent.js +42 -5
  24. package/src/sap/ui/integration/cards/TableContent.js +1 -1
  25. package/src/sap/ui/integration/cards/TimelineContent.js +4 -4
  26. package/src/sap/ui/integration/cards/WebPageContent.js +1 -1
  27. package/src/sap/ui/integration/cards/actions/BaseAction.js +4 -4
  28. package/src/sap/ui/integration/cards/actions/CardActions.js +1 -1
  29. package/src/sap/ui/integration/cards/actions/ShowCardAction.js +3 -3
  30. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
  31. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
  32. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
  33. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
  34. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
  35. package/src/sap/ui/integration/cards/adaptivecards/overwrites/inputsGeneralOverwrites.js +3 -3
  36. package/src/sap/ui/integration/cards/data/CsrfToken.js +61 -0
  37. package/src/sap/ui/integration/cards/filters/BaseFilter.js +33 -32
  38. package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +254 -0
  39. package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +1 -1
  40. package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
  41. package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +9 -3
  42. package/src/sap/ui/integration/cards/filters/SearchFilter.js +16 -3
  43. package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
  44. package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
  45. package/src/sap/ui/integration/controls/ActionsStrip.js +189 -84
  46. package/src/sap/ui/integration/controls/ActionsToolbar.js +12 -9
  47. package/src/sap/ui/integration/controls/BlockingMessage.js +93 -44
  48. package/src/sap/ui/integration/controls/ImageWithOverlay.js +199 -0
  49. package/src/sap/ui/integration/controls/ImageWithOverlayRenderer.js +36 -0
  50. package/src/sap/ui/integration/controls/LinkWithIcon.js +2 -2
  51. package/src/sap/ui/integration/controls/ListContentItem.js +10 -7
  52. package/src/sap/ui/integration/controls/ListContentItemRenderer.js +5 -4
  53. package/src/sap/ui/integration/controls/Microchart.js +4 -4
  54. package/src/sap/ui/integration/controls/MicrochartLegend.js +4 -4
  55. package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +3 -3
  56. package/src/sap/ui/integration/controls/ObjectStatus.js +3 -1
  57. package/src/sap/ui/integration/controls/Paginator.js +19 -11
  58. package/src/sap/ui/integration/controls/PaginatorRenderer.js +4 -4
  59. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +1 -1
  60. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +6 -4
  61. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +8 -6
  62. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -1
  63. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -1
  64. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +1 -1
  65. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
  66. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +1 -1
  67. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
  68. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
  69. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
  70. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
  71. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
  72. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
  73. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
  74. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +1 -1
  75. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
  76. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
  77. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +1 -1
  78. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
  79. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +1 -1
  80. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
  81. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
  82. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
  83. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
  84. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
  85. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
  86. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
  87. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
  88. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
  89. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
  90. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
  91. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
  92. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
  93. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
  94. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
  95. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
  96. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
  97. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
  98. package/src/sap/ui/integration/designtime/cardEditor/config/index.js +5 -16
  99. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_mk.properties +1 -1
  100. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
  101. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
  102. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +1 -1
  103. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +5 -3
  104. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
  105. package/src/sap/ui/integration/designtime/editor/Card.js +1 -1
  106. package/src/sap/ui/integration/designtime/editor/CardEditor.js +14 -6
  107. package/src/sap/ui/integration/designtime/editor/CardPreview.js +27 -11
  108. package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +30 -17
  109. package/src/sap/ui/integration/editor/Editor.js +23 -25
  110. package/src/sap/ui/integration/editor/EditorResourceBundles.js +1 -1
  111. package/src/sap/ui/integration/editor/Extension.js +1 -1
  112. package/src/sap/ui/integration/editor/Manifest.js +1 -1
  113. package/src/sap/ui/integration/editor/Settings.js +21 -18
  114. package/src/sap/ui/integration/editor/css/Editor.css +9 -7
  115. package/src/sap/ui/integration/editor/fields/BaseField.js +27 -7
  116. package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -1
  117. package/src/sap/ui/integration/editor/fields/DateField.js +5 -5
  118. package/src/sap/ui/integration/editor/fields/DateTimeField.js +5 -5
  119. package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -1
  120. package/src/sap/ui/integration/editor/fields/GroupField.js +11 -13
  121. package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -5
  122. package/src/sap/ui/integration/editor/fields/NumberField.js +5 -5
  123. package/src/sap/ui/integration/editor/fields/ObjectField.js +171 -13
  124. package/src/sap/ui/integration/editor/fields/ObjectListField.js +2 -1
  125. package/src/sap/ui/integration/editor/fields/StringField.js +4 -4
  126. package/src/sap/ui/integration/editor/fields/StringListField.js +1 -1
  127. package/src/sap/ui/integration/editor/fields/fragment/Controller.js +5 -5
  128. package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +2 -3
  129. package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +12 -8
  130. package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -1
  131. package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -1
  132. package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -1
  133. package/src/sap/ui/integration/formatters/IconFormatter.js +5 -5
  134. package/src/sap/ui/integration/library-bootstrap.js +21 -20
  135. package/src/sap/ui/integration/library.js +23 -8
  136. package/src/sap/ui/integration/messagebundle.properties +3 -3
  137. package/src/sap/ui/integration/messagebundle_ar.properties +2 -0
  138. package/src/sap/ui/integration/messagebundle_bg.properties +2 -0
  139. package/src/sap/ui/integration/messagebundle_ca.properties +2 -0
  140. package/src/sap/ui/integration/messagebundle_cnr.properties +2 -0
  141. package/src/sap/ui/integration/messagebundle_cs.properties +2 -0
  142. package/src/sap/ui/integration/messagebundle_cy.properties +2 -0
  143. package/src/sap/ui/integration/messagebundle_da.properties +2 -0
  144. package/src/sap/ui/integration/messagebundle_de.properties +2 -0
  145. package/src/sap/ui/integration/messagebundle_el.properties +2 -0
  146. package/src/sap/ui/integration/messagebundle_en.properties +157 -0
  147. package/src/sap/ui/integration/messagebundle_en_GB.properties +2 -0
  148. package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +154 -152
  149. package/src/sap/ui/integration/messagebundle_es.properties +2 -0
  150. package/src/sap/ui/integration/messagebundle_es_MX.properties +2 -0
  151. package/src/sap/ui/integration/messagebundle_et.properties +2 -0
  152. package/src/sap/ui/integration/messagebundle_fi.properties +2 -0
  153. package/src/sap/ui/integration/messagebundle_fr.properties +2 -0
  154. package/src/sap/ui/integration/messagebundle_fr_CA.properties +2 -0
  155. package/src/sap/ui/integration/messagebundle_hi.properties +2 -0
  156. package/src/sap/ui/integration/messagebundle_hr.properties +2 -0
  157. package/src/sap/ui/integration/messagebundle_hu.properties +2 -0
  158. package/src/sap/ui/integration/messagebundle_id.properties +2 -0
  159. package/src/sap/ui/integration/messagebundle_it.properties +2 -0
  160. package/src/sap/ui/integration/messagebundle_iw.properties +2 -0
  161. package/src/sap/ui/integration/messagebundle_ja.properties +2 -0
  162. package/src/sap/ui/integration/messagebundle_kk.properties +2 -0
  163. package/src/sap/ui/integration/messagebundle_ko.properties +2 -0
  164. package/src/sap/ui/integration/messagebundle_lt.properties +2 -0
  165. package/src/sap/ui/integration/messagebundle_lv.properties +2 -0
  166. package/src/sap/ui/integration/messagebundle_mk.properties +4 -2
  167. package/src/sap/ui/integration/messagebundle_ms.properties +2 -0
  168. package/src/sap/ui/integration/messagebundle_nl.properties +2 -0
  169. package/src/sap/ui/integration/messagebundle_no.properties +2 -0
  170. package/src/sap/ui/integration/messagebundle_pl.properties +2 -0
  171. package/src/sap/ui/integration/messagebundle_pt.properties +2 -0
  172. package/src/sap/ui/integration/messagebundle_pt_PT.properties +2 -0
  173. package/src/sap/ui/integration/messagebundle_ro.properties +2 -0
  174. package/src/sap/ui/integration/messagebundle_ru.properties +2 -0
  175. package/src/sap/ui/integration/messagebundle_sh.properties +2 -0
  176. package/src/sap/ui/integration/messagebundle_sk.properties +2 -0
  177. package/src/sap/ui/integration/messagebundle_sl.properties +2 -0
  178. package/src/sap/ui/integration/messagebundle_sr.properties +2 -0
  179. package/src/sap/ui/integration/messagebundle_sv.properties +2 -0
  180. package/src/sap/ui/integration/messagebundle_th.properties +2 -0
  181. package/src/sap/ui/integration/messagebundle_tr.properties +2 -0
  182. package/src/sap/ui/integration/messagebundle_uk.properties +2 -0
  183. package/src/sap/ui/integration/messagebundle_vi.properties +2 -0
  184. package/src/sap/ui/integration/messagebundle_zh_CN.properties +2 -0
  185. package/src/sap/ui/integration/messagebundle_zh_TW.properties +2 -0
  186. package/src/sap/ui/integration/model/ContextModel.js +1 -1
  187. package/src/sap/ui/integration/model/ObservableModel.js +1 -1
  188. package/src/sap/ui/integration/model/PagingModelListBinding.js +1 -1
  189. package/src/sap/ui/integration/schemas/sap-card.json +198 -22
  190. package/src/sap/ui/integration/themes/base/ActionsStrip.less +6 -0
  191. package/src/sap/ui/integration/themes/base/AnalyticsCloudContent.less +2 -2
  192. package/src/sap/ui/integration/themes/base/Card.less +6 -1
  193. package/src/sap/ui/integration/themes/base/ImageWithOverlay.less +47 -0
  194. package/src/sap/ui/integration/themes/base/ListContentItem.less +12 -0
  195. package/src/sap/ui/integration/themes/base/ObjectContent.less +20 -2
  196. package/src/sap/ui/integration/themes/base/{ObjectStatusIcons.less → ObjectStatus.less} +12 -8
  197. package/src/sap/ui/integration/themes/base/library.source.less +2 -1
  198. package/src/sap/ui/integration/util/BaseFactory.js +1 -1
  199. package/src/sap/ui/integration/util/BindingHelper.js +1 -1
  200. package/src/sap/ui/integration/util/BindingResolver.js +1 -1
  201. package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +4 -4
  202. package/src/sap/ui/integration/util/CardMerger.js +4 -4
  203. package/src/sap/ui/integration/util/CardObserver.js +1 -1
  204. package/src/sap/ui/integration/util/ComboBoxHelper.js +59 -0
  205. package/src/sap/ui/integration/util/ContentFactory.js +1 -1
  206. package/src/sap/ui/integration/util/CsrfTokenHandler.js +130 -148
  207. package/src/sap/ui/integration/util/DataProvider.js +22 -9
  208. package/src/sap/ui/integration/util/DataProviderFactory.js +32 -12
  209. package/src/sap/ui/integration/util/Destinations.js +1 -1
  210. package/src/sap/ui/integration/util/ErrorHandler.js +3 -2
  211. package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
  212. package/src/sap/ui/integration/util/Form.js +9 -34
  213. package/src/sap/ui/integration/util/HeaderFactory.js +6 -4
  214. package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
  215. package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
  216. package/src/sap/ui/integration/util/Manifest.js +22 -7
  217. package/src/sap/ui/integration/util/ManifestResolver.js +3 -3
  218. package/src/sap/ui/integration/util/ParameterMap.js +5 -3
  219. package/src/sap/ui/integration/util/RequestDataProvider.js +27 -22
  220. package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
  221. package/src/sap/ui/integration/util/ServiceManager.js +1 -1
  222. package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
  223. package/src/sap/ui/integration/util/Utils.js +1 -1
  224. package/src/sap/ui/integration/util/Validators.js +1 -1
  225. package/src/sap/ui/integration/widgets/Card.js +47 -33
  226. package/src/sap/ui/integration/widgets/CardRenderer.js +6 -1
  227. package/src/sap-ui-integration.js +19 -17
  228. package/ui5.yaml +4 -0
  229. package/LICENSES/BSD-2-Clause.txt +0 -22
@@ -1,304 +1,461 @@
1
+ #This is the resource bundle for the SAPUI5 sap.ui.integration library
2
+ #
1
3
 
4
+ #XTIT: Card header count
2
5
  CARD.COUNT_X_OF_Y={0} of {1}
3
6
 
7
+ #XMSG: Error message when unknown error occured
4
8
  CARD_ERROR_OCCURED=An error occurred
5
9
 
10
+ #XTXT: Card Manifest text
6
11
  CARD_MANIFEST=Card Manifest
7
12
 
13
+ #XTXT: Copy to Clipboard text
8
14
  CARD_TEXT_COPY=Copy to Clipboard
9
15
 
16
+ #XMSG: Error message when data couldn't load
10
17
  CARD_DATA_LOAD_ERROR=Unable to load data
11
18
 
19
+ #XMSG: Error message when unable to load dependencies
12
20
  CARD_DATA_LOAD_DEPENDENCIES_ERROR=Unable to load dependencies
13
21
 
22
+ #XMSG: Error message when data for a filter couldn't load
14
23
  CARD_FILTER_DATA_LOAD_ERROR=Unable to load the filter
15
24
 
25
+ #XMSG: Error message when no items are available after requests in lists
16
26
  CARD_NO_ITEMS_ERROR_LISTS=No items available
17
27
 
28
+ #XMSG: Error message when no items are available after request in chart
18
29
  CARD_NO_ITEMS_ERROR_CHART=No data available
19
30
 
31
+ #XMSG: Information message when preview configuration is missing
20
32
  CARD_MISSING_PREVIEW_CONFIGURATION=Preview configuration is missing. Abstract preview is displayed.
21
33
 
34
+ #XMSG: Error message when embedded page couldn't be loaded after certain seconds
22
35
  CARD_WEB_PAGE_TIMEOUT_ERROR=The page could not be loaded in {0} seconds. Please check the URL.
23
36
 
37
+ #XMSG: Error message when there is no provided URL
24
38
  CARD_WEB_PAGE_EMPTY_URL_ERROR=The URL of the page is empty.
25
39
 
40
+ #XMSG: Error message when provided URL doesn't start with https://
26
41
  CARD_WEB_PAGE_HTTPS_URL_ERROR=Please use a secure URL (https\://)
27
42
 
43
+ #XBUT: Tooltip/text for button which closes a dialog
28
44
  CARD_DIALOG_CLOSE_BUTTON=Close
29
45
 
46
+ #XTIT: Title for a card error dialog
30
47
  CARD_ERROR_DIALOG_TITLE=Error Details
31
48
 
49
+ #XBUT: Button text for displaying additional information
32
50
  CARD_BUTTON_SHOW_MORE=Show More
33
51
 
52
+ #XMSG: Title for an error message when there is a timeout
34
53
  CARD_ERROR_REQUEST_TIMEOUT_TITLE=Timeout Error
35
54
 
55
+ #XMSG: Title for an error message when the requested URL is not found
36
56
  CARD_ERROR_REQUEST_NOTFOUND_TITLE=Not Found
37
57
 
58
+ #XMSG: Title for an error message when there is a card configuration error
38
59
  CARD_ERROR_CONFIGURATION_TITLE=Card Configuration Error
39
60
 
61
+ #XMSG: General error description when data request is not successful
40
62
  CARD_ERROR_REQUEST_DESCRIPTION=Try to refresh later or contact technical support
41
63
 
64
+ #XMSG: Error description when there is a configuration error
42
65
  CARD_ERROR_CONFIGURATION_DESCRIPTION=Contact technical support
43
66
 
67
+ #XMSG: Error description when the Highcharts library is not initialized
44
68
  CARD_ERROR_HIGHCHARTS_DESCRIPTION=A problem occurred while loading the Highcharts library. Could not initialize AnalyticsCloud card content.
45
69
 
70
+ #XMSG: Error description when component is not created
46
71
  CARD_ERROR_COMPONENT_DESCRIPTION=Card content failed to create component
47
72
 
73
+ #XMSG: General error description when access is denied
48
74
  CARD_ERROR_REQUEST_ACCESS_DENIED_DESCRIPTION=Check your access rights or contact technical support
49
75
 
76
+ #XMSG: General error details when data request is not successful
50
77
  CARD_ERROR_REQUEST_DETAILS=An error occurred while requesting {0}. Please contact the system administrator.
51
78
 
79
+ #XMSG: Error details when data request took longer than the timeout
52
80
  CARD_ERROR_REQUEST_TIMEOUT_DETAILS=A timeout occurred while requesting {0}. Please contact the system administrator.
53
81
 
82
+ #XTXT: Text indicating a log message will follow
54
83
  CARD_LOG_MSG=Log message\:
55
84
 
85
+ #XTXT: Text indicating request settings text will follow
56
86
  CARD_REQUEST_SETTINGS=Request settings\:
57
87
 
88
+ #XTXT: Text indicating a request text will follow
58
89
  CARD_REQUEST=Request\:
59
90
 
91
+ #XTXT: Text indicating a response headers text will follow
60
92
  CARD_RESPONSE_HEADERS=Response headers\:
61
93
 
94
+ #XTXT: Text indicating a response text will follow
62
95
  CARD_RESPONSE=Response\:
63
96
 
97
+ #XTXT: Text indicating a stack trace text will follow
64
98
  CARD_STACK_TRACE=Stack trace\:
65
99
 
100
+ #XMSG: Success Message for Action Submit in AdaptiveContent
66
101
  CARDS_ADAPTIVE_ACTION_SUBMIT_SUCCESS=Data sent successfully
67
102
 
103
+ #XMSG: Error Message for Action Submit in AdaptiveContent
68
104
  CARDS_ADAPTIVE_ACTION_SUBMIT_ERROR=An error occurred when sending the data
69
105
 
106
+ #XTXT: ARIA label text for a CalendarContent
70
107
  CARDS_CALENDAR=Calendar Card
71
108
 
109
+ #XTXT: ARIA label text for a legend inside a CalendarContent
72
110
  CARDS_CALENDAR_LEGEND=Legend
73
111
 
112
+ #XTXT: ARIA label text for an appointment list inside a CalendarContent
74
113
  CARDS_CALENDAR_APPOINTMENTS=Appointments List
75
114
 
115
+ #XTIT: Card Editor caption for editor destination settings section, destinations is a technical term here and refers to https://help.sap.com/viewer/b865ed651e414196b39f8922db2122c7/Cloud/en-US/e4f1d97cbb571014a247d10f9f9a685d.html
76
116
  EDITOR_DESTINATIONS=Destinations
77
117
 
118
+ #XTIT: Card Editor Label to indicate general settings
78
119
  EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
79
120
 
121
+ #XTXT: Group message strip, error text
80
122
  EDITOR_GROUP_ERRORS=Errors found. Please check.
81
123
 
124
+ #XTXT: Group message strip, warning text
82
125
  EDITOR_GROUP_WARNINGS=Warnings found. Please check.
83
126
 
127
+ #XTIT: Card Editor Label to indicate the original language in the translation screen
84
128
  EDITOR_ORIGINALLANG=Original Language
85
129
 
130
+ #XSEL: Context selection, display value of an empty default value
86
131
  EDITOR_CONTEXT_EMPTY_VAL=None
87
132
 
133
+ #XTIT: Context selection, description of an empty default value
88
134
  EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
89
135
 
136
+ #XSEL: Context selection, display value of other values provided by the editor
90
137
  EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other values
91
138
 
139
+ #XSEL: Context selection, display value of a placeholder for today's date
92
140
  EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
93
141
 
142
+ #XTIT: Context selection, description where to use today's date
94
143
  EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
95
144
 
145
+ #XSEL: Context selection, display value of a placeholder for nows timestamp
96
146
  EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
97
147
 
148
+ #XTIT: Context selection, description where to use for nows timestamp
98
149
  EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
99
150
 
151
+ #XSEL: Context selection, display value of a placeholder for users currently used language
100
152
  EDITOR_CONTEXT_EDITOR_LANG_VAL=Current language
101
153
 
154
+ #XTIT: Context selection, description where to use and specialities of current language
102
155
  EDITOR_CONTEXT_EDITOR_LANG_DESC=The current language abbreviation of the current end user. Language and region are separated by a dash. For example, en-US. The region might be omitted.
103
156
 
157
+ #XTIT: Text of the edit mode button in the Object field
104
158
  EDITOR_FIELD_OBJECT_FORM_EDITMODE_PROPERTIES=Switch to Production Mode
105
159
 
160
+ #XTIT: Text of the edit mode button in the Object field
106
161
  EDITOR_FIELD_OBJECT_FORM_EDITMODE_JSON=Switch to JSON Mode
107
162
 
163
+ #XTIT: Text of the delete button in the Object field
108
164
  EDITOR_FIELD_OBJECT_DELETE=Delete
109
165
 
166
+ #XTIT: Text of the delete error msg in the Object field
110
167
  EDITOR_FIELD_OBJECT_DELETE_ERROR_MSG=Unable to delete; no editable item to delete.
111
168
 
169
+ #XTIT: Text of the delete confirm title in the Object field
112
170
  EDITOR_FIELD_OBJECT_DELETE_CONFIRM_TITLE=Confirm
113
171
 
172
+ #XTIT: Text of the delete confirm msg in the Object field
114
173
  EDITOR_FIELD_OBJECT_DELETE_CONFIRM_MSG=Delete editable items?
115
174
 
175
+ #XTIT: Text of the delete confirm cancel action in the Object field
116
176
  EDITOR_FIELD_OBJECT_DELETE_CONFIRM_CANCLE=Delete canceled.
117
177
 
178
+ #XTOL: Title of the object details popover of a object field
118
179
  EDITOR_FIELD_OBJECT_DETAILS_POPOVER_TITLE=Object Details
119
180
 
181
+ #XTOL: Text of Add Button of the object details popover of a object field
120
182
  EDITOR_FIELD_OBJECT_DETAILS_POPOVER_BUTTON_ADD=Add
121
183
 
184
+ #XTOL: Text of Update Button of the object details popover of a object field
122
185
  EDITOR_FIELD_OBJECT_DETAILS_POPOVER_BUTTON_UPDATE=Update
123
186
 
187
+ #XTOL: Text of Cancle Button of the object details popover of a object field
124
188
  EDITOR_FIELD_OBJECT_DETAILS_POPOVER_BUTTON_CANCEL=Cancel
125
189
 
190
+ #XTOL: Text of Close Button of the object details popover of a object field
126
191
  EDITOR_FIELD_OBJECT_DETAILS_POPOVER_BUTTON_CLOSE=Close
127
192
 
193
+ #XTOL: Text of RESET Button of the object details popover of a object field
128
194
  EDITOR_FIELD_OBJECT_DETAILS_POPOVER_BUTTON_RESET=Reset
129
195
 
196
+ #XTIT: Title of the object table in the value list popover of a Object field
130
197
  EDITOR_FIELD_OBJECT_LIST_VALUELIST_POPOVER_TITLE=Select Items
131
198
 
199
+ #XTOL: Text of OK Button of the value list popover of a object field
132
200
  EDITOR_FIELD_OBJECT_VALUELIST_POPOVER_BUTTON_OK=OK
133
201
 
202
+ #XTOL: Text of Cancel Button of the value list popover of a object field
134
203
  EDITOR_FIELD_OBJECT_VALUELIST_POPOVER_BUTTON_CANCEL=Cancel
135
204
 
205
+ #XTOL: Tooltip of the selection column in the table of a object field
136
206
  EDITOR_FIELD_OBJECT_TABLE_COLUMN_SELECTION_TOOLTIP_REMOVE=Remove value
137
207
 
208
+ #XTOL: Tooltip of the selection cell in the table of a object field
138
209
  EDITOR_FIELD_OBJECT_TABLE_COLUMN_SELECTION_CELL_TOOLTIP_SELECT=Select as value
139
210
 
211
+ #XTOL: Tooltip of the selection cell in the table of a object field
140
212
  EDITOR_FIELD_OBJECT_TABLE_COLUMN_SELECTION_CELL_TOOLTIP_UNSELECT=Remove value
141
213
 
214
+ #XTOL: Tooltip of the selection column in the table of a object list field
142
215
  EDITOR_FIELD_OBJECT_LIST_TABLE_COLUMN_SELECTION_TOOLTIP_ADDALL=Add All
143
216
 
217
+ #XTOL: Tooltip of the selection column in the table of a object list field
144
218
  EDITOR_FIELD_OBJECT_LIST_TABLE_COLUMN_SELECTION_TOOLTIP_REMOVEALL=Remove All
145
219
 
220
+ #XTOL: Tooltip of the selection cell in the table of a object list field
146
221
  EDITOR_FIELD_OBJECT_LIST_TABLE_COLUMN_SELECTION_CELL_TOOLTIP_ADD=Add into value
147
222
 
223
+ #XTOL: Tooltip of the selection cell in the table of a object list field
148
224
  EDITOR_FIELD_OBJECT_LIST_TABLE_COLUMN_SELECTION_CELL_TOOLTIP_REMOVE=Remove from value
149
225
 
226
+ #XTOL: Tooltip Text of the add button in the table of a object field
150
227
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_ADD_TOOLTIP=Add
151
228
 
229
+ #XTOL: Tooltip Text of the clear all filters button in the table of a object field
152
230
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_CLEAR_ALL_FILTERS_TOOLTIP=Clear All Filters
153
231
 
232
+ #XTOL: Tooltip Text of the clear all selections button in the table of a object field
154
233
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_SELECT_ALL_SELETIONS_TOOLTIP=Select All Selections
155
234
 
235
+ #XTOL: Tooltip Text of the clear all selections button in the table of a object field
156
236
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_CLEAR_ALL_SELETIONS_TOOLTIP=Clear All Selections
157
237
 
238
+ #XTOL: Tooltip Text of the move up button in the table of a object field
158
239
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_MOVE_UP_TOOLTIP=Move Up
159
240
 
241
+ #XTOL: Tooltip Text of the move down button in the table of a object field
160
242
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_MOVE_DOWN_TOOLTIP=Move Down
161
243
 
244
+ #XTOL: Tooltip Text of the edit button in the table of a object field
162
245
  EDITOR_FIELD_OBJECT_TABLE_BUTTON_EDIT_TOOLTIP=Edit
163
246
 
247
+ #XTOL: Title of the translation list popover of a string field
164
248
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=Value translations
165
249
 
250
+ #XTOL: Title of the translation list popover of a string field
166
251
  EDITOR_FIELD_OBJECT_TRANSLATION_LIST_TITLE=Translations for property \: {0}
167
252
 
253
+ #XTOL: Text of Save Button of the translation list popover of a string field
168
254
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
169
255
 
256
+ #XTOL: Text of Cancel Button of the translation list popover of a string field
170
257
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
171
258
 
259
+ #XTOL: Text of Current Language in the translation list popover of a string field
172
260
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current language
173
261
 
262
+ #XTOL: Text of Current Language value in the translation list popover of a string field
174
263
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
175
264
 
265
+ #XTOL: Text of Other Languages in the translation list popover of a string field
176
266
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other languages
177
267
 
268
+ #XTOL: Text of Not Updated group in the translation list popover of a string field
178
269
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not updated
179
270
 
271
+ #XTOL: Text of Updated group in the translation list popover of a string field
180
272
  EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
181
273
 
274
+ #XTOL: Tooltip of the more settings button of a field
182
275
  EDITOR_FIELD_MORE_SETTINGS=More settings
183
276
 
277
+ #XTIT: Instruction to select value from list
184
278
  EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
185
279
 
280
+ #XBUT: Activates the Dynamic Value Pane
186
281
  EDITOR_MORE_DYNAMICVALUES=Dynamic Value
187
282
 
283
+ #XTIT: After user selection the actual dynamic value will be shown (the current value in my environment)
188
284
  EDITOR_ACTUAL_VALUE=Actual Dynamic Value
189
285
 
286
+ #XTIT: Hint that the value is technical and should not shown to the end-user
190
287
  EDITOR_MORE_DYNAMICVALUES_TECHHINT=This value is used in technical settings of a card and should not be shown to end-users.
191
288
 
289
+ #XBUT: Activates the Settings Pane
192
290
  EDITOR_MORE_SETTINGS=Settings
193
291
 
292
+ #XTIT: Groups field for page administrator settings
194
293
  EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
195
294
 
295
+ #XBUT: Activates the Settings Pane
196
296
  EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to Default Values
197
297
 
298
+ #XCKL: Allows to select if a field is visible
198
299
  EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow field to be viewed
199
300
 
301
+ #XCKL: Allows to select if a field is editable
200
302
  EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow field to be edited
201
303
 
304
+ #XCKL: Allows to select if a field is can have dynamic values
202
305
  EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow dynamic values to be set
203
306
 
307
+ #XTIT: Page admin values list
204
308
  EDITOR_MORE_SETTINGS_P_ADMIN_VALUES_LIST=Allow to Selected Values
205
309
 
310
+ #XTIT: Tooltips for page admin values list
206
311
  EDITOR_MORE_SETTINGS_P_ADMIN_VALUES_LIST_TOOLTIPS=Allowed Values to be Selected by Page Admin
207
312
 
313
+ #XTIT: Tooltips for select all button
208
314
  EDITOR_MORE_SETTINGS_P_ADMIN_SELECT_ALL=Select All
209
315
 
316
+ #XTIT: Tooltips for deselect all button
210
317
  EDITOR_MORE_SETTINGS_P_ADMIN_DESELECT_ALL=Deselect All
211
318
 
319
+ #XBUT: Activates the Transform Pane
212
320
  EDITOR_MORE_TRANSFORM=Transform to a variant for Page Admin
213
321
 
322
+ #XTIT: Lable for Page Admin Destination
214
323
  EDITOR_MORE_TRANSFORM_P_ADMIN_LABEL=Destination Label
215
324
 
325
+ #XTIT: Lable for Page Admin Destination Mappings
216
326
  EDITOR_MORE_TRANSFORM_P_ADMIN_MAPPINGS=Destination Mappings
217
327
 
328
+ #XBUT: Saves the values and closes the dialog
218
329
  EDITOR_MORE_OK=OK
219
330
 
331
+ #XBUT: Closes the dialog without saving
220
332
  EDITOR_MORE_CANCEL=Cancel
221
333
 
334
+ #XBUT: Reset to default values
222
335
  EDITOR_MORE_RESET=Reset
223
336
 
337
+ #XTIT: Choose an icon from file
224
338
  EDITOR_ICON_CHOOSE=Choose an icon from file
225
339
 
340
+ #XTIT: Selected an icon from a file
226
341
  EDITOR_ICON_SELECTED=Selected from file
227
342
 
343
+ #XTIT: No icon selected
228
344
  EDITOR_ICON_NONE=(None)
229
345
 
346
+ #XTIT: Tooltip of the custom icon of selected image file
230
347
  EDITOR_IMAGE_CUSTOMICON_TOOLTIP=Click to display image
231
348
 
349
+ #XMSG: Validation Error: Not a json object.
232
350
  EDITOR_VAL_NOT_A_JSONOBJECT=Not a JSON object.
233
351
 
352
+ #XMSG: Validation Error: Not a single json object.
234
353
  EDITOR_VAL_NOT_A_SINGLE_JSONOBJECT=Not a single JSON object.
235
354
 
355
+ #XMSG: Validation Error: Not an array of json objects
236
356
  EDITOR_VAL_NOT_AN_ARRAY_OF_JSONOBJECTS=Not an array of JSON objects.
237
357
 
358
+ #XMSG: Validation Error: Does not match pattern
238
359
  EDITOR_VAL_NOMATCH=Value does not match the validation criteria.
239
360
 
361
+ #XMSG: Validation Error: Max length exceeded
240
362
  EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}.
241
363
 
364
+ #XMSG: Validation Error: Min length
242
365
  EDITOR_VAL_MINLENGTH=Value must be a minimum of {0} characters.
243
366
 
367
+ #XMSG: Validation Error: Text required
244
368
  EDITOR_VAL_TEXTREQ=Field is required. Please enter a text.
245
369
 
370
+ #XMSG: Validation Error: List required
246
371
  EDITOR_VAL_LISTREQ=Field is required. Please select an item.
247
372
 
373
+ #XMSG: Validation Error: Field required
248
374
  EDITOR_VAL_FIELDREQ=Field is required.
249
375
 
376
+ #XMSG: Validation Error: Max length exceeded of List
250
377
  EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
251
378
 
379
+ #XMSG: Validation Error: Min length of List
252
380
  EDITOR_VAL_LISTMINLENGTH=List must have at least {0} items
253
381
 
382
+ #XMSG: Validation Error: Number Maximum Inclusive
254
383
  EDITOR_VAL_MAX=Value must be {0} or less.
255
384
 
385
+ #XMSG: Validation Error: Number Minimum Inclusive
256
386
  EDITOR_VAL_MIN=Value must be {0} or greater.
257
387
 
388
+ #XMSG: Validation Error: Number Maximum Exclusive
258
389
  EDITOR_VAL_MAX_E=Value must be less than {0}.
259
390
 
391
+ #XMSG: Validation Error: Number Minimum Exclusive
260
392
  EDITOR_VAL_MIN_E=Value must be greater than {0}.
261
393
 
394
+ #XMSG: Validation Error: Number Multiple Of
262
395
  EDITOR_VAL_MULTIPLE=Value must be a multiple of {0}
263
396
 
397
+ #XMSG: Validation Error: Number required
264
398
  EDITOR_VAL_NUMBERREQ=Field entry is required. Please enter a number.
265
399
 
400
+ #XMSG: Validation error text
266
401
  EDITOR_ONLY_LISTED_VALUES_ALLOWED=Only listed values are allowed.
267
402
 
403
+ #XMSG: Text of Selected Group in MultiComboBox in ListField
268
404
  EDITOR_ITEM_SELECTED=Selected
269
405
 
406
+ #XMSG: Text of Unselected Group in MultiComboBox in ListField
270
407
  EDITOR_ITEM_UNSELECTED=Unselected
271
408
 
409
+ #XMSG: Bad Request
272
410
  EDITOR_BAD_REQUEST=Bad request
273
411
 
412
+ #XSEL: Context selection, display value of an empty default value
274
413
  CARDEDITOR_CONTEXT_EMPTY_VAL=None
275
414
 
415
+ #XTIT: Context selection, description of an empty default value
276
416
  CARDEDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
277
417
 
418
+ #XSEL: Context selection, display value of other values provided by the card
278
419
  CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=Other values
279
420
 
421
+ #XSEL: Context selection, display value of a placeholder for today's date
280
422
  CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Current date
281
423
 
424
+ #XTIT: Context selection, description where to use today's date
282
425
  CARDEDITOR_CONTEXT_CARD_TODAY_DESC=The current date can be used for filters or strings.
283
426
 
427
+ #XSEL: Context selection, display value of a placeholder for nows timestamp
284
428
  CARDEDITOR_CONTEXT_CARD_NOW_VAL=Now, date and time
285
429
 
430
+ #XTIT: Context selection, description where to use for nows timestamp
286
431
  CARDEDITOR_CONTEXT_CARD_NOW_DESC=The current date and time can be used for filters or strings
287
432
 
433
+ #XSEL: Context selection, display value of a placeholder for users currently used language
288
434
  CARDEDITOR_CONTEXT_CARD_LANG_VAL=Current language
289
435
 
436
+ #XTIT: Context selection, description where to use and specialities of current language
290
437
  CARDEDITOR_CONTEXT_CARD_LANG_DESC=The current language abbreviation of the current end user. Language and region are separated by a dash. For example, en-US. The region might be omitted.
291
438
 
439
+ #XTIT: Card Editor Tooltip for a live preview
292
440
  CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
293
441
 
442
+ #XTIT: Card Editor Tooltip for a mockdata preview
294
443
  CARDEDITOR_PREVIEW_BTN_MOCKDATAPREVIEW=Mock Data Preview
295
444
 
445
+ #XTIT: Card Editor Tooltip for a full size preview
296
446
  CARDEDITOR_PREVIEW_BTN_FULLSIZE=Full Size
297
447
 
448
+ #XTIT: Card Editor Tooltip for a normal Size preview
298
449
  CARDEDITOR_PREVIEW_BTN_NORMALSIZE=Normal Size
299
450
 
451
+ #XTIT: Card Editor Tooltip for a abstract sample/placeholder preview
300
452
  CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
301
453
 
454
+ #XTXT: ARIA description text for a required field
302
455
  ADAPTIVE_CARDS_REQUIRED_FIELD=Required
303
456
 
457
+ #XTXT: Tooltip text for actions overflow button
304
458
  CARD_ACTIONS_OVERFLOW_BUTTON_TOOLTIP=Actions
459
+
460
+ #XTOL: Title of Object property popover of a object/object list field
461
+ EDITOR_FIELD_OBJECT_PROPERTY_POPOVER_TITLE=Property Value
@@ -302,3 +302,5 @@ CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
302
302
  ADAPTIVE_CARDS_REQUIRED_FIELD=Required
303
303
 
304
304
  CARD_ACTIONS_OVERFLOW_BUTTON_TOOLTIP=Actions
305
+
306
+ EDITOR_FIELD_OBJECT_PROPERTY_POPOVER_TITLE=Property Value