@openui5/sap.ui.integration 1.96.2 → 1.98.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 (681) hide show
  1. package/.reuse/dep5 +26 -31
  2. package/THIRDPARTY.txt +15 -21
  3. package/package.json +3 -3
  4. package/src/sap/ui/integration/.library +16 -22
  5. package/src/sap/ui/integration/ActionDefinition.js +2 -2
  6. package/src/sap/ui/integration/Designtime.js +2 -2
  7. package/src/sap/ui/integration/Extension.js +2 -2
  8. package/src/sap/ui/integration/Host.js +38 -2
  9. package/src/sap/ui/integration/bindingFeatures/DateRange.js +1 -1
  10. package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -50
  11. package/src/sap/ui/integration/cards/AnalyticalContent.js +8 -9
  12. package/src/sap/ui/integration/cards/AnalyticalContentRenderer.js +1 -1
  13. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +5 -3
  14. package/src/sap/ui/integration/cards/AnalyticsCloudContentRenderer.js +1 -1
  15. package/src/sap/ui/integration/cards/BaseContent.js +56 -6
  16. package/src/sap/ui/integration/cards/BaseContentRenderer.js +2 -2
  17. package/src/sap/ui/integration/cards/BaseListContent.js +39 -69
  18. package/src/sap/ui/integration/cards/CalendarContent.js +16 -12
  19. package/src/sap/ui/integration/cards/CalendarContentRenderer.js +2 -1
  20. package/src/sap/ui/integration/cards/ComponentContent.js +3 -2
  21. package/src/sap/ui/integration/cards/ComponentContentRenderer.js +1 -1
  22. package/src/sap/ui/integration/cards/Footer.js +2 -2
  23. package/src/sap/ui/integration/cards/Header.js +3 -3
  24. package/src/sap/ui/integration/cards/ListContent.js +67 -23
  25. package/src/sap/ui/integration/cards/ListContentRenderer.js +1 -1
  26. package/src/sap/ui/integration/cards/NumericHeader.js +3 -3
  27. package/src/sap/ui/integration/cards/ObjectContent.js +353 -228
  28. package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
  29. package/src/sap/ui/integration/cards/TableContent.js +6 -10
  30. package/src/sap/ui/integration/cards/TableContentRenderer.js +1 -1
  31. package/src/sap/ui/integration/cards/TimelineContent.js +10 -14
  32. package/src/sap/ui/integration/cards/TimelineContentRenderer.js +1 -1
  33. package/src/sap/ui/integration/cards/WebPageContent.js +6 -2
  34. package/src/sap/ui/integration/cards/WebPageContentRenderer.js +1 -1
  35. package/src/sap/ui/integration/cards/actions/BaseAction.js +89 -0
  36. package/src/sap/ui/integration/cards/actions/CardActions.js +472 -0
  37. package/src/sap/ui/integration/cards/actions/CustomAction.js +31 -0
  38. package/src/sap/ui/integration/cards/actions/DateChangeAction.js +20 -0
  39. package/src/sap/ui/integration/cards/actions/MonthChangeAction.js +20 -0
  40. package/src/sap/ui/integration/cards/actions/NavigationAction.js +63 -0
  41. package/src/sap/ui/integration/cards/actions/SubmitAction.js +89 -0
  42. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +10 -10
  43. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +3 -3
  44. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +7 -12
  45. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +2 -2
  46. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +2 -2
  47. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +3 -3
  48. package/src/sap/ui/integration/cards/adaptivecards/elements/hostConfig.js +1 -1
  49. package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +1 -1
  50. package/src/sap/ui/integration/cards/filters/BaseFilter.js +2 -2
  51. package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +63 -58
  52. package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
  53. package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +34 -13
  54. package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
  55. package/src/sap/ui/integration/cards/filters/SelectFilter.js +34 -4
  56. package/src/sap/ui/integration/controls/ActionsStrip.js +3 -3
  57. package/src/sap/ui/integration/controls/ActionsToolbar.js +4 -5
  58. package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
  59. package/src/sap/ui/integration/controls/ListContentItem.js +2 -2
  60. package/src/sap/ui/integration/controls/ListContentItemRenderer.js +1 -1
  61. package/src/sap/ui/integration/controls/Microchart.js +2 -2
  62. package/src/sap/ui/integration/controls/MicrochartLegend.js +2 -2
  63. package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +1 -1
  64. package/src/sap/ui/integration/customElements/CustomElementBase.js +1 -1
  65. package/src/sap/ui/integration/customElements/CustomElementCard.js +1 -1
  66. package/src/sap/ui/integration/customElements/CustomElementCardEditor.js +1 -1
  67. package/src/sap/ui/integration/customElements/CustomElementEditor.js +1 -1
  68. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
  69. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +2 -2
  70. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +2 -2
  71. package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +15 -11
  72. package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +13 -19
  73. package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +16 -12
  74. package/src/sap/ui/integration/designtime/baseEditor/layout/Form.js +1 -1
  75. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +2 -2
  76. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
  77. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
  78. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
  79. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -2
  80. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -2
  81. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +2 -2
  82. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -2
  83. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
  84. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +2 -2
  85. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -2
  86. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.fragment.xml +1 -0
  87. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +7 -2
  88. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -2
  89. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -2
  90. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.fragment.xml +15 -0
  91. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +116 -0
  92. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -2
  93. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -2
  94. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -2
  95. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -2
  96. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -2
  97. package/src/sap/ui/integration/designtime/baseEditor/util/BaseDefaultValidatorModules.js +1 -1
  98. package/src/sap/ui/integration/designtime/baseEditor/util/StylesheetManager.js +1 -1
  99. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +2 -2
  100. package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +1 -1
  101. package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +1 -1
  102. package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +1 -1
  103. package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +1 -1
  104. package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +1 -1
  105. package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +1 -1
  106. package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +1 -1
  107. package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +1 -1
  108. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +2 -2
  109. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +2 -2
  110. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +2 -2
  111. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +2 -2
  112. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +2 -2
  113. package/src/sap/ui/integration/designtime/baseEditor/validator/IsPatternMatch.js +1 -1
  114. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +18 -3
  115. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +2 -2
  116. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +2 -2
  117. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +2 -2
  118. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +2 -2
  119. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +2 -2
  120. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +2 -2
  121. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +2 -2
  122. package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +1 -1
  123. package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +1 -1
  124. package/src/sap/ui/integration/designtime/cardEditor/PropertyEditor.js +1 -1
  125. package/src/sap/ui/integration/designtime/cardEditor/PropertyEditors.js +1 -1
  126. package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +1 -1
  127. package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +1 -1
  128. package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +1 -1
  129. package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +1 -1
  130. package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +1 -1
  131. package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +1 -1
  132. package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +1 -1
  133. package/src/sap/ui/integration/designtime/cardEditor/config/index.js +13 -2
  134. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +57 -0
  135. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +40 -0
  136. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +40 -0
  137. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +40 -0
  138. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +40 -0
  139. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +40 -0
  140. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +40 -0
  141. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +40 -0
  142. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +40 -0
  143. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +40 -0
  144. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +40 -0
  145. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +40 -0
  146. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +0 -4
  147. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +40 -0
  148. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +40 -0
  149. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +40 -0
  150. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +40 -0
  151. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +40 -0
  152. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +40 -0
  153. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +40 -0
  154. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +40 -0
  155. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +40 -0
  156. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +40 -0
  157. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +40 -0
  158. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +40 -0
  159. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +40 -0
  160. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +40 -0
  161. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +40 -0
  162. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +40 -0
  163. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +40 -0
  164. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +40 -0
  165. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +40 -0
  166. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +40 -0
  167. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +40 -0
  168. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +40 -0
  169. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +40 -0
  170. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +40 -0
  171. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +40 -0
  172. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +40 -0
  173. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +40 -0
  174. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +40 -0
  175. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +40 -0
  176. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +40 -0
  177. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +40 -0
  178. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +40 -0
  179. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +41 -1
  180. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +40 -0
  181. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +40 -0
  182. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +40 -0
  183. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +62 -4
  184. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -2
  185. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
  186. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
  187. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -2
  188. package/src/sap/ui/integration/designtime/cardEditor/util/CommonPatterns.js +1 -1
  189. package/src/sap/ui/integration/designtime/cardEditor/validator/IsPatternMatchList.js +1 -1
  190. package/src/sap/ui/integration/designtime/editor/CardEditor.js +53 -4
  191. package/src/sap/ui/integration/designtime/editor/CardPreview.js +31 -11
  192. package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +18 -1
  193. package/src/sap/ui/integration/editor/Editor.js +219 -209
  194. package/src/sap/ui/integration/editor/EditorResourceBundles.js +43 -32
  195. package/src/sap/ui/integration/editor/Extension.js +2 -2
  196. package/src/sap/ui/integration/editor/Manifest.js +3 -3
  197. package/src/sap/ui/integration/editor/Merger.js +1 -19
  198. package/src/sap/ui/integration/editor/Settings.js +10 -6
  199. package/src/sap/ui/integration/editor/css/Editor.css +22 -0
  200. package/src/sap/ui/integration/editor/fields/BaseField.js +9 -12
  201. package/src/sap/ui/integration/editor/fields/BooleanField.js +4 -2
  202. package/src/sap/ui/integration/editor/fields/DateField.js +2 -2
  203. package/src/sap/ui/integration/editor/fields/DateTimeField.js +2 -2
  204. package/src/sap/ui/integration/editor/fields/DestinationField.js +2 -2
  205. package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -2
  206. package/src/sap/ui/integration/editor/fields/ListField.js +274 -62
  207. package/src/sap/ui/integration/editor/fields/NumberField.js +2 -2
  208. package/src/sap/ui/integration/editor/fields/StringField.js +85 -53
  209. package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +10 -30
  210. package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +2 -4
  211. package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +2 -4
  212. package/src/sap/ui/integration/editor/languages.json +2 -2
  213. package/src/sap/ui/integration/formatters/DateTimeFormatter.js +1 -1
  214. package/src/sap/ui/integration/formatters/IconFormatter.js +1 -1
  215. package/src/sap/ui/integration/formatters/NumberFormatter.js +1 -1
  216. package/src/sap/ui/integration/formatters/TextFormatter.js +1 -1
  217. package/src/sap/ui/integration/library-bootstrap.js +1 -1
  218. package/src/sap/ui/integration/library.js +21 -4
  219. package/src/sap/ui/integration/messagebundle_ar.properties +4 -0
  220. package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
  221. package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
  222. package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
  223. package/src/sap/ui/integration/messagebundle_cy.properties +4 -0
  224. package/src/sap/ui/integration/messagebundle_da.properties +4 -0
  225. package/src/sap/ui/integration/messagebundle_de.properties +4 -0
  226. package/src/sap/ui/integration/messagebundle_el.properties +4 -0
  227. package/src/sap/ui/integration/messagebundle_en.properties +4 -0
  228. package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
  229. package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +4 -0
  230. package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +55 -81
  231. package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +4 -0
  232. package/src/sap/ui/integration/messagebundle_es.properties +4 -0
  233. package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
  234. package/src/sap/ui/integration/messagebundle_et.properties +4 -0
  235. package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
  236. package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
  237. package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
  238. package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
  239. package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
  240. package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
  241. package/src/sap/ui/integration/messagebundle_id.properties +4 -0
  242. package/src/sap/ui/integration/messagebundle_it.properties +4 -0
  243. package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
  244. package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
  245. package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
  246. package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
  247. package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
  248. package/src/sap/ui/integration/messagebundle_lv.properties +4 -0
  249. package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
  250. package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
  251. package/src/sap/ui/integration/messagebundle_no.properties +4 -0
  252. package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
  253. package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
  254. package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
  255. package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
  256. package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
  257. package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
  258. package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
  259. package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
  260. package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
  261. package/src/sap/ui/integration/messagebundle_th.properties +4 -0
  262. package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
  263. package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
  264. package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
  265. package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
  266. package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
  267. package/src/sap/ui/integration/model/ContextModel.js +3 -3
  268. package/src/sap/ui/integration/model/ObservableModel.js +2 -2
  269. package/src/sap/ui/integration/sap-ui-integration-config.js +1 -1
  270. package/src/sap/ui/integration/sap-ui-integration-define-nojQuery.js +1 -1
  271. package/src/sap/ui/integration/schemas/sap-card.json +195 -8
  272. package/src/sap/ui/integration/services/Data.js +1 -1
  273. package/src/sap/ui/integration/services/Navigation.js +1 -1
  274. package/src/sap/ui/integration/services/Service.js +1 -1
  275. package/src/sap/ui/integration/themes/base/CalendarContent.less +31 -4
  276. package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
  277. package/src/sap/ui/integration/themes/base/library.source.less +1 -1
  278. package/src/sap/ui/integration/themes/sap_hcb/library.source.less +1 -1
  279. package/src/sap/ui/integration/thirdparty/adaptive-expressions.js +1 -0
  280. package/src/sap/ui/integration/thirdparty/adaptivecards-templating.js +660 -952
  281. package/src/sap/ui/integration/thirdparty/markdown-it.js +8340 -1
  282. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +27 -102
  283. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -0
  284. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js +2 -0
  285. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js.map +1 -0
  286. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +2 -0
  287. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +1 -0
  288. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js +2 -0
  289. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js.map +1 -0
  290. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +2 -0
  291. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +1 -0
  292. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +2 -0
  293. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +1 -0
  294. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js +2 -0
  295. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js.map +1 -0
  296. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js +2 -0
  297. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js.map +1 -0
  298. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +2 -0
  299. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +1 -0
  300. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js +2 -0
  301. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js.map +1 -0
  302. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +2 -0
  303. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +1 -0
  304. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +2 -0
  305. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +1 -0
  306. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js +2 -0
  307. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js.map +1 -0
  308. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js +2 -0
  309. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js.map +1 -0
  310. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +2 -0
  311. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +1 -0
  312. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +2 -0
  313. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +1 -0
  314. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js +2 -0
  315. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js.map +1 -0
  316. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +2 -0
  317. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +1 -0
  318. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js +2 -0
  319. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js.map +1 -0
  320. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js +2 -0
  321. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js.map +1 -0
  322. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +2 -0
  323. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +1 -0
  324. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js +2 -0
  325. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js.map +1 -0
  326. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +2 -0
  327. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +1 -0
  328. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +2 -0
  329. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +1 -0
  330. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js +2 -0
  331. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js.map +1 -0
  332. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js +2 -0
  333. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js.map +1 -0
  334. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +2 -0
  335. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +1 -0
  336. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js +2 -0
  337. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js.map +1 -0
  338. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +2 -0
  339. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +1 -0
  340. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +2 -0
  341. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +1 -0
  342. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js +2 -0
  343. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js.map +1 -0
  344. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +2 -0
  345. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +1 -0
  346. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js +2 -0
  347. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js.map +1 -0
  348. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +2 -0
  349. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +1 -0
  350. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js +2 -0
  351. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js.map +1 -0
  352. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js +2 -0
  353. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js.map +1 -0
  354. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +2 -0
  355. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +1 -0
  356. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js +2 -0
  357. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js.map +1 -0
  358. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +2 -0
  359. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +1 -0
  360. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js +2 -0
  361. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js.map +1 -0
  362. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +2 -0
  363. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +1 -0
  364. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +2 -0
  365. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +1 -0
  366. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js +2 -0
  367. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js.map +1 -0
  368. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +2 -0
  369. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +1 -0
  370. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js +2 -0
  371. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js.map +1 -0
  372. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +2 -0
  373. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +1 -0
  374. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +2 -0
  375. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +1 -0
  376. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +2 -0
  377. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +1 -0
  378. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js +2 -0
  379. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js.map +1 -0
  380. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +2 -0
  381. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +1 -0
  382. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js +2 -0
  383. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js.map +1 -0
  384. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js +2 -0
  385. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js.map +1 -0
  386. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +2 -0
  387. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +1 -0
  388. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +2 -0
  389. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +1 -0
  390. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js +2 -0
  391. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js.map +1 -0
  392. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +2 -0
  393. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +1 -0
  394. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js +2 -0
  395. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js.map +1 -0
  396. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js +2 -0
  397. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js.map +1 -0
  398. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +2 -0
  399. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +1 -0
  400. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +2 -0
  401. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +1 -0
  402. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js +2 -0
  403. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js.map +1 -0
  404. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +2 -0
  405. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +1 -0
  406. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js +2 -0
  407. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js.map +1 -0
  408. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +2 -0
  409. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +1 -0
  410. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js +2 -0
  411. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js.map +1 -0
  412. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js +2 -0
  413. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js.map +1 -0
  414. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +2 -0
  415. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +1 -0
  416. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +2 -0
  417. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +1 -0
  418. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js +2 -0
  419. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js.map +1 -0
  420. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +2 -0
  421. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +1 -0
  422. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js +2 -0
  423. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js.map +1 -0
  424. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js +2 -0
  425. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js.map +1 -0
  426. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +2 -0
  427. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +1 -0
  428. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +2 -0
  429. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +1 -0
  430. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js +2 -0
  431. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js.map +1 -0
  432. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +2 -0
  433. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +1 -0
  434. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js +2 -0
  435. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js.map +1 -0
  436. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +2 -0
  437. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +1 -0
  438. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js +2 -0
  439. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js.map +1 -0
  440. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js +2 -0
  441. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js.map +1 -0
  442. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +2 -0
  443. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +1 -0
  444. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +2 -0
  445. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +1 -0
  446. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js +2 -0
  447. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js.map +1 -0
  448. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +2 -0
  449. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +1 -0
  450. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js +2 -0
  451. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js.map +1 -0
  452. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +2 -0
  453. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +1 -0
  454. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js +2 -0
  455. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js.map +1 -0
  456. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js +2 -0
  457. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js.map +1 -0
  458. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +2 -0
  459. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +1 -0
  460. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +2 -0
  461. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +1 -0
  462. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js +2 -0
  463. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js.map +1 -0
  464. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +2 -0
  465. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +1 -0
  466. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js +2 -0
  467. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js.map +1 -0
  468. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +2 -0
  469. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +1 -0
  470. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js +2 -0
  471. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js.map +1 -0
  472. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +2 -0
  473. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +1 -0
  474. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js +2 -0
  475. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js.map +1 -0
  476. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js +2 -0
  477. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js.map +1 -0
  478. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js +2 -0
  479. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js.map +1 -0
  480. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js +2 -0
  481. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js.map +1 -0
  482. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js +2 -0
  483. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js.map +1 -0
  484. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js +2 -0
  485. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js.map +1 -0
  486. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js +2 -0
  487. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js.map +1 -0
  488. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js +2 -0
  489. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js.map +1 -0
  490. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js +2 -0
  491. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js.map +1 -0
  492. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js +2 -0
  493. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js.map +1 -0
  494. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js +2 -0
  495. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js.map +1 -0
  496. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js +2 -0
  497. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js.map +1 -0
  498. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js +2 -0
  499. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js.map +1 -0
  500. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js +2 -0
  501. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js.map +1 -0
  502. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js +2 -0
  503. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js.map +1 -0
  504. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js +2 -0
  505. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js.map +1 -0
  506. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js +2 -0
  507. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js.map +1 -0
  508. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js +2 -0
  509. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js.map +1 -0
  510. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js +2 -0
  511. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js.map +1 -0
  512. package/src/sap/ui/integration/util/BaseFactory.js +2 -2
  513. package/src/sap/ui/integration/util/BindingHelper.js +6 -4
  514. package/src/sap/ui/integration/util/BindingResolver.js +6 -5
  515. package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +1 -1
  516. package/src/sap/ui/integration/util/CardMerger.js +7 -18
  517. package/src/sap/ui/integration/util/CardObserver.js +2 -2
  518. package/src/sap/ui/integration/util/ContentFactory.js +5 -9
  519. package/src/sap/ui/integration/util/CsrfTokenHandler.js +296 -0
  520. package/src/sap/ui/integration/util/DataProvider.js +11 -2
  521. package/src/sap/ui/integration/util/DataProviderFactory.js +49 -12
  522. package/src/sap/ui/integration/util/Destinations.js +2 -2
  523. package/src/sap/ui/integration/util/ExtensionDataProvider.js +2 -2
  524. package/src/sap/ui/integration/util/HeaderFactory.js +3 -3
  525. package/src/sap/ui/integration/util/JSONBindingHelper.js +3 -3
  526. package/src/sap/ui/integration/util/LoadingProvider.js +2 -2
  527. package/src/sap/ui/integration/util/Manifest.js +4 -4
  528. package/src/sap/ui/integration/util/ManifestResolver.js +99 -0
  529. package/src/sap/ui/integration/util/ParameterMap.js +1 -1
  530. package/src/sap/ui/integration/util/RequestDataProvider.js +88 -50
  531. package/src/sap/ui/integration/util/ServiceDataProvider.js +2 -2
  532. package/src/sap/ui/integration/util/ServiceManager.js +2 -2
  533. package/src/sap/ui/integration/util/SkeletonCard.js +50 -0
  534. package/src/sap/ui/integration/util/Utils.js +74 -2
  535. package/src/sap/ui/integration/util/loadCardEditor.js +1 -1
  536. package/src/sap/ui/integration/widgets/Card.js +67 -20
  537. package/src/sap/ui/integration/widgets/CardRenderer.js +1 -7
  538. package/src/sap-ui-integration-card-editor.js +1 -1
  539. package/src/sap-ui-integration-editor.js +1 -1
  540. package/src/sap-ui-integration.js +1 -1
  541. package/ui5.yaml +288 -1
  542. package/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt +0 -27
  543. package/src/sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json +0 -5906
  544. package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json +0 -5906
  545. package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json +0 -5906
  546. package/src/sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json +0 -4979
  547. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +0 -212
  548. package/src/sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json +0 -4996
  549. package/src/sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json +0 -5498
  550. package/src/sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json +0 -4888
  551. package/src/sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json +0 -4916
  552. package/src/sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json +0 -4917
  553. package/src/sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json +0 -4915
  554. package/src/sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json +0 -4883
  555. package/src/sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json +0 -4883
  556. package/src/sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json +0 -4970
  557. package/src/sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json +0 -4962
  558. package/src/sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json +0 -4971
  559. package/src/sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json +0 -4977
  560. package/src/sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json +0 -4971
  561. package/src/sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json +0 -4972
  562. package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json +0 -4971
  563. package/src/sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json +0 -4972
  564. package/src/sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json +0 -4973
  565. package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json +0 -4972
  566. package/src/sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json +0 -4912
  567. package/src/sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json +0 -4914
  568. package/src/sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json +0 -4913
  569. package/src/sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json +0 -4914
  570. package/src/sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json +0 -4913
  571. package/src/sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json +0 -4915
  572. package/src/sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json +0 -4913
  573. package/src/sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json +0 -4915
  574. package/src/sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json +0 -4914
  575. package/src/sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json +0 -4967
  576. package/src/sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json +0 -4883
  577. package/src/sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json +0 -5008
  578. package/src/sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json +0 -4979
  579. package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json +0 -4979
  580. package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json +0 -4973
  581. package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json +0 -4997
  582. package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json +0 -4979
  583. package/src/sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json +0 -5378
  584. package/src/sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json +0 -4829
  585. package/src/sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json +0 -4919
  586. package/src/sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json +0 -4856
  587. package/src/sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json +0 -4658
  588. package/src/sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json +0 -4950
  589. package/src/sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json +0 -4950
  590. package/src/sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json +0 -4830
  591. package/src/sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json +0 -4725
  592. package/src/sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json +0 -4738
  593. package/src/sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json +0 -5481
  594. package/src/sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json +0 -5112
  595. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json +0 -1
  596. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json +0 -1
  597. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json +0 -1
  598. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json +0 -1
  599. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json +0 -1
  600. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json +0 -1
  601. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json +0 -1
  602. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json +0 -1
  603. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json +0 -1
  604. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json +0 -1
  605. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json +0 -1
  606. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json +0 -1
  607. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json +0 -1
  608. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json +0 -1
  609. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json +0 -1
  610. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json +0 -1
  611. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json +0 -1
  612. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json +0 -1
  613. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json +0 -1
  614. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json +0 -1
  615. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json +0 -1
  616. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json +0 -1
  617. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json +0 -1
  618. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json +0 -1
  619. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json +0 -1
  620. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json +0 -1
  621. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json +0 -1
  622. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json +0 -1
  623. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json +0 -1
  624. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json +0 -1
  625. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json +0 -1
  626. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json +0 -1
  627. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json +0 -1
  628. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json +0 -1
  629. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json +0 -1
  630. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json +0 -1
  631. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json +0 -1
  632. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json +0 -1
  633. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json +0 -1
  634. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json +0 -1
  635. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json +0 -1
  636. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json +0 -1
  637. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json +0 -1
  638. package/src/sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json +0 -4515
  639. package/src/sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json +0 -4977
  640. package/src/sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json +0 -4884
  641. package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json +0 -4884
  642. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json +0 -1
  643. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json +0 -1
  644. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json +0 -1
  645. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json +0 -1
  646. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json +0 -1
  647. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json +0 -1
  648. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json +0 -1
  649. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json +0 -1
  650. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json +0 -1
  651. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json +0 -1
  652. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json +0 -1
  653. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json +0 -1
  654. package/src/sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json +0 -5176
  655. package/src/sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json +0 -4805
  656. package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json +0 -4940
  657. package/src/sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json +0 -5090
  658. package/src/sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json +0 -5407
  659. package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json +0 -5407
  660. package/src/sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json +0 -5370
  661. package/src/sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json +0 -5340
  662. package/src/sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json +0 -5126
  663. package/src/sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json +0 -5011
  664. package/src/sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json +0 -4797
  665. package/src/sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json +0 -4979
  666. package/src/sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json +0 -5353
  667. package/src/sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json +0 -4673
  668. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
  669. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  670. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -336
  671. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  672. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -221
  673. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  674. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +0 -169
  675. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  676. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/webcomponents-loader.js +0 -185
  677. package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json +0 -4632
  678. package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json +0 -4640
  679. package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json +0 -4640
  680. package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json +0 -4728
  681. package/src/sap/ui/integration/util/CardActions.js +0 -551
@@ -1,4829 +0,0 @@
1
- {
2
- "__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
3
- "languages": {
4
- "aa": "अफ़ार",
5
- "ab": "अब्ख़ाज़ियन",
6
- "ace": "अचाइनीस",
7
- "ach": "अकोली",
8
- "ada": "अदान्गमे",
9
- "ady": "अदिघे",
10
- "ae": "अवस्ताई",
11
- "af": "अफ़्रीकी",
12
- "afh": "अफ्रिहिली",
13
- "agq": "अग्हेम",
14
- "ain": "ऐनू",
15
- "ak": "अकन",
16
- "akk": "अक्कादी",
17
- "ale": "अलेउत",
18
- "alt": "दक्षिणी अल्ताई",
19
- "am": "अम्हेरी",
20
- "an": "अर्गोनी",
21
- "ang": "पुरानी अंग्रेज़ी",
22
- "anp": "अंगिका",
23
- "ar": "अरबी",
24
- "ar_001": "आधुनिक मानक अरबी",
25
- "arc": "ऐरेमेक",
26
- "arn": "मापूचे",
27
- "arp": "अरापाहो",
28
- "ars": "नज्दी अरबी",
29
- "arw": "अरावक",
30
- "as": "असमिया",
31
- "asa": "असु",
32
- "ast": "अस्तुरियन",
33
- "av": "अवेरिक",
34
- "awa": "अवधी",
35
- "ay": "आयमारा",
36
- "az": "अज़रबैजानी",
37
- "az_alt-short": "अज़ेरी",
38
- "ba": "बशख़िर",
39
- "bal": "बलूची",
40
- "ban": "बालिनीस",
41
- "bas": "बसा",
42
- "be": "बेलारूसी",
43
- "bej": "बेजा",
44
- "bem": "बेम्बा",
45
- "bez": "बेना",
46
- "bg": "बुल्गारियाई",
47
- "bgn": "पश्चिमी बलोची",
48
- "bho": "भोजपुरी",
49
- "bi": "बिस्लामा",
50
- "bik": "बिकोल",
51
- "bin": "बिनी",
52
- "bla": "सिक्सिका",
53
- "bm": "बाम्बारा",
54
- "bn": "बंगाली",
55
- "bo": "तिब्बती",
56
- "br": "ब्रेटन",
57
- "bra": "ब्रज",
58
- "brx": "बोडो",
59
- "bs": "बोस्नियाई",
60
- "bua": "बुरियात",
61
- "bug": "बगिनीस",
62
- "byn": "ब्लिन",
63
- "ca": "कातालान",
64
- "cad": "कैड्डो",
65
- "car": "कैरिब",
66
- "cch": "अत्सम",
67
- "ccp": "ccp",
68
- "ce": "चेचन",
69
- "ceb": "सिबुआनो",
70
- "cgg": "शिगा",
71
- "ch": "कमोरो",
72
- "chb": "चिब्चा",
73
- "chg": "छगाताई",
74
- "chk": "चूकीस",
75
- "chm": "मारी",
76
- "chn": "चिनूक जारगॉन",
77
- "cho": "चोक्तौ",
78
- "chp": "शिपेव्यान",
79
- "chr": "चेरोकी",
80
- "chy": "शेयेन्न",
81
- "ckb": "सोरानी कुर्दिश",
82
- "co": "कोर्सीकन",
83
- "cop": "कॉप्टिक",
84
- "cr": "क्री",
85
- "crh": "क्रीमीन तुर्की",
86
- "crs": "सेसेल्वा क्रिओल फ्रेंच",
87
- "cs": "चेक",
88
- "csb": "काशुबियन",
89
- "cu": "चर्च साल्विक",
90
- "cv": "चूवाश",
91
- "cy": "वेल्श",
92
- "da": "डेनिश",
93
- "dak": "दाकोता",
94
- "dar": "दार्गवा",
95
- "dav": "तैता",
96
- "de": "जर्मन",
97
- "de_AT": "ऑस्ट्रियाई जर्मन",
98
- "de_CH": "स्विस उच्च जर्मन",
99
- "del": "डिलैवेयर",
100
- "den": "स्लेव",
101
- "dgr": "डोग्रिब",
102
- "din": "दिन्का",
103
- "dje": "झार्मा",
104
- "doi": "डोग्री",
105
- "dsb": "निचला सॉर्बियन",
106
- "dua": "दुआला",
107
- "dum": "मध्यकालीन पुर्तगाली",
108
- "dv": "दिवेही",
109
- "dyo": "जोला-फोंई",
110
- "dyu": "ड्युला",
111
- "dz": "ज़ोन्गखा",
112
- "dzg": "दज़ागा",
113
- "ebu": "एम्बु",
114
- "ee": "ईवे",
115
- "efi": "एफिक",
116
- "egy": "प्राचीन मिस्री",
117
- "eka": "एकाजुक",
118
- "el": "यूनानी",
119
- "elx": "एलामाइट",
120
- "en": "अंग्रेज़ी",
121
- "en_AU": "ऑस्ट्रेलियाई अंग्रेज़ी",
122
- "en_CA": "कनाडाई अंग्रेज़ी",
123
- "en_GB": "ब्रिटिश अंग्रेज़ी",
124
- "en_GB-alt-short": "यू॰के॰ अंग्रेज़ी",
125
- "en_US": "अमेरिकी अंग्रेज़ी",
126
- "en_US-alt-short": "अमेरिकी अंग्रेज़ी",
127
- "enm": "मध्यकालीन अंग्रेज़ी",
128
- "eo": "एस्पेरेंतो",
129
- "es": "स्पेनी",
130
- "es_419": "लैटिन अमेरिकी स्पेनिश",
131
- "es_ES": "यूरोपीय स्पेनिश",
132
- "es_MX": "मैक्सिकन स्पेनिश",
133
- "et": "एस्टोनियाई",
134
- "eu": "बास्क",
135
- "ewo": "इवोन्डो",
136
- "fa": "फ़ारसी",
137
- "fan": "फैन्ग",
138
- "fat": "फन्टी",
139
- "ff": "फुलाह",
140
- "fi": "फ़िनिश",
141
- "fil": "फ़िलिपीनो",
142
- "fj": "फिजियन",
143
- "fo": "फ़ैरोइज़",
144
- "fon": "फॉन",
145
- "fr": "फ़्रेंच",
146
- "fr_CA": "कनाडाई फ़्रेंच",
147
- "fr_CH": "स्विस फ़्रेंच",
148
- "frc": "केजन फ़्रेंच",
149
- "frm": "मध्यकालीन फ़्रांसीसी",
150
- "fro": "पुरातन फ़्रांसीसी",
151
- "frr": "उत्तरी फ़्रीसियाई",
152
- "frs": "पूर्वी फ़्रीसियाई",
153
- "fur": "फ्रीयुलीयान",
154
- "fy": "पश्चिमी फ़्रिसियाई",
155
- "ga": "आयरिश",
156
- "gaa": "गा",
157
- "gag": "गागौज़",
158
- "gay": "गायो",
159
- "gba": "ग्बाया",
160
- "gd": "स्कॉटिश गाएलिक",
161
- "gez": "गीज़",
162
- "gil": "गिल्बरतीस",
163
- "gl": "गैलिशियन",
164
- "gmh": "मध्यकालीन हाइ जर्मन",
165
- "gn": "गुआरानी",
166
- "goh": "पुरातन हाइ जर्मन",
167
- "gon": "गाँडी",
168
- "gor": "गोरोन्तालो",
169
- "got": "गॉथिक",
170
- "grb": "ग्रेबो",
171
- "grc": "प्राचीन यूनानी",
172
- "gsw": "स्विस जर्मन",
173
- "gu": "गुजराती",
174
- "guz": "गुसी",
175
- "gv": "मैंक्स",
176
- "gwi": "ग्विचइन",
177
- "ha": "हौसा",
178
- "hai": "हैडा",
179
- "haw": "हवाई",
180
- "he": "हिब्रू",
181
- "hi": "हिन्दी",
182
- "hil": "हिलिगेनन",
183
- "hit": "हिताइत",
184
- "hmn": "ह्मॉंग",
185
- "ho": "हिरी मोटू",
186
- "hr": "क्रोएशियाई",
187
- "hsb": "ऊपरी सॉर्बियन",
188
- "ht": "हैतियाई",
189
- "hu": "हंगेरियाई",
190
- "hup": "हूपा",
191
- "hy": "आर्मेनियाई",
192
- "hz": "हरैरो",
193
- "ia": "इंटरलिंगुआ",
194
- "iba": "इबान",
195
- "ibb": "इबिबियो",
196
- "id": "इंडोनेशियाई",
197
- "ie": "ईन्टरलिंगुइ",
198
- "ig": "ईग्बो",
199
- "ii": "सिचुआन यी",
200
- "ik": "इनुपियाक्",
201
- "ilo": "इलोको",
202
- "inh": "इंगुश",
203
- "io": "इडौ",
204
- "is": "आइसलैंडिक",
205
- "it": "इतालवी",
206
- "iu": "इनूकीटूत्",
207
- "ja": "जापानी",
208
- "jbo": "लोज्बान",
209
- "jgo": "नगोंबा",
210
- "jmc": "मैकहैमे",
211
- "jpr": "जुदेओ-पर्शियन",
212
- "jrb": "जुदेओ-अरेबिक",
213
- "jv": "जावानीज़",
214
- "ka": "जॉर्जियाई",
215
- "kaa": "कारा-कल्पक",
216
- "kab": "कबाइल",
217
- "kac": "काचिन",
218
- "kaj": "ज्जु",
219
- "kam": "कम्बा",
220
- "kaw": "कावी",
221
- "kbd": "कबार्डियन",
222
- "kcg": "त्याप",
223
- "kde": "मैकोंड",
224
- "kea": "काबुवेर्दियानु",
225
- "kfo": "कोरो",
226
- "kg": "कोंगो",
227
- "kha": "खासी",
228
- "kho": "खोतानीस",
229
- "khq": "कोयरा चीनी",
230
- "ki": "किकुयू",
231
- "kj": "क्वान्यामा",
232
- "kk": "कज़ाख़",
233
- "kkj": "काको",
234
- "kl": "कलालीसुत",
235
- "kln": "कलेंजिन",
236
- "km": "खमेर",
237
- "kmb": "किम्बन्दु",
238
- "kn": "कन्नड़",
239
- "ko": "कोरियाई",
240
- "koi": "कोमी-पर्मयाक",
241
- "kok": "कोंकणी",
242
- "kos": "कोसरैन",
243
- "kpe": "क्पेल",
244
- "kr": "कनुरी",
245
- "krc": "कराचय-बल्कार",
246
- "krl": "करेलियन",
247
- "kru": "कुरूख",
248
- "ks": "कश्मीरी",
249
- "ksb": "शम्बाला",
250
- "ksf": "बफिआ",
251
- "ksh": "कोलोनियाई",
252
- "ku": "कुर्दिश",
253
- "kum": "कुमीक",
254
- "kut": "क्यूतनाई",
255
- "kv": "कोमी",
256
- "kw": "कोर्निश",
257
- "ky": "किर्गीज़",
258
- "la": "लैटिन",
259
- "lad": "लादीनो",
260
- "lag": "लांगि",
261
- "lah": "लाह्न्डा",
262
- "lam": "लाम्बा",
263
- "lb": "लग्ज़मबर्गी",
264
- "lez": "लेज़्घीयन",
265
- "lg": "गांडा",
266
- "li": "लिंबर्गिश",
267
- "lkt": "लैकोटा",
268
- "ln": "लिंगाला",
269
- "lo": "लाओ",
270
- "lol": "मोंगो",
271
- "lou": "लुईज़ियाना क्रियोल",
272
- "loz": "लोज़ी",
273
- "lrc": "उत्तरी लूरी",
274
- "lt": "लिथुआनियाई",
275
- "lu": "ल्यूबा-कटांगा",
276
- "lua": "ल्यूबा-लुलुआ",
277
- "lui": "लुइसेनो",
278
- "lun": "लुन्डा",
279
- "luo": "ल्युओ",
280
- "lus": "मिज़ो",
281
- "luy": "ल्युईआ",
282
- "lv": "लातवियाई",
283
- "mad": "मादुरीस",
284
- "mag": "मगही",
285
- "mai": "मैथिली",
286
- "mak": "मकासर",
287
- "man": "मन्डिन्गो",
288
- "mas": "मसाई",
289
- "mdf": "मोक्ष",
290
- "mdr": "मंदार",
291
- "men": "मेन्डे",
292
- "mer": "मेरु",
293
- "mfe": "मोरीस्येन",
294
- "mg": "मालागासी",
295
- "mga": "मध्यकालीन आइरिश",
296
- "mgh": "मैखुवा-मीट्टो",
297
- "mgo": "मेटा",
298
- "mh": "मार्शलीज़",
299
- "mi": "माओरी",
300
- "mic": "मिकमैक",
301
- "min": "मिनांग्काबाउ",
302
- "mk": "मकदूनियाई",
303
- "ml": "मलयालम",
304
- "mn": "मंगोलियाई",
305
- "mnc": "मन्चु",
306
- "mni": "मणिपुरी",
307
- "moh": "मोहौक",
308
- "mos": "मोस्सी",
309
- "mr": "मराठी",
310
- "ms": "मलय",
311
- "mt": "माल्टीज़",
312
- "mua": "मुंडैंग",
313
- "mul": "एकाधिक भाषाएँ",
314
- "mus": "क्रीक",
315
- "mwl": "मिरांडी",
316
- "mwr": "मारवाड़ी",
317
- "my": "बर्मीज़",
318
- "myv": "एर्ज़या",
319
- "mzn": "माज़न्देरानी",
320
- "na": "नाउरू",
321
- "nan": "nan",
322
- "nap": "नीपोलिटन",
323
- "naq": "नामा",
324
- "nb": "नॉर्वेजियाई बोकमाल",
325
- "nd": "उत्तरी देबेल",
326
- "nds": "निचला जर्मन",
327
- "nds_NL": "निचली सैक्सन",
328
- "ne": "नेपाली",
329
- "new": "नेवाड़ी",
330
- "ng": "डोन्गा",
331
- "nia": "नियास",
332
- "niu": "नियुआन",
333
- "nl": "डच",
334
- "nl_BE": "फ़्लेमिश",
335
- "nmg": "क्वासिओ",
336
- "nn": "नॉर्वेजियाई नॉयनॉर्स्क",
337
- "nnh": "गैम्बू",
338
- "no": "नॉर्वेजियाई",
339
- "nog": "नोगाई",
340
- "non": "पुराना नॉर्स",
341
- "nqo": "एन्को",
342
- "nr": "दक्षिण देबेल",
343
- "nso": "उत्तरी सोथो",
344
- "nus": "नुएर",
345
- "nv": "नावाजो",
346
- "nwc": "पारम्परिक नेवारी",
347
- "ny": "न्यानजा",
348
- "nym": "न्यामवेज़ी",
349
- "nyn": "न्यानकोल",
350
- "nyo": "न्योरो",
351
- "nzi": "न्ज़ीमा",
352
- "oc": "ओसीटान",
353
- "oj": "ओजिब्वा",
354
- "om": "ओरोमो",
355
- "or": "उड़िया",
356
- "os": "ओस्सेटिक",
357
- "osa": "ओसेज",
358
- "ota": "ओटोमान तुर्किश",
359
- "pa": "पंजाबी",
360
- "pag": "पंगासीनान",
361
- "pal": "पाह्लावी",
362
- "pam": "पाम्पान्गा",
363
- "pap": "पापियामेन्टो",
364
- "pau": "पलोउआन",
365
- "pcm": "नाइजीरियाई पिडगिन",
366
- "peo": "पुरानी फारसी",
367
- "phn": "फोएनिशियन",
368
- "pi": "पाली",
369
- "pl": "पोलिश",
370
- "pon": "पोह्नपिएन",
371
- "prg": "प्रुशियाई",
372
- "pro": "पुरानी प्रोवेन्सल",
373
- "ps": "पश्तो",
374
- "ps_alt-variant": "पुश्तो",
375
- "pt": "पुर्तगाली",
376
- "pt_BR": "ब्राज़ीली पुर्तगाली",
377
- "pt_PT": "यूरोपीय पुर्तगाली",
378
- "qu": "क्वेचुआ",
379
- "quc": "किश",
380
- "raj": "राजस्थानी",
381
- "rap": "रापानुई",
382
- "rar": "रारोतोंगन",
383
- "rm": "रोमान्श",
384
- "rn": "रुन्दी",
385
- "ro": "रोमानियाई",
386
- "ro_MD": "मोलडावियन",
387
- "rof": "रोम्बो",
388
- "rom": "रोमानी",
389
- "root": "रूट",
390
- "ru": "रूसी",
391
- "rup": "अरोमानियन",
392
- "rw": "किन्यारवांडा",
393
- "rwk": "रवा",
394
- "sa": "संस्कृत",
395
- "sad": "सन्डावे",
396
- "sah": "याकूत",
397
- "sam": "सामैरिटन अरैमिक",
398
- "saq": "सैम्बुरु",
399
- "sas": "सासाक",
400
- "sat": "संथाली",
401
- "sba": "न्गाम्बे",
402
- "sbp": "सैंगु",
403
- "sc": "सार्दिनियन",
404
- "scn": "सिसिलियन",
405
- "sco": "स्कॉट्स",
406
- "sd": "सिंधी",
407
- "sdh": "दक्षिणी कार्डिश",
408
- "se": "नॉर्दन सामी",
409
- "seh": "सेना",
410
- "sel": "सेल्कप",
411
- "ses": "कोयराबोरो सेन्नी",
412
- "sg": "सांगो",
413
- "sga": "पुरानी आइरिश",
414
- "sh": "सेर्बो-क्रोएशियाई",
415
- "shi": "तैचेल्हित",
416
- "shn": "शैन",
417
- "si": "सिंहली",
418
- "sid": "सिदामो",
419
- "sk": "स्लोवाक",
420
- "sl": "स्लोवेनियाई",
421
- "sm": "सामोन",
422
- "sma": "दक्षिणी सामी",
423
- "smj": "ल्युल सामी",
424
- "smn": "इनारी सामी",
425
- "sms": "स्कोल्ट सामी",
426
- "sn": "शोणा",
427
- "snk": "सोनिन्के",
428
- "so": "सोमाली",
429
- "sog": "सोग्डिएन",
430
- "sq": "अल्बानियाई",
431
- "sr": "सर्बियाई",
432
- "srn": "स्रानान टॉन्गो",
433
- "srr": "सेरेर",
434
- "ss": "स्वाती",
435
- "ssy": "साहो",
436
- "st": "दक्षिणी सेसेथो",
437
- "su": "सुंडानी",
438
- "suk": "सुकुमा",
439
- "sus": "सुसु",
440
- "sux": "सुमेरियन",
441
- "sv": "स्वीडिश",
442
- "sw": "स्वाहिली",
443
- "sw_CD": "कांगो स्वाहिली",
444
- "swb": "कोमोरियन",
445
- "syc": "क्लासिकल सिरिएक",
446
- "syr": "सिरिएक",
447
- "ta": "तमिल",
448
- "te": "तेलुगू",
449
- "tem": "टिम्ने",
450
- "teo": "टेसो",
451
- "ter": "तेरेनो",
452
- "tet": "तेतुम",
453
- "tg": "ताजिक",
454
- "th": "थाई",
455
- "ti": "तिग्रीन्या",
456
- "tig": "टाइग्रे",
457
- "tiv": "तिव",
458
- "tk": "तुर्कमेन",
459
- "tkl": "तोकेलाऊ",
460
- "tl": "टैगलॉग",
461
- "tlh": "क्लिंगन",
462
- "tli": "त्लिंगित",
463
- "tmh": "तामाशेक",
464
- "tn": "सेत्स्वाना",
465
- "to": "टोंगन",
466
- "tog": "न्यासा टोन्गा",
467
- "tpi": "टोक पिसिन",
468
- "tr": "तुर्की",
469
- "trv": "तारोको",
470
- "ts": "सोंगा",
471
- "tsi": "त्सिमीशियन",
472
- "tt": "तातार",
473
- "tum": "तम्बूका",
474
- "tvl": "तुवालु",
475
- "tw": "ट्वी",
476
- "twq": "टासवाक",
477
- "ty": "ताहितियन",
478
- "tyv": "तुवीनियन",
479
- "tzm": "मध्य एटलस तमाज़ित",
480
- "udm": "उदमुर्त",
481
- "ug": "उइगर",
482
- "uga": "युगैरिटिक",
483
- "uk": "यूक्रेनियाई",
484
- "umb": "उम्बुन्डु",
485
- "und": "अज्ञात भाषा",
486
- "ur": "उर्दू",
487
- "uz": "उज़्बेक",
488
- "vai": "वाई",
489
- "ve": "वेन्दा",
490
- "vi": "वियतनामी",
491
- "vo": "वोलापुक",
492
- "vot": "वॉटिक",
493
- "vun": "वुंजो",
494
- "wa": "वाल्लून",
495
- "wae": "वाल्सर",
496
- "wal": "वलामो",
497
- "war": "वारै",
498
- "was": "वाशो",
499
- "wbp": "वॉल्पेरी",
500
- "wo": "वोलोफ़",
501
- "wuu": "वू चीनी",
502
- "xal": "काल्मिक",
503
- "xh": "ख़ोसा",
504
- "xog": "सोगा",
505
- "yao": "याओ",
506
- "yap": "यापीस",
507
- "yav": "यांगबेन",
508
- "ybb": "येंबा",
509
- "yi": "यहूदी",
510
- "yo": "योरूबा",
511
- "yue": "कैंटोनीज़",
512
- "za": "ज़ुआंग",
513
- "zap": "ज़ेपोटेक",
514
- "zbl": "ब्लिसिम्बॉल्स",
515
- "zen": "ज़ेनान्गा",
516
- "zgh": "मानक मोरक्कन तामाज़ाइट",
517
- "zh": "चीनी",
518
- "zh_Hans": "सरलीकृत चीनी",
519
- "zh_Hant": "पारंपरिक चीनी",
520
- "zu": "ज़ुलू",
521
- "zun": "ज़ूनी",
522
- "zxx": "कोई भाषा सामग्री नहीं",
523
- "zza": "ज़ाज़ा"
524
- },
525
- "scripts": {
526
- "Adlm": "Adlm",
527
- "Aghb": "Aghb",
528
- "Ahom": "Ahom",
529
- "Arab": "अरबी",
530
- "Arab-alt-variant": "फ़ारसी-अरबी",
531
- "Armi": "इम्पिरियल आर्मेनिक",
532
- "Armn": "आर्मेनियाई",
533
- "Avst": "अवेस्तन",
534
- "Bali": "बाली",
535
- "Bamu": "Bamu",
536
- "Bass": "Bass",
537
- "Batk": "बटकी",
538
- "Beng": "बंगाली",
539
- "Bhks": "Bhks",
540
- "Blis": "ब्लिसिम्बॉल्स",
541
- "Bopo": "बोपोमोफ़ो",
542
- "Brah": "ब्रह्मी",
543
- "Brai": "ब्रेल",
544
- "Bugi": "बगिनीस",
545
- "Buhd": "बुहिद",
546
- "Cakm": "चकमा",
547
- "Cans": "युनिफाइड कैनेडियन एबोरिजनल सिलेबिक्स",
548
- "Cari": "करैन",
549
- "Cham": "चाम",
550
- "Cher": "चेरोकी",
551
- "Cirt": "किर्थ",
552
- "Copt": "कॉप्टिक",
553
- "Cprt": "काइप्रायट",
554
- "Cyrl": "सिरिलिक",
555
- "Cyrs": "ओल्ड चर्च स्लावोनिक सिरिलिक",
556
- "Deva": "देवनागरी",
557
- "Dogr": "Dogr",
558
- "Dsrt": "डेसरेट",
559
- "Dupl": "Dupl",
560
- "Egyd": "इजिप्शियन डेमोटिक",
561
- "Egyh": "इजिप्शियन हाइरेटिक",
562
- "Egyp": "इजिप्शियन हाइरोग्लिफ्स",
563
- "Elba": "Elba",
564
- "Elym": "Elym",
565
- "Ethi": "इथियोपियाई",
566
- "Geok": "जॉर्जियन खुतसुरी",
567
- "Geor": "जॉर्जियन",
568
- "Glag": "ग्लेगोलिटिक",
569
- "Gong": "Gong",
570
- "Gonm": "Gonm",
571
- "Goth": "गोथिक",
572
- "Gran": "ग्रन्थ",
573
- "Grek": "यूनानी",
574
- "Gujr": "गुजराती",
575
- "Guru": "गुरमुखी",
576
- "Hanb": "हांब",
577
- "Hang": "हंगुल",
578
- "Hani": "हान",
579
- "Hano": "हनुनू",
580
- "Hans": "सरलीकृत",
581
- "Hans-alt-stand-alone": "सरलीकृत हान",
582
- "Hant": "पारंपरिक",
583
- "Hant-alt-stand-alone": "पारंपरिक हान",
584
- "Hatr": "Hatr",
585
- "Hebr": "हिब्रू",
586
- "Hira": "हिरागाना",
587
- "Hluw": "Hluw",
588
- "Hmng": "पाहो ह्मोन्ग",
589
- "Hmnp": "Hmnp",
590
- "Hrkt": "जापानी सिलेबरीज़",
591
- "Hung": "ऑल्ड हंगेरियन",
592
- "Inds": "सिन्धु",
593
- "Ital": "पुरानी इटली",
594
- "Jamo": "जामो",
595
- "Java": "जावानीस",
596
- "Jpan": "जापानी",
597
- "Kali": "कायाह ली",
598
- "Kana": "काताकाना",
599
- "Khar": "खारोशथी",
600
- "Khmr": "खमेर",
601
- "Khoj": "Khoj",
602
- "Knda": "कन्नड़",
603
- "Kore": "कोरियाई",
604
- "Kthi": "कैथी",
605
- "Lana": "लाना",
606
- "Laoo": "लाओ",
607
- "Latf": "फ़्रैक्टुर लातिनी",
608
- "Latg": "गेली लातिनी",
609
- "Latn": "लैटिन",
610
- "Lepc": "लेपचा",
611
- "Limb": "लिम्बू",
612
- "Lina": "लीनियर A",
613
- "Linb": "लीनियर बी",
614
- "Lisu": "Lisu",
615
- "Lyci": "लिशियन",
616
- "Lydi": "लिडियन",
617
- "Mahj": "Mahj",
618
- "Maka": "Maka",
619
- "Mand": "मनडेन",
620
- "Mani": "मनीशीन",
621
- "Marc": "Marc",
622
- "Maya": "मयान हाइरोग्लिफ्स",
623
- "Medf": "Medf",
624
- "Mend": "Mend",
625
- "Merc": "Merc",
626
- "Mero": "मेरोइटिक",
627
- "Mlym": "मलयालम",
628
- "Modi": "Modi",
629
- "Mong": "मंगोलियाई",
630
- "Moon": "मून",
631
- "Mroo": "Mroo",
632
- "Mtei": "मेइतेइ मायेक",
633
- "Mult": "Mult",
634
- "Mymr": "म्यांमार",
635
- "Nand": "Nand",
636
- "Narb": "Narb",
637
- "Nbat": "Nbat",
638
- "Newa": "Newa",
639
- "Nkoo": "एन्‘को",
640
- "Nshu": "Nshu",
641
- "Ogam": "ओगम",
642
- "Olck": "ऑल चिकी",
643
- "Orkh": "ओरखोन",
644
- "Orya": "उड़िया",
645
- "Osge": "Osge",
646
- "Osma": "ओस्मान्या",
647
- "Palm": "Palm",
648
- "Pauc": "Pauc",
649
- "Perm": "ओल्ड परमिक",
650
- "Phag": "फाग्स-पा",
651
- "Phli": "इंस्क्रिपश्नल पाहलवी",
652
- "Phlp": "सॉल्टर पाहलवी",
653
- "Phlv": "बुक पाहलवी",
654
- "Phnx": "फोनिशियन",
655
- "Plrd": "पॉलार्ड फोनेटिक",
656
- "Prti": "इंस्क्रिपश्नल पार्थियन",
657
- "Qaag": "Qaag",
658
- "Rjng": "रीजांग",
659
- "Rohg": "Rohg",
660
- "Roro": "रोन्गोरोन्गो",
661
- "Runr": "रूनिक",
662
- "Samr": "समरिटन",
663
- "Sara": "सराती",
664
- "Sarb": "Sarb",
665
- "Saur": "सौराष्ट्र",
666
- "Sgnw": "सांकेतिक लेख",
667
- "Shaw": "शावियान",
668
- "Shrd": "Shrd",
669
- "Sidd": "Sidd",
670
- "Sind": "Sind",
671
- "Sinh": "सिंहली",
672
- "Sogd": "Sogd",
673
- "Sogo": "Sogo",
674
- "Sora": "Sora",
675
- "Soyo": "Soyo",
676
- "Sund": "सूडानी",
677
- "Sylo": "सिलोती नागरी",
678
- "Syrc": "सिरियेक",
679
- "Syre": "एस्त्रेन्जेलो सिरिएक",
680
- "Syrj": "पश्चिम सिरिएक",
681
- "Syrn": "पूर्व सिरिएक",
682
- "Tagb": "तगबन्वा",
683
- "Takr": "Takr",
684
- "Tale": "ताई ली",
685
- "Talu": "नया ताई लु",
686
- "Taml": "तमिल",
687
- "Tang": "Tang",
688
- "Tavt": "ताई विएत",
689
- "Telu": "तेलुगू",
690
- "Teng": "तेन्गवार",
691
- "Tfng": "तिफिनाघ",
692
- "Tglg": "टैगालोग",
693
- "Thaa": "थाना",
694
- "Thai": "थाई",
695
- "Tibt": "तिब्बती",
696
- "Tirh": "Tirh",
697
- "Ugar": "युगारिटिक",
698
- "Vaii": "वाई",
699
- "Visp": "विसिबल स्पीच",
700
- "Wara": "Wara",
701
- "Wcho": "Wcho",
702
- "Xpeo": "पुरानी फारसी",
703
- "Xsux": "सुमेरो अक्कादियन सुनिफॉर्म",
704
- "Yiii": "यी",
705
- "Zanb": "Zanb",
706
- "Zinh": "विरासत",
707
- "Zmth": "गणितीय संकेतन",
708
- "Zsye": "ईमोजी",
709
- "Zsym": "चिह्न",
710
- "Zxxx": "अलिखित",
711
- "Zyyy": "सामान्य",
712
- "Zzzz": "अज्ञात लिपि"
713
- },
714
- "territories": {
715
- "142": "एशिया",
716
- "143": "मध्य एशिया",
717
- "145": "पश्चिमी एशिया",
718
- "150": "यूरोप",
719
- "151": "पूर्वी यूरोप",
720
- "154": "उत्तरी यूरोप",
721
- "155": "पश्चिमी यूरोप",
722
- "202": "उप-सहारा अफ़्रीका",
723
- "419": "लैटिन अमेरिका",
724
- "001": "विश्व",
725
- "002": "अफ़्रीका",
726
- "003": "उत्तर अमेरिका",
727
- "005": "दक्षिण अमेरिका",
728
- "009": "ओशिआनिया",
729
- "011": "पश्चिमी अफ़्रीका",
730
- "013": "मध्य अमेरिका",
731
- "014": "पूर्वी अफ़्रीका",
732
- "015": "उत्तरी अफ़्रीका",
733
- "017": "मध्य अफ़्रीका",
734
- "018": "दक्षिणी अफ़्रीका",
735
- "019": "अमेरिकाज़",
736
- "021": "उत्तरी अमेरिका",
737
- "029": "कैरिबियन",
738
- "030": "पूर्वी एशिया",
739
- "034": "दक्षिणी एशिया",
740
- "035": "दक्षिण-पूर्व एशिया",
741
- "039": "दक्षिणी यूरोप",
742
- "053": "ऑस्ट्रेलेशिया",
743
- "054": "मेलानेशिया",
744
- "057": "माइक्रोनेशियाई क्षेत्र",
745
- "061": "पोलिनेशिया",
746
- "AC": "असेंशन द्वीप",
747
- "AD": "एंडोरा",
748
- "AE": "संयुक्त अरब अमीरात",
749
- "AF": "अफ़गानिस्तान",
750
- "AG": "एंटिगुआ और बरबुडा",
751
- "AI": "एंग्विला",
752
- "AL": "अल्बानिया",
753
- "AM": "आर्मेनिया",
754
- "AO": "अंगोला",
755
- "AQ": "अंटार्कटिका",
756
- "AR": "अर्जेंटीना",
757
- "AS": "अमेरिकी समोआ",
758
- "AT": "ऑस्ट्रिया",
759
- "AU": "ऑस्ट्रेलिया",
760
- "AW": "अरूबा",
761
- "AX": "एलैंड द्वीपसमूह",
762
- "AZ": "अज़रबैजान",
763
- "BA": "बोस्निया और हर्ज़ेगोविना",
764
- "BB": "बारबाडोस",
765
- "BD": "बांग्लादेश",
766
- "BE": "बेल्जियम",
767
- "BF": "बुर्किना फ़ासो",
768
- "BG": "बुल्गारिया",
769
- "BH": "बहरीन",
770
- "BI": "बुरुंडी",
771
- "BJ": "बेनिन",
772
- "BL": "सेंट बार्थेलेमी",
773
- "BM": "बरमूडा",
774
- "BN": "ब्रूनेई",
775
- "BO": "बोलीविया",
776
- "BQ": "कैरिबियन नीदरलैंड",
777
- "BR": "ब्राज़ील",
778
- "BS": "बहामास",
779
- "BT": "भूटान",
780
- "BV": "बोवेत द्वीप",
781
- "BW": "बोत्स्वाना",
782
- "BY": "बेलारूस",
783
- "BZ": "बेलीज़",
784
- "CA": "कनाडा",
785
- "CC": "कोकोस (कीलिंग) द्वीपसमूह",
786
- "CD": "कांगो - किंशासा",
787
- "CD-alt-variant": "कांगो (डीआरसी)",
788
- "CF": "मध्य अफ़्रीकी गणराज्य",
789
- "CG": "कांगो – ब्राज़ाविल",
790
- "CG-alt-variant": "कांगो (गणराज्य)",
791
- "CH": "स्विट्ज़रलैंड",
792
- "CI": "कोट डी आइवर",
793
- "CI-alt-variant": "आइवरी कोस्ट",
794
- "CK": "कुक द्वीपसमूह",
795
- "CL": "चिली",
796
- "CM": "कैमरून",
797
- "CN": "चीन",
798
- "CO": "कोलंबिया",
799
- "CP": "क्लिपर्टन द्वीप",
800
- "CR": "कोस्टारिका",
801
- "CU": "क्यूबा",
802
- "CV": "केप वर्ड",
803
- "CW": "क्यूरासाओ",
804
- "CX": "क्रिसमस द्वीप",
805
- "CY": "साइप्रस",
806
- "CZ": "चेकिया",
807
- "CZ-alt-variant": "चेक गणराज्य",
808
- "DE": "जर्मनी",
809
- "DG": "डिएगो गार्सिया",
810
- "DJ": "जिबूती",
811
- "DK": "डेनमार्क",
812
- "DM": "डोमिनिका",
813
- "DO": "डोमिनिकन गणराज्य",
814
- "DZ": "अल्जीरिया",
815
- "EA": "सेउटा और मेलिला",
816
- "EC": "इक्वाडोर",
817
- "EE": "एस्टोनिया",
818
- "EG": "मिस्र",
819
- "EH": "पश्चिमी सहारा",
820
- "ER": "इरिट्रिया",
821
- "ES": "स्पेन",
822
- "ET": "इथियोपिया",
823
- "EU": "यूरोपीय संघ",
824
- "EZ": "यूरोज़ोन",
825
- "FI": "फ़िनलैंड",
826
- "FJ": "फ़िजी",
827
- "FK": "फ़ॉकलैंड द्वीपसमूह",
828
- "FK-alt-variant": "फ़ॉकलैंड द्वीपसमूह (इज़्लास माल्विनास)",
829
- "FM": "माइक्रोनेशिया",
830
- "FO": "फ़ेरो द्वीपसमूह",
831
- "FR": "फ़्रांस",
832
- "GA": "गैबॉन",
833
- "GB": "यूनाइटेड किंगडम",
834
- "GB-alt-short": "यू॰के॰",
835
- "GD": "ग्रेनाडा",
836
- "GE": "जॉर्जिया",
837
- "GF": "फ़्रेंच गुयाना",
838
- "GG": "गर्नसी",
839
- "GH": "घाना",
840
- "GI": "जिब्राल्टर",
841
- "GL": "ग्रीनलैंड",
842
- "GM": "गाम्बिया",
843
- "GN": "गिनी",
844
- "GP": "ग्वाडेलूप",
845
- "GQ": "इक्वेटोरियल गिनी",
846
- "GR": "यूनान",
847
- "GS": "दक्षिण जॉर्जिया और दक्षिण सैंडविच द्वीपसमूह",
848
- "GT": "ग्वाटेमाला",
849
- "GU": "गुआम",
850
- "GW": "गिनी-बिसाउ",
851
- "GY": "गुयाना",
852
- "HK": "हांग कांग, चीन",
853
- "HK-alt-short": "हाँग काँग",
854
- "HM": "हर्ड द्वीप और मैकडोनॉल्ड द्वीपसमूह",
855
- "HN": "होंडूरास",
856
- "HR": "क्रोएशिया",
857
- "HT": "हैती",
858
- "HU": "हंगरी",
859
- "IC": "कैनेरी द्वीपसमूह",
860
- "ID": "इंडोनेशिया",
861
- "IE": "आयरलैंड",
862
- "IL": "इज़राइल",
863
- "IM": "आइल ऑफ़ मैन",
864
- "IN": "भारत",
865
- "IO": "ब्रिटिश हिंद महासागरीय क्षेत्र",
866
- "IQ": "इराक",
867
- "IR": "ईरान",
868
- "IS": "आइसलैंड",
869
- "IT": "इटली",
870
- "JE": "जर्सी",
871
- "JM": "जमैका",
872
- "JO": "जॉर्डन",
873
- "JP": "जापान",
874
- "KE": "केन्या",
875
- "KG": "किर्गिज़स्तान",
876
- "KH": "कंबोडिया",
877
- "KI": "किरिबाती",
878
- "KM": "कोमोरोस",
879
- "KN": "सेंट किट्स और नेविस",
880
- "KP": "उत्तर कोरिया",
881
- "KR": "दक्षिण कोरिया",
882
- "KW": "कुवैत",
883
- "KY": "कैमेन द्वीपसमूह",
884
- "KZ": "कज़ाखस्तान",
885
- "LA": "लाओस",
886
- "LB": "लेबनान",
887
- "LC": "सेंट लूसिया",
888
- "LI": "लिचेंस्टीन",
889
- "LK": "श्रीलंका",
890
- "LR": "लाइबेरिया",
891
- "LS": "लेसोथो",
892
- "LT": "लिथुआनिया",
893
- "LU": "लग्ज़मबर्ग",
894
- "LV": "लातविया",
895
- "LY": "लीबिया",
896
- "MA": "मोरक्को",
897
- "MC": "मोनाको",
898
- "MD": "मॉल्डोवा",
899
- "ME": "मोंटेनेग्रो",
900
- "MF": "सेंट मार्टिन",
901
- "MG": "मेडागास्कर",
902
- "MH": "मार्शल द्वीपसमूह",
903
- "MK": "मकदूनिया",
904
- "MK-alt-variant": "मकदूनिया (FYROM)",
905
- "ML": "माली",
906
- "MM": "म्यांमार (बर्मा)",
907
- "MN": "मंगोलिया",
908
- "MO": "मकाओ, चीन",
909
- "MO-alt-short": "मकाऊ",
910
- "MP": "उत्तरी मारियाना द्वीपसमूह",
911
- "MQ": "मार्टीनिक",
912
- "MR": "मॉरिटानिया",
913
- "MS": "मोंटसेरात",
914
- "MT": "माल्टा",
915
- "MU": "मॉरीशस",
916
- "MV": "मालदीव",
917
- "MW": "मलावी",
918
- "MX": "मैक्सिको",
919
- "MY": "मलेशिया",
920
- "MZ": "मोज़ांबिक",
921
- "NA": "नामीबिया",
922
- "NC": "न्यू कैलेडोनिया",
923
- "NE": "नाइजर",
924
- "NF": "नॉरफ़ॉक द्वीप",
925
- "NG": "नाइजीरिया",
926
- "NI": "निकारागुआ",
927
- "NL": "नीदरलैंड",
928
- "NO": "नॉर्वे",
929
- "NP": "नेपाल",
930
- "NR": "नाउरु",
931
- "NU": "नीयू",
932
- "NZ": "न्यूज़ीलैंड",
933
- "OM": "ओमान",
934
- "PA": "पनामा",
935
- "PE": "पेरू",
936
- "PF": "फ़्रेंच पोलिनेशिया",
937
- "PG": "पापुआ न्यू गिनी",
938
- "PH": "फ़िलिपींस",
939
- "PK": "पाकिस्तान",
940
- "PL": "पोलैंड",
941
- "PM": "सेंट पिएरे और मिक्वेलान",
942
- "PN": "पिटकैर्न द्वीपसमूह",
943
- "PR": "पोर्टो रिको",
944
- "PS": "फ़िलिस्तीनी क्षेत्र",
945
- "PS-alt-short": "फ़िलिस्तीन",
946
- "PT": "पुर्तगाल",
947
- "PW": "पलाऊ",
948
- "PY": "पराग्वे",
949
- "QA": "क़तर",
950
- "QO": "आउटलाइंग ओशिनिया",
951
- "RE": "रियूनियन",
952
- "RO": "रोमानिया",
953
- "RS": "सर्बिया",
954
- "RU": "रूस",
955
- "RW": "रवांडा",
956
- "SA": "सऊदी अरब",
957
- "SB": "सोलोमन द्वीपसमूह",
958
- "SC": "सेशेल्स",
959
- "SD": "सूडान",
960
- "SE": "स्वीडन",
961
- "SG": "सिंगापुर",
962
- "SH": "सेंट हेलेना",
963
- "SI": "स्लोवेनिया",
964
- "SJ": "स्वालबार्ड और जान मायेन",
965
- "SK": "स्लोवाकिया",
966
- "SL": "सिएरा लियोन",
967
- "SM": "सैन मेरीनो",
968
- "SN": "सेनेगल",
969
- "SO": "सोमालिया",
970
- "SR": "सूरीनाम",
971
- "SS": "दक्षिण सूडान",
972
- "ST": "साओ टोम और प्रिंसिपे",
973
- "SV": "अल सल्वाडोर",
974
- "SX": "सिंट मार्टिन",
975
- "SY": "सीरिया",
976
- "SZ": "स्वाज़ीलैंड",
977
- "SZ-alt-variant": "स्वाज़िलैंड",
978
- "TA": "ट्रिस्टन दा कुना",
979
- "TC": "तुर्क और कैकोज़ द्वीपसमूह",
980
- "TD": "चाड",
981
- "TF": "फ़्रांसीसी दक्षिणी क्षेत्र",
982
- "TG": "टोगो",
983
- "TH": "थाईलैंड",
984
- "TJ": "ताज़िकिस्तान",
985
- "TK": "तोकेलाउ",
986
- "TL": "तिमोर-लेस्त",
987
- "TL-alt-variant": "पूर्वी तिमोर",
988
- "TM": "तुर्कमेनिस्तान",
989
- "TN": "ट्यूनीशिया",
990
- "TO": "टोंगा",
991
- "TR": "तुर्की",
992
- "TT": "त्रिनिदाद और टोबैगो",
993
- "TV": "तुवालू",
994
- "TW": "ताईवान, चीन",
995
- "TZ": "तंज़ानिया",
996
- "UA": "यूक्रेन",
997
- "UG": "युगांडा",
998
- "UM": "यू॰एस॰ आउटलाइंग द्वीपसमूह",
999
- "UN": "संयुक्त राष्ट्र",
1000
- "UN-alt-short": "संयुक्त राष्ट्र",
1001
- "US": "संयुक्त राज्य",
1002
- "US-alt-short": "अमेरिका",
1003
- "UY": "उरूग्वे",
1004
- "UZ": "उज़्बेकिस्तान",
1005
- "VA": "वेटिकन सिटी",
1006
- "VC": "सेंट विंसेंट और ग्रेनाडाइंस",
1007
- "VE": "वेनेज़ुएला",
1008
- "VG": "ब्रिटिश वर्जिन द्वीपसमूह",
1009
- "VI": "यू॰एस॰ वर्जिन द्वीपसमूह",
1010
- "VN": "वियतनाम",
1011
- "VU": "वनुआतू",
1012
- "WF": "वालिस और फ़्यूचूना",
1013
- "WS": "समोआ",
1014
- "XA": "XA",
1015
- "XB": "XB",
1016
- "XK": "कोसोवो",
1017
- "YE": "यमन",
1018
- "YT": "मायोते",
1019
- "ZA": "दक्षिण अफ़्रीका",
1020
- "ZM": "ज़ाम्बिया",
1021
- "ZW": "ज़िम्बाब्वे",
1022
- "ZZ": "अज्ञात क्षेत्र"
1023
- },
1024
- "orientation": "left-to-right",
1025
- "ca-gregorian": {
1026
- "dateFormats": {
1027
- "full": "EEEE, d MMMM y",
1028
- "long": "d MMMM y",
1029
- "medium": "d MMM y",
1030
- "short": "d/M/yy"
1031
- },
1032
- "timeFormats": {
1033
- "full": "h:mm:ss a zzzz",
1034
- "long": "h:mm:ss a z",
1035
- "medium": "h:mm:ss a",
1036
- "short": "h:mm a"
1037
- },
1038
- "dateTimeFormats": {
1039
- "full": "{1} को {0}",
1040
- "long": "{1} को {0}",
1041
- "medium": "{1}, {0}",
1042
- "short": "{1}, {0}",
1043
- "availableFormats": {
1044
- "Bh": "B h",
1045
- "Bhm": "B h:mm",
1046
- "Bhms": "B h:mm:ss",
1047
- "d": "d",
1048
- "E": "ccc",
1049
- "EBhm": "E B h:mm",
1050
- "EBhms": "E B h:mm:ss",
1051
- "Ed": "E d",
1052
- "Ehm": "E h:mm a",
1053
- "EHm": "E HH:mm",
1054
- "Ehms": "E h:mm:ss a",
1055
- "EHms": "E HH:mm:ss",
1056
- "Gy": "y G",
1057
- "GyMMM": "MMM G y",
1058
- "GyMMMd": "d MMM y G",
1059
- "GyMMMEd": "E, d MMM y G",
1060
- "h": "h a",
1061
- "H": "HH",
1062
- "hm": "h:mm a",
1063
- "Hm": "HH:mm",
1064
- "hms": "h:mm:ss a",
1065
- "Hms": "HH:mm:ss",
1066
- "hmsv": "h:mm:ss a v",
1067
- "Hmsv": "HH:mm:ss v",
1068
- "hmv": "h:mm a v",
1069
- "Hmv": "HH:mm v",
1070
- "M": "L",
1071
- "Md": "d/M",
1072
- "MEd": "E, d/M",
1073
- "MMdd": "dd/MM",
1074
- "MMM": "LLL",
1075
- "MMMd": "d MMM",
1076
- "MMMEd": "E, d MMM",
1077
- "MMMMd": "d MMMM",
1078
- "MMMMEd": "E, d MMMM",
1079
- "ms": "mm:ss",
1080
- "y": "y",
1081
- "yM": "M/y",
1082
- "yMd": "d/M/y",
1083
- "yMEd": "E, d/M/y",
1084
- "yMM": "MM/y",
1085
- "yMMdd": "dd/MM/y",
1086
- "yMMM": "MMM y",
1087
- "yMMMd": "d MMM y",
1088
- "yMMMEd": "E, d MMM y",
1089
- "yMMMM": "MMMM y",
1090
- "yQQQ": "QQQ y",
1091
- "yQQQQ": "QQQQ y",
1092
- "MMMMW": "MMMM का सप्ताह W",
1093
- "yw": "Y का सप्ताह w"
1094
- },
1095
- "appendItems": {
1096
- "Day": "{0} ({2}: {1})",
1097
- "Day-Of-Week": "{0} {1}",
1098
- "Era": "{1} {0}",
1099
- "Hour": "{0} ({2}: {1})",
1100
- "Minute": "{0} ({2}: {1})",
1101
- "Month": "{0} ({2}: {1})",
1102
- "Quarter": "{0} ({2}: {1})",
1103
- "Second": "{0} ({2}: {1})",
1104
- "Timezone": "{0} {1}",
1105
- "Week": "{0} ({2}: {1})",
1106
- "Year": "{1} {0}"
1107
- },
1108
- "intervalFormats": {
1109
- "intervalFormatFallback": "{0} – {1}",
1110
- "Bh": {
1111
- "B": "B h – B h",
1112
- "h": "B h–h"
1113
- },
1114
- "Bhm": {
1115
- "B": "B h:mm – B h:mm",
1116
- "h": "B h:mm–h:mm",
1117
- "m": "B h:mm–h:mm"
1118
- },
1119
- "d": {
1120
- "d": "d–d"
1121
- },
1122
- "Gy": {
1123
- "G": "G y – G y",
1124
- "y": "G y–y"
1125
- },
1126
- "GyM": {
1127
- "G": "GGGGG y-MM – GGGGG y-MM",
1128
- "M": "GGGGG y-MM – y-MM",
1129
- "y": "GGGGG y-MM – y-MM"
1130
- },
1131
- "GyMd": {
1132
- "d": "GGGGG y-MM-dd – y-MM-dd",
1133
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1134
- "M": "GGGGG y-MM-dd – y-MM-dd",
1135
- "y": "GGGGG y-MM-dd – y-MM-dd"
1136
- },
1137
- "GyMEd": {
1138
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1139
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1140
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1141
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1142
- },
1143
- "GyMMM": {
1144
- "G": "G y MMM – G y MMM",
1145
- "M": "G y MMM–MMM",
1146
- "y": "G y MMM – y MMM"
1147
- },
1148
- "GyMMMd": {
1149
- "d": "G y MMM d–d",
1150
- "G": "G y MMM d – G y MMM d",
1151
- "M": "G y MMM d – MMM d",
1152
- "y": "G y MMM d – y MMM d"
1153
- },
1154
- "GyMMMEd": {
1155
- "d": "G y MMM d, E – MMM d, E",
1156
- "G": "G y MMM d, E – G y MMM d, E",
1157
- "M": "G y MMM d, E – MMM d, E",
1158
- "y": "G y MMM d, E – y MMM d, E"
1159
- },
1160
- "h": {
1161
- "a": "h a – h a",
1162
- "h": "h–h a"
1163
- },
1164
- "H": {
1165
- "H": "HH–HH"
1166
- },
1167
- "hm": {
1168
- "a": "h:mm a – h:mm a",
1169
- "h": "h:mm–h:mm a",
1170
- "m": "h:mm–h:mm a"
1171
- },
1172
- "Hm": {
1173
- "H": "HH:mm–HH:mm",
1174
- "m": "HH:mm–HH:mm"
1175
- },
1176
- "hmv": {
1177
- "a": "h:mm a – h:mm a v",
1178
- "h": "h:mm–h:mm a v",
1179
- "m": "h:mm–h:mm a v"
1180
- },
1181
- "Hmv": {
1182
- "H": "HH:mm–HH:mm v",
1183
- "m": "HH:mm–HH:mm v"
1184
- },
1185
- "hv": {
1186
- "a": "h a – h a v",
1187
- "h": "h–h a v"
1188
- },
1189
- "Hv": {
1190
- "H": "HH–HH v"
1191
- },
1192
- "M": {
1193
- "M": "M–M"
1194
- },
1195
- "Md": {
1196
- "d": "d/M – d/M",
1197
- "M": "d/M – d/M"
1198
- },
1199
- "MEd": {
1200
- "d": "E, d/M – E, d/M",
1201
- "M": "E, d/M – E, d/M"
1202
- },
1203
- "MMM": {
1204
- "M": "MMM–MMM"
1205
- },
1206
- "MMMd": {
1207
- "d": "d MMM–d",
1208
- "M": "d MMM – d MMM"
1209
- },
1210
- "MMMEd": {
1211
- "d": "E, d MMM – E, d MMM",
1212
- "M": "E, d MMM – E, d MMM"
1213
- },
1214
- "y": {
1215
- "y": "y–y"
1216
- },
1217
- "yM": {
1218
- "M": "M/y – M/y",
1219
- "y": "M/y – M/y"
1220
- },
1221
- "yMd": {
1222
- "d": "d/M/y – d/M/y",
1223
- "M": "d/M/y – d/M/y",
1224
- "y": "d/M/y – d/M/y"
1225
- },
1226
- "yMEd": {
1227
- "d": "E, d/M/y – E, d/M/y",
1228
- "M": "E, d/M/y – E, d/M/y",
1229
- "y": "E, d/M/y – E, d/M/y"
1230
- },
1231
- "yMMM": {
1232
- "M": "MMM–MMM y",
1233
- "y": "MMM y – MMM y"
1234
- },
1235
- "yMMMd": {
1236
- "d": "d–d MMM y",
1237
- "M": "d MMM – d MMM y",
1238
- "y": "d MMM y – d MMM y"
1239
- },
1240
- "yMMMEd": {
1241
- "d": "E, d MMM – E, d MMM y",
1242
- "M": "E, d MMM – E, d MMM y",
1243
- "y": "E, d MMM y – E, d MMM y"
1244
- },
1245
- "yMMMM": {
1246
- "M": "MMMM – MMMM y",
1247
- "y": "MMMM y – MMMM y"
1248
- }
1249
- }
1250
- },
1251
- "months": {
1252
- "format": {
1253
- "abbreviated": [
1254
- "जन॰",
1255
- "फ़र॰",
1256
- "मार्च",
1257
- "अप्रैल",
1258
- "मई",
1259
- "जून",
1260
- "जुल॰",
1261
- "अग॰",
1262
- "सित॰",
1263
- "अक्तू॰",
1264
- "नव॰",
1265
- "दिस॰"
1266
- ],
1267
- "narrow": [
1268
- "ज",
1269
- "फ़",
1270
- "मा",
1271
- "अ",
1272
- "म",
1273
- "जू",
1274
- "जु",
1275
- "अ",
1276
- "सि",
1277
- "अ",
1278
- "न",
1279
- "दि"
1280
- ],
1281
- "wide": [
1282
- "जनवरी",
1283
- "फ़रवरी",
1284
- "मार्च",
1285
- "अप्रैल",
1286
- "मई",
1287
- "जून",
1288
- "जुलाई",
1289
- "अगस्त",
1290
- "सितंबर",
1291
- "अक्तूबर",
1292
- "नवंबर",
1293
- "दिसंबर"
1294
- ]
1295
- },
1296
- "stand-alone": {
1297
- "abbreviated": [
1298
- "जन॰",
1299
- "फ़र॰",
1300
- "मार्च",
1301
- "अप्रैल",
1302
- "मई",
1303
- "जून",
1304
- "जुल॰",
1305
- "अग॰",
1306
- "सित॰",
1307
- "अक्तू॰",
1308
- "नव॰",
1309
- "दिस॰"
1310
- ],
1311
- "narrow": [
1312
- "ज",
1313
- "फ़",
1314
- "मा",
1315
- "अ",
1316
- "म",
1317
- "जू",
1318
- "जु",
1319
- "अ",
1320
- "सि",
1321
- "अ",
1322
- "न",
1323
- "दि"
1324
- ],
1325
- "wide": [
1326
- "जनवरी",
1327
- "फ़रवरी",
1328
- "मार्च",
1329
- "अप्रैल",
1330
- "मई",
1331
- "जून",
1332
- "जुलाई",
1333
- "अगस्त",
1334
- "सितंबर",
1335
- "अक्तूबर",
1336
- "नवंबर",
1337
- "दिसंबर"
1338
- ]
1339
- }
1340
- },
1341
- "days": {
1342
- "format": {
1343
- "abbreviated": [
1344
- "रवि",
1345
- "सोम",
1346
- "मंगल",
1347
- "बुध",
1348
- "गुरु",
1349
- "शुक्र",
1350
- "शनि"
1351
- ],
1352
- "narrow": [
1353
- "र",
1354
- "सो",
1355
- "मं",
1356
- "बु",
1357
- "गु",
1358
- "शु",
1359
- "श"
1360
- ],
1361
- "short": [
1362
- "र",
1363
- "सो",
1364
- "मं",
1365
- "बु",
1366
- "गु",
1367
- "शु",
1368
- "श"
1369
- ],
1370
- "wide": [
1371
- "रविवार",
1372
- "सोमवार",
1373
- "मंगलवार",
1374
- "बुधवार",
1375
- "गुरुवार",
1376
- "शुक्रवार",
1377
- "शनिवार"
1378
- ]
1379
- },
1380
- "stand-alone": {
1381
- "abbreviated": [
1382
- "रवि",
1383
- "सोम",
1384
- "मंगल",
1385
- "बुध",
1386
- "गुरु",
1387
- "शुक्र",
1388
- "शनि"
1389
- ],
1390
- "narrow": [
1391
- "र",
1392
- "सो",
1393
- "मं",
1394
- "बु",
1395
- "गु",
1396
- "शु",
1397
- "श"
1398
- ],
1399
- "short": [
1400
- "र",
1401
- "सो",
1402
- "मं",
1403
- "बु",
1404
- "गु",
1405
- "शु",
1406
- "श"
1407
- ],
1408
- "wide": [
1409
- "रविवार",
1410
- "सोमवार",
1411
- "मंगलवार",
1412
- "बुधवार",
1413
- "गुरुवार",
1414
- "शुक्रवार",
1415
- "शनिवार"
1416
- ]
1417
- }
1418
- },
1419
- "quarters": {
1420
- "format": {
1421
- "abbreviated": [
1422
- "ति1",
1423
- "ति2",
1424
- "ति3",
1425
- "ति4"
1426
- ],
1427
- "narrow": [
1428
- "1",
1429
- "2",
1430
- "3",
1431
- "4"
1432
- ],
1433
- "wide": [
1434
- "पहली तिमाही",
1435
- "दूसरी तिमाही",
1436
- "तीसरी तिमाही",
1437
- "चौथी तिमाही"
1438
- ]
1439
- },
1440
- "stand-alone": {
1441
- "abbreviated": [
1442
- "ति1",
1443
- "ति2",
1444
- "ति3",
1445
- "ति4"
1446
- ],
1447
- "narrow": [
1448
- "1",
1449
- "2",
1450
- "3",
1451
- "4"
1452
- ],
1453
- "wide": [
1454
- "पहली तिमाही",
1455
- "दूसरी तिमाही",
1456
- "तीसरी तिमाही",
1457
- "चौथी तिमाही"
1458
- ]
1459
- }
1460
- },
1461
- "dayPeriods": {
1462
- "format": {
1463
- "abbreviated": [
1464
- "am",
1465
- "pm"
1466
- ],
1467
- "narrow": [
1468
- "am",
1469
- "pm"
1470
- ],
1471
- "wide": [
1472
- "am",
1473
- "pm"
1474
- ]
1475
- },
1476
- "stand-alone": {
1477
- "abbreviated": [
1478
- "am",
1479
- "pm"
1480
- ],
1481
- "narrow": [
1482
- "am",
1483
- "pm"
1484
- ],
1485
- "wide": [
1486
- "am",
1487
- "pm"
1488
- ]
1489
- }
1490
- },
1491
- "era-wide": {
1492
- "0": "ईसा-पूर्व",
1493
- "1": "ईसवी सन"
1494
- },
1495
- "era-abbreviated": {
1496
- "0": "ईसा-पूर्व",
1497
- "1": "ईस्वी"
1498
- },
1499
- "era-narrow": {
1500
- "0": "ईसा-पूर्व",
1501
- "1": "ईस्वी"
1502
- }
1503
- },
1504
- "ca-islamic": {
1505
- "dateFormats": {
1506
- "full": "G EEEE, d MMMM y",
1507
- "long": "G d MMMM y",
1508
- "medium": "G d MMM y",
1509
- "short": "G d/M/y"
1510
- },
1511
- "timeFormats": {
1512
- "full": "h:mm:ss a zzzz",
1513
- "long": "h:mm:ss a z",
1514
- "medium": "h:mm:ss a",
1515
- "short": "h:mm a"
1516
- },
1517
- "dateTimeFormats": {
1518
- "full": "{1} को {0}",
1519
- "long": "{1} को {0}",
1520
- "medium": "{1}, {0}",
1521
- "short": "{1}, {0}",
1522
- "availableFormats": {
1523
- "Bh": "B h",
1524
- "Bhm": "B h:mm",
1525
- "Bhms": "B h:mm:ss",
1526
- "d": "d",
1527
- "E": "ccc",
1528
- "EBhm": "E B h:mm",
1529
- "EBhms": "E B h:mm:ss",
1530
- "Ed": "d E",
1531
- "Ehm": "E h:mm a",
1532
- "EHm": "E HH:mm",
1533
- "Ehms": "E h:mm:ss a",
1534
- "EHms": "E HH:mm:ss",
1535
- "Gy": "G y",
1536
- "GyMMM": "G y MMM",
1537
- "GyMMMd": "G d MMM y",
1538
- "GyMMMEd": "G E, d MMM y",
1539
- "h": "h a",
1540
- "H": "HH",
1541
- "hm": "h:mm a",
1542
- "Hm": "HH:mm",
1543
- "hms": "h:mm:ss a",
1544
- "Hms": "HH:mm:ss",
1545
- "M": "M",
1546
- "Md": "d/M",
1547
- "MEd": "E, d/M",
1548
- "MMdd": "dd-MM",
1549
- "MMM": "MMM",
1550
- "MMMd": "d MMM",
1551
- "MMMEd": "E, d MMM",
1552
- "MMMMd": "MMMM d",
1553
- "ms": "mm:ss",
1554
- "y": "G y",
1555
- "yyyy": "G y",
1556
- "yyyyM": "GGGGG M/y",
1557
- "yyyyMd": "G d/M/y",
1558
- "yyyyMEd": "G E, d/M/y",
1559
- "yyyyMMdd": "dd-MM-y G",
1560
- "yyyyMMM": "G MMM y",
1561
- "yyyyMMMd": "G d MMM y",
1562
- "yyyyMMMEd": "G E, d MMM y",
1563
- "yyyyMMMM": "G y MMMM",
1564
- "yyyyQQQ": "QQQ G y",
1565
- "yyyyQQQQ": "QQQQ G y"
1566
- },
1567
- "appendItems": {
1568
- "Day": "{0} ({2}: {1})",
1569
- "Day-Of-Week": "{0} {1}",
1570
- "Era": "{1} {0}",
1571
- "Hour": "{0} ({2}: {1})",
1572
- "Minute": "{0} ({2}: {1})",
1573
- "Month": "{0} ({2}: {1})",
1574
- "Quarter": "{0} ({2}: {1})",
1575
- "Second": "{0} ({2}: {1})",
1576
- "Timezone": "{0} {1}",
1577
- "Week": "{0} ({2}: {1})",
1578
- "Year": "{1} {0}"
1579
- },
1580
- "intervalFormats": {
1581
- "intervalFormatFallback": "{0} – {1}",
1582
- "Bh": {
1583
- "B": "B h – B h",
1584
- "h": "B h–h"
1585
- },
1586
- "Bhm": {
1587
- "B": "B h:mm – B h:mm",
1588
- "h": "B h:mm–h:mm",
1589
- "m": "B h:mm–h:mm"
1590
- },
1591
- "d": {
1592
- "d": "d–d"
1593
- },
1594
- "Gy": {
1595
- "G": "G y – G y",
1596
- "y": "G y–y"
1597
- },
1598
- "GyM": {
1599
- "G": "GGGGG y-MM – GGGGG y-MM",
1600
- "M": "GGGGG y-MM – y-MM",
1601
- "y": "GGGGG y-MM – y-MM"
1602
- },
1603
- "GyMd": {
1604
- "d": "GGGGG y-MM-dd – y-MM-dd",
1605
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1606
- "M": "GGGGG y-MM-dd – y-MM-dd",
1607
- "y": "GGGGG y-MM-dd – y-MM-dd"
1608
- },
1609
- "GyMEd": {
1610
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1611
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1612
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1613
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1614
- },
1615
- "GyMMM": {
1616
- "G": "G y MMM – G y MMM",
1617
- "M": "G y MMM–MMM",
1618
- "y": "G y MMM – y MMM"
1619
- },
1620
- "GyMMMd": {
1621
- "d": "G y MMM d–d",
1622
- "G": "G y MMM d – G y MMM d",
1623
- "M": "G y MMM d – MMM d",
1624
- "y": "G y MMM d – y MMM d"
1625
- },
1626
- "GyMMMEd": {
1627
- "d": "G y MMM d, E – MMM d, E",
1628
- "G": "G y MMM d, E – G y MMM d, E",
1629
- "M": "G y MMM d, E – MMM d, E",
1630
- "y": "G y MMM d, E – y MMM d, E"
1631
- },
1632
- "h": {
1633
- "a": "h a – h a",
1634
- "h": "h–h a"
1635
- },
1636
- "H": {
1637
- "H": "HH–HH"
1638
- },
1639
- "hm": {
1640
- "a": "h:mm a – h:mm a",
1641
- "h": "h:mm–h:mm a",
1642
- "m": "h:mm–h:mm a"
1643
- },
1644
- "Hm": {
1645
- "H": "HH:mm–HH:mm",
1646
- "m": "HH:mm–HH:mm"
1647
- },
1648
- "hmv": {
1649
- "a": "h:mm a – h:mm a v",
1650
- "h": "h:mm–h:mm a v",
1651
- "m": "h:mm–h:mm a v"
1652
- },
1653
- "Hmv": {
1654
- "H": "HH:mm–HH:mm v",
1655
- "m": "HH:mm–HH:mm v"
1656
- },
1657
- "hv": {
1658
- "a": "h a – h a v",
1659
- "h": "h–h a v"
1660
- },
1661
- "Hv": {
1662
- "H": "HH–HH v"
1663
- },
1664
- "M": {
1665
- "M": "M–M"
1666
- },
1667
- "Md": {
1668
- "d": "d/M – d/M",
1669
- "M": "d/M – d/M"
1670
- },
1671
- "MEd": {
1672
- "d": "E, d/M – E, d/M",
1673
- "M": "E, d/M – E, d/M"
1674
- },
1675
- "MMM": {
1676
- "M": "MMM–MMM"
1677
- },
1678
- "MMMd": {
1679
- "d": "d–d MMM",
1680
- "M": "d MMM – d MMM"
1681
- },
1682
- "MMMEd": {
1683
- "d": "E, d MMM – E, d MMM",
1684
- "M": "E, d MMM – E, d MMM"
1685
- },
1686
- "y": {
1687
- "y": "y–y G"
1688
- },
1689
- "yM": {
1690
- "M": "M/y – M/y G",
1691
- "y": "M/y – M/y G"
1692
- },
1693
- "yMd": {
1694
- "d": "d/M/y – d/M/y G",
1695
- "M": "d/M/y – d/M/y G",
1696
- "y": "d/M/y – d/M/y G"
1697
- },
1698
- "yMEd": {
1699
- "d": "E, d/M/y – E, d/M/y G",
1700
- "M": "E, d/M/y – E, d/M/y G",
1701
- "y": "E, d/M/y – E, d/M/y G"
1702
- },
1703
- "yMMM": {
1704
- "M": "MMM–MMM y G",
1705
- "y": "MMM y – MMM y G"
1706
- },
1707
- "yMMMd": {
1708
- "d": "d – d MMM y G",
1709
- "M": "d MMM – d MMM y G",
1710
- "y": "d MMM y – d MMM y G"
1711
- },
1712
- "yMMMEd": {
1713
- "d": "E, d MMM – E, d MMM y G",
1714
- "M": "E, d MMM – E, d MMM y G",
1715
- "y": "E, d MMM y – E, d MMM y G"
1716
- },
1717
- "yMMMM": {
1718
- "M": "MMMM–MMMM y G",
1719
- "y": "MMMM y – MMMM y G"
1720
- }
1721
- }
1722
- },
1723
- "months": {
1724
- "format": {
1725
- "abbreviated": [
1726
- "Muh.",
1727
- "Saf.",
1728
- "Rab. I",
1729
- "Rab. II",
1730
- "Jum. I",
1731
- "Jum. II",
1732
- "Raj.",
1733
- "Sha.",
1734
- "Ram.",
1735
- "Shaw.",
1736
- "Dhuʻl-Q.",
1737
- "Dhuʻl-H."
1738
- ],
1739
- "narrow": [
1740
- "1",
1741
- "2",
1742
- "3",
1743
- "4",
1744
- "5",
1745
- "6",
1746
- "7",
1747
- "8",
1748
- "9",
1749
- "10",
1750
- "11",
1751
- "12"
1752
- ],
1753
- "wide": [
1754
- "मुहर्रम",
1755
- "सफर",
1756
- "राबी प्रथम",
1757
- "राबी द्वितीय",
1758
- "जुम्डा प्रथम",
1759
- "जुम्डा द्वितीय",
1760
- "रजब",
1761
- "शावन",
1762
- "रमजान",
1763
- "शव्व्ल",
1764
- "जिल-क्दाह",
1765
- "जिल्-हिज्जाह"
1766
- ]
1767
- },
1768
- "stand-alone": {
1769
- "abbreviated": [
1770
- "Muh.",
1771
- "Saf.",
1772
- "Rab. I",
1773
- "Rab. II",
1774
- "Jum. I",
1775
- "Jum. II",
1776
- "Raj.",
1777
- "Sha.",
1778
- "Ram.",
1779
- "Shaw.",
1780
- "Dhuʻl-Q.",
1781
- "Dhuʻl-H."
1782
- ],
1783
- "narrow": [
1784
- "1",
1785
- "2",
1786
- "3",
1787
- "4",
1788
- "5",
1789
- "6",
1790
- "7",
1791
- "8",
1792
- "9",
1793
- "10",
1794
- "11",
1795
- "12"
1796
- ],
1797
- "wide": [
1798
- "मुहर्रम",
1799
- "सफर",
1800
- "राबी प्रथम",
1801
- "राबी द्वितीय",
1802
- "जुम्डा प्रथम",
1803
- "जुम्डा द्वितीय",
1804
- "रजब",
1805
- "शावन",
1806
- "रमजान",
1807
- "शव्व्ल",
1808
- "जिल-क्दाह",
1809
- "जिल्-हिज्जाह"
1810
- ]
1811
- }
1812
- },
1813
- "days": {
1814
- "format": {
1815
- "abbreviated": [
1816
- "रवि",
1817
- "सोम",
1818
- "मंगल",
1819
- "बुध",
1820
- "गुरु",
1821
- "शुक्र",
1822
- "शनि"
1823
- ],
1824
- "narrow": [
1825
- "र",
1826
- "सो",
1827
- "मं",
1828
- "बु",
1829
- "गु",
1830
- "शु",
1831
- "श"
1832
- ],
1833
- "short": [
1834
- "र",
1835
- "सो",
1836
- "मं",
1837
- "बु",
1838
- "गु",
1839
- "शु",
1840
- "श"
1841
- ],
1842
- "wide": [
1843
- "रविवार",
1844
- "सोमवार",
1845
- "मंगलवार",
1846
- "बुधवार",
1847
- "गुरुवार",
1848
- "शुक्रवार",
1849
- "शनिवार"
1850
- ]
1851
- },
1852
- "stand-alone": {
1853
- "abbreviated": [
1854
- "रवि",
1855
- "सोम",
1856
- "मंगल",
1857
- "बुध",
1858
- "गुरु",
1859
- "शुक्र",
1860
- "शनि"
1861
- ],
1862
- "narrow": [
1863
- "र",
1864
- "सो",
1865
- "मं",
1866
- "बु",
1867
- "गु",
1868
- "शु",
1869
- "श"
1870
- ],
1871
- "short": [
1872
- "र",
1873
- "सो",
1874
- "मं",
1875
- "बु",
1876
- "गु",
1877
- "शु",
1878
- "श"
1879
- ],
1880
- "wide": [
1881
- "रविवार",
1882
- "सोमवार",
1883
- "मंगलवार",
1884
- "बुधवार",
1885
- "गुरुवार",
1886
- "शुक्रवार",
1887
- "शनिवार"
1888
- ]
1889
- }
1890
- },
1891
- "quarters": {
1892
- "format": {
1893
- "abbreviated": [
1894
- "ति1",
1895
- "ति2",
1896
- "ति3",
1897
- "ति4"
1898
- ],
1899
- "narrow": [
1900
- "1",
1901
- "2",
1902
- "3",
1903
- "4"
1904
- ],
1905
- "wide": [
1906
- "पहली तिमाही",
1907
- "दूसरी तिमाही",
1908
- "तीसरी तिमाही",
1909
- "चौथी तिमाही"
1910
- ]
1911
- },
1912
- "stand-alone": {
1913
- "abbreviated": [
1914
- "ति1",
1915
- "ति2",
1916
- "ति3",
1917
- "ति4"
1918
- ],
1919
- "narrow": [
1920
- "1",
1921
- "2",
1922
- "3",
1923
- "4"
1924
- ],
1925
- "wide": [
1926
- "पहली तिमाही",
1927
- "दूसरी तिमाही",
1928
- "तीसरी तिमाही",
1929
- "चौथी तिमाही"
1930
- ]
1931
- }
1932
- },
1933
- "dayPeriods": {
1934
- "format": {
1935
- "abbreviated": [
1936
- "am",
1937
- "pm"
1938
- ],
1939
- "narrow": [
1940
- "am",
1941
- "pm"
1942
- ],
1943
- "wide": [
1944
- "am",
1945
- "pm"
1946
- ]
1947
- },
1948
- "stand-alone": {
1949
- "abbreviated": [
1950
- "am",
1951
- "pm"
1952
- ],
1953
- "narrow": [
1954
- "am",
1955
- "pm"
1956
- ],
1957
- "wide": [
1958
- "am",
1959
- "pm"
1960
- ]
1961
- }
1962
- },
1963
- "era-wide": {
1964
- "0": "AH"
1965
- },
1966
- "era-abbreviated": {
1967
- "0": "AH"
1968
- },
1969
- "era-narrow": {
1970
- "0": "AH"
1971
- }
1972
- },
1973
- "ca-japanese": {
1974
- "dateFormats": {
1975
- "full": "G EEEE, d MMMM y",
1976
- "long": "G d MMMM y",
1977
- "medium": "G d MMM y",
1978
- "short": "G d/M/y"
1979
- },
1980
- "timeFormats": {
1981
- "full": "h:mm:ss a zzzz",
1982
- "long": "h:mm:ss a z",
1983
- "medium": "h:mm:ss a",
1984
- "short": "h:mm a"
1985
- },
1986
- "dateTimeFormats": {
1987
- "full": "{1} को {0}",
1988
- "long": "{1} को {0}",
1989
- "medium": "{1}, {0}",
1990
- "short": "{1}, {0}",
1991
- "availableFormats": {
1992
- "Bh": "B h",
1993
- "Bhm": "B h:mm",
1994
- "Bhms": "B h:mm:ss",
1995
- "d": "d",
1996
- "E": "ccc",
1997
- "EBhm": "E B h:mm",
1998
- "EBhms": "E B h:mm:ss",
1999
- "Ed": "d E",
2000
- "Ehm": "E h:mm a",
2001
- "EHm": "E HH:mm",
2002
- "Ehms": "E h:mm:ss a",
2003
- "EHms": "E HH:mm:ss",
2004
- "Gy": "G y",
2005
- "GyMMM": "G y MMM",
2006
- "GyMMMd": "G d MMM y",
2007
- "GyMMMEd": "G E, d MMM y",
2008
- "h": "h a",
2009
- "H": "HH",
2010
- "hm": "h:mm a",
2011
- "Hm": "HH:mm",
2012
- "hms": "h:mm:ss a",
2013
- "Hms": "HH:mm:ss",
2014
- "M": "M",
2015
- "Md": "d/M",
2016
- "MEd": "E, d/M",
2017
- "MMdd": "dd-MM",
2018
- "MMM": "MMM",
2019
- "MMMd": "d MMM",
2020
- "MMMEd": "E, d MMM",
2021
- "MMMMd": "MMMM d",
2022
- "ms": "mm:ss",
2023
- "y": "G y",
2024
- "yyyy": "G y",
2025
- "yyyyM": "GGGGG M/y",
2026
- "yyyyMd": "G d/M/y",
2027
- "yyyyMEd": "G E, d/M/y",
2028
- "yyyyMMdd": "dd-MM-y G",
2029
- "yyyyMMM": "G MMM y",
2030
- "yyyyMMMd": "G d MMM y",
2031
- "yyyyMMMEd": "G E, d MMM y",
2032
- "yyyyMMMM": "G y MMMM",
2033
- "yyyyQQQ": "QQQ G y",
2034
- "yyyyQQQQ": "QQQQ G y"
2035
- },
2036
- "appendItems": {
2037
- "Day": "{0} ({2}: {1})",
2038
- "Day-Of-Week": "{0} {1}",
2039
- "Era": "{1} {0}",
2040
- "Hour": "{0} ({2}: {1})",
2041
- "Minute": "{0} ({2}: {1})",
2042
- "Month": "{0} ({2}: {1})",
2043
- "Quarter": "{0} ({2}: {1})",
2044
- "Second": "{0} ({2}: {1})",
2045
- "Timezone": "{0} {1}",
2046
- "Week": "{0} ({2}: {1})",
2047
- "Year": "{1} {0}"
2048
- },
2049
- "intervalFormats": {
2050
- "intervalFormatFallback": "{0} – {1}",
2051
- "Bh": {
2052
- "B": "B h – B h",
2053
- "h": "B h–h"
2054
- },
2055
- "Bhm": {
2056
- "B": "B h:mm – B h:mm",
2057
- "h": "B h:mm–h:mm",
2058
- "m": "B h:mm–h:mm"
2059
- },
2060
- "d": {
2061
- "d": "d–d"
2062
- },
2063
- "Gy": {
2064
- "G": "G y – G y",
2065
- "y": "G y–y"
2066
- },
2067
- "GyM": {
2068
- "G": "GGGGG y-MM – GGGGG y-MM",
2069
- "M": "GGGGG y-MM – y-MM",
2070
- "y": "GGGGG y-MM – y-MM"
2071
- },
2072
- "GyMd": {
2073
- "d": "GGGGG y-MM-dd – y-MM-dd",
2074
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2075
- "M": "GGGGG y-MM-dd – y-MM-dd",
2076
- "y": "GGGGG y-MM-dd – y-MM-dd"
2077
- },
2078
- "GyMEd": {
2079
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2080
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2081
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2082
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2083
- },
2084
- "GyMMM": {
2085
- "G": "G y MMM – G y MMM",
2086
- "M": "G y MMM–MMM",
2087
- "y": "G y MMM – y MMM"
2088
- },
2089
- "GyMMMd": {
2090
- "d": "G y MMM d–d",
2091
- "G": "G y MMM d – G y MMM d",
2092
- "M": "G y MMM d – MMM d",
2093
- "y": "G y MMM d – y MMM d"
2094
- },
2095
- "GyMMMEd": {
2096
- "d": "G y MMM d, E – MMM d, E",
2097
- "G": "G y MMM d, E – G y MMM d, E",
2098
- "M": "G y MMM d, E – MMM d, E",
2099
- "y": "G y MMM d, E – y MMM d, E"
2100
- },
2101
- "h": {
2102
- "a": "h a – h a",
2103
- "h": "h–h a"
2104
- },
2105
- "H": {
2106
- "H": "HH–HH"
2107
- },
2108
- "hm": {
2109
- "a": "h:mm a – h:mm a",
2110
- "h": "h:mm–h:mm a",
2111
- "m": "h:mm–h:mm a"
2112
- },
2113
- "Hm": {
2114
- "H": "HH:mm–HH:mm",
2115
- "m": "HH:mm–HH:mm"
2116
- },
2117
- "hmv": {
2118
- "a": "h:mm a – h:mm a v",
2119
- "h": "h:mm–h:mm a v",
2120
- "m": "h:mm–h:mm a v"
2121
- },
2122
- "Hmv": {
2123
- "H": "HH:mm–HH:mm v",
2124
- "m": "HH:mm–HH:mm v"
2125
- },
2126
- "hv": {
2127
- "a": "h a – h a v",
2128
- "h": "h–h a v"
2129
- },
2130
- "Hv": {
2131
- "H": "HH–HH v"
2132
- },
2133
- "M": {
2134
- "M": "M–M"
2135
- },
2136
- "Md": {
2137
- "d": "d/M – d/M",
2138
- "M": "d/M – d/M"
2139
- },
2140
- "MEd": {
2141
- "d": "E, d/M – E, d/M",
2142
- "M": "E, d/M – E, d/M"
2143
- },
2144
- "MMM": {
2145
- "M": "MMM–MMM"
2146
- },
2147
- "MMMd": {
2148
- "d": "d–d MMM",
2149
- "M": "d MMM – d MMM"
2150
- },
2151
- "MMMEd": {
2152
- "d": "E, d MMM – E, d MMM",
2153
- "M": "E, d MMM – E, d MMM"
2154
- },
2155
- "y": {
2156
- "y": "y–y G",
2157
- "G": "y G–y G"
2158
- },
2159
- "yM": {
2160
- "M": "M/y – M/y G",
2161
- "y": "M/y – M/y G",
2162
- "G": "M/y G – M/y G"
2163
- },
2164
- "yMd": {
2165
- "d": "d/M/y – d/M/y G",
2166
- "M": "d/M/y – d/M/y G",
2167
- "y": "d/M/y – d/M/y G",
2168
- "G": "d/M/y G – d/M/y G"
2169
- },
2170
- "yMEd": {
2171
- "d": "E, d/M/y – E, d/M/y G",
2172
- "M": "E, d/M/y – E, d/M/y G",
2173
- "y": "E, d/M/y – E, d/M/y G",
2174
- "G": "E, d/M/y G – E, d/M/y G"
2175
- },
2176
- "yMMM": {
2177
- "M": "MMM–MMM y G",
2178
- "y": "MMM y – MMM y G",
2179
- "G": "MMM y G – MMM y G"
2180
- },
2181
- "yMMMd": {
2182
- "d": "d – d MMM y G",
2183
- "M": "d MMM – d MMM y G",
2184
- "y": "d MMM y – d MMM y G",
2185
- "G": "d MMM y G – d MMM y G"
2186
- },
2187
- "yMMMEd": {
2188
- "d": "E, d MMM – E, d MMM y G",
2189
- "M": "E, d MMM – E, d MMM y G",
2190
- "y": "E, d MMM y – E, d MMM y G",
2191
- "G": "E, d MMM y G – E, d MMM y G"
2192
- },
2193
- "yMMMM": {
2194
- "M": "MMMM–MMMM y G",
2195
- "y": "MMMM y – MMMM y G",
2196
- "G": "MMMM y G – MMMM y G"
2197
- }
2198
- }
2199
- },
2200
- "months": {
2201
- "format": {
2202
- "abbreviated": [
2203
- "जन॰",
2204
- "फ़र॰",
2205
- "मार्च",
2206
- "अप्रैल",
2207
- "मई",
2208
- "जून",
2209
- "जुल॰",
2210
- "अग॰",
2211
- "सित॰",
2212
- "अक्तू॰",
2213
- "नव॰",
2214
- "दिस॰"
2215
- ],
2216
- "narrow": [
2217
- "ज",
2218
- "फ़",
2219
- "मा",
2220
- "अ",
2221
- "म",
2222
- "जू",
2223
- "जु",
2224
- "अ",
2225
- "सि",
2226
- "अ",
2227
- "न",
2228
- "दि"
2229
- ],
2230
- "wide": [
2231
- "जनवरी",
2232
- "फ़रवरी",
2233
- "मार्च",
2234
- "अप्रैल",
2235
- "मई",
2236
- "जून",
2237
- "जुलाई",
2238
- "अगस्त",
2239
- "सितंबर",
2240
- "अक्तूबर",
2241
- "नवंबर",
2242
- "दिसंबर"
2243
- ]
2244
- },
2245
- "stand-alone": {
2246
- "abbreviated": [
2247
- "जन॰",
2248
- "फ़र॰",
2249
- "मार्च",
2250
- "अप्रैल",
2251
- "मई",
2252
- "जून",
2253
- "जुल॰",
2254
- "अग॰",
2255
- "सित॰",
2256
- "अक्तू॰",
2257
- "नव॰",
2258
- "दिस॰"
2259
- ],
2260
- "narrow": [
2261
- "ज",
2262
- "फ़",
2263
- "मा",
2264
- "अ",
2265
- "म",
2266
- "जू",
2267
- "जु",
2268
- "अ",
2269
- "सि",
2270
- "अ",
2271
- "न",
2272
- "दि"
2273
- ],
2274
- "wide": [
2275
- "जनवरी",
2276
- "फ़रवरी",
2277
- "मार्च",
2278
- "अप्रैल",
2279
- "मई",
2280
- "जून",
2281
- "जुलाई",
2282
- "अगस्त",
2283
- "सितंबर",
2284
- "अक्तूबर",
2285
- "नवंबर",
2286
- "दिसंबर"
2287
- ]
2288
- }
2289
- },
2290
- "days": {
2291
- "format": {
2292
- "abbreviated": [
2293
- "रवि",
2294
- "सोम",
2295
- "मंगल",
2296
- "बुध",
2297
- "गुरु",
2298
- "शुक्र",
2299
- "शनि"
2300
- ],
2301
- "narrow": [
2302
- "र",
2303
- "सो",
2304
- "मं",
2305
- "बु",
2306
- "गु",
2307
- "शु",
2308
- "श"
2309
- ],
2310
- "short": [
2311
- "र",
2312
- "सो",
2313
- "मं",
2314
- "बु",
2315
- "गु",
2316
- "शु",
2317
- "श"
2318
- ],
2319
- "wide": [
2320
- "रविवार",
2321
- "सोमवार",
2322
- "मंगलवार",
2323
- "बुधवार",
2324
- "गुरुवार",
2325
- "शुक्रवार",
2326
- "शनिवार"
2327
- ]
2328
- },
2329
- "stand-alone": {
2330
- "abbreviated": [
2331
- "रवि",
2332
- "सोम",
2333
- "मंगल",
2334
- "बुध",
2335
- "गुरु",
2336
- "शुक्र",
2337
- "शनि"
2338
- ],
2339
- "narrow": [
2340
- "र",
2341
- "सो",
2342
- "मं",
2343
- "बु",
2344
- "गु",
2345
- "शु",
2346
- "श"
2347
- ],
2348
- "short": [
2349
- "र",
2350
- "सो",
2351
- "मं",
2352
- "बु",
2353
- "गु",
2354
- "शु",
2355
- "श"
2356
- ],
2357
- "wide": [
2358
- "रविवार",
2359
- "सोमवार",
2360
- "मंगलवार",
2361
- "बुधवार",
2362
- "गुरुवार",
2363
- "शुक्रवार",
2364
- "शनिवार"
2365
- ]
2366
- }
2367
- },
2368
- "quarters": {
2369
- "format": {
2370
- "abbreviated": [
2371
- "ति1",
2372
- "ति2",
2373
- "ति3",
2374
- "ति4"
2375
- ],
2376
- "narrow": [
2377
- "1",
2378
- "2",
2379
- "3",
2380
- "4"
2381
- ],
2382
- "wide": [
2383
- "पहली तिमाही",
2384
- "दूसरी तिमाही",
2385
- "तीसरी तिमाही",
2386
- "चौथी तिमाही"
2387
- ]
2388
- },
2389
- "stand-alone": {
2390
- "abbreviated": [
2391
- "ति1",
2392
- "ति2",
2393
- "ति3",
2394
- "ति4"
2395
- ],
2396
- "narrow": [
2397
- "1",
2398
- "2",
2399
- "3",
2400
- "4"
2401
- ],
2402
- "wide": [
2403
- "पहली तिमाही",
2404
- "दूसरी तिमाही",
2405
- "तीसरी तिमाही",
2406
- "चौथी तिमाही"
2407
- ]
2408
- }
2409
- },
2410
- "dayPeriods": {
2411
- "format": {
2412
- "abbreviated": [
2413
- "am",
2414
- "pm"
2415
- ],
2416
- "narrow": [
2417
- "am",
2418
- "pm"
2419
- ],
2420
- "wide": [
2421
- "am",
2422
- "pm"
2423
- ]
2424
- },
2425
- "stand-alone": {
2426
- "abbreviated": [
2427
- "am",
2428
- "pm"
2429
- ],
2430
- "narrow": [
2431
- "am",
2432
- "pm"
2433
- ],
2434
- "wide": [
2435
- "am",
2436
- "pm"
2437
- ]
2438
- }
2439
- },
2440
- "era-wide": {
2441
- "232": "मेजी",
2442
- "233": "ताईशो",
2443
- "234": "शोवा",
2444
- "235": "हेईसेई",
2445
- "236": "रेइवा"
2446
- },
2447
- "era-abbreviated": {
2448
- "232": "मेजी",
2449
- "233": "ताईशो",
2450
- "234": "शोवा",
2451
- "235": "हेईसेई",
2452
- "236": "रेइवा"
2453
- },
2454
- "era-narrow": {
2455
- "232": "M",
2456
- "233": "T",
2457
- "234": "S",
2458
- "235": "H",
2459
- "236": "R"
2460
- }
2461
- },
2462
- "ca-persian": {
2463
- "dateFormats": {
2464
- "full": "G EEEE, d MMMM y",
2465
- "long": "G d MMMM y",
2466
- "medium": "G d MMM y",
2467
- "short": "G d/M/y"
2468
- },
2469
- "timeFormats": {
2470
- "full": "h:mm:ss a zzzz",
2471
- "long": "h:mm:ss a z",
2472
- "medium": "h:mm:ss a",
2473
- "short": "h:mm a"
2474
- },
2475
- "dateTimeFormats": {
2476
- "full": "{1} को {0}",
2477
- "long": "{1} को {0}",
2478
- "medium": "{1}, {0}",
2479
- "short": "{1}, {0}",
2480
- "availableFormats": {
2481
- "Bh": "B h",
2482
- "Bhm": "B h:mm",
2483
- "Bhms": "B h:mm:ss",
2484
- "d": "d",
2485
- "E": "ccc",
2486
- "EBhm": "E B h:mm",
2487
- "EBhms": "E B h:mm:ss",
2488
- "Ed": "d E",
2489
- "Ehm": "E h:mm a",
2490
- "EHm": "E HH:mm",
2491
- "Ehms": "E h:mm:ss a",
2492
- "EHms": "E HH:mm:ss",
2493
- "Gy": "G y",
2494
- "GyMMM": "G y MMM",
2495
- "GyMMMd": "G d MMM y",
2496
- "GyMMMEd": "G E, d MMM y",
2497
- "h": "h a",
2498
- "H": "HH",
2499
- "hm": "h:mm a",
2500
- "Hm": "HH:mm",
2501
- "hms": "h:mm:ss a",
2502
- "Hms": "HH:mm:ss",
2503
- "M": "M",
2504
- "Md": "d/M",
2505
- "MEd": "E, d/M",
2506
- "MMdd": "dd-MM",
2507
- "MMM": "MMM",
2508
- "MMMd": "d MMM",
2509
- "MMMEd": "E, d MMM",
2510
- "MMMMd": "MMMM d",
2511
- "ms": "mm:ss",
2512
- "y": "G y",
2513
- "yyyy": "G y",
2514
- "yyyyM": "GGGGG M/y",
2515
- "yyyyMd": "G d/M/y",
2516
- "yyyyMEd": "G E, d/M/y",
2517
- "yyyyMMdd": "dd-MM-y G",
2518
- "yyyyMMM": "G MMM y",
2519
- "yyyyMMMd": "G d MMM y",
2520
- "yyyyMMMEd": "G E, d MMM y",
2521
- "yyyyMMMM": "G y MMMM",
2522
- "yyyyQQQ": "QQQ G y",
2523
- "yyyyQQQQ": "QQQQ G y"
2524
- },
2525
- "appendItems": {
2526
- "Day": "{0} ({2}: {1})",
2527
- "Day-Of-Week": "{0} {1}",
2528
- "Era": "{1} {0}",
2529
- "Hour": "{0} ({2}: {1})",
2530
- "Minute": "{0} ({2}: {1})",
2531
- "Month": "{0} ({2}: {1})",
2532
- "Quarter": "{0} ({2}: {1})",
2533
- "Second": "{0} ({2}: {1})",
2534
- "Timezone": "{0} {1}",
2535
- "Week": "{0} ({2}: {1})",
2536
- "Year": "{1} {0}"
2537
- },
2538
- "intervalFormats": {
2539
- "intervalFormatFallback": "{0} – {1}",
2540
- "Bh": {
2541
- "B": "B h – B h",
2542
- "h": "B h–h"
2543
- },
2544
- "Bhm": {
2545
- "B": "B h:mm – B h:mm",
2546
- "h": "B h:mm–h:mm",
2547
- "m": "B h:mm–h:mm"
2548
- },
2549
- "d": {
2550
- "d": "d–d"
2551
- },
2552
- "Gy": {
2553
- "G": "G y – G y",
2554
- "y": "G y–y"
2555
- },
2556
- "GyM": {
2557
- "G": "GGGGG y-MM – GGGGG y-MM",
2558
- "M": "GGGGG y-MM – y-MM",
2559
- "y": "GGGGG y-MM – y-MM"
2560
- },
2561
- "GyMd": {
2562
- "d": "GGGGG y-MM-dd – y-MM-dd",
2563
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2564
- "M": "GGGGG y-MM-dd – y-MM-dd",
2565
- "y": "GGGGG y-MM-dd – y-MM-dd"
2566
- },
2567
- "GyMEd": {
2568
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2569
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2570
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2571
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2572
- },
2573
- "GyMMM": {
2574
- "G": "G y MMM – G y MMM",
2575
- "M": "G y MMM–MMM",
2576
- "y": "G y MMM – y MMM"
2577
- },
2578
- "GyMMMd": {
2579
- "d": "G y MMM d–d",
2580
- "G": "G y MMM d – G y MMM d",
2581
- "M": "G y MMM d – MMM d",
2582
- "y": "G y MMM d – y MMM d"
2583
- },
2584
- "GyMMMEd": {
2585
- "d": "G y MMM d, E – MMM d, E",
2586
- "G": "G y MMM d, E – G y MMM d, E",
2587
- "M": "G y MMM d, E – MMM d, E",
2588
- "y": "G y MMM d, E – y MMM d, E"
2589
- },
2590
- "h": {
2591
- "a": "h a – h a",
2592
- "h": "h–h a"
2593
- },
2594
- "H": {
2595
- "H": "HH–HH"
2596
- },
2597
- "hm": {
2598
- "a": "h:mm a – h:mm a",
2599
- "h": "h:mm–h:mm a",
2600
- "m": "h:mm–h:mm a"
2601
- },
2602
- "Hm": {
2603
- "H": "HH:mm–HH:mm",
2604
- "m": "HH:mm–HH:mm"
2605
- },
2606
- "hmv": {
2607
- "a": "h:mm a – h:mm a v",
2608
- "h": "h:mm–h:mm a v",
2609
- "m": "h:mm–h:mm a v"
2610
- },
2611
- "Hmv": {
2612
- "H": "HH:mm–HH:mm v",
2613
- "m": "HH:mm–HH:mm v"
2614
- },
2615
- "hv": {
2616
- "a": "h a – h a v",
2617
- "h": "h–h a v"
2618
- },
2619
- "Hv": {
2620
- "H": "HH–HH v"
2621
- },
2622
- "M": {
2623
- "M": "M–M"
2624
- },
2625
- "Md": {
2626
- "d": "d/M – d/M",
2627
- "M": "d/M – d/M"
2628
- },
2629
- "MEd": {
2630
- "d": "E, d/M – E, d/M",
2631
- "M": "E, d/M – E, d/M"
2632
- },
2633
- "MMM": {
2634
- "M": "MMM–MMM"
2635
- },
2636
- "MMMd": {
2637
- "d": "d–d MMM",
2638
- "M": "d MMM – d MMM"
2639
- },
2640
- "MMMEd": {
2641
- "d": "E, d MMM – E, d MMM",
2642
- "M": "E, d MMM – E, d MMM"
2643
- },
2644
- "y": {
2645
- "y": "y–y G"
2646
- },
2647
- "yM": {
2648
- "M": "M/y – M/y G",
2649
- "y": "M/y – M/y G"
2650
- },
2651
- "yMd": {
2652
- "d": "d/M/y – d/M/y G",
2653
- "M": "d/M/y – d/M/y G",
2654
- "y": "d/M/y – d/M/y G"
2655
- },
2656
- "yMEd": {
2657
- "d": "E, d/M/y – E, d/M/y G",
2658
- "M": "E, d/M/y – E, d/M/y G",
2659
- "y": "E, d/M/y – E, d/M/y G"
2660
- },
2661
- "yMMM": {
2662
- "M": "MMM–MMM y G",
2663
- "y": "MMM y – MMM y G"
2664
- },
2665
- "yMMMd": {
2666
- "d": "d – d MMM y G",
2667
- "M": "d MMM – d MMM y G",
2668
- "y": "d MMM y – d MMM y G"
2669
- },
2670
- "yMMMEd": {
2671
- "d": "E, d MMM – E, d MMM y G",
2672
- "M": "E, d MMM – E, d MMM y G",
2673
- "y": "E, d MMM y – E, d MMM y G"
2674
- },
2675
- "yMMMM": {
2676
- "M": "MMMM–MMMM y G",
2677
- "y": "MMMM y – MMMM y G"
2678
- }
2679
- }
2680
- },
2681
- "months": {
2682
- "format": {
2683
- "abbreviated": [
2684
- "फर्वादिन",
2685
- "ओर्दिवेहेस्ट",
2686
- "खोरर्दाद",
2687
- "टिर",
2688
- "मोरदाद",
2689
- "शाहरीवर्",
2690
- "मेहर",
2691
- "अवन",
2692
- "अज़र",
2693
- "डे",
2694
- "बहमन",
2695
- "ईस्फन्द्"
2696
- ],
2697
- "narrow": [
2698
- "1",
2699
- "2",
2700
- "3",
2701
- "4",
2702
- "5",
2703
- "6",
2704
- "7",
2705
- "8",
2706
- "9",
2707
- "10",
2708
- "11",
2709
- "12"
2710
- ],
2711
- "wide": [
2712
- "फर्वादिन",
2713
- "ओर्दिवेहेस्ट",
2714
- "खोरर्दाद",
2715
- "टिर",
2716
- "मोरदाद",
2717
- "शाहरीवर्",
2718
- "मेहर",
2719
- "अवन",
2720
- "अज़र",
2721
- "डे",
2722
- "बहमन",
2723
- "ईस्फन्द्"
2724
- ]
2725
- },
2726
- "stand-alone": {
2727
- "abbreviated": [
2728
- "फर्वादिन",
2729
- "ओर्दिवेहेस्ट",
2730
- "खोरर्दाद",
2731
- "टिर",
2732
- "मोरदाद",
2733
- "शाहरीवर्",
2734
- "मेहर",
2735
- "अवन",
2736
- "अज़र",
2737
- "डे",
2738
- "बहमन",
2739
- "ईस्फन्द्"
2740
- ],
2741
- "narrow": [
2742
- "1",
2743
- "2",
2744
- "3",
2745
- "4",
2746
- "5",
2747
- "6",
2748
- "7",
2749
- "8",
2750
- "9",
2751
- "10",
2752
- "11",
2753
- "12"
2754
- ],
2755
- "wide": [
2756
- "फर्वादिन",
2757
- "ओर्दिवेहेस्ट",
2758
- "खोरर्दाद",
2759
- "टिर",
2760
- "मोरदाद",
2761
- "शाहरीवर्",
2762
- "मेहर",
2763
- "अवन",
2764
- "अज़र",
2765
- "डे",
2766
- "बहमन",
2767
- "ईस्फन्द्"
2768
- ]
2769
- }
2770
- },
2771
- "days": {
2772
- "format": {
2773
- "abbreviated": [
2774
- "रवि",
2775
- "सोम",
2776
- "मंगल",
2777
- "बुध",
2778
- "गुरु",
2779
- "शुक्र",
2780
- "शनि"
2781
- ],
2782
- "narrow": [
2783
- "र",
2784
- "सो",
2785
- "मं",
2786
- "बु",
2787
- "गु",
2788
- "शु",
2789
- "श"
2790
- ],
2791
- "short": [
2792
- "र",
2793
- "सो",
2794
- "मं",
2795
- "बु",
2796
- "गु",
2797
- "शु",
2798
- "श"
2799
- ],
2800
- "wide": [
2801
- "रविवार",
2802
- "सोमवार",
2803
- "मंगलवार",
2804
- "बुधवार",
2805
- "गुरुवार",
2806
- "शुक्रवार",
2807
- "शनिवार"
2808
- ]
2809
- },
2810
- "stand-alone": {
2811
- "abbreviated": [
2812
- "रवि",
2813
- "सोम",
2814
- "मंगल",
2815
- "बुध",
2816
- "गुरु",
2817
- "शुक्र",
2818
- "शनि"
2819
- ],
2820
- "narrow": [
2821
- "र",
2822
- "सो",
2823
- "मं",
2824
- "बु",
2825
- "गु",
2826
- "शु",
2827
- "श"
2828
- ],
2829
- "short": [
2830
- "र",
2831
- "सो",
2832
- "मं",
2833
- "बु",
2834
- "गु",
2835
- "शु",
2836
- "श"
2837
- ],
2838
- "wide": [
2839
- "रविवार",
2840
- "सोमवार",
2841
- "मंगलवार",
2842
- "बुधवार",
2843
- "गुरुवार",
2844
- "शुक्रवार",
2845
- "शनिवार"
2846
- ]
2847
- }
2848
- },
2849
- "quarters": {
2850
- "format": {
2851
- "abbreviated": [
2852
- "ति1",
2853
- "ति2",
2854
- "ति3",
2855
- "ति4"
2856
- ],
2857
- "narrow": [
2858
- "1",
2859
- "2",
2860
- "3",
2861
- "4"
2862
- ],
2863
- "wide": [
2864
- "पहली तिमाही",
2865
- "दूसरी तिमाही",
2866
- "तीसरी तिमाही",
2867
- "चौथी तिमाही"
2868
- ]
2869
- },
2870
- "stand-alone": {
2871
- "abbreviated": [
2872
- "ति1",
2873
- "ति2",
2874
- "ति3",
2875
- "ति4"
2876
- ],
2877
- "narrow": [
2878
- "1",
2879
- "2",
2880
- "3",
2881
- "4"
2882
- ],
2883
- "wide": [
2884
- "पहली तिमाही",
2885
- "दूसरी तिमाही",
2886
- "तीसरी तिमाही",
2887
- "चौथी तिमाही"
2888
- ]
2889
- }
2890
- },
2891
- "dayPeriods": {
2892
- "format": {
2893
- "abbreviated": [
2894
- "am",
2895
- "pm"
2896
- ],
2897
- "narrow": [
2898
- "am",
2899
- "pm"
2900
- ],
2901
- "wide": [
2902
- "am",
2903
- "pm"
2904
- ]
2905
- },
2906
- "stand-alone": {
2907
- "abbreviated": [
2908
- "am",
2909
- "pm"
2910
- ],
2911
- "narrow": [
2912
- "am",
2913
- "pm"
2914
- ],
2915
- "wide": [
2916
- "am",
2917
- "pm"
2918
- ]
2919
- }
2920
- },
2921
- "era-wide": {
2922
- "0": "AP"
2923
- },
2924
- "era-abbreviated": {
2925
- "0": "AP"
2926
- },
2927
- "era-narrow": {
2928
- "0": "AP"
2929
- }
2930
- },
2931
- "ca-buddhist": {
2932
- "dateFormats": {
2933
- "full": "G EEEE, d MMMM y",
2934
- "long": "G d MMMM y",
2935
- "medium": "G d MMM y",
2936
- "short": "G d/M/y"
2937
- },
2938
- "timeFormats": {
2939
- "full": "h:mm:ss a zzzz",
2940
- "long": "h:mm:ss a z",
2941
- "medium": "h:mm:ss a",
2942
- "short": "h:mm a"
2943
- },
2944
- "dateTimeFormats": {
2945
- "full": "{1} को {0}",
2946
- "long": "{1} को {0}",
2947
- "medium": "{1}, {0}",
2948
- "short": "{1}, {0}",
2949
- "availableFormats": {
2950
- "Bh": "B h",
2951
- "Bhm": "B h:mm",
2952
- "Bhms": "B h:mm:ss",
2953
- "d": "d",
2954
- "E": "ccc",
2955
- "EBhm": "E B h:mm",
2956
- "EBhms": "E B h:mm:ss",
2957
- "Ed": "d E",
2958
- "Ehm": "E h:mm a",
2959
- "EHm": "E HH:mm",
2960
- "Ehms": "E h:mm:ss a",
2961
- "EHms": "E HH:mm:ss",
2962
- "Gy": "G y",
2963
- "GyMMM": "G y MMM",
2964
- "GyMMMd": "G d MMM y",
2965
- "GyMMMEd": "G E, d MMM y",
2966
- "h": "h a",
2967
- "H": "HH",
2968
- "hm": "h:mm a",
2969
- "Hm": "HH:mm",
2970
- "hms": "h:mm:ss a",
2971
- "Hms": "HH:mm:ss",
2972
- "M": "M",
2973
- "Md": "d/M",
2974
- "MEd": "E, d/M",
2975
- "MMdd": "dd-MM",
2976
- "MMM": "MMM",
2977
- "MMMd": "d MMM",
2978
- "MMMEd": "E, d MMM",
2979
- "MMMMd": "MMMM d",
2980
- "ms": "mm:ss",
2981
- "y": "G y",
2982
- "yyyy": "G y",
2983
- "yyyyM": "GGGGG M/y",
2984
- "yyyyMd": "G d/M/y",
2985
- "yyyyMEd": "G E, d/M/y",
2986
- "yyyyMMdd": "dd-MM-y G",
2987
- "yyyyMMM": "G MMM y",
2988
- "yyyyMMMd": "G d MMM y",
2989
- "yyyyMMMEd": "G E, d MMM y",
2990
- "yyyyMMMM": "G y MMMM",
2991
- "yyyyQQQ": "QQQ G y",
2992
- "yyyyQQQQ": "QQQQ G y"
2993
- },
2994
- "appendItems": {
2995
- "Day": "{0} ({2}: {1})",
2996
- "Day-Of-Week": "{0} {1}",
2997
- "Era": "{1} {0}",
2998
- "Hour": "{0} ({2}: {1})",
2999
- "Minute": "{0} ({2}: {1})",
3000
- "Month": "{0} ({2}: {1})",
3001
- "Quarter": "{0} ({2}: {1})",
3002
- "Second": "{0} ({2}: {1})",
3003
- "Timezone": "{0} {1}",
3004
- "Week": "{0} ({2}: {1})",
3005
- "Year": "{1} {0}"
3006
- },
3007
- "intervalFormats": {
3008
- "intervalFormatFallback": "{0} – {1}",
3009
- "Bh": {
3010
- "B": "B h – B h",
3011
- "h": "B h–h"
3012
- },
3013
- "Bhm": {
3014
- "B": "B h:mm – B h:mm",
3015
- "h": "B h:mm–h:mm",
3016
- "m": "B h:mm–h:mm"
3017
- },
3018
- "d": {
3019
- "d": "d–d"
3020
- },
3021
- "Gy": {
3022
- "G": "G y – G y",
3023
- "y": "G y–y"
3024
- },
3025
- "GyM": {
3026
- "G": "GGGGG y-MM – GGGGG y-MM",
3027
- "M": "GGGGG y-MM – y-MM",
3028
- "y": "GGGGG y-MM – y-MM"
3029
- },
3030
- "GyMd": {
3031
- "d": "GGGGG y-MM-dd – y-MM-dd",
3032
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3033
- "M": "GGGGG y-MM-dd – y-MM-dd",
3034
- "y": "GGGGG y-MM-dd – y-MM-dd"
3035
- },
3036
- "GyMEd": {
3037
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3038
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3039
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3040
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3041
- },
3042
- "GyMMM": {
3043
- "G": "G y MMM – G y MMM",
3044
- "M": "G y MMM–MMM",
3045
- "y": "G y MMM – y MMM"
3046
- },
3047
- "GyMMMd": {
3048
- "d": "G y MMM d–d",
3049
- "G": "G y MMM d – G y MMM d",
3050
- "M": "G y MMM d – MMM d",
3051
- "y": "G y MMM d – y MMM d"
3052
- },
3053
- "GyMMMEd": {
3054
- "d": "G y MMM d, E – MMM d, E",
3055
- "G": "G y MMM d, E – G y MMM d, E",
3056
- "M": "G y MMM d, E – MMM d, E",
3057
- "y": "G y MMM d, E – y MMM d, E"
3058
- },
3059
- "h": {
3060
- "a": "h a – h a",
3061
- "h": "h–h a"
3062
- },
3063
- "H": {
3064
- "H": "HH–HH"
3065
- },
3066
- "hm": {
3067
- "a": "h:mm a – h:mm a",
3068
- "h": "h:mm–h:mm a",
3069
- "m": "h:mm–h:mm a"
3070
- },
3071
- "Hm": {
3072
- "H": "HH:mm–HH:mm",
3073
- "m": "HH:mm–HH:mm"
3074
- },
3075
- "hmv": {
3076
- "a": "h:mm a – h:mm a v",
3077
- "h": "h:mm–h:mm a v",
3078
- "m": "h:mm–h:mm a v"
3079
- },
3080
- "Hmv": {
3081
- "H": "HH:mm–HH:mm v",
3082
- "m": "HH:mm–HH:mm v"
3083
- },
3084
- "hv": {
3085
- "a": "h a – h a v",
3086
- "h": "h–h a v"
3087
- },
3088
- "Hv": {
3089
- "H": "HH–HH v"
3090
- },
3091
- "M": {
3092
- "M": "M–M"
3093
- },
3094
- "Md": {
3095
- "d": "d/M – d/M",
3096
- "M": "d/M – d/M"
3097
- },
3098
- "MEd": {
3099
- "d": "E, d/M – E, d/M",
3100
- "M": "E, d/M – E, d/M"
3101
- },
3102
- "MMM": {
3103
- "M": "MMM–MMM"
3104
- },
3105
- "MMMd": {
3106
- "d": "d–d MMM",
3107
- "M": "d MMM – d MMM"
3108
- },
3109
- "MMMEd": {
3110
- "d": "E, d MMM – E, d MMM",
3111
- "M": "E, d MMM – E, d MMM"
3112
- },
3113
- "y": {
3114
- "y": "y–y G"
3115
- },
3116
- "yM": {
3117
- "M": "M/y – M/y G",
3118
- "y": "M/y – M/y G"
3119
- },
3120
- "yMd": {
3121
- "d": "d/M/y – d/M/y G",
3122
- "M": "d/M/y – d/M/y G",
3123
- "y": "d/M/y – d/M/y G"
3124
- },
3125
- "yMEd": {
3126
- "d": "E, d/M/y – E, d/M/y G",
3127
- "M": "E, d/M/y – E, d/M/y G",
3128
- "y": "E, d/M/y – E, d/M/y G"
3129
- },
3130
- "yMMM": {
3131
- "M": "MMM–MMM y G",
3132
- "y": "MMM y – MMM y G"
3133
- },
3134
- "yMMMd": {
3135
- "d": "d – d MMM y G",
3136
- "M": "d MMM – d MMM y G",
3137
- "y": "d MMM y – d MMM y G"
3138
- },
3139
- "yMMMEd": {
3140
- "d": "E, d MMM – E, d MMM y G",
3141
- "M": "E, d MMM – E, d MMM y G",
3142
- "y": "E, d MMM y – E, d MMM y G"
3143
- },
3144
- "yMMMM": {
3145
- "M": "MMMM–MMMM y G",
3146
- "y": "MMMM y – MMMM y G"
3147
- }
3148
- }
3149
- },
3150
- "months": {
3151
- "format": {
3152
- "abbreviated": [
3153
- "जन॰",
3154
- "फ़र॰",
3155
- "मार्च",
3156
- "अप्रैल",
3157
- "मई",
3158
- "जून",
3159
- "जुल॰",
3160
- "अग॰",
3161
- "सित॰",
3162
- "अक्तू॰",
3163
- "नव॰",
3164
- "दिस॰"
3165
- ],
3166
- "narrow": [
3167
- "ज",
3168
- "फ़",
3169
- "मा",
3170
- "अ",
3171
- "म",
3172
- "जू",
3173
- "जु",
3174
- "अ",
3175
- "सि",
3176
- "अ",
3177
- "न",
3178
- "दि"
3179
- ],
3180
- "wide": [
3181
- "जनवरी",
3182
- "फ़रवरी",
3183
- "मार्च",
3184
- "अप्रैल",
3185
- "मई",
3186
- "जून",
3187
- "जुलाई",
3188
- "अगस्त",
3189
- "सितंबर",
3190
- "अक्तूबर",
3191
- "नवंबर",
3192
- "दिसंबर"
3193
- ]
3194
- },
3195
- "stand-alone": {
3196
- "abbreviated": [
3197
- "जन॰",
3198
- "फ़र॰",
3199
- "मार्च",
3200
- "अप्रैल",
3201
- "मई",
3202
- "जून",
3203
- "जुल॰",
3204
- "अग॰",
3205
- "सित॰",
3206
- "अक्तू॰",
3207
- "नव॰",
3208
- "दिस॰"
3209
- ],
3210
- "narrow": [
3211
- "ज",
3212
- "फ़",
3213
- "मा",
3214
- "अ",
3215
- "म",
3216
- "जू",
3217
- "जु",
3218
- "अ",
3219
- "सि",
3220
- "अ",
3221
- "न",
3222
- "दि"
3223
- ],
3224
- "wide": [
3225
- "जनवरी",
3226
- "फ़रवरी",
3227
- "मार्च",
3228
- "अप्रैल",
3229
- "मई",
3230
- "जून",
3231
- "जुलाई",
3232
- "अगस्त",
3233
- "सितंबर",
3234
- "अक्तूबर",
3235
- "नवंबर",
3236
- "दिसंबर"
3237
- ]
3238
- }
3239
- },
3240
- "days": {
3241
- "format": {
3242
- "abbreviated": [
3243
- "रवि",
3244
- "सोम",
3245
- "मंगल",
3246
- "बुध",
3247
- "गुरु",
3248
- "शुक्र",
3249
- "शनि"
3250
- ],
3251
- "narrow": [
3252
- "र",
3253
- "सो",
3254
- "मं",
3255
- "बु",
3256
- "गु",
3257
- "शु",
3258
- "श"
3259
- ],
3260
- "short": [
3261
- "र",
3262
- "सो",
3263
- "मं",
3264
- "बु",
3265
- "गु",
3266
- "शु",
3267
- "श"
3268
- ],
3269
- "wide": [
3270
- "रविवार",
3271
- "सोमवार",
3272
- "मंगलवार",
3273
- "बुधवार",
3274
- "गुरुवार",
3275
- "शुक्रवार",
3276
- "शनिवार"
3277
- ]
3278
- },
3279
- "stand-alone": {
3280
- "abbreviated": [
3281
- "रवि",
3282
- "सोम",
3283
- "मंगल",
3284
- "बुध",
3285
- "गुरु",
3286
- "शुक्र",
3287
- "शनि"
3288
- ],
3289
- "narrow": [
3290
- "र",
3291
- "सो",
3292
- "मं",
3293
- "बु",
3294
- "गु",
3295
- "शु",
3296
- "श"
3297
- ],
3298
- "short": [
3299
- "र",
3300
- "सो",
3301
- "मं",
3302
- "बु",
3303
- "गु",
3304
- "शु",
3305
- "श"
3306
- ],
3307
- "wide": [
3308
- "रविवार",
3309
- "सोमवार",
3310
- "मंगलवार",
3311
- "बुधवार",
3312
- "गुरुवार",
3313
- "शुक्रवार",
3314
- "शनिवार"
3315
- ]
3316
- }
3317
- },
3318
- "quarters": {
3319
- "format": {
3320
- "abbreviated": [
3321
- "ति1",
3322
- "ति2",
3323
- "ति3",
3324
- "ति4"
3325
- ],
3326
- "narrow": [
3327
- "1",
3328
- "2",
3329
- "3",
3330
- "4"
3331
- ],
3332
- "wide": [
3333
- "पहली तिमाही",
3334
- "दूसरी तिमाही",
3335
- "तीसरी तिमाही",
3336
- "चौथी तिमाही"
3337
- ]
3338
- },
3339
- "stand-alone": {
3340
- "abbreviated": [
3341
- "ति1",
3342
- "ति2",
3343
- "ति3",
3344
- "ति4"
3345
- ],
3346
- "narrow": [
3347
- "1",
3348
- "2",
3349
- "3",
3350
- "4"
3351
- ],
3352
- "wide": [
3353
- "पहली तिमाही",
3354
- "दूसरी तिमाही",
3355
- "तीसरी तिमाही",
3356
- "चौथी तिमाही"
3357
- ]
3358
- }
3359
- },
3360
- "dayPeriods": {
3361
- "format": {
3362
- "abbreviated": [
3363
- "am",
3364
- "pm"
3365
- ],
3366
- "narrow": [
3367
- "am",
3368
- "pm"
3369
- ],
3370
- "wide": [
3371
- "am",
3372
- "pm"
3373
- ]
3374
- },
3375
- "stand-alone": {
3376
- "abbreviated": [
3377
- "am",
3378
- "pm"
3379
- ],
3380
- "narrow": [
3381
- "am",
3382
- "pm"
3383
- ],
3384
- "wide": [
3385
- "am",
3386
- "pm"
3387
- ]
3388
- }
3389
- },
3390
- "era-wide": {
3391
- "0": "BE"
3392
- },
3393
- "era-abbreviated": {
3394
- "0": "BE"
3395
- },
3396
- "era-narrow": {
3397
- "0": "BE"
3398
- }
3399
- },
3400
- "dateFields": {
3401
- "era": {
3402
- "displayName": "युग"
3403
- },
3404
- "year-wide": {
3405
- "displayName": "वर्ष",
3406
- "relative-type--1": "पिछला वर्ष",
3407
- "relative-type-0": "इस वर्ष",
3408
- "relative-type-1": "अगला वर्ष",
3409
- "relativeTime-type-future": {
3410
- "relativeTimePattern-count-one": "{0} वर्ष में",
3411
- "relativeTimePattern-count-other": "{0} वर्ष में"
3412
- },
3413
- "relativeTime-type-past": {
3414
- "relativeTimePattern-count-one": "{0} वर्ष पहले",
3415
- "relativeTimePattern-count-other": "{0} वर्ष पहले"
3416
- }
3417
- },
3418
- "year-short": {
3419
- "displayName": "वर्ष",
3420
- "relative-type--1": "पिछला वर्ष",
3421
- "relative-type-0": "इस वर्ष",
3422
- "relative-type-1": "अगला वर्ष",
3423
- "relativeTime-type-future": {
3424
- "relativeTimePattern-count-one": "{0} वर्ष में",
3425
- "relativeTimePattern-count-other": "{0} वर्ष में"
3426
- },
3427
- "relativeTime-type-past": {
3428
- "relativeTimePattern-count-one": "{0} वर्ष पहले",
3429
- "relativeTimePattern-count-other": "{0} वर्ष पहले"
3430
- }
3431
- },
3432
- "year-narrow": {
3433
- "displayName": "वर्ष",
3434
- "relative-type--1": "पिछला वर्ष",
3435
- "relative-type-0": "इस वर्ष",
3436
- "relative-type-1": "अगला वर्ष",
3437
- "relativeTime-type-future": {
3438
- "relativeTimePattern-count-one": "{0} वर्ष में",
3439
- "relativeTimePattern-count-other": "{0} वर्ष में"
3440
- },
3441
- "relativeTime-type-past": {
3442
- "relativeTimePattern-count-one": "{0} वर्ष पहले",
3443
- "relativeTimePattern-count-other": "{0} वर्ष पहले"
3444
- }
3445
- },
3446
- "quarter-wide": {
3447
- "displayName": "तिमाही",
3448
- "relative-type--1": "अंतिम तिमाही",
3449
- "relative-type-0": "इस तिमाही",
3450
- "relative-type-1": "अगली तिमाही",
3451
- "relativeTime-type-future": {
3452
- "relativeTimePattern-count-one": "{0} तिमाही में",
3453
- "relativeTimePattern-count-other": "{0} तिमाहियों में"
3454
- },
3455
- "relativeTime-type-past": {
3456
- "relativeTimePattern-count-one": "{0} तिमाही पहले",
3457
- "relativeTimePattern-count-other": "{0} तिमाही पहले"
3458
- }
3459
- },
3460
- "quarter-short": {
3461
- "displayName": "तिमाही",
3462
- "relative-type--1": "अंतिम तिमाही",
3463
- "relative-type-0": "इस तिमाही",
3464
- "relative-type-1": "अगली तिमाही",
3465
- "relativeTime-type-future": {
3466
- "relativeTimePattern-count-one": "{0} तिमाही में",
3467
- "relativeTimePattern-count-other": "{0} तिमाहियों में"
3468
- },
3469
- "relativeTime-type-past": {
3470
- "relativeTimePattern-count-one": "{0} तिमाही पहले",
3471
- "relativeTimePattern-count-other": "{0} तिमाहियों पहले"
3472
- }
3473
- },
3474
- "quarter-narrow": {
3475
- "displayName": "तिमाही",
3476
- "relative-type--1": "अंतिम तिमाही",
3477
- "relative-type-0": "इस तिमाही",
3478
- "relative-type-1": "अगली तिमाही",
3479
- "relativeTime-type-future": {
3480
- "relativeTimePattern-count-one": "{0} ति॰ में",
3481
- "relativeTimePattern-count-other": "{0} ति॰ में"
3482
- },
3483
- "relativeTime-type-past": {
3484
- "relativeTimePattern-count-one": "{0} ति॰ पहले",
3485
- "relativeTimePattern-count-other": "{0} ति॰ पहले"
3486
- }
3487
- },
3488
- "month-wide": {
3489
- "displayName": "माह",
3490
- "relative-type--1": "पिछला माह",
3491
- "relative-type-0": "इस माह",
3492
- "relative-type-1": "अगला माह",
3493
- "relativeTime-type-future": {
3494
- "relativeTimePattern-count-one": "{0} माह में",
3495
- "relativeTimePattern-count-other": "{0} माह में"
3496
- },
3497
- "relativeTime-type-past": {
3498
- "relativeTimePattern-count-one": "{0} माह पहले",
3499
- "relativeTimePattern-count-other": "{0} माह पहले"
3500
- }
3501
- },
3502
- "month-short": {
3503
- "displayName": "माह",
3504
- "relative-type--1": "पिछला माह",
3505
- "relative-type-0": "इस माह",
3506
- "relative-type-1": "अगला माह",
3507
- "relativeTime-type-future": {
3508
- "relativeTimePattern-count-one": "{0} माह में",
3509
- "relativeTimePattern-count-other": "{0} माह में"
3510
- },
3511
- "relativeTime-type-past": {
3512
- "relativeTimePattern-count-one": "{0} माह पहले",
3513
- "relativeTimePattern-count-other": "{0} माह पहले"
3514
- }
3515
- },
3516
- "month-narrow": {
3517
- "displayName": "माह",
3518
- "relative-type--1": "पिछला माह",
3519
- "relative-type-0": "इस माह",
3520
- "relative-type-1": "अगला माह",
3521
- "relativeTime-type-future": {
3522
- "relativeTimePattern-count-one": "{0} माह में",
3523
- "relativeTimePattern-count-other": "{0} माह में"
3524
- },
3525
- "relativeTime-type-past": {
3526
- "relativeTimePattern-count-one": "{0} माह पहले",
3527
- "relativeTimePattern-count-other": "{0} माह पहले"
3528
- }
3529
- },
3530
- "week-wide": {
3531
- "displayName": "सप्ताह",
3532
- "relative-type--1": "पिछला सप्ताह",
3533
- "relative-type-0": "इस सप्ताह",
3534
- "relative-type-1": "अगला सप्ताह",
3535
- "relativeTime-type-future": {
3536
- "relativeTimePattern-count-one": "{0} सप्ताह में",
3537
- "relativeTimePattern-count-other": "{0} सप्ताह में"
3538
- },
3539
- "relativeTime-type-past": {
3540
- "relativeTimePattern-count-one": "{0} सप्ताह पहले",
3541
- "relativeTimePattern-count-other": "{0} सप्ताह पहले"
3542
- },
3543
- "relativePeriod": "{0} के सप्ताह"
3544
- },
3545
- "week-short": {
3546
- "displayName": "सप्ताह",
3547
- "relative-type--1": "पिछला सप्ताह",
3548
- "relative-type-0": "इस सप्ताह",
3549
- "relative-type-1": "अगला सप्ताह",
3550
- "relativeTime-type-future": {
3551
- "relativeTimePattern-count-one": "{0} सप्ताह में",
3552
- "relativeTimePattern-count-other": "{0} सप्ताह में"
3553
- },
3554
- "relativeTime-type-past": {
3555
- "relativeTimePattern-count-one": "{0} सप्ताह पहले",
3556
- "relativeTimePattern-count-other": "{0} सप्ताह पहले"
3557
- },
3558
- "relativePeriod": "{0} के सप्ताह"
3559
- },
3560
- "week-narrow": {
3561
- "displayName": "सप्ताह",
3562
- "relative-type--1": "पिछला सप्ताह",
3563
- "relative-type-0": "इस सप्ताह",
3564
- "relative-type-1": "अगला सप्ताह",
3565
- "relativeTime-type-future": {
3566
- "relativeTimePattern-count-one": "{0} सप्ताह में",
3567
- "relativeTimePattern-count-other": "{0} सप्ताह में"
3568
- },
3569
- "relativeTime-type-past": {
3570
- "relativeTimePattern-count-one": "{0} सप्ताह पहले",
3571
- "relativeTimePattern-count-other": "{0} सप्ताह पहले"
3572
- },
3573
- "relativePeriod": "{0} के सप्ताह"
3574
- },
3575
- "day-wide": {
3576
- "displayName": "दिन",
3577
- "relative-type--2": "परसों",
3578
- "relative-type--1": "कल",
3579
- "relative-type-0": "आज",
3580
- "relative-type-1": "कल",
3581
- "relative-type-2": "परसों",
3582
- "relativeTime-type-future": {
3583
- "relativeTimePattern-count-one": "{0} दिन में",
3584
- "relativeTimePattern-count-other": "{0} दिन में"
3585
- },
3586
- "relativeTime-type-past": {
3587
- "relativeTimePattern-count-one": "{0} दिन पहले",
3588
- "relativeTimePattern-count-other": "{0} दिन पहले"
3589
- }
3590
- },
3591
- "day-short": {
3592
- "displayName": "दिन",
3593
- "relative-type--2": "परसों",
3594
- "relative-type--1": "कल",
3595
- "relative-type-0": "आज",
3596
- "relative-type-1": "कल",
3597
- "relative-type-2": "परसों",
3598
- "relativeTime-type-future": {
3599
- "relativeTimePattern-count-one": "{0} दिन में",
3600
- "relativeTimePattern-count-other": "{0} दिन में"
3601
- },
3602
- "relativeTime-type-past": {
3603
- "relativeTimePattern-count-one": "{0} दिन पहले",
3604
- "relativeTimePattern-count-other": "{0} दिन पहले"
3605
- }
3606
- },
3607
- "day-narrow": {
3608
- "displayName": "दिन",
3609
- "relative-type--2": "परसों",
3610
- "relative-type--1": "कल",
3611
- "relative-type-0": "आज",
3612
- "relative-type-1": "कल",
3613
- "relative-type-2": "परसों",
3614
- "relativeTime-type-future": {
3615
- "relativeTimePattern-count-one": "{0} दिन में",
3616
- "relativeTimePattern-count-other": "{0} दिन में"
3617
- },
3618
- "relativeTime-type-past": {
3619
- "relativeTimePattern-count-one": "{0} दिन पहले",
3620
- "relativeTimePattern-count-other": "{0} दिन पहले"
3621
- }
3622
- },
3623
- "weekday": {
3624
- "displayName": "सप्ताह का दिन"
3625
- },
3626
- "hour-wide": {
3627
- "displayName": "घंटा",
3628
- "relative-type-0": "यह घंटा",
3629
- "relativeTime-type-future": {
3630
- "relativeTimePattern-count-one": "{0} घंटे में",
3631
- "relativeTimePattern-count-other": "{0} घंटे में"
3632
- },
3633
- "relativeTime-type-past": {
3634
- "relativeTimePattern-count-one": "{0} घंटे पहले",
3635
- "relativeTimePattern-count-other": "{0} घंटे पहले"
3636
- }
3637
- },
3638
- "hour-short": {
3639
- "displayName": "घं॰",
3640
- "relative-type-0": "यह घंटा",
3641
- "relativeTime-type-future": {
3642
- "relativeTimePattern-count-one": "{0} घं॰ में",
3643
- "relativeTimePattern-count-other": "{0} घं॰ में"
3644
- },
3645
- "relativeTime-type-past": {
3646
- "relativeTimePattern-count-one": "{0} घं॰ पहले",
3647
- "relativeTimePattern-count-other": "{0} घं॰ पहले"
3648
- }
3649
- },
3650
- "hour-narrow": {
3651
- "displayName": "घं॰",
3652
- "relative-type-0": "यह घंटा",
3653
- "relativeTime-type-future": {
3654
- "relativeTimePattern-count-one": "{0} घं॰ में",
3655
- "relativeTimePattern-count-other": "{0} घं॰ में"
3656
- },
3657
- "relativeTime-type-past": {
3658
- "relativeTimePattern-count-one": "{0} घं॰ पहले",
3659
- "relativeTimePattern-count-other": "{0} घं॰ पहले"
3660
- }
3661
- },
3662
- "minute-wide": {
3663
- "displayName": "मिनट",
3664
- "relative-type-0": "यह मिनट",
3665
- "relativeTime-type-future": {
3666
- "relativeTimePattern-count-one": "{0} मिनट में",
3667
- "relativeTimePattern-count-other": "{0} मिनट में"
3668
- },
3669
- "relativeTime-type-past": {
3670
- "relativeTimePattern-count-one": "{0} मिनट पहले",
3671
- "relativeTimePattern-count-other": "{0} मिनट पहले"
3672
- }
3673
- },
3674
- "minute-short": {
3675
- "displayName": "मि॰",
3676
- "relative-type-0": "यह मिनट",
3677
- "relativeTime-type-future": {
3678
- "relativeTimePattern-count-one": "{0} मि॰ में",
3679
- "relativeTimePattern-count-other": "{0} मि॰ में"
3680
- },
3681
- "relativeTime-type-past": {
3682
- "relativeTimePattern-count-one": "{0} मि॰ पहले",
3683
- "relativeTimePattern-count-other": "{0} मि॰ पहले"
3684
- }
3685
- },
3686
- "minute-narrow": {
3687
- "displayName": "मि॰",
3688
- "relative-type-0": "यह मिनट",
3689
- "relativeTime-type-future": {
3690
- "relativeTimePattern-count-one": "{0} मि॰ में",
3691
- "relativeTimePattern-count-other": "{0} मि॰ में"
3692
- },
3693
- "relativeTime-type-past": {
3694
- "relativeTimePattern-count-one": "{0} मि॰ पहले",
3695
- "relativeTimePattern-count-other": "{0} मि॰ पहले"
3696
- }
3697
- },
3698
- "second-wide": {
3699
- "displayName": "सेकंड",
3700
- "relative-type-0": "अब",
3701
- "relativeTime-type-future": {
3702
- "relativeTimePattern-count-one": "{0} सेकंड में",
3703
- "relativeTimePattern-count-other": "{0} सेकंड में"
3704
- },
3705
- "relativeTime-type-past": {
3706
- "relativeTimePattern-count-one": "{0} सेकंड पहले",
3707
- "relativeTimePattern-count-other": "{0} सेकंड पहले"
3708
- }
3709
- },
3710
- "second-short": {
3711
- "displayName": "से॰",
3712
- "relative-type-0": "अब",
3713
- "relativeTime-type-future": {
3714
- "relativeTimePattern-count-one": "{0} से॰ में",
3715
- "relativeTimePattern-count-other": "{0} से॰ में"
3716
- },
3717
- "relativeTime-type-past": {
3718
- "relativeTimePattern-count-one": "{0} से॰ पहले",
3719
- "relativeTimePattern-count-other": "{0} से॰ पहले"
3720
- }
3721
- },
3722
- "second-narrow": {
3723
- "displayName": "से॰",
3724
- "relative-type-0": "अब",
3725
- "relativeTime-type-future": {
3726
- "relativeTimePattern-count-one": "{0} से॰ में",
3727
- "relativeTimePattern-count-other": "{0} से॰ में"
3728
- },
3729
- "relativeTime-type-past": {
3730
- "relativeTimePattern-count-one": "{0} से॰ पहले",
3731
- "relativeTimePattern-count-other": "{0} से॰ पहले"
3732
- }
3733
- },
3734
- "zone": {
3735
- "displayName": "समय क्षेत्र"
3736
- }
3737
- },
3738
- "decimalFormat": {
3739
- "standard": "#,##,##0.###"
3740
- },
3741
- "decimalFormat-long": {
3742
- "1000-one": "0 हज़ार",
3743
- "1000-other": "0 हज़ार",
3744
- "10000-one": "00 हज़ार",
3745
- "10000-other": "00 हज़ार",
3746
- "100000-one": "0 लाख",
3747
- "100000-other": "0 लाख",
3748
- "1000000-one": "00 लाख",
3749
- "1000000-other": "00 लाख",
3750
- "10000000-one": "0 करोड़",
3751
- "10000000-other": "0 करोड़",
3752
- "100000000-one": "00 करोड़",
3753
- "100000000-other": "00 करोड़",
3754
- "1000000000-one": "0 अरब",
3755
- "1000000000-other": "0 अरब",
3756
- "10000000000-one": "00 अरब",
3757
- "10000000000-other": "00 अरब",
3758
- "100000000000-one": "0 खरब",
3759
- "100000000000-other": "0 खरब",
3760
- "1000000000000-one": "00 खरब",
3761
- "1000000000000-other": "00 खरब",
3762
- "10000000000000-one": "000 खरब",
3763
- "10000000000000-other": "000 खरब",
3764
- "100000000000000-one": "0000 खरब",
3765
- "100000000000000-other": "0000 खरब"
3766
- },
3767
- "decimalFormat-short": {
3768
- "1000-one": "0 हज़ार",
3769
- "1000-other": "0 हज़ार",
3770
- "10000-one": "00 हज़ार",
3771
- "10000-other": "00 हज़ार",
3772
- "100000-one": "0 लाख",
3773
- "100000-other": "0 लाख",
3774
- "1000000-one": "00 लाख",
3775
- "1000000-other": "00 लाख",
3776
- "10000000-one": "0 क॰",
3777
- "10000000-other": "0 क॰",
3778
- "100000000-one": "00 क॰",
3779
- "100000000-other": "00 क॰",
3780
- "1000000000-one": "0 अ॰",
3781
- "1000000000-other": "0 अ॰",
3782
- "10000000000-one": "00 अ॰",
3783
- "10000000000-other": "00 अ॰",
3784
- "100000000000-one": "0 ख॰",
3785
- "100000000000-other": "0 ख॰",
3786
- "1000000000000-one": "00 ख॰",
3787
- "1000000000000-other": "00 ख॰",
3788
- "10000000000000-one": "0 नील",
3789
- "10000000000000-other": "0 नील",
3790
- "100000000000000-one": "00 नील",
3791
- "100000000000000-other": "00 नील"
3792
- },
3793
- "scientificFormat": {
3794
- "standard": "[#E0]"
3795
- },
3796
- "percentFormat": {
3797
- "standard": "#,##,##0%"
3798
- },
3799
- "currencyFormat": {
3800
- "standard": "¤#,##,##0.00",
3801
- "accounting": "¤#,##,##0.00",
3802
- "currencySpacing": {
3803
- "beforeCurrency": {
3804
- "currencyMatch": "[:^S:]",
3805
- "surroundingMatch": "[:digit:]",
3806
- "insertBetween": " "
3807
- },
3808
- "afterCurrency": {
3809
- "currencyMatch": "[:^S:]",
3810
- "surroundingMatch": "[:digit:]",
3811
- "insertBetween": " "
3812
- }
3813
- },
3814
- "sap-standard": "#,##,##0.00¤",
3815
- "sap-accounting": "#,##,##0.00¤"
3816
- },
3817
- "miscPattern": {
3818
- "approximately": "~{0}",
3819
- "atLeast": "{0}+",
3820
- "atMost": "≤{0}",
3821
- "range": "{0}–{1}"
3822
- },
3823
- "currencyFormat-short": {
3824
- "1000-one": "¤0 हज़ार",
3825
- "1000-other": "¤0 हज़ार",
3826
- "10000-one": "¤00 हज़ार",
3827
- "10000-other": "¤00 हज़ार",
3828
- "100000-one": "¤0 लाख",
3829
- "100000-other": "¤0 लाख",
3830
- "1000000-one": "¤00 लाख",
3831
- "1000000-other": "¤00 लाख",
3832
- "10000000-one": "¤0 क॰",
3833
- "10000000-other": "¤0 क॰",
3834
- "100000000-one": "¤00 क॰",
3835
- "100000000-other": "¤00 क॰",
3836
- "1000000000-one": "¤0 अ॰",
3837
- "1000000000-other": "¤0 अ॰",
3838
- "10000000000-one": "¤00 अ॰",
3839
- "10000000000-other": "¤00 अ॰",
3840
- "100000000000-one": "¤0 ख॰",
3841
- "100000000000-other": "¤0 ख॰",
3842
- "1000000000000-one": "¤00 ख॰",
3843
- "1000000000000-other": "¤00 ख॰",
3844
- "10000000000000-one": "¤0 नील",
3845
- "10000000000000-other": "¤0 नील",
3846
- "100000000000000-one": "¤00 नील",
3847
- "100000000000000-other": "¤00 नील"
3848
- },
3849
- "symbols-latn-decimal": ".",
3850
- "symbols-latn-group": ",",
3851
- "symbols-latn-list": ";",
3852
- "symbols-latn-percentSign": "%",
3853
- "symbols-latn-plusSign": "+",
3854
- "symbols-latn-minusSign": "-",
3855
- "symbols-latn-exponential": "E",
3856
- "symbols-latn-superscriptingExponent": "×",
3857
- "symbols-latn-perMille": "‰",
3858
- "symbols-latn-infinity": "∞",
3859
- "symbols-latn-nan": "NaN",
3860
- "symbols-latn-timeSeparator": ":",
3861
- "currencySymbols": {
3862
- "AUD": "A$",
3863
- "BRL": "R$",
3864
- "CAD": "CA$",
3865
- "CNY": "CN¥",
3866
- "EUR": "€",
3867
- "GBP": "£",
3868
- "HKD": "HK$",
3869
- "ILS": "₪",
3870
- "INR": "₹",
3871
- "JPY": "JP¥",
3872
- "KRW": "₩",
3873
- "MXN": "MX$",
3874
- "NZD": "NZ$",
3875
- "THB": "฿",
3876
- "TWD": "NT$",
3877
- "USD": "$",
3878
- "VND": "₫",
3879
- "XAF": "FCFA",
3880
- "XCD": "EC$",
3881
- "XOF": "CFA",
3882
- "XPF": "CFPF",
3883
- "XXX": "¤"
3884
- },
3885
- "rtl": false,
3886
- "listPattern-standard-wide": {
3887
- "2": "{0} और {1}",
3888
- "start": "{0}, {1}",
3889
- "middle": "{0}, {1}",
3890
- "end": "{0}, और {1}"
3891
- },
3892
- "listPattern-or-wide": {
3893
- "2": "{0} या {1}",
3894
- "start": "{0}, {1}",
3895
- "middle": "{0}, {1}",
3896
- "end": "{0} या {1}"
3897
- },
3898
- "listPattern-or-short": {
3899
- "2": "{0} या {1}",
3900
- "start": "{0}, {1}",
3901
- "middle": "{0}, {1}",
3902
- "end": "{0} या {1}"
3903
- },
3904
- "listPattern-standard-short": {
3905
- "2": "{0} और {1}",
3906
- "start": "{0}, {1}",
3907
- "middle": "{0}, {1}",
3908
- "end": "{0} और {1}"
3909
- },
3910
- "units": {
3911
- "short": {
3912
- "per": {
3913
- "compoundUnitPattern": "{0}/{1}"
3914
- },
3915
- "acceleration-g-force": {
3916
- "displayName": "गु–बल",
3917
- "unitPattern-count-one": "{0} G",
3918
- "unitPattern-count-other": "{0} G"
3919
- },
3920
- "acceleration-meter-per-second-squared": {
3921
- "displayName": "मीटर/से²",
3922
- "unitPattern-count-one": "{0} मी॰/व॰से॰",
3923
- "unitPattern-count-other": "{0} मी॰/व॰से॰"
3924
- },
3925
- "angle-revolution": {
3926
- "displayName": "घूर्णन",
3927
- "unitPattern-count-one": "{0} घूर्णन",
3928
- "unitPattern-count-other": "{0} घूर्णन"
3929
- },
3930
- "angle-radian": {
3931
- "displayName": "रेडियन",
3932
- "unitPattern-count-one": "{0} रेडियन",
3933
- "unitPattern-count-other": "{0} रेडियन"
3934
- },
3935
- "angle-degree": {
3936
- "displayName": "अंश",
3937
- "unitPattern-count-one": "{0} अंश",
3938
- "unitPattern-count-other": "{0} अंश"
3939
- },
3940
- "angle-arc-minute": {
3941
- "displayName": "आर्क मिनट",
3942
- "unitPattern-count-one": "{0} आर्क मिनट",
3943
- "unitPattern-count-other": "{0} आर्क मिनट"
3944
- },
3945
- "angle-arc-second": {
3946
- "displayName": "आर्क सेकंड",
3947
- "unitPattern-count-one": "{0} आर्क से॰",
3948
- "unitPattern-count-other": "{0} आर्क से॰"
3949
- },
3950
- "area-square-kilometer": {
3951
- "displayName": "वर्ग कि॰मी॰",
3952
- "unitPattern-count-one": "{0} वर्ग कि॰मी॰",
3953
- "unitPattern-count-other": "{0} वर्ग कि॰मी॰",
3954
- "perUnitPattern": "{0}/वर्ग कि॰मी॰"
3955
- },
3956
- "area-hectare": {
3957
- "displayName": "हेक्टेयर",
3958
- "unitPattern-count-one": "{0} हे॰",
3959
- "unitPattern-count-other": "{0} हे॰"
3960
- },
3961
- "area-square-meter": {
3962
- "displayName": "वर्ग मीटर",
3963
- "unitPattern-count-one": "{0} वर्ग मी॰",
3964
- "unitPattern-count-other": "{0} वर्ग मी॰",
3965
- "perUnitPattern": "{0}/वर्ग मीटर"
3966
- },
3967
- "area-square-centimeter": {
3968
- "displayName": "वर्ग सें॰",
3969
- "unitPattern-count-one": "{0} व॰ सें॰",
3970
- "unitPattern-count-other": "{0} व॰ सें॰",
3971
- "perUnitPattern": "{0}/वर्ग सें॰ मी॰"
3972
- },
3973
- "area-square-mile": {
3974
- "displayName": "वर्ग मील",
3975
- "unitPattern-count-one": "{0} वर्ग मील",
3976
- "unitPattern-count-other": "{0} वर्ग मील",
3977
- "perUnitPattern": "{0}/मील²"
3978
- },
3979
- "area-acre": {
3980
- "displayName": "एकड़",
3981
- "unitPattern-count-one": "{0} एकड़",
3982
- "unitPattern-count-other": "{0} एकड़"
3983
- },
3984
- "area-square-yard": {
3985
- "displayName": "व॰ ग॰",
3986
- "unitPattern-count-one": "{0} व॰ ग॰",
3987
- "unitPattern-count-other": "{0} व॰ ग॰"
3988
- },
3989
- "area-square-foot": {
3990
- "displayName": "व॰फ़ी॰",
3991
- "unitPattern-count-one": "{0} व॰फ़ी॰",
3992
- "unitPattern-count-other": "{0} व॰फ़ी॰"
3993
- },
3994
- "area-square-inch": {
3995
- "displayName": "व॰ इं॰",
3996
- "unitPattern-count-one": "{0} व॰ इं॰",
3997
- "unitPattern-count-other": "{0} व॰ इं॰",
3998
- "perUnitPattern": "{0}/वर्ग इंच"
3999
- },
4000
- "area-dunam": {
4001
- "displayName": "डोनम",
4002
- "unitPattern-count-one": "{0} डोनम",
4003
- "unitPattern-count-other": "{0} डोनम"
4004
- },
4005
- "concentr-karat": {
4006
- "displayName": "कैरट",
4007
- "unitPattern-count-other": "{0} kt"
4008
- },
4009
- "concentr-milligram-per-deciliter": {
4010
- "displayName": "मि॰ग्रा॰/डे॰ली॰",
4011
- "unitPattern-count-one": "{0} मि॰ग्रा॰/डे॰ली॰",
4012
- "unitPattern-count-other": "{0} मि॰ग्रा॰/डे॰ली॰"
4013
- },
4014
- "concentr-millimole-per-liter": {
4015
- "displayName": "मिलीमोल/लीटर",
4016
- "unitPattern-count-one": "{0} मिलीमोल/ली॰",
4017
- "unitPattern-count-other": "{0} मिलीमोल/ली॰"
4018
- },
4019
- "concentr-part-per-million": {
4020
- "displayName": "ppm",
4021
- "unitPattern-count-other": "{0} ppm"
4022
- },
4023
- "concentr-percent": {
4024
- "displayName": "प्रतिशत",
4025
- "unitPattern-count-other": "{0}%"
4026
- },
4027
- "concentr-permille": {
4028
- "displayName": "प्रति हज़ार",
4029
- "unitPattern-count-other": "{0}‰"
4030
- },
4031
- "concentr-permyriad": {
4032
- "displayName": "‱",
4033
- "unitPattern-count-one": "{0}‱",
4034
- "unitPattern-count-other": "{0}‱"
4035
- },
4036
- "concentr-mole": {
4037
- "displayName": "मोल",
4038
- "unitPattern-count-one": "{0} मोल",
4039
- "unitPattern-count-other": "{0} मोल"
4040
- },
4041
- "consumption-liter-per-kilometer": {
4042
- "displayName": "लीटर/किमी",
4043
- "unitPattern-count-one": "{0} ली/किमी",
4044
- "unitPattern-count-other": "{0} ली/किमी"
4045
- },
4046
- "consumption-liter-per-100kilometers": {
4047
- "displayName": "ली॰/100 कि॰मी॰",
4048
- "unitPattern-count-one": "{0} ली॰/100 कि॰मी॰",
4049
- "unitPattern-count-other": "{0} ली॰/100 कि॰मी॰"
4050
- },
4051
- "consumption-mile-per-gallon": {
4052
- "displayName": "मील/गैलन",
4053
- "unitPattern-count-one": "{0} mpg",
4054
- "unitPattern-count-other": "{0} mpg"
4055
- },
4056
- "consumption-mile-per-gallon-imperial": {
4057
- "displayName": "mpg इंपीरियल",
4058
- "unitPattern-count-one": "{0} mpg इंपीरियल",
4059
- "unitPattern-count-other": "{0} mpg इंपीरियल"
4060
- },
4061
- "digital-petabyte": {
4062
- "displayName": "पेटाबाइट",
4063
- "unitPattern-count-other": "{0} PB"
4064
- },
4065
- "digital-terabyte": {
4066
- "displayName": "TB",
4067
- "unitPattern-count-other": "{0} TB"
4068
- },
4069
- "digital-terabit": {
4070
- "displayName": "Tb",
4071
- "unitPattern-count-other": "{0} Tb"
4072
- },
4073
- "digital-gigabyte": {
4074
- "displayName": "GB",
4075
- "unitPattern-count-other": "{0} GB"
4076
- },
4077
- "digital-gigabit": {
4078
- "displayName": "Gb",
4079
- "unitPattern-count-other": "{0} Gb"
4080
- },
4081
- "digital-megabyte": {
4082
- "displayName": "MB",
4083
- "unitPattern-count-other": "{0} MB"
4084
- },
4085
- "digital-megabit": {
4086
- "displayName": "Mb",
4087
- "unitPattern-count-other": "{0} Mb"
4088
- },
4089
- "digital-kilobyte": {
4090
- "displayName": "kB",
4091
- "unitPattern-count-other": "{0} kB"
4092
- },
4093
- "digital-kilobit": {
4094
- "displayName": "kb",
4095
- "unitPattern-count-other": "{0} kb"
4096
- },
4097
- "digital-byte": {
4098
- "displayName": "बाइट",
4099
- "unitPattern-count-one": "{0} बाइट",
4100
- "unitPattern-count-other": "{0} बाइट"
4101
- },
4102
- "digital-bit": {
4103
- "displayName": "बिट",
4104
- "unitPattern-count-one": "{0} बिट",
4105
- "unitPattern-count-other": "{0} बिट"
4106
- },
4107
- "duration-century": {
4108
- "displayName": "शता",
4109
- "unitPattern-count-one": "{0} शता",
4110
- "unitPattern-count-other": "{0} शता"
4111
- },
4112
- "duration-year": {
4113
- "displayName": "वर्ष",
4114
- "unitPattern-count-one": "{0} वर्ष",
4115
- "unitPattern-count-other": "{0} वर्ष",
4116
- "perUnitPattern": "{0}/वर्ष"
4117
- },
4118
- "duration-month": {
4119
- "displayName": "माह",
4120
- "unitPattern-count-one": "{0} माह",
4121
- "unitPattern-count-other": "{0} माह",
4122
- "perUnitPattern": "{0}/माह"
4123
- },
4124
- "duration-week": {
4125
- "displayName": "सप्ताह",
4126
- "unitPattern-count-one": "{0} सप्ताह",
4127
- "unitPattern-count-other": "{0} सप्ताह",
4128
- "perUnitPattern": "{0}/सप्ताह"
4129
- },
4130
- "duration-day": {
4131
- "displayName": "दिन",
4132
- "unitPattern-count-one": "{0} दिन",
4133
- "unitPattern-count-other": "{0} दिन",
4134
- "perUnitPattern": "{0}/दिन"
4135
- },
4136
- "duration-hour": {
4137
- "displayName": "घंटे",
4138
- "unitPattern-count-one": "{0} घं॰",
4139
- "unitPattern-count-other": "{0} घं॰",
4140
- "perUnitPattern": "{0}/घं॰"
4141
- },
4142
- "duration-minute": {
4143
- "displayName": "मिनट",
4144
- "unitPattern-count-one": "{0} मि॰",
4145
- "unitPattern-count-other": "{0} मि॰",
4146
- "perUnitPattern": "{0}/मिनट"
4147
- },
4148
- "duration-second": {
4149
- "displayName": "सेकंड",
4150
- "unitPattern-count-one": "{0} से॰",
4151
- "unitPattern-count-other": "{0} से॰",
4152
- "perUnitPattern": "{0}/से॰"
4153
- },
4154
- "duration-millisecond": {
4155
- "displayName": "मिलीसेकंड",
4156
- "unitPattern-count-one": "{0} मि॰से॰",
4157
- "unitPattern-count-other": "{0} मि॰से॰"
4158
- },
4159
- "duration-microsecond": {
4160
- "displayName": "माइक्रोसेकंड",
4161
- "unitPattern-count-one": "{0} μs",
4162
- "unitPattern-count-other": "{0} μs"
4163
- },
4164
- "duration-nanosecond": {
4165
- "displayName": "नैनो से॰",
4166
- "unitPattern-count-one": "{0} नैनो से॰",
4167
- "unitPattern-count-other": "{0} नैनो से॰"
4168
- },
4169
- "electric-ampere": {
4170
- "displayName": "एम्पी॰",
4171
- "unitPattern-count-one": "{0} ए॰",
4172
- "unitPattern-count-other": "{0} ए॰"
4173
- },
4174
- "electric-milliampere": {
4175
- "displayName": "मि॰ ए॰",
4176
- "unitPattern-count-one": "{0} मि॰ ए॰",
4177
- "unitPattern-count-other": "{0} मि॰ ए॰"
4178
- },
4179
- "electric-ohm": {
4180
- "displayName": "ओम",
4181
- "unitPattern-count-other": "{0} Ω"
4182
- },
4183
- "electric-volt": {
4184
- "displayName": "वोल्ट",
4185
- "unitPattern-count-other": "{0} V"
4186
- },
4187
- "energy-kilocalorie": {
4188
- "displayName": "kcal",
4189
- "unitPattern-count-other": "{0} kcal"
4190
- },
4191
- "energy-calorie": {
4192
- "displayName": "cal",
4193
- "unitPattern-count-other": "{0} cal"
4194
- },
4195
- "energy-foodcalorie": {
4196
- "displayName": "Cal",
4197
- "unitPattern-count-other": "{0} Cal"
4198
- },
4199
- "energy-kilojoule": {
4200
- "displayName": "किलो जूल",
4201
- "unitPattern-count-other": "{0} kJ"
4202
- },
4203
- "energy-joule": {
4204
- "displayName": "जूल",
4205
- "unitPattern-count-other": "{0} J"
4206
- },
4207
- "energy-kilowatt-hour": {
4208
- "displayName": "kWh",
4209
- "unitPattern-count-other": "{0} kWh"
4210
- },
4211
- "energy-electronvolt": {
4212
- "displayName": "eV",
4213
- "unitPattern-count-one": "{0} eV",
4214
- "unitPattern-count-other": "{0} eV"
4215
- },
4216
- "energy-british-thermal-unit": {
4217
- "displayName": "Btu",
4218
- "unitPattern-count-one": "{0} Btu",
4219
- "unitPattern-count-other": "{0} Btu"
4220
- },
4221
- "force-pound-force": {
4222
- "displayName": "lbf",
4223
- "unitPattern-count-one": "{0} lbf",
4224
- "unitPattern-count-other": "{0} lbf"
4225
- },
4226
- "force-newton": {
4227
- "displayName": "न्यू॰",
4228
- "unitPattern-count-one": "{0} न्यू॰",
4229
- "unitPattern-count-other": "{0} न्यू॰"
4230
- },
4231
- "frequency-gigahertz": {
4232
- "displayName": "GHz",
4233
- "unitPattern-count-other": "{0} GHz"
4234
- },
4235
- "frequency-megahertz": {
4236
- "displayName": "MHz",
4237
- "unitPattern-count-other": "{0} MHz"
4238
- },
4239
- "frequency-kilohertz": {
4240
- "displayName": "kHz",
4241
- "unitPattern-count-other": "{0} kHz"
4242
- },
4243
- "frequency-hertz": {
4244
- "displayName": "Hz",
4245
- "unitPattern-count-other": "{0} Hz"
4246
- },
4247
- "length-kilometer": {
4248
- "displayName": "कि॰मी॰",
4249
- "unitPattern-count-one": "{0} कि॰मी॰",
4250
- "unitPattern-count-other": "{0} कि॰मी॰",
4251
- "perUnitPattern": "{0}/कि॰मी॰"
4252
- },
4253
- "length-meter": {
4254
- "displayName": "मीटर",
4255
- "unitPattern-count-one": "{0} मी",
4256
- "unitPattern-count-other": "{0} मी",
4257
- "perUnitPattern": "{0}/मी"
4258
- },
4259
- "length-decimeter": {
4260
- "displayName": "डे॰मी॰",
4261
- "unitPattern-count-one": "{0} डे॰मी॰",
4262
- "unitPattern-count-other": "{0} डे॰मी॰"
4263
- },
4264
- "length-centimeter": {
4265
- "displayName": "सें॰मी॰",
4266
- "unitPattern-count-one": "{0} सें॰मी॰",
4267
- "unitPattern-count-other": "{0} सें॰मी॰",
4268
- "perUnitPattern": "{0}/सें॰मी॰"
4269
- },
4270
- "length-millimeter": {
4271
- "displayName": "मि॰मी॰",
4272
- "unitPattern-count-one": "{0} मि॰मी॰",
4273
- "unitPattern-count-other": "{0} मि॰मी॰"
4274
- },
4275
- "length-micrometer": {
4276
- "displayName": "µ मा॰मी॰",
4277
- "unitPattern-count-one": "{0} µ मा॰मी॰",
4278
- "unitPattern-count-other": "{0} µ मा॰मी॰"
4279
- },
4280
- "length-nanometer": {
4281
- "displayName": "नै॰मी॰",
4282
- "unitPattern-count-one": "{0} नै॰मी॰",
4283
- "unitPattern-count-other": "{0} नै॰मी॰"
4284
- },
4285
- "length-picometer": {
4286
- "displayName": "पि॰मी॰",
4287
- "unitPattern-count-one": "{0} पि॰मी॰",
4288
- "unitPattern-count-other": "{0} पि॰मी॰"
4289
- },
4290
- "length-mile": {
4291
- "displayName": "मील",
4292
- "unitPattern-count-one": "{0} मील",
4293
- "unitPattern-count-other": "{0} मील"
4294
- },
4295
- "length-yard": {
4296
- "displayName": "यार्ड",
4297
- "unitPattern-count-one": "{0} यार्ड",
4298
- "unitPattern-count-other": "{0} यार्ड"
4299
- },
4300
- "length-foot": {
4301
- "displayName": "फ़ीट",
4302
- "unitPattern-count-one": "{0} फ़ीट",
4303
- "unitPattern-count-other": "{0} फ़ीट",
4304
- "perUnitPattern": "{0}/फ़ीट"
4305
- },
4306
- "length-inch": {
4307
- "displayName": "इंच",
4308
- "unitPattern-count-one": "{0} इंच",
4309
- "unitPattern-count-other": "{0} इंच",
4310
- "perUnitPattern": "{0}/इंच"
4311
- },
4312
- "length-parsec": {
4313
- "displayName": "पार्सेक",
4314
- "unitPattern-count-one": "{0} पार्सेक",
4315
- "unitPattern-count-other": "{0} पार्सेक"
4316
- },
4317
- "length-light-year": {
4318
- "displayName": "प्रकाश वर्ष",
4319
- "unitPattern-count-one": "{0} प्र॰व॰",
4320
- "unitPattern-count-other": "{0} प्र॰व॰"
4321
- },
4322
- "length-astronomical-unit": {
4323
- "displayName": "खगो॰ इका॰",
4324
- "unitPattern-count-one": "{0} खगो॰ इका॰",
4325
- "unitPattern-count-other": "{0} खगो॰ इका॰"
4326
- },
4327
- "length-furlong": {
4328
- "displayName": "fur",
4329
- "unitPattern-count-other": "{0} fur"
4330
- },
4331
- "length-fathom": {
4332
- "displayName": "fm",
4333
- "unitPattern-count-other": "{0} fth"
4334
- },
4335
- "length-nautical-mile": {
4336
- "displayName": "नॉ॰ मी॰",
4337
- "unitPattern-count-one": "{0} नॉ॰ मी॰",
4338
- "unitPattern-count-other": "{0} नॉ॰ मी॰"
4339
- },
4340
- "length-mile-scandinavian": {
4341
- "displayName": "smi",
4342
- "unitPattern-count-other": "{0} smi"
4343
- },
4344
- "length-point": {
4345
- "displayName": "pt",
4346
- "unitPattern-count-one": "{0} pt",
4347
- "unitPattern-count-other": "{0} pt"
4348
- },
4349
- "length-solar-radius": {
4350
- "displayName": "R☉",
4351
- "unitPattern-count-one": "{0} R☉",
4352
- "unitPattern-count-other": "{0} R☉"
4353
- },
4354
- "light-lux": {
4355
- "displayName": "लक्स",
4356
- "unitPattern-count-other": "{0} lx"
4357
- },
4358
- "light-solar-luminosity": {
4359
- "displayName": "L☉",
4360
- "unitPattern-count-one": "{0} L☉",
4361
- "unitPattern-count-other": "{0} L☉"
4362
- },
4363
- "mass-metric-ton": {
4364
- "displayName": "मीट्रिक टन",
4365
- "unitPattern-count-one": "{0} मीट्रिक टन",
4366
- "unitPattern-count-other": "{0} मीट्रिक टन"
4367
- },
4368
- "mass-kilogram": {
4369
- "displayName": "कि॰ग्रा॰",
4370
- "unitPattern-count-one": "{0} कि॰ग्रा॰",
4371
- "unitPattern-count-other": "{0} कि॰ग्रा॰",
4372
- "perUnitPattern": "{0}/कि॰ग्रा॰"
4373
- },
4374
- "mass-gram": {
4375
- "displayName": "ग्राम",
4376
- "unitPattern-count-one": "{0} ग्रा॰",
4377
- "unitPattern-count-other": "{0} ग्रा॰",
4378
- "perUnitPattern": "{0}/ग्रा॰"
4379
- },
4380
- "mass-milligram": {
4381
- "displayName": "मि॰ग्रा॰",
4382
- "unitPattern-count-one": "{0} मि॰ग्रा॰",
4383
- "unitPattern-count-other": "{0} मि॰ग्रा॰"
4384
- },
4385
- "mass-microgram": {
4386
- "displayName": "मा॰ग्रा॰",
4387
- "unitPattern-count-one": "{0} मा॰ग्रा॰",
4388
- "unitPattern-count-other": "{0} मा॰ग्रा॰"
4389
- },
4390
- "mass-ton": {
4391
- "displayName": "टन",
4392
- "unitPattern-count-one": "{0} टन",
4393
- "unitPattern-count-other": "{0} टन"
4394
- },
4395
- "mass-stone": {
4396
- "displayName": "st",
4397
- "unitPattern-count-other": "{0} st"
4398
- },
4399
- "mass-pound": {
4400
- "displayName": "पौंड",
4401
- "unitPattern-count-one": "{0} पौंड",
4402
- "unitPattern-count-other": "{0} पौंड",
4403
- "perUnitPattern": "{0}/पौंड"
4404
- },
4405
- "mass-ounce": {
4406
- "displayName": "औंस",
4407
- "unitPattern-count-one": "{0} औंस",
4408
- "unitPattern-count-other": "{0} औंस",
4409
- "perUnitPattern": "{0}/औंस"
4410
- },
4411
- "mass-ounce-troy": {
4412
- "displayName": "ट्राई औंस",
4413
- "unitPattern-count-one": "{0} ट्राई औंस",
4414
- "unitPattern-count-other": "{0} ट्राई औंस"
4415
- },
4416
- "mass-carat": {
4417
- "displayName": "कै॰",
4418
- "unitPattern-count-one": "{0} कै॰",
4419
- "unitPattern-count-other": "{0} कै॰"
4420
- },
4421
- "mass-dalton": {
4422
- "displayName": "डाल्टन",
4423
- "unitPattern-count-one": "{0} डाल्टन",
4424
- "unitPattern-count-other": "{0} डाल्टन"
4425
- },
4426
- "mass-earth-mass": {
4427
- "displayName": "M⊕",
4428
- "unitPattern-count-one": "{0} M⊕",
4429
- "unitPattern-count-other": "{0} M⊕"
4430
- },
4431
- "mass-solar-mass": {
4432
- "displayName": "M☉",
4433
- "unitPattern-count-one": "{0} M☉",
4434
- "unitPattern-count-other": "{0} M☉"
4435
- },
4436
- "power-gigawatt": {
4437
- "displayName": "GW",
4438
- "unitPattern-count-other": "{0} GW"
4439
- },
4440
- "power-megawatt": {
4441
- "displayName": "MW",
4442
- "unitPattern-count-other": "{0} MW"
4443
- },
4444
- "power-kilowatt": {
4445
- "displayName": "kW",
4446
- "unitPattern-count-other": "{0} kW"
4447
- },
4448
- "power-watt": {
4449
- "displayName": "वॉट",
4450
- "unitPattern-count-other": "{0} W"
4451
- },
4452
- "power-milliwatt": {
4453
- "displayName": "mW",
4454
- "unitPattern-count-other": "{0} mW"
4455
- },
4456
- "power-horsepower": {
4457
- "displayName": "hp",
4458
- "unitPattern-count-other": "{0} hp"
4459
- },
4460
- "pressure-hectopascal": {
4461
- "displayName": "hPa",
4462
- "unitPattern-count-other": "{0} hPa"
4463
- },
4464
- "pressure-millimeter-of-mercury": {
4465
- "displayName": "mm Hg",
4466
- "unitPattern-count-other": "{0} mm Hg"
4467
- },
4468
- "pressure-pound-per-square-inch": {
4469
- "displayName": "psi",
4470
- "unitPattern-count-other": "{0} psi"
4471
- },
4472
- "pressure-inch-hg": {
4473
- "displayName": "inHg",
4474
- "unitPattern-count-other": "{0} inHg"
4475
- },
4476
- "pressure-millibar": {
4477
- "displayName": "mbar",
4478
- "unitPattern-count-other": "{0} mbar"
4479
- },
4480
- "pressure-atmosphere": {
4481
- "displayName": "atm",
4482
- "unitPattern-count-other": "{0} atm"
4483
- },
4484
- "pressure-kilopascal": {
4485
- "displayName": "किपा॰",
4486
- "unitPattern-count-one": "{0} किपा॰",
4487
- "unitPattern-count-other": "{0} किपा॰"
4488
- },
4489
- "pressure-megapascal": {
4490
- "displayName": "मेपा॰",
4491
- "unitPattern-count-one": "{0} मेपा॰",
4492
- "unitPattern-count-other": "{0} मेपा॰"
4493
- },
4494
- "speed-kilometer-per-hour": {
4495
- "displayName": "कि॰मी॰/घं॰",
4496
- "unitPattern-count-one": "{0} कि॰मी॰/घं॰",
4497
- "unitPattern-count-other": "{0} कि॰मी॰/घं॰"
4498
- },
4499
- "speed-meter-per-second": {
4500
- "displayName": "मीटर/से॰",
4501
- "unitPattern-count-one": "{0} मी॰/से॰",
4502
- "unitPattern-count-other": "{0} मी॰/से॰"
4503
- },
4504
- "speed-mile-per-hour": {
4505
- "displayName": "मील/घंटा",
4506
- "unitPattern-count-one": "{0} मी॰प्र॰घं॰",
4507
- "unitPattern-count-other": "{0} मी॰प्र॰घं॰"
4508
- },
4509
- "speed-knot": {
4510
- "displayName": "नॉट",
4511
- "unitPattern-count-one": "{0} नॉट",
4512
- "unitPattern-count-other": "{0} नॉट"
4513
- },
4514
- "temperature-generic": {
4515
- "displayName": "°",
4516
- "unitPattern-count-other": "{0}°"
4517
- },
4518
- "temperature-celsius": {
4519
- "displayName": "डिग्री सेल्सियस",
4520
- "unitPattern-count-one": "{0}°से॰",
4521
- "unitPattern-count-other": "{0}°से॰"
4522
- },
4523
- "temperature-fahrenheit": {
4524
- "displayName": "डिग्री फ़ेरनहाइट",
4525
- "unitPattern-count-one": "{0}°फ़ेरन",
4526
- "unitPattern-count-other": "{0}°फ़ेरन"
4527
- },
4528
- "temperature-kelvin": {
4529
- "displayName": "K",
4530
- "unitPattern-count-other": "{0} K"
4531
- },
4532
- "torque-pound-foot": {
4533
- "displayName": "lbf⋅ft",
4534
- "unitPattern-count-one": "{0} lbf⋅ft",
4535
- "unitPattern-count-other": "{0} lbf⋅ft"
4536
- },
4537
- "torque-newton-meter": {
4538
- "displayName": "न्यू॰मी॰",
4539
- "unitPattern-count-one": "{0} न्यू॰मी॰",
4540
- "unitPattern-count-other": "{0} न्यू॰मी॰"
4541
- },
4542
- "volume-cubic-kilometer": {
4543
- "displayName": "घन कि॰मी॰",
4544
- "unitPattern-count-one": "{0} घन कि॰मी॰",
4545
- "unitPattern-count-other": "{0} घन कि॰मी॰"
4546
- },
4547
- "volume-cubic-meter": {
4548
- "displayName": "घन मी॰",
4549
- "unitPattern-count-one": "{0} घन मी॰",
4550
- "unitPattern-count-other": "{0} घन मी॰",
4551
- "perUnitPattern": "{0}/घन मी॰"
4552
- },
4553
- "volume-cubic-centimeter": {
4554
- "displayName": "घन सें॰ मी॰",
4555
- "unitPattern-count-one": "{0} घन सें॰ मी॰",
4556
- "unitPattern-count-other": "{0} घन सें॰ मी॰",
4557
- "perUnitPattern": "{0}/घन सें॰ मी॰"
4558
- },
4559
- "volume-cubic-mile": {
4560
- "displayName": "घन मील",
4561
- "unitPattern-count-one": "{0} घन मील",
4562
- "unitPattern-count-other": "{0} घन मील"
4563
- },
4564
- "volume-cubic-yard": {
4565
- "displayName": "घन या॰",
4566
- "unitPattern-count-one": "{0} घन या॰",
4567
- "unitPattern-count-other": "{0} घन या॰"
4568
- },
4569
- "volume-cubic-foot": {
4570
- "displayName": "घ॰ फ़ी॰",
4571
- "unitPattern-count-one": "{0} घ॰ फ़ी॰",
4572
- "unitPattern-count-other": "{0} घ॰ फ़ी॰"
4573
- },
4574
- "volume-cubic-inch": {
4575
- "displayName": "घन इंच",
4576
- "unitPattern-count-one": "{0} घन इंच",
4577
- "unitPattern-count-other": "{0} घन इंच"
4578
- },
4579
- "volume-megaliter": {
4580
- "displayName": "मे॰ ली॰",
4581
- "unitPattern-count-one": "{0} मे॰ ली॰",
4582
- "unitPattern-count-other": "{0} मे॰ ली॰"
4583
- },
4584
- "volume-hectoliter": {
4585
- "displayName": "है॰ली॰",
4586
- "unitPattern-count-one": "{0} है॰ली॰",
4587
- "unitPattern-count-other": "{0} है॰ली॰"
4588
- },
4589
- "volume-liter": {
4590
- "displayName": "लीटर",
4591
- "unitPattern-count-one": "{0} ली॰",
4592
- "unitPattern-count-other": "{0} ली॰",
4593
- "perUnitPattern": "{0}/ली॰"
4594
- },
4595
- "volume-deciliter": {
4596
- "displayName": "डे॰ली॰",
4597
- "unitPattern-count-one": "{0} डे॰ली॰",
4598
- "unitPattern-count-other": "{0} डे॰ली॰"
4599
- },
4600
- "volume-centiliter": {
4601
- "displayName": "सें॰ली॰",
4602
- "unitPattern-count-one": "{0} सें॰ली॰",
4603
- "unitPattern-count-other": "{0} सें॰ली॰"
4604
- },
4605
- "volume-milliliter": {
4606
- "displayName": "मि॰ ली॰",
4607
- "unitPattern-count-one": "{0} मि॰ ली॰",
4608
- "unitPattern-count-other": "{0} मि॰ ली॰"
4609
- },
4610
- "volume-pint-metric": {
4611
- "displayName": "मीट्रिक पिंट",
4612
- "unitPattern-count-one": "{0} मीट्रिक पिंट",
4613
- "unitPattern-count-other": "{0} मीट्रिक पिंट"
4614
- },
4615
- "volume-cup-metric": {
4616
- "displayName": "मीट्रिक कप",
4617
- "unitPattern-count-one": "{0} मीट्रिक कप",
4618
- "unitPattern-count-other": "{0} मीट्रिक कप"
4619
- },
4620
- "volume-acre-foot": {
4621
- "displayName": "एकड़ फ़ीट",
4622
- "unitPattern-count-one": "{0} ए॰फ़ी॰",
4623
- "unitPattern-count-other": "{0} ए॰फ़ी॰"
4624
- },
4625
- "volume-bushel": {
4626
- "displayName": "bu",
4627
- "unitPattern-count-other": "{0} bu"
4628
- },
4629
- "volume-gallon": {
4630
- "displayName": "गैलन",
4631
- "unitPattern-count-one": "{0} गैलन",
4632
- "unitPattern-count-other": "{0} गैलन",
4633
- "perUnitPattern": "{0}/गैलन"
4634
- },
4635
- "volume-gallon-imperial": {
4636
- "displayName": "इम्पी॰ गैलन",
4637
- "unitPattern-count-one": "{0} इम्पी॰ गैलन",
4638
- "unitPattern-count-other": "{0} इम्पी॰ गैलन",
4639
- "perUnitPattern": "{0}/इम्पी॰ गैलन"
4640
- },
4641
- "volume-quart": {
4642
- "displayName": "क्वार्ट",
4643
- "unitPattern-count-one": "{0} क्वार्ट",
4644
- "unitPattern-count-other": "{0} क्वार्ट"
4645
- },
4646
- "volume-pint": {
4647
- "displayName": "पिंट",
4648
- "unitPattern-count-one": "{0} पिंट",
4649
- "unitPattern-count-other": "{0} पिंट"
4650
- },
4651
- "volume-cup": {
4652
- "displayName": "कप",
4653
- "unitPattern-count-one": "{0} कप",
4654
- "unitPattern-count-other": "{0} कप"
4655
- },
4656
- "volume-fluid-ounce": {
4657
- "displayName": "फ़्लूइड आउंस",
4658
- "unitPattern-count-one": "{0} फ़्लूइड आउंस",
4659
- "unitPattern-count-other": "{0} फ़्लूइड आउंस"
4660
- },
4661
- "volume-fluid-ounce-imperial": {
4662
- "displayName": "Imp. fl oz",
4663
- "unitPattern-count-one": "{0} fl oz Imp.",
4664
- "unitPattern-count-other": "{0} fl oz Imp."
4665
- },
4666
- "volume-tablespoon": {
4667
- "displayName": "टे॰ स्पून",
4668
- "unitPattern-count-one": "{0} टे॰ स्पून",
4669
- "unitPattern-count-other": "{0} टे॰ स्पून"
4670
- },
4671
- "volume-teaspoon": {
4672
- "displayName": "टी स्पून",
4673
- "unitPattern-count-one": "{0} टी स्पून",
4674
- "unitPattern-count-other": "{0} टी स्पून"
4675
- },
4676
- "volume-barrel": {
4677
- "displayName": "बैरल",
4678
- "unitPattern-count-one": "{0} बैरल",
4679
- "unitPattern-count-other": "{0} बैरल"
4680
- },
4681
- "coordinateUnit": {
4682
- "displayName": "दिशा",
4683
- "east": "{0}E",
4684
- "north": "{0}N",
4685
- "south": "{0}S",
4686
- "west": "{0}W"
4687
- }
4688
- }
4689
- },
4690
- "lenient-scope-number": {
4691
- "minusSign": "-‒⁻₋−➖﹣-",
4692
- "commaSign": ",،٫、︐︑﹐﹑,、",
4693
- "plusSign": "+⁺₊➕﬩﹢+"
4694
- },
4695
- "currencyFormat-sap-short": {
4696
- "1000-one": "0 हज़ार ¤",
4697
- "1000-other": "0 हज़ार ¤",
4698
- "10000-one": "00 हज़ार ¤",
4699
- "10000-other": "00 हज़ार ¤",
4700
- "100000-one": "0 लाख ¤",
4701
- "100000-other": "0 लाख ¤",
4702
- "1000000-one": "00 लाख ¤",
4703
- "1000000-other": "00 लाख ¤",
4704
- "10000000-one": "0 क॰ ¤",
4705
- "10000000-other": "0 क॰ ¤",
4706
- "100000000-one": "00 क॰ ¤",
4707
- "100000000-other": "00 क॰ ¤",
4708
- "1000000000-one": "0 अ॰ ¤",
4709
- "1000000000-other": "0 अ॰ ¤",
4710
- "10000000000-one": "00 अ॰ ¤",
4711
- "10000000000-other": "00 अ॰ ¤",
4712
- "100000000000-one": "0 ख॰ ¤",
4713
- "100000000000-other": "0 ख॰ ¤",
4714
- "1000000000000-one": "00 ख॰ ¤",
4715
- "1000000000000-other": "00 ख॰ ¤",
4716
- "10000000000000-one": "0 नील ¤",
4717
- "10000000000000-other": "0 नील ¤",
4718
- "100000000000000-one": "00 नील ¤",
4719
- "100000000000000-other": "00 नील ¤"
4720
- },
4721
- "currencyDigits": {
4722
- "ADP": 0,
4723
- "AFN": 0,
4724
- "ALL": 0,
4725
- "BHD": 3,
4726
- "BIF": 0,
4727
- "BYR": 0,
4728
- "CLF": 4,
4729
- "CLP": 0,
4730
- "DEFAULT": 2,
4731
- "DJF": 0,
4732
- "ESP": 0,
4733
- "GNF": 0,
4734
- "HUF": 0,
4735
- "IQD": 0,
4736
- "IRR": 0,
4737
- "ISK": 0,
4738
- "ITL": 0,
4739
- "JOD": 3,
4740
- "JPY": 0,
4741
- "KMF": 0,
4742
- "KPW": 0,
4743
- "KRW": 0,
4744
- "KWD": 3,
4745
- "LAK": 0,
4746
- "LBP": 0,
4747
- "LUF": 0,
4748
- "LYD": 3,
4749
- "MGA": 0,
4750
- "MGF": 0,
4751
- "MMK": 0,
4752
- "MRO": 0,
4753
- "OMR": 3,
4754
- "PYG": 0,
4755
- "RSD": 0,
4756
- "RWF": 0,
4757
- "SLL": 0,
4758
- "SOS": 0,
4759
- "STD": 0,
4760
- "SYP": 0,
4761
- "TMM": 0,
4762
- "TND": 3,
4763
- "TRL": 0,
4764
- "TWD": 0,
4765
- "UGX": 0,
4766
- "UYI": 0,
4767
- "UYW": 4,
4768
- "VND": 0,
4769
- "VUV": 0,
4770
- "XAF": 0,
4771
- "XOF": 0,
4772
- "XPF": 0,
4773
- "YER": 0,
4774
- "ZMK": 0,
4775
- "ZWD": 0
4776
- },
4777
- "plurals": {
4778
- "one": "i = 0 or n = 1"
4779
- },
4780
- "weekData-minDays": 1,
4781
- "weekData-firstDay": 0,
4782
- "weekData-weekendStart": 0,
4783
- "weekData-weekendEnd": 0,
4784
- "timeData": {
4785
- "_allowed": "h H",
4786
- "_preferred": "h"
4787
- },
4788
- "eras-gregorian": {
4789
- "0": {
4790
- "_end": "0-12-31"
4791
- },
4792
- "1": {
4793
- "_start": "1-01-01"
4794
- }
4795
- },
4796
- "eras-islamic": {
4797
- "0": {
4798
- "_start": "622-7-15"
4799
- }
4800
- },
4801
- "eras-persian": {
4802
- "0": {
4803
- "_start": "622-01-01"
4804
- }
4805
- },
4806
- "eras-buddhist": {
4807
- "0": {
4808
- "_start": "-542-01-01"
4809
- }
4810
- },
4811
- "eras-japanese": {
4812
- "232": {
4813
- "_start": "1868-9-8"
4814
- },
4815
- "233": {
4816
- "_start": "1912-7-30"
4817
- },
4818
- "234": {
4819
- "_start": "1926-12-25"
4820
- },
4821
- "235": {
4822
- "_start": "1989-1-8"
4823
- },
4824
- "236": {
4825
- "_start": "2019-5-1"
4826
- }
4827
- },
4828
- "calendarPreference": "gregorian indian"
4829
- }