@ui5/webcomponents-base 0.0.0-e463d2345 → 0.0.0-e818f286e

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 (469) hide show
  1. package/.eslintignore +4 -0
  2. package/CHANGELOG.md +437 -0
  3. package/README.md +53 -7
  4. package/bundle.esm.js +24 -20
  5. package/dist/AssetRegistry.js +8 -6
  6. package/dist/Boot.js +59 -0
  7. package/dist/CSP.js +59 -0
  8. package/dist/CustomElementsRegistry.js +95 -0
  9. package/dist/CustomElementsScope.js +30 -0
  10. package/dist/CustomElementsScopeUtils.js +108 -0
  11. package/dist/DOMObserver.js +65 -0
  12. package/dist/Device.js +71 -773
  13. package/dist/EventProvider.js +38 -26
  14. package/dist/FeaturesRegistry.js +4 -1
  15. package/dist/FontFace.js +20 -56
  16. package/dist/InitialConfiguration.js +64 -17
  17. package/dist/Keys.js +295 -0
  18. package/dist/ManagedStyles.js +83 -0
  19. package/dist/MediaRange.js +109 -0
  20. package/dist/PropertiesFileFormat.js +95 -0
  21. package/dist/Render.js +175 -0
  22. package/dist/RenderQueue.js +41 -17
  23. package/dist/RenderScheduler.js +24 -145
  24. package/dist/Runtimes.js +107 -0
  25. package/dist/StaticArea.js +2 -34
  26. package/dist/StaticAreaItem.js +69 -35
  27. package/dist/SystemCSSVars.js +10 -0
  28. package/dist/Theming.js +3 -44
  29. package/dist/UI5Element.js +497 -306
  30. package/dist/UI5ElementMetadata.js +198 -19
  31. package/dist/asset-registries/Icons.js +125 -14
  32. package/dist/asset-registries/Illustrations.js +30 -0
  33. package/dist/asset-registries/LocaleData.js +114 -51
  34. package/dist/asset-registries/Themes.js +37 -30
  35. package/dist/asset-registries/i18n.js +81 -33
  36. package/dist/assets/bundle.esm.81ba431e.js +43 -0
  37. package/dist/assets-meta/IconCollectionsAlias.js +18 -0
  38. package/dist/config/AnimationMode.js +16 -2
  39. package/dist/config/CalendarType.js +7 -7
  40. package/dist/config/FormatSettings.js +5 -1
  41. package/dist/config/Icons.js +52 -0
  42. package/dist/config/Language.js +62 -3
  43. package/dist/config/NoConflict.js +10 -3
  44. package/dist/config/Theme.js +32 -3
  45. package/dist/css/BusyIndicator.css +80 -0
  46. package/dist/css/FontFace.css +75 -0
  47. package/dist/css/OverrideFontFace.css +32 -0
  48. package/dist/css/SystemCSSVars.css +17 -0
  49. package/dist/delegate/ItemNavigation.js +249 -127
  50. package/dist/delegate/ResizeHandler.js +78 -38
  51. package/dist/delegate/ScrollEnablement.js +122 -14
  52. package/dist/features/F6Navigation.js +110 -0
  53. package/dist/features/OpenUI5Enablement.js +119 -0
  54. package/dist/features/OpenUI5Support.js +125 -0
  55. package/dist/generated/AssetParameters.js +13 -0
  56. package/dist/generated/VersionInfo.js +10 -0
  57. package/dist/generated/css/BusyIndicator.css.js +5 -0
  58. package/dist/generated/css/FontFace.css.js +5 -0
  59. package/dist/generated/css/OverrideFontFace.css.js +5 -0
  60. package/dist/generated/css/SystemCSSVars.css.js +5 -0
  61. package/dist/getSharedResource.js +30 -0
  62. package/dist/i18nBundle.js +62 -11
  63. package/{src → dist/locale}/Locale.js +0 -10
  64. package/dist/locale/RTLAwareRegistry.js +14 -0
  65. package/dist/locale/applyDirection.js +17 -0
  66. package/dist/locale/directionChange.js +32 -0
  67. package/dist/locale/getEffectiveDir.js +28 -0
  68. package/dist/locale/getLocale.js +41 -0
  69. package/dist/locale/languageChange.js +22 -0
  70. package/dist/locale/nextFallbackLocale.js +28 -0
  71. package/dist/{util → locale}/normalizeLocale.js +8 -31
  72. package/dist/renderer/LitRenderer.js +44 -7
  73. package/dist/renderer/directives/style-map.js +72 -0
  74. package/dist/renderer/executeTemplate.js +34 -0
  75. package/dist/sap/base/Log.js +241 -0
  76. package/dist/sap/base/assert.js +8 -0
  77. package/dist/sap/base/security/URLListValidator.js +148 -0
  78. package/dist/sap/base/security/encodeCSS.js +14 -0
  79. package/dist/sap/base/security/encodeXML.js +23 -0
  80. package/dist/sap/base/security/sanitizeHTML.js +16 -0
  81. package/dist/sap/base/strings/toHex.js +8 -0
  82. package/dist/sap/base/util/now.js +7 -0
  83. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +3585 -0
  84. package/dist/theming/CustomStyle.js +47 -6
  85. package/dist/theming/ThemeLoaded.js +22 -0
  86. package/dist/theming/applyTheme.js +79 -0
  87. package/dist/theming/getConstructableStyle.js +30 -0
  88. package/dist/theming/getEffectiveLinksHrefs.js +27 -0
  89. package/dist/theming/getEffectiveStyle.js +39 -0
  90. package/dist/theming/getStylesString.js +15 -0
  91. package/dist/theming/getThemeDesignerTheme.js +87 -0
  92. package/dist/theming/preloadLinks.js +23 -0
  93. package/dist/thirdparty/_merge.js +32 -0
  94. package/dist/thirdparty/isPlainObject.js +18 -0
  95. package/dist/thirdparty/merge.js +10 -0
  96. package/dist/types/CSSColor.js +9 -0
  97. package/dist/{dates → types}/CalendarType.js +2 -2
  98. package/dist/types/DataType.js +13 -1
  99. package/dist/types/Float.js +14 -0
  100. package/dist/types/Integer.js +4 -0
  101. package/dist/types/InvisibleMessageMode.js +30 -0
  102. package/dist/types/ItemNavigationBehavior.js +2 -7
  103. package/dist/types/NavigationMode.js +1 -0
  104. package/dist/types/PopupState.js +1 -1
  105. package/dist/types/ValueState.js +2 -1
  106. package/dist/updateShadowRoot.js +29 -0
  107. package/dist/util/AriaLabelHelper.js +39 -0
  108. package/dist/util/Caret.js +32 -0
  109. package/dist/util/ColorConversion.js +398 -0
  110. package/dist/util/FocusableElements.js +30 -11
  111. package/dist/util/HTMLSanitizer.js +7 -0
  112. package/dist/util/InvisibleMessage.js +69 -0
  113. package/dist/util/PopupUtils.js +93 -0
  114. package/dist/util/SlotsHelper.js +43 -0
  115. package/dist/util/StringHelper.js +17 -2
  116. package/dist/util/TabbableElements.js +9 -2
  117. package/dist/util/arraysAreEqual.js +15 -0
  118. package/dist/util/clamp.js +12 -0
  119. package/dist/util/createLinkInHead.js +19 -0
  120. package/dist/util/debounce.js +17 -0
  121. package/dist/util/detectNavigatorLanguage.js +3 -1
  122. package/dist/util/escapeRegex.js +10 -0
  123. package/dist/util/generateHighlightedMarkup.js +42 -0
  124. package/dist/util/getActiveElement.js +11 -0
  125. package/dist/util/getClassCopy.js +10 -0
  126. package/dist/util/getEffectiveContentDensity.js +5 -0
  127. package/dist/util/getFileExtension.js +21 -0
  128. package/dist/util/getNormalizedTarget.js +16 -0
  129. package/dist/util/getSingletonElementInstance.js +13 -0
  130. package/dist/util/isDefaultSlotProvided.js +11 -0
  131. package/dist/util/isElementInView.js +15 -0
  132. package/dist/util/isNodeHidden.js +1 -5
  133. package/dist/util/isNodeTabbable.js +4 -4
  134. package/dist/util/isValidPropertyName.js +11 -2
  135. package/dist/util/setToArray.js +10 -0
  136. package/hash.txt +1 -0
  137. package/index.js +1 -1
  138. package/lib/generate-asset-parameters/index.js +25 -0
  139. package/lib/generate-styles/index.js +26 -0
  140. package/lib/generate-version-info/index.js +32 -0
  141. package/package-scripts.js +41 -27
  142. package/package.json +22 -14
  143. package/src/AssetRegistry.js +8 -6
  144. package/src/Boot.js +59 -0
  145. package/src/CSP.js +59 -0
  146. package/src/CustomElementsRegistry.js +95 -0
  147. package/src/CustomElementsScope.js +30 -0
  148. package/src/CustomElementsScopeUtils.js +108 -0
  149. package/src/DOMObserver.js +65 -0
  150. package/src/Device.js +71 -773
  151. package/src/EventProvider.js +38 -26
  152. package/src/FeaturesRegistry.js +4 -1
  153. package/src/FontFace.js +20 -56
  154. package/src/InitialConfiguration.js +64 -17
  155. package/src/Keys.js +295 -0
  156. package/src/ManagedStyles.js +83 -0
  157. package/src/MediaRange.js +109 -0
  158. package/src/PropertiesFileFormat.js +95 -0
  159. package/src/Render.js +175 -0
  160. package/src/RenderQueue.js +41 -17
  161. package/src/RenderScheduler.js +24 -145
  162. package/src/Runtimes.js +107 -0
  163. package/src/StaticArea.js +2 -34
  164. package/src/StaticAreaItem.js +69 -35
  165. package/src/SystemCSSVars.js +10 -0
  166. package/src/Theming.js +3 -44
  167. package/src/UI5Element.js +497 -306
  168. package/src/UI5ElementMetadata.js +198 -19
  169. package/src/asset-registries/Icons.js +125 -14
  170. package/src/asset-registries/Illustrations.js +30 -0
  171. package/src/asset-registries/LocaleData.js +114 -51
  172. package/src/asset-registries/Themes.js +37 -30
  173. package/src/asset-registries/i18n.js +81 -33
  174. package/src/assets-meta/IconCollectionsAlias.js +18 -0
  175. package/src/config/AnimationMode.js +16 -2
  176. package/src/config/CalendarType.js +7 -7
  177. package/src/config/FormatSettings.js +5 -1
  178. package/src/config/Icons.js +52 -0
  179. package/src/config/Language.js +62 -3
  180. package/src/config/NoConflict.js +10 -3
  181. package/src/config/Theme.js +32 -3
  182. package/src/css/BusyIndicator.css +80 -0
  183. package/src/css/FontFace.css +75 -0
  184. package/src/css/OverrideFontFace.css +32 -0
  185. package/src/css/SystemCSSVars.css +17 -0
  186. package/src/delegate/ItemNavigation.js +249 -127
  187. package/src/delegate/ResizeHandler.js +78 -38
  188. package/src/delegate/ScrollEnablement.js +122 -14
  189. package/src/features/F6Navigation.js +110 -0
  190. package/src/features/OpenUI5Enablement.js +119 -0
  191. package/src/features/OpenUI5Support.js +125 -0
  192. package/src/getSharedResource.js +30 -0
  193. package/src/i18nBundle.js +62 -11
  194. package/{dist → src/locale}/Locale.js +0 -10
  195. package/src/locale/RTLAwareRegistry.js +14 -0
  196. package/src/locale/applyDirection.js +17 -0
  197. package/src/locale/directionChange.js +32 -0
  198. package/src/locale/getEffectiveDir.js +28 -0
  199. package/src/locale/getLocale.js +41 -0
  200. package/src/locale/languageChange.js +22 -0
  201. package/src/locale/nextFallbackLocale.js +28 -0
  202. package/src/{util → locale}/normalizeLocale.js +8 -31
  203. package/src/renderer/LitRenderer.js +44 -7
  204. package/src/renderer/directives/style-map.js +72 -0
  205. package/src/renderer/executeTemplate.js +34 -0
  206. package/src/theming/CustomStyle.js +47 -6
  207. package/src/theming/ThemeLoaded.js +22 -0
  208. package/src/theming/applyTheme.js +79 -0
  209. package/src/theming/getConstructableStyle.js +30 -0
  210. package/src/theming/getEffectiveLinksHrefs.js +27 -0
  211. package/src/theming/getEffectiveStyle.js +39 -0
  212. package/src/theming/getStylesString.js +15 -0
  213. package/src/theming/getThemeDesignerTheme.js +87 -0
  214. package/src/theming/preloadLinks.js +23 -0
  215. package/src/thirdparty/_merge.js +32 -0
  216. package/src/thirdparty/isPlainObject.js +18 -0
  217. package/src/thirdparty/merge.js +10 -0
  218. package/src/types/CSSColor.js +9 -0
  219. package/src/{dates → types}/CalendarType.js +2 -2
  220. package/src/types/DataType.js +13 -1
  221. package/src/types/Float.js +14 -0
  222. package/src/types/Integer.js +4 -0
  223. package/src/types/InvisibleMessageMode.js +30 -0
  224. package/src/types/ItemNavigationBehavior.js +2 -7
  225. package/src/types/NavigationMode.js +1 -0
  226. package/src/types/PopupState.js +1 -1
  227. package/src/types/ValueState.js +2 -1
  228. package/src/updateShadowRoot.js +29 -0
  229. package/src/util/AriaLabelHelper.js +39 -0
  230. package/src/util/Caret.js +32 -0
  231. package/src/util/ColorConversion.js +398 -0
  232. package/src/util/FocusableElements.js +30 -11
  233. package/src/util/HTMLSanitizer.js +7 -0
  234. package/src/util/InvisibleMessage.js +69 -0
  235. package/src/util/PopupUtils.js +93 -0
  236. package/src/util/SlotsHelper.js +43 -0
  237. package/src/util/StringHelper.js +17 -2
  238. package/src/util/TabbableElements.js +9 -2
  239. package/src/util/arraysAreEqual.js +15 -0
  240. package/src/util/clamp.js +12 -0
  241. package/src/util/createLinkInHead.js +19 -0
  242. package/src/util/debounce.js +17 -0
  243. package/src/util/detectNavigatorLanguage.js +3 -1
  244. package/src/util/escapeRegex.js +10 -0
  245. package/src/util/generateHighlightedMarkup.js +42 -0
  246. package/src/util/getActiveElement.js +11 -0
  247. package/src/util/getClassCopy.js +10 -0
  248. package/src/util/getEffectiveContentDensity.js +5 -0
  249. package/src/util/getFileExtension.js +21 -0
  250. package/src/util/getNormalizedTarget.js +16 -0
  251. package/src/util/getSingletonElementInstance.js +13 -0
  252. package/src/util/isDefaultSlotProvided.js +11 -0
  253. package/src/util/isElementInView.js +15 -0
  254. package/src/util/isNodeHidden.js +1 -5
  255. package/src/util/isNodeTabbable.js +4 -4
  256. package/src/util/isValidPropertyName.js +11 -2
  257. package/src/util/setToArray.js +10 -0
  258. package/used-modules.txt +10 -0
  259. package/bundle.es5.js +0 -28
  260. package/config/.eslintrc.js +0 -3
  261. package/config/rollup.config.js +0 -1
  262. package/dist/Assets.js +0 -2
  263. package/dist/CSS.js +0 -48
  264. package/dist/FormatSettings.js +0 -31
  265. package/dist/LocaleProvider.js +0 -34
  266. package/dist/ResourceLoaderOverrides.js +0 -38
  267. package/dist/SVGIconRegistry.js +0 -54
  268. package/dist/boot.js +0 -25
  269. package/dist/compatibility/DOMObserver.js +0 -62
  270. package/dist/compatibility/patchNodeValue.js +0 -24
  271. package/dist/compatibility/whenPolyfillLoaded.js +0 -26
  272. package/dist/dates/CalendarDate.js +0 -203
  273. package/dist/dates/CalendarUtils.js +0 -99
  274. package/dist/delegate/CustomResize.js +0 -78
  275. package/dist/delegate/NativeResize.js +0 -44
  276. package/dist/events/PseudoEvents.js +0 -58
  277. package/dist/features/browsersupport/Edge.js +0 -6
  278. package/dist/features/browsersupport/IE11.js +0 -41
  279. package/dist/features/calendar/Buddhist.js +0 -1
  280. package/dist/features/calendar/Islamic.js +0 -1
  281. package/dist/features/calendar/Japanese.js +0 -1
  282. package/dist/features/calendar/Persian.js +0 -1
  283. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar.json +0 -5598
  284. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar_EG.json +0 -5598
  285. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar_SA.json +0 -5598
  286. package/dist/generated/assets/cldr/sap/ui/core/cldr/bg.json +0 -4789
  287. package/dist/generated/assets/cldr/sap/ui/core/cldr/ca.json +0 -4801
  288. package/dist/generated/assets/cldr/sap/ui/core/cldr/cs.json +0 -5245
  289. package/dist/generated/assets/cldr/sap/ui/core/cldr/da.json +0 -4696
  290. package/dist/generated/assets/cldr/sap/ui/core/cldr/de.json +0 -4797
  291. package/dist/generated/assets/cldr/sap/ui/core/cldr/de_AT.json +0 -4798
  292. package/dist/generated/assets/cldr/sap/ui/core/cldr/de_CH.json +0 -4796
  293. package/dist/generated/assets/cldr/sap/ui/core/cldr/el.json +0 -4694
  294. package/dist/generated/assets/cldr/sap/ui/core/cldr/el_CY.json +0 -4694
  295. package/dist/generated/assets/cldr/sap/ui/core/cldr/en.json +0 -4777
  296. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_AU.json +0 -4769
  297. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_GB.json +0 -4778
  298. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_HK.json +0 -4784
  299. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_IE.json +0 -4778
  300. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_IN.json +0 -4779
  301. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_NZ.json +0 -4778
  302. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_PG.json +0 -4779
  303. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_SG.json +0 -4780
  304. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_ZA.json +0 -4779
  305. package/dist/generated/assets/cldr/sap/ui/core/cldr/es.json +0 -4719
  306. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_AR.json +0 -4721
  307. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_BO.json +0 -4720
  308. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_CL.json +0 -4721
  309. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_CO.json +0 -4721
  310. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_MX.json +0 -4722
  311. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_PE.json +0 -4720
  312. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_UY.json +0 -4722
  313. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_VE.json +0 -4721
  314. package/dist/generated/assets/cldr/sap/ui/core/cldr/et.json +0 -4776
  315. package/dist/generated/assets/cldr/sap/ui/core/cldr/fa.json +0 -4704
  316. package/dist/generated/assets/cldr/sap/ui/core/cldr/fi.json +0 -4816
  317. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr.json +0 -4788
  318. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_BE.json +0 -4788
  319. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_CA.json +0 -4782
  320. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_CH.json +0 -4806
  321. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_LU.json +0 -4788
  322. package/dist/generated/assets/cldr/sap/ui/core/cldr/he.json +0 -5133
  323. package/dist/generated/assets/cldr/sap/ui/core/cldr/hi.json +0 -4680
  324. package/dist/generated/assets/cldr/sap/ui/core/cldr/hr.json +0 -4910
  325. package/dist/generated/assets/cldr/sap/ui/core/cldr/hu.json +0 -4664
  326. package/dist/generated/assets/cldr/sap/ui/core/cldr/id.json +0 -4500
  327. package/dist/generated/assets/cldr/sap/ui/core/cldr/it.json +0 -4757
  328. package/dist/generated/assets/cldr/sap/ui/core/cldr/it_CH.json +0 -4757
  329. package/dist/generated/assets/cldr/sap/ui/core/cldr/ja.json +0 -4599
  330. package/dist/generated/assets/cldr/sap/ui/core/cldr/kk.json +0 -4537
  331. package/dist/generated/assets/cldr/sap/ui/core/cldr/ko.json +0 -4574
  332. package/dist/generated/assets/cldr/sap/ui/core/cldr/lt.json +0 -5234
  333. package/dist/generated/assets/cldr/sap/ui/core/cldr/lv.json +0 -4902
  334. package/dist/generated/assets/cldr/sap/ui/core/cldr/ms.json +0 -4352
  335. package/dist/generated/assets/cldr/sap/ui/core/cldr/nb.json +0 -4784
  336. package/dist/generated/assets/cldr/sap/ui/core/cldr/nl.json +0 -4790
  337. package/dist/generated/assets/cldr/sap/ui/core/cldr/nl_BE.json +0 -4790
  338. package/dist/generated/assets/cldr/sap/ui/core/cldr/pl.json +0 -5223
  339. package/dist/generated/assets/cldr/sap/ui/core/cldr/pt.json +0 -4703
  340. package/dist/generated/assets/cldr/sap/ui/core/cldr/pt_PT.json +0 -4753
  341. package/dist/generated/assets/cldr/sap/ui/core/cldr/ro.json +0 -4881
  342. package/dist/generated/assets/cldr/sap/ui/core/cldr/ru.json +0 -5157
  343. package/dist/generated/assets/cldr/sap/ui/core/cldr/ru_UA.json +0 -5157
  344. package/dist/generated/assets/cldr/sap/ui/core/cldr/sk.json +0 -5125
  345. package/dist/generated/assets/cldr/sap/ui/core/cldr/sl.json +0 -5105
  346. package/dist/generated/assets/cldr/sap/ui/core/cldr/sr.json +0 -4908
  347. package/dist/generated/assets/cldr/sap/ui/core/cldr/sv.json +0 -4818
  348. package/dist/generated/assets/cldr/sap/ui/core/cldr/th.json +0 -4633
  349. package/dist/generated/assets/cldr/sap/ui/core/cldr/tr.json +0 -4791
  350. package/dist/generated/assets/cldr/sap/ui/core/cldr/uk.json +0 -5126
  351. package/dist/generated/assets/cldr/sap/ui/core/cldr/vi.json +0 -4510
  352. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_CN.json +0 -4469
  353. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_HK.json +0 -4479
  354. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_SG.json +0 -4479
  355. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_TW.json +0 -4565
  356. package/dist/json-imports/LocaleData.js +0 -171
  357. package/dist/renderer/ifDefined.js +0 -21
  358. package/dist/resources/bundle.es5.js +0 -12643
  359. package/dist/resources/bundle.es5.js.map +0 -1
  360. package/dist/resources/bundle.esm.js +0 -7450
  361. package/dist/resources/bundle.esm.js.map +0 -1
  362. package/dist/shims/Core-shim.js +0 -52
  363. package/dist/shims/jquery-shim.js +0 -89
  364. package/dist/test-resources/assets/Themes.js +0 -11
  365. package/dist/test-resources/elements/Child.js +0 -35
  366. package/dist/test-resources/elements/Generic.js +0 -83
  367. package/dist/test-resources/elements/GenericExt.js +0 -26
  368. package/dist/test-resources/elements/NoShadowDOM.js +0 -13
  369. package/dist/test-resources/elements/Parent.js +0 -36
  370. package/dist/test-resources/pages/AllTestElements.html +0 -42
  371. package/dist/test-resources/pages/Configuration.html +0 -20
  372. package/dist/test-resources/pages/ConfigurationScript.html +0 -36
  373. package/dist/test-resources/specs/ConfigurationChange.spec.js +0 -25
  374. package/dist/test-resources/specs/ConfigurationScript.spec.js +0 -61
  375. package/dist/test-resources/specs/ConfigurationURL.spec.js +0 -45
  376. package/dist/test-resources/specs/CustomTheme.spec.js +0 -25
  377. package/dist/test-resources/specs/Theming.spec.js +0 -31
  378. package/dist/test-resources/specs/UI5ElementInvalidation.js +0 -258
  379. package/dist/test-resources/specs/UI5ElementLifecycle.js +0 -93
  380. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +0 -101
  381. package/dist/test-resources/specs/UI5ElementMetadataExt.js +0 -40
  382. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +0 -12
  383. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +0 -65
  384. package/dist/test-resources/specs/UI5ElementShadowDOM.js +0 -22
  385. package/dist/test-resources/specs/UI5ElementSlots.js +0 -34
  386. package/dist/theming/StyleInjection.js +0 -67
  387. package/dist/thirdparty/Array.from.js +0 -16
  388. package/dist/thirdparty/Array.prototype.fill.js +0 -44
  389. package/dist/thirdparty/Array.prototype.find.js +0 -46
  390. package/dist/thirdparty/Array.prototype.includes.js +0 -51
  391. package/dist/thirdparty/Element.prototype.closest.js +0 -11
  392. package/dist/thirdparty/Element.prototype.matches.js +0 -6
  393. package/dist/thirdparty/Map.prototype.keys.js +0 -9
  394. package/dist/thirdparty/Number.isInteger.js +0 -5
  395. package/dist/thirdparty/Number.isNaN.js +0 -1
  396. package/dist/thirdparty/Number.parseInt.js +0 -1
  397. package/dist/thirdparty/Object.assign.js +0 -31
  398. package/dist/thirdparty/Object.entries.js +0 -11
  399. package/dist/thirdparty/Symbol.js +0 -2
  400. package/dist/thirdparty/WeakSet.js +0 -27
  401. package/dist/thirdparty/events-polyfills.js +0 -89
  402. package/dist/thirdparty/fetch.js +0 -1
  403. package/dist/thirdparty/template.js +0 -600
  404. package/dist/util/CSSTransformUtils.js +0 -90
  405. package/dist/webcomponentsjs/LICENSE.md +0 -19
  406. package/dist/webcomponentsjs/README.md +0 -229
  407. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  408. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  409. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  410. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  411. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  412. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  413. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  414. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  415. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  416. package/dist/webcomponentsjs/package.json +0 -46
  417. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  418. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  419. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  420. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  421. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  422. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  423. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  424. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  425. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  426. package/src/Assets.js +0 -2
  427. package/src/CSS.js +0 -48
  428. package/src/FormatSettings.js +0 -31
  429. package/src/LocaleProvider.js +0 -34
  430. package/src/ResourceLoaderOverrides.js +0 -38
  431. package/src/SVGIconRegistry.js +0 -54
  432. package/src/boot.js +0 -25
  433. package/src/compatibility/DOMObserver.js +0 -62
  434. package/src/compatibility/patchNodeValue.js +0 -24
  435. package/src/compatibility/whenPolyfillLoaded.js +0 -26
  436. package/src/dates/CalendarDate.js +0 -203
  437. package/src/dates/CalendarUtils.js +0 -99
  438. package/src/delegate/CustomResize.js +0 -78
  439. package/src/delegate/NativeResize.js +0 -44
  440. package/src/events/PseudoEvents.js +0 -58
  441. package/src/features/browsersupport/Edge.js +0 -6
  442. package/src/features/browsersupport/IE11.js +0 -41
  443. package/src/features/calendar/Buddhist.js +0 -1
  444. package/src/features/calendar/Islamic.js +0 -1
  445. package/src/features/calendar/Japanese.js +0 -1
  446. package/src/features/calendar/Persian.js +0 -1
  447. package/src/json-imports/LocaleData.js +0 -171
  448. package/src/renderer/ifDefined.js +0 -21
  449. package/src/shims/Core-shim.js +0 -52
  450. package/src/shims/jquery-shim.js +0 -89
  451. package/src/theming/StyleInjection.js +0 -67
  452. package/src/thirdparty/Array.from.js +0 -16
  453. package/src/thirdparty/Array.prototype.fill.js +0 -44
  454. package/src/thirdparty/Array.prototype.find.js +0 -46
  455. package/src/thirdparty/Array.prototype.includes.js +0 -51
  456. package/src/thirdparty/Element.prototype.closest.js +0 -11
  457. package/src/thirdparty/Element.prototype.matches.js +0 -6
  458. package/src/thirdparty/Map.prototype.keys.js +0 -9
  459. package/src/thirdparty/Number.isInteger.js +0 -5
  460. package/src/thirdparty/Number.isNaN.js +0 -1
  461. package/src/thirdparty/Number.parseInt.js +0 -1
  462. package/src/thirdparty/Object.assign.js +0 -31
  463. package/src/thirdparty/Object.entries.js +0 -11
  464. package/src/thirdparty/Symbol.js +0 -2
  465. package/src/thirdparty/WeakSet.js +0 -27
  466. package/src/thirdparty/events-polyfills.js +0 -89
  467. package/src/thirdparty/fetch.js +0 -1
  468. package/src/thirdparty/template.js +0 -600
  469. package/src/util/CSSTransformUtils.js +0 -90
@@ -1,4881 +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": "afar",
5
- "ab": "abhază",
6
- "ace": "aceh",
7
- "ach": "acoli",
8
- "ada": "adangme",
9
- "ady": "adyghe",
10
- "ae": "avestană",
11
- "af": "afrikaans",
12
- "afh": "afrihili",
13
- "agq": "aghem",
14
- "ain": "ainu",
15
- "ak": "akan",
16
- "akk": "akkadiană",
17
- "ale": "aleută",
18
- "alt": "altaică meridională",
19
- "am": "amharică",
20
- "an": "aragoneză",
21
- "ang": "engleză veche",
22
- "anp": "angika",
23
- "ar": "arabă",
24
- "ar_001": "arabă standard modernă",
25
- "arc": "aramaică",
26
- "arn": "mapuche",
27
- "arp": "arapaho",
28
- "ars": "arabă najdi",
29
- "arw": "arawak",
30
- "as": "asameză",
31
- "asa": "asu",
32
- "ast": "asturiană",
33
- "av": "avară",
34
- "awa": "awadhi",
35
- "ay": "aymara",
36
- "az": "azeră",
37
- "az_alt-short": "azeră",
38
- "ba": "bașkiră",
39
- "bal": "baluchi",
40
- "ban": "balineză",
41
- "bas": "basaa",
42
- "bax": "bamun",
43
- "bbj": "ghomala",
44
- "be": "belarusă",
45
- "bej": "beja",
46
- "bem": "bemba",
47
- "bez": "bena",
48
- "bfd": "bafut",
49
- "bg": "bulgară",
50
- "bgn": "baluchi occidentală",
51
- "bho": "bhojpuri",
52
- "bi": "bislama",
53
- "bik": "bikol",
54
- "bin": "bini",
55
- "bkm": "kom",
56
- "bla": "siksika",
57
- "bm": "bambara",
58
- "bn": "bengaleză",
59
- "bo": "tibetană",
60
- "br": "bretonă",
61
- "bra": "braj",
62
- "brx": "bodo",
63
- "bs": "bosniacă",
64
- "bss": "akoose",
65
- "bua": "buriat",
66
- "bug": "bugineză",
67
- "bum": "bulu",
68
- "byn": "blin",
69
- "byv": "medumba",
70
- "ca": "catalană",
71
- "cad": "caddo",
72
- "car": "carib",
73
- "cay": "cayuga",
74
- "cch": "atsam",
75
- "ccp": "ccp",
76
- "ce": "cecenă",
77
- "ceb": "cebuană",
78
- "cgg": "chiga",
79
- "ch": "chamorro",
80
- "chb": "chibcha",
81
- "chg": "chagatai",
82
- "chk": "chuukese",
83
- "chm": "mari",
84
- "chn": "jargon chinook",
85
- "cho": "choctaw",
86
- "chp": "chipewyan",
87
- "chr": "cherokee",
88
- "chy": "cheyenne",
89
- "ckb": "kurdă centrală",
90
- "co": "corsicană",
91
- "cop": "coptă",
92
- "cr": "cree",
93
- "crh": "turcă crimeeană",
94
- "crs": "creolă franceză seselwa",
95
- "cs": "cehă",
96
- "csb": "cașubiană",
97
- "cu": "slavonă",
98
- "cv": "ciuvașă",
99
- "cy": "galeză",
100
- "da": "daneză",
101
- "dak": "dakota",
102
- "dar": "dargwa",
103
- "dav": "taita",
104
- "de": "germană",
105
- "de_AT": "germană (Austria)",
106
- "de_CH": "germană standard (Elveția)",
107
- "del": "delaware",
108
- "den": "slave",
109
- "dgr": "dogrib",
110
- "din": "dinka",
111
- "dje": "zarma",
112
- "doi": "dogri",
113
- "dsb": "sorabă de jos",
114
- "dua": "duala",
115
- "dum": "neerlandeză medie",
116
- "dv": "divehi",
117
- "dyo": "jola-fonyi",
118
- "dyu": "dyula",
119
- "dz": "dzongkha",
120
- "dzg": "dazaga",
121
- "ebu": "embu",
122
- "ee": "ewe",
123
- "efi": "efik",
124
- "egy": "egipteană veche",
125
- "eka": "ekajuk",
126
- "el": "greacă",
127
- "elx": "elamită",
128
- "en": "engleză",
129
- "en_AU": "engleză (Australia)",
130
- "en_CA": "engleză (Canada)",
131
- "en_GB": "engleză (Regatul Unit)",
132
- "en_GB-alt-short": "engleză (Regatul Unit)",
133
- "en_US": "engleză (Statele Unite ale Americii)",
134
- "en_US-alt-short": "engleză (S.U.A)",
135
- "enm": "engleză medie",
136
- "eo": "esperanto",
137
- "es": "spaniolă",
138
- "es_419": "spaniolă (America Latină)",
139
- "es_ES": "spaniolă (Europa)",
140
- "es_MX": "spaniolă (Mexic)",
141
- "et": "estonă",
142
- "eu": "bască",
143
- "ewo": "ewondo",
144
- "fa": "persană",
145
- "fan": "fang",
146
- "fat": "fanti",
147
- "ff": "fulah",
148
- "fi": "finlandeză",
149
- "fil": "filipineză",
150
- "fj": "fijiană",
151
- "fo": "faroeză",
152
- "fon": "fon",
153
- "fr": "franceză",
154
- "fr_CA": "franceză (Canada)",
155
- "fr_CH": "franceză (Elveția)",
156
- "frc": "franceză cajun",
157
- "frm": "franceză medie",
158
- "fro": "franceză veche",
159
- "frr": "frizonă nordică",
160
- "frs": "frizonă orientală",
161
- "fur": "friulană",
162
- "fy": "frizonă occidentală",
163
- "ga": "irlandeză",
164
- "gaa": "ga",
165
- "gag": "găgăuză",
166
- "gan": "chineză gan",
167
- "gay": "gayo",
168
- "gba": "gbaya",
169
- "gd": "gaelică scoțiană",
170
- "gez": "geez",
171
- "gil": "gilbertină",
172
- "gl": "galiciană",
173
- "gmh": "germană înaltă medie",
174
- "gn": "guarani",
175
- "goh": "germană înaltă veche",
176
- "gon": "gondi",
177
- "gor": "gorontalo",
178
- "got": "gotică",
179
- "grb": "grebo",
180
- "grc": "greacă veche",
181
- "gsw": "germană (Elveția)",
182
- "gu": "gujarati",
183
- "guz": "gusii",
184
- "gv": "manx",
185
- "gwi": "gwichʼin",
186
- "ha": "hausa",
187
- "hai": "haida",
188
- "hak": "chineză hakka",
189
- "haw": "hawaiiană",
190
- "he": "ebraică",
191
- "hi": "hindi",
192
- "hil": "hiligaynon",
193
- "hit": "hitită",
194
- "hmn": "hmong",
195
- "ho": "hiri motu",
196
- "hr": "croată",
197
- "hsb": "sorabă de sus",
198
- "hsn": "chineză xiang",
199
- "ht": "haitiană",
200
- "hu": "maghiară",
201
- "hup": "hupa",
202
- "hy": "armeană",
203
- "hz": "herero",
204
- "ia": "interlingua",
205
- "iba": "iban",
206
- "ibb": "ibibio",
207
- "id": "indoneziană",
208
- "ie": "interlingue",
209
- "ig": "igbo",
210
- "ii": "yi din Sichuan",
211
- "ik": "inupiak",
212
- "ilo": "iloko",
213
- "inh": "ingușă",
214
- "io": "ido",
215
- "is": "islandeză",
216
- "it": "italiană",
217
- "iu": "inuktitut",
218
- "ja": "japoneză",
219
- "jbo": "lojban",
220
- "jgo": "ngomba",
221
- "jmc": "machame",
222
- "jpr": "iudeo-persană",
223
- "jrb": "iudeo-arabă",
224
- "jv": "javaneză",
225
- "ka": "georgiană",
226
- "kaa": "karakalpak",
227
- "kab": "kabyle",
228
- "kac": "kachin",
229
- "kaj": "jju",
230
- "kam": "kamba",
231
- "kaw": "kawi",
232
- "kbd": "kabardian",
233
- "kbl": "kanembu",
234
- "kcg": "tyap",
235
- "kde": "makonde",
236
- "kea": "kabuverdianu",
237
- "kfo": "koro",
238
- "kg": "congoleză",
239
- "kha": "khasi",
240
- "kho": "khotaneză",
241
- "khq": "koyra chiini",
242
- "ki": "kikuyu",
243
- "kj": "kuanyama",
244
- "kk": "kazahă",
245
- "kkj": "kako",
246
- "kl": "kalaallisut",
247
- "kln": "kalenjin",
248
- "km": "khmeră",
249
- "kmb": "kimbundu",
250
- "kn": "kannada",
251
- "ko": "coreeană",
252
- "koi": "komi-permiak",
253
- "kok": "konkani",
254
- "kos": "kosrae",
255
- "kpe": "kpelle",
256
- "kr": "kanuri",
257
- "krc": "karaceai-balkar",
258
- "krl": "kareliană",
259
- "kru": "kurukh",
260
- "ks": "cașmiră",
261
- "ksb": "shambala",
262
- "ksf": "bafia",
263
- "ksh": "kölsch",
264
- "ku": "kurdă",
265
- "kum": "kumyk",
266
- "kut": "kutenai",
267
- "kv": "komi",
268
- "kw": "cornică",
269
- "ky": "kârgâză",
270
- "la": "latină",
271
- "lad": "ladino",
272
- "lag": "langi",
273
- "lah": "lahnda",
274
- "lam": "lamba",
275
- "lb": "luxemburgheză",
276
- "lez": "lezghian",
277
- "lg": "ganda",
278
- "li": "limburgheză",
279
- "lkt": "lakota",
280
- "ln": "lingala",
281
- "lo": "laoțiană",
282
- "lol": "mongo",
283
- "lou": "creolă (Louisiana)",
284
- "loz": "lozi",
285
- "lrc": "luri de nord",
286
- "lt": "lituaniană",
287
- "lu": "luba-katanga",
288
- "lua": "luba-lulua",
289
- "lui": "luiseno",
290
- "lun": "lunda",
291
- "luo": "luo",
292
- "lus": "mizo",
293
- "luy": "luyia",
294
- "lv": "letonă",
295
- "mad": "madureză",
296
- "maf": "mafa",
297
- "mag": "magahi",
298
- "mai": "maithili",
299
- "mak": "makasar",
300
- "man": "mandingo",
301
- "mas": "masai",
302
- "mde": "maba",
303
- "mdf": "moksha",
304
- "mdr": "mandar",
305
- "men": "mende",
306
- "mer": "meru",
307
- "mfe": "morisyen",
308
- "mg": "malgașă",
309
- "mga": "irlandeză medie",
310
- "mgh": "makhuwa-meetto",
311
- "mgo": "meta’",
312
- "mh": "marshalleză",
313
- "mi": "maori",
314
- "mic": "micmac",
315
- "min": "minangkabau",
316
- "mk": "macedoneană",
317
- "ml": "malayalam",
318
- "mn": "mongolă",
319
- "mnc": "manciuriană",
320
- "mni": "manipuri",
321
- "moh": "mohawk",
322
- "mos": "mossi",
323
- "mr": "marathi",
324
- "ms": "malaeză",
325
- "mt": "malteză",
326
- "mua": "mundang",
327
- "mul": "mai multe limbi",
328
- "mus": "creek",
329
- "mwl": "mirandeză",
330
- "mwr": "marwari",
331
- "my": "birmană",
332
- "mye": "myene",
333
- "myv": "erzya",
334
- "mzn": "mazanderani",
335
- "na": "nauru",
336
- "nan": "chineză min nan",
337
- "nap": "napolitană",
338
- "naq": "nama",
339
- "nb": "norvegiană bokmål",
340
- "nd": "ndebele de nord",
341
- "nds": "germana de jos",
342
- "nds_NL": "saxona de jos",
343
- "ne": "nepaleză",
344
- "new": "newari",
345
- "ng": "ndonga",
346
- "nia": "nias",
347
- "niu": "niueană",
348
- "nl": "neerlandeză",
349
- "nl_BE": "flamandă",
350
- "nmg": "kwasio",
351
- "nn": "norvegiană nynorsk",
352
- "nnh": "ngiemboon",
353
- "no": "norvegiană",
354
- "nog": "nogai",
355
- "non": "nordică veche",
356
- "nqo": "n’ko",
357
- "nr": "ndebele de sud",
358
- "nso": "sotho de nord",
359
- "nus": "nuer",
360
- "nv": "navajo",
361
- "nwc": "newari clasică",
362
- "ny": "nyanja",
363
- "nym": "nyamwezi",
364
- "nyn": "nyankole",
365
- "nyo": "nyoro",
366
- "nzi": "nzima",
367
- "oc": "occitană",
368
- "oj": "ojibwa",
369
- "om": "oromo",
370
- "or": "odia",
371
- "os": "osetă",
372
- "osa": "osage",
373
- "ota": "turcă otomană",
374
- "pa": "punjabi",
375
- "pag": "pangasinan",
376
- "pal": "pahlavi",
377
- "pam": "pampanga",
378
- "pap": "papiamento",
379
- "pau": "palauană",
380
- "pcm": "pidgin nigerian",
381
- "peo": "persană veche",
382
- "phn": "feniciană",
383
- "pi": "pali",
384
- "pl": "poloneză",
385
- "pon": "pohnpeiană",
386
- "prg": "prusacă",
387
- "pro": "provensală veche",
388
- "ps": "paștună",
389
- "ps_alt-variant": "pushto",
390
- "pt": "portugheză",
391
- "pt_BR": "portugheză (Brazilia)",
392
- "pt_PT": "portugheză (Europa)",
393
- "qu": "quechua",
394
- "quc": "quiché",
395
- "raj": "rajasthani",
396
- "rap": "rapanui",
397
- "rar": "rarotongan",
398
- "rm": "romanșă",
399
- "rn": "kirundi",
400
- "ro": "română",
401
- "ro_MD": "română (Republica Moldova)",
402
- "rof": "rombo",
403
- "rom": "romani",
404
- "root": "root",
405
- "ru": "rusă",
406
- "rup": "aromână",
407
- "rw": "kinyarwanda",
408
- "rwk": "rwa",
409
- "sa": "sanscrită",
410
- "sad": "sandawe",
411
- "sah": "sakha",
412
- "sam": "aramaică samariteană",
413
- "saq": "samburu",
414
- "sas": "sasak",
415
- "sat": "santali",
416
- "sba": "ngambay",
417
- "sbp": "sangu",
418
- "sc": "sardiniană",
419
- "scn": "siciliană",
420
- "sco": "scots",
421
- "sd": "sindhi",
422
- "sdh": "kurdă de sud",
423
- "se": "sami de nord",
424
- "see": "seneca",
425
- "seh": "sena",
426
- "sel": "selkup",
427
- "ses": "koyraboro Senni",
428
- "sg": "sango",
429
- "sga": "irlandeză veche",
430
- "sh": "sârbo-croată",
431
- "shi": "tachelhit",
432
- "shn": "shan",
433
- "shu": "arabă ciadiană",
434
- "si": "singhaleză",
435
- "sid": "sidamo",
436
- "sk": "slovacă",
437
- "sl": "slovenă",
438
- "sm": "samoană",
439
- "sma": "sami de sud",
440
- "smj": "sami lule",
441
- "smn": "sami inari",
442
- "sms": "sami skolt",
443
- "sn": "shona",
444
- "snk": "soninke",
445
- "so": "somaleză",
446
- "sog": "sogdien",
447
- "sq": "albaneză",
448
- "sr": "sârbă",
449
- "srn": "sranan tongo",
450
- "srr": "serer",
451
- "ss": "swati",
452
- "ssy": "saho",
453
- "st": "sesotho",
454
- "su": "sundaneză",
455
- "suk": "sukuma",
456
- "sus": "susu",
457
- "sux": "sumeriană",
458
- "sv": "suedeză",
459
- "sw": "swahili",
460
- "sw_CD": "swahili (R.D. Congo)",
461
- "swb": "comoreză",
462
- "syc": "siriacă clasică",
463
- "syr": "siriacă",
464
- "ta": "tamilă",
465
- "te": "telugu",
466
- "tem": "timne",
467
- "teo": "teso",
468
- "ter": "tereno",
469
- "tet": "tetum",
470
- "tg": "tadjică",
471
- "th": "thailandeză",
472
- "ti": "tigrină",
473
- "tig": "tigre",
474
- "tiv": "tiv",
475
- "tk": "turkmenă",
476
- "tkl": "tokelau",
477
- "tl": "tagalog",
478
- "tlh": "klingoniană",
479
- "tli": "tlingit",
480
- "tmh": "tamashek",
481
- "tn": "setswana",
482
- "to": "tongană",
483
- "tog": "nyasa tonga",
484
- "tpi": "tok pisin",
485
- "tr": "turcă",
486
- "trv": "taroko",
487
- "ts": "tsonga",
488
- "tsi": "tsimshian",
489
- "tt": "tătară",
490
- "tum": "tumbuka",
491
- "tvl": "tuvalu",
492
- "tw": "twi",
493
- "twq": "tasawaq",
494
- "ty": "tahitiană",
495
- "tyv": "tuvană",
496
- "tzm": "tamazight din Altasul Central",
497
- "udm": "udmurt",
498
- "ug": "uigură",
499
- "uga": "ugaritică",
500
- "uk": "ucraineană",
501
- "umb": "umbundu",
502
- "und": "limbă necunoscută",
503
- "ur": "urdu",
504
- "uz": "uzbecă",
505
- "vai": "vai",
506
- "ve": "venda",
507
- "vi": "vietnameză",
508
- "vo": "volapuk",
509
- "vot": "votică",
510
- "vun": "vunjo",
511
- "wa": "valonă",
512
- "wae": "walser",
513
- "wal": "wolaita",
514
- "war": "waray",
515
- "was": "washo",
516
- "wbp": "warlpiri",
517
- "wo": "wolof",
518
- "wuu": "chineză wu",
519
- "xal": "calmucă",
520
- "xh": "xhosa",
521
- "xog": "soga",
522
- "yao": "yao",
523
- "yap": "yapeză",
524
- "yav": "yangben",
525
- "ybb": "yemba",
526
- "yi": "idiș",
527
- "yo": "yoruba",
528
- "yue": "cantoneză",
529
- "za": "zhuang",
530
- "zap": "zapotecă",
531
- "zbl": "simboluri Bilss",
532
- "zen": "zenaga",
533
- "zgh": "tamazight standard marocană",
534
- "zh": "chineză",
535
- "zh_Hans": "chineză simplificată",
536
- "zh_Hant": "chineză tradițională",
537
- "zu": "zulu",
538
- "zun": "zuni",
539
- "zxx": "fară conținut lingvistic",
540
- "zza": "zaza"
541
- },
542
- "scripts": {
543
- "Adlm": "Adlm",
544
- "Aghb": "Aghb",
545
- "Ahom": "Ahom",
546
- "Arab": "arabă",
547
- "Arab-alt-variant": "persano-arabă",
548
- "Armi": "Armi",
549
- "Armn": "armeană",
550
- "Avst": "Avst",
551
- "Bali": "balineză",
552
- "Bamu": "Bamu",
553
- "Bass": "Bass",
554
- "Batk": "Batk",
555
- "Beng": "bengaleză",
556
- "Bhks": "Bhks",
557
- "Bopo": "bopomofo",
558
- "Brah": "Brah",
559
- "Brai": "braille",
560
- "Bugi": "Bugi",
561
- "Buhd": "Buhd",
562
- "Cakm": "Cakm",
563
- "Cans": "silabică aborigenă canadiană unificată",
564
- "Cari": "Cari",
565
- "Cham": "Cham",
566
- "Cher": "Cher",
567
- "Copt": "coptă",
568
- "Cprt": "cipriotă",
569
- "Cyrl": "chirilică",
570
- "Cyrs": "chirilică slavonă bisericească veche",
571
- "Deva": "devanagari",
572
- "Dogr": "Dogr",
573
- "Dsrt": "mormonă",
574
- "Dupl": "Dupl",
575
- "Egyd": "demotică egipteană",
576
- "Egyh": "hieratică egipteană",
577
- "Egyp": "hieroglife egiptene",
578
- "Elba": "Elba",
579
- "Ethi": "etiopiană",
580
- "Geok": "georgiană bisericească",
581
- "Geor": "georgiană",
582
- "Glag": "glagolitică",
583
- "Gong": "Gong",
584
- "Gonm": "Gonm",
585
- "Goth": "gotică",
586
- "Gran": "Gran",
587
- "Grek": "greacă",
588
- "Gujr": "gujarati",
589
- "Guru": "gurmukhi",
590
- "Hanb": "hanb",
591
- "Hang": "hangul",
592
- "Hani": "han",
593
- "Hano": "Hano",
594
- "Hans": "simplificată",
595
- "Hans-alt-stand-alone": "han simplificată",
596
- "Hant": "tradițională",
597
- "Hant-alt-stand-alone": "han tradițională",
598
- "Hatr": "Hatr",
599
- "Hebr": "ebraică",
600
- "Hira": "hiragana",
601
- "Hluw": "Hluw",
602
- "Hmng": "Hmng",
603
- "Hrkt": "silabică japoneză",
604
- "Hung": "maghiară veche",
605
- "Inds": "indus",
606
- "Ital": "italică veche",
607
- "Jamo": "jamo",
608
- "Java": "javaneză",
609
- "Jpan": "japoneză",
610
- "Kali": "Kali",
611
- "Kana": "katakana",
612
- "Khar": "Khar",
613
- "Khmr": "khmeră",
614
- "Khoj": "Khoj",
615
- "Knda": "kannada",
616
- "Kore": "coreeană",
617
- "Kthi": "Kthi",
618
- "Lana": "Lana",
619
- "Laoo": "laoțiană",
620
- "Latf": "latină Fraktur",
621
- "Latg": "latină gaelică",
622
- "Latn": "latină",
623
- "Lepc": "Lepc",
624
- "Limb": "Limb",
625
- "Lina": "lineară A",
626
- "Linb": "lineară B",
627
- "Lisu": "Lisu",
628
- "Lyci": "Lyci",
629
- "Lydi": "lidiană",
630
- "Mahj": "Mahj",
631
- "Maka": "Maka",
632
- "Mand": "Mand",
633
- "Mani": "Mani",
634
- "Marc": "Marc",
635
- "Maya": "hieroglife maya",
636
- "Medf": "Medf",
637
- "Mend": "Mend",
638
- "Merc": "Merc",
639
- "Mero": "Mero",
640
- "Mlym": "malayalam",
641
- "Modi": "Modi",
642
- "Mong": "mongolă",
643
- "Mroo": "Mroo",
644
- "Mtei": "Mtei",
645
- "Mult": "Mult",
646
- "Mymr": "birmană",
647
- "Narb": "Narb",
648
- "Nbat": "Nbat",
649
- "Newa": "Newa",
650
- "Nkoo": "Nkoo",
651
- "Nshu": "Nshu",
652
- "Ogam": "Ogam",
653
- "Olck": "Olck",
654
- "Orkh": "Orkh",
655
- "Orya": "oriya",
656
- "Osge": "Osge",
657
- "Osma": "Osma",
658
- "Palm": "Palm",
659
- "Pauc": "Pauc",
660
- "Perm": "Perm",
661
- "Phag": "Phag",
662
- "Phli": "Phli",
663
- "Phlp": "Phlp",
664
- "Phnx": "feniciană",
665
- "Plrd": "Plrd",
666
- "Prti": "Prti",
667
- "Qaag": "Qaag",
668
- "Rjng": "Rjng",
669
- "Rohg": "Rohg",
670
- "Runr": "runică",
671
- "Samr": "Samr",
672
- "Sarb": "Sarb",
673
- "Saur": "Saur",
674
- "Sgnw": "Sgnw",
675
- "Shaw": "Shaw",
676
- "Shrd": "Shrd",
677
- "Sidd": "Sidd",
678
- "Sind": "Sind",
679
- "Sinh": "singaleză",
680
- "Sogd": "Sogd",
681
- "Sogo": "Sogo",
682
- "Sora": "Sora",
683
- "Soyo": "Soyo",
684
- "Sund": "Sund",
685
- "Sylo": "Sylo",
686
- "Syrc": "siriacă",
687
- "Syrj": "siriacă occidentală",
688
- "Syrn": "siriacă orientală",
689
- "Tagb": "Tagb",
690
- "Takr": "Takr",
691
- "Tale": "Tale",
692
- "Talu": "Talu",
693
- "Taml": "tamilă",
694
- "Tang": "Tang",
695
- "Tavt": "Tavt",
696
- "Telu": "telugu",
697
- "Tfng": "berberă",
698
- "Tglg": "Tglg",
699
- "Thaa": "thaana",
700
- "Thai": "thailandeză",
701
- "Tibt": "tibetană",
702
- "Tirh": "Tirh",
703
- "Ugar": "Ugar",
704
- "Vaii": "Vaii",
705
- "Wara": "Wara",
706
- "Xpeo": "persană veche",
707
- "Xsux": "cuneiformă sumero-akkadiană",
708
- "Yiii": "Yiii",
709
- "Zanb": "Zanb",
710
- "Zinh": "moștenită",
711
- "Zmth": "notație matematică",
712
- "Zsye": "emoji",
713
- "Zsym": "simboluri",
714
- "Zxxx": "nescrisă",
715
- "Zyyy": "comună",
716
- "Zzzz": "scriere necunoscută"
717
- },
718
- "territories": {
719
- "142": "Asia",
720
- "143": "Asia Centrală",
721
- "145": "Asia Occidentală",
722
- "150": "Europa",
723
- "151": "Europa Orientală",
724
- "154": "Europa Septentrională",
725
- "155": "Europa Occidentală",
726
- "202": "Africa Subsahariană",
727
- "419": "America Latină",
728
- "001": "Lume",
729
- "002": "Africa",
730
- "003": "America de Nord",
731
- "005": "America de Sud",
732
- "009": "Oceania",
733
- "011": "Africa Occidentală",
734
- "013": "America Centrală",
735
- "014": "Africa Orientală",
736
- "015": "Africa Septentrională",
737
- "017": "Africa Centrală",
738
- "018": "Africa Meridională",
739
- "019": "Americi",
740
- "021": "America Septentrională",
741
- "029": "Caraibe",
742
- "030": "Asia Orientală",
743
- "034": "Asia Meridională",
744
- "035": "Asia de Sud-Est",
745
- "039": "Europa Meridională",
746
- "053": "Australasia",
747
- "054": "Melanezia",
748
- "057": "Regiunea Micronezia",
749
- "061": "Polinezia",
750
- "AC": "Insula Ascension",
751
- "AD": "Andorra",
752
- "AE": "Emiratele Arabe Unite",
753
- "AF": "Afganistan",
754
- "AG": "Antigua și Barbuda",
755
- "AI": "Anguilla",
756
- "AL": "Albania",
757
- "AM": "Armenia",
758
- "AO": "Angola",
759
- "AQ": "Antarctica",
760
- "AR": "Argentina",
761
- "AS": "Samoa Americană",
762
- "AT": "Austria",
763
- "AU": "Australia",
764
- "AW": "Aruba",
765
- "AX": "Insulele Åland",
766
- "AZ": "Azerbaidjan",
767
- "BA": "Bosnia și Herțegovina",
768
- "BB": "Barbados",
769
- "BD": "Bangladesh",
770
- "BE": "Belgia",
771
- "BF": "Burkina Faso",
772
- "BG": "Bulgaria",
773
- "BH": "Bahrain",
774
- "BI": "Burundi",
775
- "BJ": "Benin",
776
- "BL": "Saint-Barthélemy",
777
- "BM": "Bermuda",
778
- "BN": "Brunei",
779
- "BO": "Bolivia",
780
- "BQ": "Insulele Caraibe Olandeze",
781
- "BR": "Brazilia",
782
- "BS": "Bahamas",
783
- "BT": "Bhutan",
784
- "BV": "Insula Bouvet",
785
- "BW": "Botswana",
786
- "BY": "Belarus",
787
- "BZ": "Belize",
788
- "CA": "Canada",
789
- "CC": "Insulele Cocos (Keeling)",
790
- "CD": "Congo - Kinshasa",
791
- "CD-alt-variant": "Congo (Republica Democrată Congo)",
792
- "CF": "Republica Centrafricană",
793
- "CG": "Congo - Brazzaville",
794
- "CG-alt-variant": "Congo (Republica)",
795
- "CH": "Elveția",
796
- "CI": "Côte d’Ivoire",
797
- "CI-alt-variant": "Coasta de Fildeș",
798
- "CK": "Insulele Cook",
799
- "CL": "Chile",
800
- "CM": "Camerun",
801
- "CN": "China",
802
- "CO": "Columbia",
803
- "CP": "Insula Clipperton",
804
- "CR": "Costa Rica",
805
- "CU": "Cuba",
806
- "CV": "Capul Verde",
807
- "CW": "Curaçao",
808
- "CX": "Insula Christmas",
809
- "CY": "Cipru",
810
- "CZ": "Cehia",
811
- "CZ-alt-variant": "Republica Cehă",
812
- "DE": "Germania",
813
- "DG": "Diego Garcia",
814
- "DJ": "Djibouti",
815
- "DK": "Danemarca",
816
- "DM": "Dominica",
817
- "DO": "Republica Dominicană",
818
- "DZ": "Algeria",
819
- "EA": "Ceuta și Melilla",
820
- "EC": "Ecuador",
821
- "EE": "Estonia",
822
- "EG": "Egipt",
823
- "EH": "Sahara Occidentală",
824
- "ER": "Eritreea",
825
- "ES": "Spania",
826
- "ET": "Etiopia",
827
- "EU": "Uniunea Europeană",
828
- "EZ": "Zona euro",
829
- "FI": "Finlanda",
830
- "FJ": "Fiji",
831
- "FK": "Insulele Falkland",
832
- "FK-alt-variant": "Insulele Falkland (Insulele Malvine)",
833
- "FM": "Micronezia",
834
- "FO": "Insulele Feroe",
835
- "FR": "Franța",
836
- "GA": "Gabon",
837
- "GB": "Regatul Unit",
838
- "GB-alt-short": "Regatul Unit",
839
- "GD": "Grenada",
840
- "GE": "Georgia",
841
- "GF": "Guyana Franceză",
842
- "GG": "Guernsey",
843
- "GH": "Ghana",
844
- "GI": "Gibraltar",
845
- "GL": "Groenlanda",
846
- "GM": "Gambia",
847
- "GN": "Guineea",
848
- "GP": "Guadelupa",
849
- "GQ": "Guineea Ecuatorială",
850
- "GR": "Grecia",
851
- "GS": "Georgia de Sud și Insulele Sandwich de Sud",
852
- "GT": "Guatemala",
853
- "GU": "Guam",
854
- "GW": "Guineea-Bissau",
855
- "GY": "Guyana",
856
- "HK": "R.A.S. Hong Kong a Chinei",
857
- "HK-alt-short": "Hong Kong",
858
- "HM": "Insula Heard și Insulele McDonald",
859
- "HN": "Honduras",
860
- "HR": "Croația",
861
- "HT": "Haiti",
862
- "HU": "Ungaria",
863
- "IC": "Insulele Canare",
864
- "ID": "Indonezia",
865
- "IE": "Irlanda",
866
- "IL": "Israel",
867
- "IM": "Insula Man",
868
- "IN": "India",
869
- "IO": "Teritoriul Britanic din Oceanul Indian",
870
- "IQ": "Irak",
871
- "IR": "Iran",
872
- "IS": "Islanda",
873
- "IT": "Italia",
874
- "JE": "Jersey",
875
- "JM": "Jamaica",
876
- "JO": "Iordania",
877
- "JP": "Japonia",
878
- "KE": "Kenya",
879
- "KG": "Kârgâzstan",
880
- "KH": "Cambodgia",
881
- "KI": "Kiribati",
882
- "KM": "Comore",
883
- "KN": "Saint Kitts și Nevis",
884
- "KP": "Coreea de Nord",
885
- "KR": "Coreea de Sud",
886
- "KW": "Kuweit",
887
- "KY": "Insulele Cayman",
888
- "KZ": "Kazahstan",
889
- "LA": "Laos",
890
- "LB": "Liban",
891
- "LC": "Sfânta Lucia",
892
- "LI": "Liechtenstein",
893
- "LK": "Sri Lanka",
894
- "LR": "Liberia",
895
- "LS": "Lesotho",
896
- "LT": "Lituania",
897
- "LU": "Luxemburg",
898
- "LV": "Letonia",
899
- "LY": "Libia",
900
- "MA": "Maroc",
901
- "MC": "Monaco",
902
- "MD": "Republica Moldova",
903
- "ME": "Muntenegru",
904
- "MF": "Sfântul Martin",
905
- "MG": "Madagascar",
906
- "MH": "Insulele Marshall",
907
- "MK": "Republica Macedonia",
908
- "MK-alt-variant": "Republica Macedonia (FRIM)",
909
- "ML": "Mali",
910
- "MM": "Myanmar (Birmania)",
911
- "MN": "Mongolia",
912
- "MO": "R.A.S. Macao a Chinei",
913
- "MO-alt-short": "Macao",
914
- "MP": "Insulele Mariane de Nord",
915
- "MQ": "Martinica",
916
- "MR": "Mauritania",
917
- "MS": "Montserrat",
918
- "MT": "Malta",
919
- "MU": "Mauritius",
920
- "MV": "Maldive",
921
- "MW": "Malawi",
922
- "MX": "Mexic",
923
- "MY": "Malaysia",
924
- "MZ": "Mozambic",
925
- "NA": "Namibia",
926
- "NC": "Noua Caledonie",
927
- "NE": "Niger",
928
- "NF": "Insula Norfolk",
929
- "NG": "Nigeria",
930
- "NI": "Nicaragua",
931
- "NL": "Țările de Jos",
932
- "NO": "Norvegia",
933
- "NP": "Nepal",
934
- "NR": "Nauru",
935
- "NU": "Niue",
936
- "NZ": "Noua Zeelandă",
937
- "OM": "Oman",
938
- "PA": "Panama",
939
- "PE": "Peru",
940
- "PF": "Polinezia Franceză",
941
- "PG": "Papua-Noua Guinee",
942
- "PH": "Filipine",
943
- "PK": "Pakistan",
944
- "PL": "Polonia",
945
- "PM": "Saint-Pierre și Miquelon",
946
- "PN": "Insulele Pitcairn",
947
- "PR": "Puerto Rico",
948
- "PS": "Teritoriile Palestiniene",
949
- "PS-alt-short": "Palestina",
950
- "PT": "Portugalia",
951
- "PW": "Palau",
952
- "PY": "Paraguay",
953
- "QA": "Qatar",
954
- "QO": "Oceania Periferică",
955
- "RE": "Réunion",
956
- "RO": "România",
957
- "RS": "Serbia",
958
- "RU": "Rusia",
959
- "RW": "Rwanda",
960
- "SA": "Arabia Saudită",
961
- "SB": "Insulele Solomon",
962
- "SC": "Seychelles",
963
- "SD": "Sudan",
964
- "SE": "Suedia",
965
- "SG": "Singapore",
966
- "SH": "Sfânta Elena",
967
- "SI": "Slovenia",
968
- "SJ": "Svalbard și Jan Mayen",
969
- "SK": "Slovacia",
970
- "SL": "Sierra Leone",
971
- "SM": "San Marino",
972
- "SN": "Senegal",
973
- "SO": "Somalia",
974
- "SR": "Suriname",
975
- "SS": "Sudanul de Sud",
976
- "ST": "Sao Tome și Principe",
977
- "SV": "El Salvador",
978
- "SX": "Sint-Maarten",
979
- "SY": "Siria",
980
- "SZ": "Swaziland",
981
- "TA": "Tristan da Cunha",
982
- "TC": "Insulele Turks și Caicos",
983
- "TD": "Ciad",
984
- "TF": "Teritoriile Australe și Antarctice Franceze",
985
- "TG": "Togo",
986
- "TH": "Thailanda",
987
- "TJ": "Tadjikistan",
988
- "TK": "Tokelau",
989
- "TL": "Timor-Leste",
990
- "TL-alt-variant": "Timorul de Est",
991
- "TM": "Turkmenistan",
992
- "TN": "Tunisia",
993
- "TO": "Tonga",
994
- "TR": "Turcia",
995
- "TT": "Trinidad și Tobago",
996
- "TV": "Tuvalu",
997
- "TW": "Taiwan",
998
- "TZ": "Tanzania",
999
- "UA": "Ucraina",
1000
- "UG": "Uganda",
1001
- "UM": "Insulele Îndepărtate ale S.U.A.",
1002
- "UN": "Națiunile Unite",
1003
- "UN-alt-short": "ONU",
1004
- "US": "Statele Unite ale Americii",
1005
- "US-alt-short": "S.U.A.",
1006
- "UY": "Uruguay",
1007
- "UZ": "Uzbekistan",
1008
- "VA": "Statul Cetății Vaticanului",
1009
- "VC": "Saint Vincent și Grenadinele",
1010
- "VE": "Venezuela",
1011
- "VG": "Insulele Virgine Britanice",
1012
- "VI": "Insulele Virgine Americane",
1013
- "VN": "Vietnam",
1014
- "VU": "Vanuatu",
1015
- "WF": "Wallis și Futuna",
1016
- "WS": "Samoa",
1017
- "XA": "XA",
1018
- "XB": "XB",
1019
- "XK": "Kosovo",
1020
- "YE": "Yemen",
1021
- "YT": "Mayotte",
1022
- "ZA": "Africa de Sud",
1023
- "ZM": "Zambia",
1024
- "ZW": "Zimbabwe",
1025
- "ZZ": "Regiune necunoscută"
1026
- },
1027
- "orientation": "left-to-right",
1028
- "ca-gregorian": {
1029
- "dateFormats": {
1030
- "full": "EEEE, d MMMM y",
1031
- "long": "d MMMM y",
1032
- "medium": "d MMM y",
1033
- "short": "dd.MM.y"
1034
- },
1035
- "timeFormats": {
1036
- "full": "HH:mm:ss zzzz",
1037
- "long": "HH:mm:ss z",
1038
- "medium": "HH:mm:ss",
1039
- "short": "HH:mm"
1040
- },
1041
- "dateTimeFormats": {
1042
- "full": "{1}, {0}",
1043
- "long": "{1}, {0}",
1044
- "medium": "{1}, {0}",
1045
- "short": "{1}, {0}",
1046
- "availableFormats": {
1047
- "Bh": "h B",
1048
- "Bhm": "h:mm B",
1049
- "Bhms": "h:mm:ss B",
1050
- "d": "d",
1051
- "E": "ccc",
1052
- "EBhm": "E h:mm B",
1053
- "EBhms": "E h:mm:ss B",
1054
- "Ed": "E d",
1055
- "Ehm": "E h:mm a",
1056
- "EHm": "E HH:mm",
1057
- "Ehms": "E h:mm:ss a",
1058
- "EHms": "E HH:mm:ss",
1059
- "Gy": "y G",
1060
- "GyMMM": "MMM y G",
1061
- "GyMMMd": "d MMM y G",
1062
- "GyMMMEd": "E, d MMM y G",
1063
- "h": "h a",
1064
- "H": "HH",
1065
- "hm": "h:mm a",
1066
- "Hm": "HH:mm",
1067
- "hms": "h:mm:ss a",
1068
- "Hms": "HH:mm:ss",
1069
- "hmsv": "h:mm:ss a v",
1070
- "Hmsv": "HH:mm:ss v",
1071
- "hmv": "h:mm a v",
1072
- "Hmv": "HH:mm v",
1073
- "M": "L",
1074
- "Md": "dd.MM",
1075
- "MEd": "E, dd.MM",
1076
- "MMdd": "dd.MM",
1077
- "MMM": "LLL",
1078
- "MMMd": "d MMM",
1079
- "MMMEd": "E, d MMM",
1080
- "MMMMd": "d MMMM",
1081
- "MMMMEd": "E, d MMMM",
1082
- "ms": "mm:ss",
1083
- "y": "y",
1084
- "yM": "MM.y",
1085
- "yMd": "dd.MM.y",
1086
- "yMEd": "E, dd.MM.y",
1087
- "yMM": "MM.y",
1088
- "yMMM": "MMM y",
1089
- "yMMMd": "d MMM y",
1090
- "yMMMEd": "E, d MMM y",
1091
- "yMMMM": "MMMM y",
1092
- "yQQQ": "QQQ y",
1093
- "yQQQQ": "QQQQ y",
1094
- "MMMMW": "'săptămâna' W 'din' MMM",
1095
- "yw": "'săptămâna' w 'din' Y"
1096
- },
1097
- "appendItems": {
1098
- "Day": "{0} ({2}: {1})",
1099
- "Day-Of-Week": "{0} {1}",
1100
- "Era": "{1} {0}",
1101
- "Hour": "{0} ({2}: {1})",
1102
- "Minute": "{0} ({2}: {1})",
1103
- "Month": "{0} ({2}: {1})",
1104
- "Quarter": "{0} ({2}: {1})",
1105
- "Second": "{0} ({2}: {1})",
1106
- "Timezone": "{0} {1}",
1107
- "Week": "{0} ({2}: {1})",
1108
- "Year": "{1} {0}"
1109
- },
1110
- "intervalFormats": {
1111
- "intervalFormatFallback": "{0} – {1}",
1112
- "d": {
1113
- "d": "d–d"
1114
- },
1115
- "Gy": {
1116
- "G": "G y – G y",
1117
- "y": "G y–y"
1118
- },
1119
- "GyM": {
1120
- "G": "GGGGG y-MM – GGGGG y-MM",
1121
- "M": "GGGGG y-MM – y-MM",
1122
- "y": "GGGGG y-MM – y-MM"
1123
- },
1124
- "GyMd": {
1125
- "d": "GGGGG y-MM-dd – y-MM-dd",
1126
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1127
- "M": "GGGGG y-MM-dd – y-MM-dd",
1128
- "y": "GGGGG y-MM-dd – y-MM-dd"
1129
- },
1130
- "GyMEd": {
1131
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1132
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1133
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1134
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1135
- },
1136
- "GyMMM": {
1137
- "G": "G y MMM – G y MMM",
1138
- "M": "G y MMM–MMM",
1139
- "y": "G y MMM – y MMM"
1140
- },
1141
- "GyMMMd": {
1142
- "d": "G y MMM d–d",
1143
- "G": "G y MMM d – G y MMM d",
1144
- "M": "G y MMM d – MMM d",
1145
- "y": "G y MMM d – y MMM d"
1146
- },
1147
- "GyMMMEd": {
1148
- "d": "G y MMM d, E – MMM d, E",
1149
- "G": "G y MMM d, E – G y MMM d, E",
1150
- "M": "G y MMM d, E – MMM d, E",
1151
- "y": "G y MMM d, E – y MMM d, E"
1152
- },
1153
- "h": {
1154
- "a": "h a – h a",
1155
- "h": "h–h a"
1156
- },
1157
- "H": {
1158
- "H": "HH–HH"
1159
- },
1160
- "hm": {
1161
- "a": "h:mm a – h:mm a",
1162
- "h": "h:mm–h:mm a",
1163
- "m": "h:mm–h:mm a"
1164
- },
1165
- "Hm": {
1166
- "H": "HH:mm–HH:mm",
1167
- "m": "HH:mm–HH:mm"
1168
- },
1169
- "hmv": {
1170
- "a": "h:mm a – h:mm a v",
1171
- "h": "h:mm–h:mm a v",
1172
- "m": "h:mm–h:mm a v"
1173
- },
1174
- "Hmv": {
1175
- "H": "HH:mm–HH:mm v",
1176
- "m": "HH:mm–HH:mm v"
1177
- },
1178
- "hv": {
1179
- "a": "h a – h a v",
1180
- "h": "h–h a v"
1181
- },
1182
- "Hv": {
1183
- "H": "HH–HH v"
1184
- },
1185
- "M": {
1186
- "M": "M–M"
1187
- },
1188
- "Md": {
1189
- "d": "dd.MM – dd.MM",
1190
- "M": "dd.MM – dd.MM"
1191
- },
1192
- "MEd": {
1193
- "d": "E, dd.MM – E, dd.MM",
1194
- "M": "E, dd.MM – E, dd.MM"
1195
- },
1196
- "MMM": {
1197
- "M": "MMM–MMM"
1198
- },
1199
- "MMMd": {
1200
- "d": "d–d MMM",
1201
- "M": "d MMM – d MMM"
1202
- },
1203
- "MMMEd": {
1204
- "d": "E, d MMM – E, d MMM",
1205
- "M": "E, d MMM – E, d MMM"
1206
- },
1207
- "y": {
1208
- "y": "y–y"
1209
- },
1210
- "yM": {
1211
- "M": "MM.y – MM.y",
1212
- "y": "MM.y – MM.y"
1213
- },
1214
- "yMd": {
1215
- "d": "dd.MM.y – dd.MM.y",
1216
- "M": "dd.MM.y – dd.MM.y",
1217
- "y": "dd.MM.y – dd.MM.y"
1218
- },
1219
- "yMEd": {
1220
- "d": "E, dd.MM.y – E, dd.MM.y",
1221
- "M": "E, dd.MM.y – E, dd.MM.y",
1222
- "y": "E, dd.MM.y – E, dd.MM.y"
1223
- },
1224
- "yMMM": {
1225
- "M": "MMM–MMM y",
1226
- "y": "MMM y – MMM y"
1227
- },
1228
- "yMMMd": {
1229
- "d": "d–d MMM y",
1230
- "M": "d MMM – d MMM y",
1231
- "y": "d MMM y – d MMM y"
1232
- },
1233
- "yMMMEd": {
1234
- "d": "E, d MMM – E, d MMM y",
1235
- "M": "E, d MMM – E, d MMM y",
1236
- "y": "E, d MMM y – E, d MMM y"
1237
- },
1238
- "yMMMM": {
1239
- "M": "MMMM – MMMM y",
1240
- "y": "MMMM y – MMMM y"
1241
- }
1242
- }
1243
- },
1244
- "months": {
1245
- "format": {
1246
- "abbreviated": [
1247
- "ian.",
1248
- "feb.",
1249
- "mar.",
1250
- "apr.",
1251
- "mai",
1252
- "iun.",
1253
- "iul.",
1254
- "aug.",
1255
- "sept.",
1256
- "oct.",
1257
- "nov.",
1258
- "dec."
1259
- ],
1260
- "narrow": [
1261
- "I",
1262
- "F",
1263
- "M",
1264
- "A",
1265
- "M",
1266
- "I",
1267
- "I",
1268
- "A",
1269
- "S",
1270
- "O",
1271
- "N",
1272
- "D"
1273
- ],
1274
- "wide": [
1275
- "ianuarie",
1276
- "februarie",
1277
- "martie",
1278
- "aprilie",
1279
- "mai",
1280
- "iunie",
1281
- "iulie",
1282
- "august",
1283
- "septembrie",
1284
- "octombrie",
1285
- "noiembrie",
1286
- "decembrie"
1287
- ]
1288
- },
1289
- "stand-alone": {
1290
- "abbreviated": [
1291
- "ian.",
1292
- "feb.",
1293
- "mar.",
1294
- "apr.",
1295
- "mai",
1296
- "iun.",
1297
- "iul.",
1298
- "aug.",
1299
- "sept.",
1300
- "oct.",
1301
- "nov.",
1302
- "dec."
1303
- ],
1304
- "narrow": [
1305
- "I",
1306
- "F",
1307
- "M",
1308
- "A",
1309
- "M",
1310
- "I",
1311
- "I",
1312
- "A",
1313
- "S",
1314
- "O",
1315
- "N",
1316
- "D"
1317
- ],
1318
- "wide": [
1319
- "ianuarie",
1320
- "februarie",
1321
- "martie",
1322
- "aprilie",
1323
- "mai",
1324
- "iunie",
1325
- "iulie",
1326
- "august",
1327
- "septembrie",
1328
- "octombrie",
1329
- "noiembrie",
1330
- "decembrie"
1331
- ]
1332
- }
1333
- },
1334
- "days": {
1335
- "format": {
1336
- "abbreviated": [
1337
- "dum.",
1338
- "lun.",
1339
- "mar.",
1340
- "mie.",
1341
- "joi",
1342
- "vin.",
1343
- "sâm."
1344
- ],
1345
- "narrow": [
1346
- "D",
1347
- "L",
1348
- "M",
1349
- "M",
1350
- "J",
1351
- "V",
1352
- "S"
1353
- ],
1354
- "short": [
1355
- "du.",
1356
- "lu.",
1357
- "ma.",
1358
- "mi.",
1359
- "joi",
1360
- "vi.",
1361
- "sâ."
1362
- ],
1363
- "wide": [
1364
- "duminică",
1365
- "luni",
1366
- "marți",
1367
- "miercuri",
1368
- "joi",
1369
- "vineri",
1370
- "sâmbătă"
1371
- ]
1372
- },
1373
- "stand-alone": {
1374
- "abbreviated": [
1375
- "dum.",
1376
- "lun.",
1377
- "mar.",
1378
- "mie.",
1379
- "joi",
1380
- "vin.",
1381
- "sâm."
1382
- ],
1383
- "narrow": [
1384
- "D",
1385
- "L",
1386
- "M",
1387
- "M",
1388
- "J",
1389
- "V",
1390
- "S"
1391
- ],
1392
- "short": [
1393
- "du.",
1394
- "lu.",
1395
- "ma.",
1396
- "mi.",
1397
- "joi",
1398
- "vi.",
1399
- "sâ."
1400
- ],
1401
- "wide": [
1402
- "duminică",
1403
- "luni",
1404
- "marți",
1405
- "miercuri",
1406
- "joi",
1407
- "vineri",
1408
- "sâmbătă"
1409
- ]
1410
- }
1411
- },
1412
- "quarters": {
1413
- "format": {
1414
- "abbreviated": [
1415
- "trim. I",
1416
- "trim. II",
1417
- "trim. III",
1418
- "trim. IV"
1419
- ],
1420
- "narrow": [
1421
- "I",
1422
- "II",
1423
- "III",
1424
- "IV"
1425
- ],
1426
- "wide": [
1427
- "trimestrul I",
1428
- "trimestrul al II-lea",
1429
- "trimestrul al III-lea",
1430
- "trimestrul al IV-lea"
1431
- ]
1432
- },
1433
- "stand-alone": {
1434
- "abbreviated": [
1435
- "trim. I",
1436
- "trim. II",
1437
- "trim. III",
1438
- "trim. IV"
1439
- ],
1440
- "narrow": [
1441
- "I",
1442
- "II",
1443
- "III",
1444
- "IV"
1445
- ],
1446
- "wide": [
1447
- "trimestrul I",
1448
- "trimestrul al II-lea",
1449
- "trimestrul al III-lea",
1450
- "trimestrul al IV-lea"
1451
- ]
1452
- }
1453
- },
1454
- "dayPeriods": {
1455
- "format": {
1456
- "abbreviated": [
1457
- "a.m.",
1458
- "p.m."
1459
- ],
1460
- "narrow": [
1461
- "a.m.",
1462
- "p.m."
1463
- ],
1464
- "wide": [
1465
- "a.m.",
1466
- "p.m."
1467
- ]
1468
- },
1469
- "stand-alone": {
1470
- "abbreviated": [
1471
- "a.m.",
1472
- "p.m."
1473
- ],
1474
- "narrow": [
1475
- "a.m.",
1476
- "p.m."
1477
- ],
1478
- "wide": [
1479
- "a.m.",
1480
- "p.m."
1481
- ]
1482
- }
1483
- },
1484
- "era-wide": {
1485
- "0": "înainte de Hristos",
1486
- "1": "după Hristos"
1487
- },
1488
- "era-abbreviated": {
1489
- "0": "î.Hr.",
1490
- "1": "d.Hr."
1491
- },
1492
- "era-narrow": {
1493
- "0": "î.Hr.",
1494
- "1": "d.Hr."
1495
- }
1496
- },
1497
- "ca-islamic": {
1498
- "dateFormats": {
1499
- "full": "EEEE, d MMMM y G",
1500
- "long": "d MMMM y G",
1501
- "medium": "dd.MM.y G",
1502
- "short": "dd.MM.y GGGGG"
1503
- },
1504
- "timeFormats": {
1505
- "full": "HH:mm:ss zzzz",
1506
- "long": "HH:mm:ss z",
1507
- "medium": "HH:mm:ss",
1508
- "short": "HH:mm"
1509
- },
1510
- "dateTimeFormats": {
1511
- "full": "{1} 'la' {0}",
1512
- "long": "{1} 'la' {0}",
1513
- "medium": "{1}, {0}",
1514
- "short": "{1}, {0}",
1515
- "availableFormats": {
1516
- "Bh": "h B",
1517
- "Bhm": "h:mm B",
1518
- "Bhms": "h:mm:ss B",
1519
- "d": "d",
1520
- "E": "ccc",
1521
- "EBhm": "E h:mm B",
1522
- "EBhms": "E h:mm:ss B",
1523
- "Ed": "E d",
1524
- "Ehm": "E h:mm a",
1525
- "EHm": "E HH:mm",
1526
- "Ehms": "E h:mm:ss a",
1527
- "EHms": "E HH:mm:ss",
1528
- "Gy": "y G",
1529
- "GyMMM": "MMM y G",
1530
- "GyMMMd": "d MMM y G",
1531
- "GyMMMEd": "E, d MMM y G",
1532
- "h": "h a",
1533
- "H": "HH",
1534
- "hm": "h:mm a",
1535
- "Hm": "HH:mm",
1536
- "hms": "h:mm:ss a",
1537
- "Hms": "HH:mm:ss",
1538
- "M": "L",
1539
- "Md": "dd.MM",
1540
- "MEd": "E, dd.MM",
1541
- "MMM": "LLL",
1542
- "MMMd": "d MMM",
1543
- "MMMEd": "E, d MMM",
1544
- "MMMMd": "d MMMM",
1545
- "MMMMEd": "E, d MMMM",
1546
- "ms": "mm:ss",
1547
- "y": "y",
1548
- "yyyy": "y G",
1549
- "yyyyM": "MM.y G",
1550
- "yyyyMd": "dd.MM.y G",
1551
- "yyyyMEd": "E, dd.MM.y G",
1552
- "yyyyMMM": "MMM y G",
1553
- "yyyyMMMd": "d MMM y G",
1554
- "yyyyMMMEd": "E, d MMM y G",
1555
- "yyyyMMMM": "MMMM y G",
1556
- "yyyyQQQ": "QQQ y G",
1557
- "yyyyQQQQ": "QQQQ y G"
1558
- },
1559
- "appendItems": {
1560
- "Day": "{0} ({2}: {1})",
1561
- "Day-Of-Week": "{0} {1}",
1562
- "Era": "{1} {0}",
1563
- "Hour": "{0} ({2}: {1})",
1564
- "Minute": "{0} ({2}: {1})",
1565
- "Month": "{0} ({2}: {1})",
1566
- "Quarter": "{0} ({2}: {1})",
1567
- "Second": "{0} ({2}: {1})",
1568
- "Timezone": "{0} {1}",
1569
- "Week": "{0} ({2}: {1})",
1570
- "Year": "{1} {0}"
1571
- },
1572
- "intervalFormats": {
1573
- "intervalFormatFallback": "{0} – {1}",
1574
- "d": {
1575
- "d": "d–d"
1576
- },
1577
- "Gy": {
1578
- "G": "G y – G y",
1579
- "y": "G y–y"
1580
- },
1581
- "GyM": {
1582
- "G": "GGGGG y-MM – GGGGG y-MM",
1583
- "M": "GGGGG y-MM – y-MM",
1584
- "y": "GGGGG y-MM – y-MM"
1585
- },
1586
- "GyMd": {
1587
- "d": "GGGGG y-MM-dd – y-MM-dd",
1588
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1589
- "M": "GGGGG y-MM-dd – y-MM-dd",
1590
- "y": "GGGGG y-MM-dd – y-MM-dd"
1591
- },
1592
- "GyMEd": {
1593
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1594
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1595
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1596
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1597
- },
1598
- "GyMMM": {
1599
- "G": "G y MMM – G y MMM",
1600
- "M": "G y MMM–MMM",
1601
- "y": "G y MMM – y MMM"
1602
- },
1603
- "GyMMMd": {
1604
- "d": "G y MMM d–d",
1605
- "G": "G y MMM d – G y MMM d",
1606
- "M": "G y MMM d – MMM d",
1607
- "y": "G y MMM d – y MMM d"
1608
- },
1609
- "GyMMMEd": {
1610
- "d": "G y MMM d, E – MMM d, E",
1611
- "G": "G y MMM d, E – G y MMM d, E",
1612
- "M": "G y MMM d, E – MMM d, E",
1613
- "y": "G y MMM d, E – y MMM d, E"
1614
- },
1615
- "h": {
1616
- "a": "h a – h a",
1617
- "h": "h–h a"
1618
- },
1619
- "H": {
1620
- "H": "HH–HH"
1621
- },
1622
- "hm": {
1623
- "a": "h:mm a – h:mm a",
1624
- "h": "h:mm–h:mm a",
1625
- "m": "h:mm–h:mm a"
1626
- },
1627
- "Hm": {
1628
- "H": "HH:mm–HH:mm",
1629
- "m": "HH:mm–HH:mm"
1630
- },
1631
- "hmv": {
1632
- "a": "h:mm a – h:mm a v",
1633
- "h": "h:mm–h:mm a v",
1634
- "m": "h:mm–h:mm a v"
1635
- },
1636
- "Hmv": {
1637
- "H": "HH:mm–HH:mm v",
1638
- "m": "HH:mm–HH:mm v"
1639
- },
1640
- "hv": {
1641
- "a": "h a – h a v",
1642
- "h": "h–h a v"
1643
- },
1644
- "Hv": {
1645
- "H": "HH–HH v"
1646
- },
1647
- "M": {
1648
- "M": "M–M"
1649
- },
1650
- "Md": {
1651
- "d": "dd.MM – dd.MM",
1652
- "M": "dd.MM – dd.MM"
1653
- },
1654
- "MEd": {
1655
- "d": "E, dd.MM – E, dd.MM",
1656
- "M": "E, dd.MM – E, dd.MM"
1657
- },
1658
- "MMM": {
1659
- "M": "MMM–MMM"
1660
- },
1661
- "MMMd": {
1662
- "d": "d–d MMM",
1663
- "M": "d MMM – d MMM"
1664
- },
1665
- "MMMEd": {
1666
- "d": "E, d MMM – E, d MMM",
1667
- "M": "E, d MMM – E, d MMM"
1668
- },
1669
- "y": {
1670
- "y": "y–y G"
1671
- },
1672
- "yM": {
1673
- "M": "MM.y – MM.y G",
1674
- "y": "MM.y – MM.y G"
1675
- },
1676
- "yMd": {
1677
- "d": "dd.MM.y – dd.MM.y G",
1678
- "M": "dd.MM.y – dd.MM.y G",
1679
- "y": "dd.MM.y – dd.MM.y G"
1680
- },
1681
- "yMEd": {
1682
- "d": "E, dd.MM.y – E, dd.MM.y G",
1683
- "M": "E, dd.MM.y – E, dd.MM.y G",
1684
- "y": "E, dd.MM.y – E, dd.MM.y G"
1685
- },
1686
- "yMMM": {
1687
- "M": "MMM–MMM y G",
1688
- "y": "MMM y – MMM y G"
1689
- },
1690
- "yMMMd": {
1691
- "d": "d–d MMM y G",
1692
- "M": "d MMM – d MMM y G",
1693
- "y": "d MMM y – d MMM y G"
1694
- },
1695
- "yMMMEd": {
1696
- "d": "E, d MMM – E, d MMM y G",
1697
- "M": "E, d MMM – E, d MMM y G",
1698
- "y": "E, d MMM y – E, d MMM y G"
1699
- },
1700
- "yMMMM": {
1701
- "M": "MMMM–MMMM y G",
1702
- "y": "MMMM y – MMMM y G"
1703
- }
1704
- }
1705
- },
1706
- "months": {
1707
- "format": {
1708
- "abbreviated": [
1709
- "Muh.",
1710
- "Saf.",
1711
- "Rab. I",
1712
- "Rab. II",
1713
- "Jum. I",
1714
- "Jum. II",
1715
- "Raj.",
1716
- "Sha.",
1717
- "Ram.",
1718
- "Shaw.",
1719
- "Dhuʻl-Q.",
1720
- "Dhuʻl-H."
1721
- ],
1722
- "narrow": [
1723
- "1",
1724
- "2",
1725
- "3",
1726
- "4",
1727
- "5",
1728
- "6",
1729
- "7",
1730
- "8",
1731
- "9",
1732
- "10",
1733
- "11",
1734
- "12"
1735
- ],
1736
- "wide": [
1737
- "Muharram",
1738
- "Safar",
1739
- "Rabiʻ I",
1740
- "Rabiʻ II",
1741
- "Jumada I",
1742
- "Jumada II",
1743
- "Rajab",
1744
- "Shaʻban",
1745
- "Ramadan",
1746
- "Shawwal",
1747
- "Dhuʻl-Qiʻdah",
1748
- "Dhuʻl-Hijjah"
1749
- ]
1750
- },
1751
- "stand-alone": {
1752
- "abbreviated": [
1753
- "Muh.",
1754
- "Saf.",
1755
- "Rab. I",
1756
- "Rab. II",
1757
- "Jum. I",
1758
- "Jum. II",
1759
- "Raj.",
1760
- "Sha.",
1761
- "Ram.",
1762
- "Shaw.",
1763
- "Dhuʻl-Q.",
1764
- "Dhuʻl-H."
1765
- ],
1766
- "narrow": [
1767
- "1",
1768
- "2",
1769
- "3",
1770
- "4",
1771
- "5",
1772
- "6",
1773
- "7",
1774
- "8",
1775
- "9",
1776
- "10",
1777
- "11",
1778
- "12"
1779
- ],
1780
- "wide": [
1781
- "Muharram",
1782
- "Safar",
1783
- "Rabiʻ I",
1784
- "Rabiʻ II",
1785
- "Jumada I",
1786
- "Jumada II",
1787
- "Rajab",
1788
- "Shaʻban",
1789
- "Ramadan",
1790
- "Shawwal",
1791
- "Dhuʻl-Qiʻdah",
1792
- "Dhuʻl-Hijjah"
1793
- ]
1794
- }
1795
- },
1796
- "days": {
1797
- "format": {
1798
- "abbreviated": [
1799
- "dum.",
1800
- "lun.",
1801
- "mar.",
1802
- "mie.",
1803
- "joi",
1804
- "vin.",
1805
- "sâm."
1806
- ],
1807
- "narrow": [
1808
- "D",
1809
- "L",
1810
- "M",
1811
- "M",
1812
- "J",
1813
- "V",
1814
- "S"
1815
- ],
1816
- "short": [
1817
- "du.",
1818
- "lu.",
1819
- "ma.",
1820
- "mi.",
1821
- "joi",
1822
- "vi.",
1823
- "sâ."
1824
- ],
1825
- "wide": [
1826
- "duminică",
1827
- "luni",
1828
- "marți",
1829
- "miercuri",
1830
- "joi",
1831
- "vineri",
1832
- "sâmbătă"
1833
- ]
1834
- },
1835
- "stand-alone": {
1836
- "abbreviated": [
1837
- "dum.",
1838
- "lun.",
1839
- "mar.",
1840
- "mie.",
1841
- "joi",
1842
- "vin.",
1843
- "sâm."
1844
- ],
1845
- "narrow": [
1846
- "D",
1847
- "L",
1848
- "M",
1849
- "M",
1850
- "J",
1851
- "V",
1852
- "S"
1853
- ],
1854
- "short": [
1855
- "du.",
1856
- "lu.",
1857
- "ma.",
1858
- "mi.",
1859
- "joi",
1860
- "vi.",
1861
- "sâ."
1862
- ],
1863
- "wide": [
1864
- "duminică",
1865
- "luni",
1866
- "marți",
1867
- "miercuri",
1868
- "joi",
1869
- "vineri",
1870
- "sâmbătă"
1871
- ]
1872
- }
1873
- },
1874
- "quarters": {
1875
- "format": {
1876
- "abbreviated": [
1877
- "trim. I",
1878
- "trim. II",
1879
- "trim. III",
1880
- "trim. IV"
1881
- ],
1882
- "narrow": [
1883
- "I",
1884
- "II",
1885
- "III",
1886
- "IV"
1887
- ],
1888
- "wide": [
1889
- "trimestrul I",
1890
- "trimestrul al II-lea",
1891
- "trimestrul al III-lea",
1892
- "trimestrul al IV-lea"
1893
- ]
1894
- },
1895
- "stand-alone": {
1896
- "abbreviated": [
1897
- "trim. I",
1898
- "trim. II",
1899
- "trim. III",
1900
- "trim. IV"
1901
- ],
1902
- "narrow": [
1903
- "I",
1904
- "II",
1905
- "III",
1906
- "IV"
1907
- ],
1908
- "wide": [
1909
- "trimestrul I",
1910
- "trimestrul al II-lea",
1911
- "trimestrul al III-lea",
1912
- "trimestrul al IV-lea"
1913
- ]
1914
- }
1915
- },
1916
- "dayPeriods": {
1917
- "format": {
1918
- "abbreviated": [
1919
- "a.m.",
1920
- "p.m."
1921
- ],
1922
- "narrow": [
1923
- "a.m.",
1924
- "p.m."
1925
- ],
1926
- "wide": [
1927
- "a.m.",
1928
- "p.m."
1929
- ]
1930
- },
1931
- "stand-alone": {
1932
- "abbreviated": [
1933
- "a.m.",
1934
- "p.m."
1935
- ],
1936
- "narrow": [
1937
- "a.m.",
1938
- "p.m."
1939
- ],
1940
- "wide": [
1941
- "a.m.",
1942
- "p.m."
1943
- ]
1944
- }
1945
- },
1946
- "era-wide": {
1947
- "0": "A.H."
1948
- },
1949
- "era-abbreviated": {
1950
- "0": "AH"
1951
- },
1952
- "era-narrow": {
1953
- "0": "AH"
1954
- }
1955
- },
1956
- "ca-japanese": {
1957
- "dateFormats": {
1958
- "full": "EEEE, d MMMM y G",
1959
- "long": "d MMMM y G",
1960
- "medium": "dd.MM.y G",
1961
- "short": "dd.MM.y GGGGG"
1962
- },
1963
- "timeFormats": {
1964
- "full": "HH:mm:ss zzzz",
1965
- "long": "HH:mm:ss z",
1966
- "medium": "HH:mm:ss",
1967
- "short": "HH:mm"
1968
- },
1969
- "dateTimeFormats": {
1970
- "full": "{1} 'la' {0}",
1971
- "long": "{1} 'la' {0}",
1972
- "medium": "{1}, {0}",
1973
- "short": "{1}, {0}",
1974
- "availableFormats": {
1975
- "Bh": "h B",
1976
- "Bhm": "h:mm B",
1977
- "Bhms": "h:mm:ss B",
1978
- "d": "d",
1979
- "E": "ccc",
1980
- "EBhm": "E h:mm B",
1981
- "EBhms": "E h:mm:ss B",
1982
- "Ed": "E d",
1983
- "Ehm": "E h:mm a",
1984
- "EHm": "E HH:mm",
1985
- "Ehms": "E h:mm:ss a",
1986
- "EHms": "E HH:mm:ss",
1987
- "Gy": "y G",
1988
- "GyMMM": "MMM y G",
1989
- "GyMMMd": "d MMM y G",
1990
- "GyMMMEd": "E, d MMM y G",
1991
- "h": "h a",
1992
- "H": "HH",
1993
- "hm": "h:mm a",
1994
- "Hm": "HH:mm",
1995
- "hms": "h:mm:ss a",
1996
- "Hms": "HH:mm:ss",
1997
- "M": "L",
1998
- "Md": "dd.MM",
1999
- "MEd": "E, dd.MM",
2000
- "MMM": "LLL",
2001
- "MMMd": "d MMM",
2002
- "MMMEd": "E, d MMM",
2003
- "MMMMd": "d MMMM",
2004
- "MMMMEd": "E, d MMMM",
2005
- "ms": "mm:ss",
2006
- "y": "y",
2007
- "yyyy": "y G",
2008
- "yyyyM": "MM.y G",
2009
- "yyyyMd": "dd.MM.y G",
2010
- "yyyyMEd": "E, dd.MM.y G",
2011
- "yyyyMMM": "MMM y G",
2012
- "yyyyMMMd": "d MMM y G",
2013
- "yyyyMMMEd": "E, d MMM y G",
2014
- "yyyyMMMM": "MMMM y G",
2015
- "yyyyQQQ": "QQQ y G",
2016
- "yyyyQQQQ": "QQQQ y G"
2017
- },
2018
- "appendItems": {
2019
- "Day": "{0} ({2}: {1})",
2020
- "Day-Of-Week": "{0} {1}",
2021
- "Era": "{1} {0}",
2022
- "Hour": "{0} ({2}: {1})",
2023
- "Minute": "{0} ({2}: {1})",
2024
- "Month": "{0} ({2}: {1})",
2025
- "Quarter": "{0} ({2}: {1})",
2026
- "Second": "{0} ({2}: {1})",
2027
- "Timezone": "{0} {1}",
2028
- "Week": "{0} ({2}: {1})",
2029
- "Year": "{1} {0}"
2030
- },
2031
- "intervalFormats": {
2032
- "intervalFormatFallback": "{0} – {1}",
2033
- "d": {
2034
- "d": "d–d"
2035
- },
2036
- "Gy": {
2037
- "G": "G y – G y",
2038
- "y": "G y–y"
2039
- },
2040
- "GyM": {
2041
- "G": "GGGGG y-MM – GGGGG y-MM",
2042
- "M": "GGGGG y-MM – y-MM",
2043
- "y": "GGGGG y-MM – y-MM"
2044
- },
2045
- "GyMd": {
2046
- "d": "GGGGG y-MM-dd – y-MM-dd",
2047
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2048
- "M": "GGGGG y-MM-dd – y-MM-dd",
2049
- "y": "GGGGG y-MM-dd – y-MM-dd"
2050
- },
2051
- "GyMEd": {
2052
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2053
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2054
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2055
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2056
- },
2057
- "GyMMM": {
2058
- "G": "G y MMM – G y MMM",
2059
- "M": "G y MMM–MMM",
2060
- "y": "G y MMM – y MMM"
2061
- },
2062
- "GyMMMd": {
2063
- "d": "G y MMM d–d",
2064
- "G": "G y MMM d – G y MMM d",
2065
- "M": "G y MMM d – MMM d",
2066
- "y": "G y MMM d – y MMM d"
2067
- },
2068
- "GyMMMEd": {
2069
- "d": "G y MMM d, E – MMM d, E",
2070
- "G": "G y MMM d, E – G y MMM d, E",
2071
- "M": "G y MMM d, E – MMM d, E",
2072
- "y": "G y MMM d, E – y MMM d, E"
2073
- },
2074
- "h": {
2075
- "a": "h a – h a",
2076
- "h": "h–h a"
2077
- },
2078
- "H": {
2079
- "H": "HH–HH"
2080
- },
2081
- "hm": {
2082
- "a": "h:mm a – h:mm a",
2083
- "h": "h:mm–h:mm a",
2084
- "m": "h:mm–h:mm a"
2085
- },
2086
- "Hm": {
2087
- "H": "HH:mm–HH:mm",
2088
- "m": "HH:mm–HH:mm"
2089
- },
2090
- "hmv": {
2091
- "a": "h:mm a – h:mm a v",
2092
- "h": "h:mm–h:mm a v",
2093
- "m": "h:mm–h:mm a v"
2094
- },
2095
- "Hmv": {
2096
- "H": "HH:mm–HH:mm v",
2097
- "m": "HH:mm–HH:mm v"
2098
- },
2099
- "hv": {
2100
- "a": "h a – h a v",
2101
- "h": "h–h a v"
2102
- },
2103
- "Hv": {
2104
- "H": "HH–HH v"
2105
- },
2106
- "M": {
2107
- "M": "M–M"
2108
- },
2109
- "Md": {
2110
- "d": "dd.MM – dd.MM",
2111
- "M": "dd.MM – dd.MM"
2112
- },
2113
- "MEd": {
2114
- "d": "E, dd.MM – E, dd.MM",
2115
- "M": "E, dd.MM – E, dd.MM"
2116
- },
2117
- "MMM": {
2118
- "M": "MMM–MMM"
2119
- },
2120
- "MMMd": {
2121
- "d": "d–d MMM",
2122
- "M": "d MMM – d MMM"
2123
- },
2124
- "MMMEd": {
2125
- "d": "E, d MMM – E, d MMM",
2126
- "M": "E, d MMM – E, d MMM"
2127
- },
2128
- "y": {
2129
- "y": "y–y G"
2130
- },
2131
- "yM": {
2132
- "M": "MM.y – MM.y G",
2133
- "y": "MM.y – MM.y G"
2134
- },
2135
- "yMd": {
2136
- "d": "dd.MM.y – dd.MM.y G",
2137
- "M": "dd.MM.y – dd.MM.y G",
2138
- "y": "dd.MM.y – dd.MM.y G"
2139
- },
2140
- "yMEd": {
2141
- "d": "E, dd.MM.y – E, dd.MM.y G",
2142
- "M": "E, dd.MM.y – E, dd.MM.y G",
2143
- "y": "E, dd.MM.y – E, dd.MM.y G"
2144
- },
2145
- "yMMM": {
2146
- "M": "MMM–MMM y G",
2147
- "y": "MMM y – MMM y G"
2148
- },
2149
- "yMMMd": {
2150
- "d": "d–d MMM y G",
2151
- "M": "d MMM – d MMM y G",
2152
- "y": "d MMM y – d MMM y G"
2153
- },
2154
- "yMMMEd": {
2155
- "d": "E, d MMM – E, d MMM y G",
2156
- "M": "E, d MMM – E, d MMM y G",
2157
- "y": "E, d MMM y – E, d MMM y G"
2158
- },
2159
- "yMMMM": {
2160
- "M": "MMMM–MMMM y G",
2161
- "y": "MMMM y – MMMM y G"
2162
- }
2163
- }
2164
- },
2165
- "months": {
2166
- "format": {
2167
- "abbreviated": [
2168
- "ian.",
2169
- "feb.",
2170
- "mar.",
2171
- "apr.",
2172
- "mai",
2173
- "iun.",
2174
- "iul.",
2175
- "aug.",
2176
- "sept.",
2177
- "oct.",
2178
- "nov.",
2179
- "dec."
2180
- ],
2181
- "narrow": [
2182
- "I",
2183
- "F",
2184
- "M",
2185
- "A",
2186
- "M",
2187
- "I",
2188
- "I",
2189
- "A",
2190
- "S",
2191
- "O",
2192
- "N",
2193
- "D"
2194
- ],
2195
- "wide": [
2196
- "ianuarie",
2197
- "februarie",
2198
- "martie",
2199
- "aprilie",
2200
- "mai",
2201
- "iunie",
2202
- "iulie",
2203
- "august",
2204
- "septembrie",
2205
- "octombrie",
2206
- "noiembrie",
2207
- "decembrie"
2208
- ]
2209
- },
2210
- "stand-alone": {
2211
- "abbreviated": [
2212
- "ian.",
2213
- "feb.",
2214
- "mar.",
2215
- "apr.",
2216
- "mai",
2217
- "iun.",
2218
- "iul.",
2219
- "aug.",
2220
- "sept.",
2221
- "oct.",
2222
- "nov.",
2223
- "dec."
2224
- ],
2225
- "narrow": [
2226
- "I",
2227
- "F",
2228
- "M",
2229
- "A",
2230
- "M",
2231
- "I",
2232
- "I",
2233
- "A",
2234
- "S",
2235
- "O",
2236
- "N",
2237
- "D"
2238
- ],
2239
- "wide": [
2240
- "ianuarie",
2241
- "februarie",
2242
- "martie",
2243
- "aprilie",
2244
- "mai",
2245
- "iunie",
2246
- "iulie",
2247
- "august",
2248
- "septembrie",
2249
- "octombrie",
2250
- "noiembrie",
2251
- "decembrie"
2252
- ]
2253
- }
2254
- },
2255
- "days": {
2256
- "format": {
2257
- "abbreviated": [
2258
- "dum.",
2259
- "lun.",
2260
- "mar.",
2261
- "mie.",
2262
- "joi",
2263
- "vin.",
2264
- "sâm."
2265
- ],
2266
- "narrow": [
2267
- "D",
2268
- "L",
2269
- "M",
2270
- "M",
2271
- "J",
2272
- "V",
2273
- "S"
2274
- ],
2275
- "short": [
2276
- "du.",
2277
- "lu.",
2278
- "ma.",
2279
- "mi.",
2280
- "joi",
2281
- "vi.",
2282
- "sâ."
2283
- ],
2284
- "wide": [
2285
- "duminică",
2286
- "luni",
2287
- "marți",
2288
- "miercuri",
2289
- "joi",
2290
- "vineri",
2291
- "sâmbătă"
2292
- ]
2293
- },
2294
- "stand-alone": {
2295
- "abbreviated": [
2296
- "dum.",
2297
- "lun.",
2298
- "mar.",
2299
- "mie.",
2300
- "joi",
2301
- "vin.",
2302
- "sâm."
2303
- ],
2304
- "narrow": [
2305
- "D",
2306
- "L",
2307
- "M",
2308
- "M",
2309
- "J",
2310
- "V",
2311
- "S"
2312
- ],
2313
- "short": [
2314
- "du.",
2315
- "lu.",
2316
- "ma.",
2317
- "mi.",
2318
- "joi",
2319
- "vi.",
2320
- "sâ."
2321
- ],
2322
- "wide": [
2323
- "duminică",
2324
- "luni",
2325
- "marți",
2326
- "miercuri",
2327
- "joi",
2328
- "vineri",
2329
- "sâmbătă"
2330
- ]
2331
- }
2332
- },
2333
- "quarters": {
2334
- "format": {
2335
- "abbreviated": [
2336
- "trim. I",
2337
- "trim. II",
2338
- "trim. III",
2339
- "trim. IV"
2340
- ],
2341
- "narrow": [
2342
- "I",
2343
- "II",
2344
- "III",
2345
- "IV"
2346
- ],
2347
- "wide": [
2348
- "trimestrul I",
2349
- "trimestrul al II-lea",
2350
- "trimestrul al III-lea",
2351
- "trimestrul al IV-lea"
2352
- ]
2353
- },
2354
- "stand-alone": {
2355
- "abbreviated": [
2356
- "trim. I",
2357
- "trim. II",
2358
- "trim. III",
2359
- "trim. IV"
2360
- ],
2361
- "narrow": [
2362
- "I",
2363
- "II",
2364
- "III",
2365
- "IV"
2366
- ],
2367
- "wide": [
2368
- "trimestrul I",
2369
- "trimestrul al II-lea",
2370
- "trimestrul al III-lea",
2371
- "trimestrul al IV-lea"
2372
- ]
2373
- }
2374
- },
2375
- "dayPeriods": {
2376
- "format": {
2377
- "abbreviated": [
2378
- "a.m.",
2379
- "p.m."
2380
- ],
2381
- "narrow": [
2382
- "a.m.",
2383
- "p.m."
2384
- ],
2385
- "wide": [
2386
- "a.m.",
2387
- "p.m."
2388
- ]
2389
- },
2390
- "stand-alone": {
2391
- "abbreviated": [
2392
- "a.m.",
2393
- "p.m."
2394
- ],
2395
- "narrow": [
2396
- "a.m.",
2397
- "p.m."
2398
- ],
2399
- "wide": [
2400
- "a.m.",
2401
- "p.m."
2402
- ]
2403
- }
2404
- },
2405
- "era-wide": {
2406
- "232": "Meiji",
2407
- "233": "Taishō",
2408
- "234": "Shōwa",
2409
- "235": "Heisei"
2410
- },
2411
- "era-abbreviated": {
2412
- "232": "Meiji",
2413
- "233": "Taishō",
2414
- "234": "Shōwa",
2415
- "235": "Heisei"
2416
- },
2417
- "era-narrow": {
2418
- "232": "M",
2419
- "233": "T",
2420
- "234": "S",
2421
- "235": "H"
2422
- }
2423
- },
2424
- "ca-persian": {
2425
- "dateFormats": {
2426
- "full": "EEEE, d MMMM y G",
2427
- "long": "d MMMM y G",
2428
- "medium": "dd.MM.y G",
2429
- "short": "dd.MM.y GGGGG"
2430
- },
2431
- "timeFormats": {
2432
- "full": "HH:mm:ss zzzz",
2433
- "long": "HH:mm:ss z",
2434
- "medium": "HH:mm:ss",
2435
- "short": "HH:mm"
2436
- },
2437
- "dateTimeFormats": {
2438
- "full": "{1} 'la' {0}",
2439
- "long": "{1} 'la' {0}",
2440
- "medium": "{1}, {0}",
2441
- "short": "{1}, {0}",
2442
- "availableFormats": {
2443
- "Bh": "h B",
2444
- "Bhm": "h:mm B",
2445
- "Bhms": "h:mm:ss B",
2446
- "d": "d",
2447
- "E": "ccc",
2448
- "EBhm": "E h:mm B",
2449
- "EBhms": "E h:mm:ss B",
2450
- "Ed": "E d",
2451
- "Ehm": "E h:mm a",
2452
- "EHm": "E HH:mm",
2453
- "Ehms": "E h:mm:ss a",
2454
- "EHms": "E HH:mm:ss",
2455
- "Gy": "y G",
2456
- "GyMMM": "MMM y G",
2457
- "GyMMMd": "d MMM y G",
2458
- "GyMMMEd": "E, d MMM y G",
2459
- "h": "h a",
2460
- "H": "HH",
2461
- "hm": "h:mm a",
2462
- "Hm": "HH:mm",
2463
- "hms": "h:mm:ss a",
2464
- "Hms": "HH:mm:ss",
2465
- "M": "L",
2466
- "Md": "dd.MM",
2467
- "MEd": "E, dd.MM",
2468
- "MMM": "LLL",
2469
- "MMMd": "d MMM",
2470
- "MMMEd": "E, d MMM",
2471
- "MMMMd": "d MMMM",
2472
- "MMMMEd": "E, d MMMM",
2473
- "ms": "mm:ss",
2474
- "y": "y",
2475
- "yyyy": "y G",
2476
- "yyyyM": "MM.y G",
2477
- "yyyyMd": "dd.MM.y G",
2478
- "yyyyMEd": "E, dd.MM.y G",
2479
- "yyyyMMM": "MMM y G",
2480
- "yyyyMMMd": "d MMM y G",
2481
- "yyyyMMMEd": "E, d MMM y G",
2482
- "yyyyMMMM": "MMMM y G",
2483
- "yyyyQQQ": "QQQ y G",
2484
- "yyyyQQQQ": "QQQQ y G"
2485
- },
2486
- "appendItems": {
2487
- "Day": "{0} ({2}: {1})",
2488
- "Day-Of-Week": "{0} {1}",
2489
- "Era": "{1} {0}",
2490
- "Hour": "{0} ({2}: {1})",
2491
- "Minute": "{0} ({2}: {1})",
2492
- "Month": "{0} ({2}: {1})",
2493
- "Quarter": "{0} ({2}: {1})",
2494
- "Second": "{0} ({2}: {1})",
2495
- "Timezone": "{0} {1}",
2496
- "Week": "{0} ({2}: {1})",
2497
- "Year": "{1} {0}"
2498
- },
2499
- "intervalFormats": {
2500
- "intervalFormatFallback": "{0} – {1}",
2501
- "d": {
2502
- "d": "d–d"
2503
- },
2504
- "Gy": {
2505
- "G": "G y – G y",
2506
- "y": "G y–y"
2507
- },
2508
- "GyM": {
2509
- "G": "GGGGG y-MM – GGGGG y-MM",
2510
- "M": "GGGGG y-MM – y-MM",
2511
- "y": "GGGGG y-MM – y-MM"
2512
- },
2513
- "GyMd": {
2514
- "d": "GGGGG y-MM-dd – y-MM-dd",
2515
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2516
- "M": "GGGGG y-MM-dd – y-MM-dd",
2517
- "y": "GGGGG y-MM-dd – y-MM-dd"
2518
- },
2519
- "GyMEd": {
2520
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2521
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2522
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2523
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2524
- },
2525
- "GyMMM": {
2526
- "G": "G y MMM – G y MMM",
2527
- "M": "G y MMM–MMM",
2528
- "y": "G y MMM – y MMM"
2529
- },
2530
- "GyMMMd": {
2531
- "d": "G y MMM d–d",
2532
- "G": "G y MMM d – G y MMM d",
2533
- "M": "G y MMM d – MMM d",
2534
- "y": "G y MMM d – y MMM d"
2535
- },
2536
- "GyMMMEd": {
2537
- "d": "G y MMM d, E – MMM d, E",
2538
- "G": "G y MMM d, E – G y MMM d, E",
2539
- "M": "G y MMM d, E – MMM d, E",
2540
- "y": "G y MMM d, E – y MMM d, E"
2541
- },
2542
- "h": {
2543
- "a": "h a – h a",
2544
- "h": "h–h a"
2545
- },
2546
- "H": {
2547
- "H": "HH–HH"
2548
- },
2549
- "hm": {
2550
- "a": "h:mm a – h:mm a",
2551
- "h": "h:mm–h:mm a",
2552
- "m": "h:mm–h:mm a"
2553
- },
2554
- "Hm": {
2555
- "H": "HH:mm–HH:mm",
2556
- "m": "HH:mm–HH:mm"
2557
- },
2558
- "hmv": {
2559
- "a": "h:mm a – h:mm a v",
2560
- "h": "h:mm–h:mm a v",
2561
- "m": "h:mm–h:mm a v"
2562
- },
2563
- "Hmv": {
2564
- "H": "HH:mm–HH:mm v",
2565
- "m": "HH:mm–HH:mm v"
2566
- },
2567
- "hv": {
2568
- "a": "h a – h a v",
2569
- "h": "h–h a v"
2570
- },
2571
- "Hv": {
2572
- "H": "HH–HH v"
2573
- },
2574
- "M": {
2575
- "M": "M–M"
2576
- },
2577
- "Md": {
2578
- "d": "dd.MM – dd.MM",
2579
- "M": "dd.MM – dd.MM"
2580
- },
2581
- "MEd": {
2582
- "d": "E, dd.MM – E, dd.MM",
2583
- "M": "E, dd.MM – E, dd.MM"
2584
- },
2585
- "MMM": {
2586
- "M": "MMM–MMM"
2587
- },
2588
- "MMMd": {
2589
- "d": "d–d MMM",
2590
- "M": "d MMM – d MMM"
2591
- },
2592
- "MMMEd": {
2593
- "d": "E, d MMM – E, d MMM",
2594
- "M": "E, d MMM – E, d MMM"
2595
- },
2596
- "y": {
2597
- "y": "y–y G"
2598
- },
2599
- "yM": {
2600
- "M": "MM.y – MM.y G",
2601
- "y": "MM.y – MM.y G"
2602
- },
2603
- "yMd": {
2604
- "d": "dd.MM.y – dd.MM.y G",
2605
- "M": "dd.MM.y – dd.MM.y G",
2606
- "y": "dd.MM.y – dd.MM.y G"
2607
- },
2608
- "yMEd": {
2609
- "d": "E, dd.MM.y – E, dd.MM.y G",
2610
- "M": "E, dd.MM.y – E, dd.MM.y G",
2611
- "y": "E, dd.MM.y – E, dd.MM.y G"
2612
- },
2613
- "yMMM": {
2614
- "M": "MMM–MMM y G",
2615
- "y": "MMM y – MMM y G"
2616
- },
2617
- "yMMMd": {
2618
- "d": "d–d MMM y G",
2619
- "M": "d MMM – d MMM y G",
2620
- "y": "d MMM y – d MMM y G"
2621
- },
2622
- "yMMMEd": {
2623
- "d": "E, d MMM – E, d MMM y G",
2624
- "M": "E, d MMM – E, d MMM y G",
2625
- "y": "E, d MMM y – E, d MMM y G"
2626
- },
2627
- "yMMMM": {
2628
- "M": "MMMM–MMMM y G",
2629
- "y": "MMMM y – MMMM y G"
2630
- }
2631
- }
2632
- },
2633
- "months": {
2634
- "format": {
2635
- "abbreviated": [
2636
- "Farvardin",
2637
- "Ordibehesht",
2638
- "Khordad",
2639
- "Tir",
2640
- "A-Mordad",
2641
- "Shahrivar",
2642
- "Mehr",
2643
- "Aban",
2644
- "Azar",
2645
- "Dey",
2646
- "Bahman",
2647
- "Esfand"
2648
- ],
2649
- "narrow": [
2650
- "1",
2651
- "2",
2652
- "3",
2653
- "4",
2654
- "5",
2655
- "6",
2656
- "7",
2657
- "8",
2658
- "9",
2659
- "10",
2660
- "11",
2661
- "12"
2662
- ],
2663
- "wide": [
2664
- "Farvardin",
2665
- "Ordibehesht",
2666
- "Khordad",
2667
- "Tir",
2668
- "A-Mordad",
2669
- "Shahrivar",
2670
- "Mehr",
2671
- "Aban",
2672
- "Azar",
2673
- "Dey",
2674
- "Bahman",
2675
- "Esfand"
2676
- ]
2677
- },
2678
- "stand-alone": {
2679
- "abbreviated": [
2680
- "Farvardin",
2681
- "Ordibehesht",
2682
- "Khordad",
2683
- "Tir",
2684
- "A-Mordad",
2685
- "Shahrivar",
2686
- "Mehr",
2687
- "Aban",
2688
- "Azar",
2689
- "Dey",
2690
- "Bahman",
2691
- "Esfand"
2692
- ],
2693
- "narrow": [
2694
- "1",
2695
- "2",
2696
- "3",
2697
- "4",
2698
- "5",
2699
- "6",
2700
- "7",
2701
- "8",
2702
- "9",
2703
- "10",
2704
- "11",
2705
- "12"
2706
- ],
2707
- "wide": [
2708
- "Farvardin",
2709
- "Ordibehesht",
2710
- "Khordad",
2711
- "Tir",
2712
- "A-Mordad",
2713
- "Shahrivar",
2714
- "Mehr",
2715
- "Aban",
2716
- "Azar",
2717
- "Dey",
2718
- "Bahman",
2719
- "Esfand"
2720
- ]
2721
- }
2722
- },
2723
- "days": {
2724
- "format": {
2725
- "abbreviated": [
2726
- "dum.",
2727
- "lun.",
2728
- "mar.",
2729
- "mie.",
2730
- "joi",
2731
- "vin.",
2732
- "sâm."
2733
- ],
2734
- "narrow": [
2735
- "D",
2736
- "L",
2737
- "M",
2738
- "M",
2739
- "J",
2740
- "V",
2741
- "S"
2742
- ],
2743
- "short": [
2744
- "du.",
2745
- "lu.",
2746
- "ma.",
2747
- "mi.",
2748
- "joi",
2749
- "vi.",
2750
- "sâ."
2751
- ],
2752
- "wide": [
2753
- "duminică",
2754
- "luni",
2755
- "marți",
2756
- "miercuri",
2757
- "joi",
2758
- "vineri",
2759
- "sâmbătă"
2760
- ]
2761
- },
2762
- "stand-alone": {
2763
- "abbreviated": [
2764
- "dum.",
2765
- "lun.",
2766
- "mar.",
2767
- "mie.",
2768
- "joi",
2769
- "vin.",
2770
- "sâm."
2771
- ],
2772
- "narrow": [
2773
- "D",
2774
- "L",
2775
- "M",
2776
- "M",
2777
- "J",
2778
- "V",
2779
- "S"
2780
- ],
2781
- "short": [
2782
- "du.",
2783
- "lu.",
2784
- "ma.",
2785
- "mi.",
2786
- "joi",
2787
- "vi.",
2788
- "sâ."
2789
- ],
2790
- "wide": [
2791
- "duminică",
2792
- "luni",
2793
- "marți",
2794
- "miercuri",
2795
- "joi",
2796
- "vineri",
2797
- "sâmbătă"
2798
- ]
2799
- }
2800
- },
2801
- "quarters": {
2802
- "format": {
2803
- "abbreviated": [
2804
- "trim. I",
2805
- "trim. II",
2806
- "trim. III",
2807
- "trim. IV"
2808
- ],
2809
- "narrow": [
2810
- "I",
2811
- "II",
2812
- "III",
2813
- "IV"
2814
- ],
2815
- "wide": [
2816
- "trimestrul I",
2817
- "trimestrul al II-lea",
2818
- "trimestrul al III-lea",
2819
- "trimestrul al IV-lea"
2820
- ]
2821
- },
2822
- "stand-alone": {
2823
- "abbreviated": [
2824
- "trim. I",
2825
- "trim. II",
2826
- "trim. III",
2827
- "trim. IV"
2828
- ],
2829
- "narrow": [
2830
- "I",
2831
- "II",
2832
- "III",
2833
- "IV"
2834
- ],
2835
- "wide": [
2836
- "trimestrul I",
2837
- "trimestrul al II-lea",
2838
- "trimestrul al III-lea",
2839
- "trimestrul al IV-lea"
2840
- ]
2841
- }
2842
- },
2843
- "dayPeriods": {
2844
- "format": {
2845
- "abbreviated": [
2846
- "a.m.",
2847
- "p.m."
2848
- ],
2849
- "narrow": [
2850
- "a.m.",
2851
- "p.m."
2852
- ],
2853
- "wide": [
2854
- "a.m.",
2855
- "p.m."
2856
- ]
2857
- },
2858
- "stand-alone": {
2859
- "abbreviated": [
2860
- "a.m.",
2861
- "p.m."
2862
- ],
2863
- "narrow": [
2864
- "a.m.",
2865
- "p.m."
2866
- ],
2867
- "wide": [
2868
- "a.m.",
2869
- "p.m."
2870
- ]
2871
- }
2872
- },
2873
- "era-wide": {
2874
- "0": "Anno Persico"
2875
- },
2876
- "era-abbreviated": {
2877
- "0": "A.P."
2878
- },
2879
- "era-narrow": {
2880
- "0": "A.P."
2881
- }
2882
- },
2883
- "ca-buddhist": {
2884
- "dateFormats": {
2885
- "full": "EEEE, d MMMM y G",
2886
- "long": "d MMMM y G",
2887
- "medium": "dd.MM.y G",
2888
- "short": "dd.MM.y GGGGG"
2889
- },
2890
- "timeFormats": {
2891
- "full": "HH:mm:ss zzzz",
2892
- "long": "HH:mm:ss z",
2893
- "medium": "HH:mm:ss",
2894
- "short": "HH:mm"
2895
- },
2896
- "dateTimeFormats": {
2897
- "full": "{1} 'la' {0}",
2898
- "long": "{1} 'la' {0}",
2899
- "medium": "{1}, {0}",
2900
- "short": "{1}, {0}",
2901
- "availableFormats": {
2902
- "Bh": "h B",
2903
- "Bhm": "h:mm B",
2904
- "Bhms": "h:mm:ss B",
2905
- "d": "d",
2906
- "E": "ccc",
2907
- "EBhm": "E h:mm B",
2908
- "EBhms": "E h:mm:ss B",
2909
- "Ed": "E d",
2910
- "Ehm": "E h:mm a",
2911
- "EHm": "E HH:mm",
2912
- "Ehms": "E h:mm:ss a",
2913
- "EHms": "E HH:mm:ss",
2914
- "Gy": "y G",
2915
- "GyMMM": "MMM y G",
2916
- "GyMMMd": "d MMM y G",
2917
- "GyMMMEd": "E, d MMM y G",
2918
- "h": "h a",
2919
- "H": "HH",
2920
- "hm": "h:mm a",
2921
- "Hm": "HH:mm",
2922
- "hms": "h:mm:ss a",
2923
- "Hms": "HH:mm:ss",
2924
- "M": "L",
2925
- "Md": "dd.MM",
2926
- "MEd": "E, dd.MM",
2927
- "MMM": "LLL",
2928
- "MMMd": "d MMM",
2929
- "MMMEd": "E, d MMM",
2930
- "MMMMd": "d MMMM",
2931
- "MMMMEd": "E, d MMMM",
2932
- "ms": "mm:ss",
2933
- "y": "y",
2934
- "yyyy": "y G",
2935
- "yyyyM": "MM.y G",
2936
- "yyyyMd": "dd.MM.y G",
2937
- "yyyyMEd": "E, dd.MM.y G",
2938
- "yyyyMMM": "MMM y G",
2939
- "yyyyMMMd": "d MMM y G",
2940
- "yyyyMMMEd": "E, d MMM y G",
2941
- "yyyyMMMM": "MMMM y G",
2942
- "yyyyQQQ": "QQQ y G",
2943
- "yyyyQQQQ": "QQQQ y G"
2944
- },
2945
- "appendItems": {
2946
- "Day": "{0} ({2}: {1})",
2947
- "Day-Of-Week": "{0} {1}",
2948
- "Era": "{1} {0}",
2949
- "Hour": "{0} ({2}: {1})",
2950
- "Minute": "{0} ({2}: {1})",
2951
- "Month": "{0} ({2}: {1})",
2952
- "Quarter": "{0} ({2}: {1})",
2953
- "Second": "{0} ({2}: {1})",
2954
- "Timezone": "{0} {1}",
2955
- "Week": "{0} ({2}: {1})",
2956
- "Year": "{1} {0}"
2957
- },
2958
- "intervalFormats": {
2959
- "intervalFormatFallback": "{0} – {1}",
2960
- "d": {
2961
- "d": "d–d"
2962
- },
2963
- "Gy": {
2964
- "G": "G y – G y",
2965
- "y": "G y–y"
2966
- },
2967
- "GyM": {
2968
- "G": "GGGGG y-MM – GGGGG y-MM",
2969
- "M": "GGGGG y-MM – y-MM",
2970
- "y": "GGGGG y-MM – y-MM"
2971
- },
2972
- "GyMd": {
2973
- "d": "GGGGG y-MM-dd – y-MM-dd",
2974
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2975
- "M": "GGGGG y-MM-dd – y-MM-dd",
2976
- "y": "GGGGG y-MM-dd – y-MM-dd"
2977
- },
2978
- "GyMEd": {
2979
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2980
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2981
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2982
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2983
- },
2984
- "GyMMM": {
2985
- "G": "G y MMM – G y MMM",
2986
- "M": "G y MMM–MMM",
2987
- "y": "G y MMM – y MMM"
2988
- },
2989
- "GyMMMd": {
2990
- "d": "G y MMM d–d",
2991
- "G": "G y MMM d – G y MMM d",
2992
- "M": "G y MMM d – MMM d",
2993
- "y": "G y MMM d – y MMM d"
2994
- },
2995
- "GyMMMEd": {
2996
- "d": "G y MMM d, E – MMM d, E",
2997
- "G": "G y MMM d, E – G y MMM d, E",
2998
- "M": "G y MMM d, E – MMM d, E",
2999
- "y": "G y MMM d, E – y MMM d, E"
3000
- },
3001
- "h": {
3002
- "a": "h a – h a",
3003
- "h": "h–h a"
3004
- },
3005
- "H": {
3006
- "H": "HH–HH"
3007
- },
3008
- "hm": {
3009
- "a": "h:mm a – h:mm a",
3010
- "h": "h:mm–h:mm a",
3011
- "m": "h:mm–h:mm a"
3012
- },
3013
- "Hm": {
3014
- "H": "HH:mm–HH:mm",
3015
- "m": "HH:mm–HH:mm"
3016
- },
3017
- "hmv": {
3018
- "a": "h:mm a – h:mm a v",
3019
- "h": "h:mm–h:mm a v",
3020
- "m": "h:mm–h:mm a v"
3021
- },
3022
- "Hmv": {
3023
- "H": "HH:mm–HH:mm v",
3024
- "m": "HH:mm–HH:mm v"
3025
- },
3026
- "hv": {
3027
- "a": "h a – h a v",
3028
- "h": "h–h a v"
3029
- },
3030
- "Hv": {
3031
- "H": "HH–HH v"
3032
- },
3033
- "M": {
3034
- "M": "M–M"
3035
- },
3036
- "Md": {
3037
- "d": "dd.MM – dd.MM",
3038
- "M": "dd.MM – dd.MM"
3039
- },
3040
- "MEd": {
3041
- "d": "E, dd.MM – E, dd.MM",
3042
- "M": "E, dd.MM – E, dd.MM"
3043
- },
3044
- "MMM": {
3045
- "M": "MMM–MMM"
3046
- },
3047
- "MMMd": {
3048
- "d": "d–d MMM",
3049
- "M": "d MMM – d MMM"
3050
- },
3051
- "MMMEd": {
3052
- "d": "E, d MMM – E, d MMM",
3053
- "M": "E, d MMM – E, d MMM"
3054
- },
3055
- "y": {
3056
- "y": "y–y G"
3057
- },
3058
- "yM": {
3059
- "M": "MM.y – MM.y G",
3060
- "y": "MM.y – MM.y G"
3061
- },
3062
- "yMd": {
3063
- "d": "dd.MM.y – dd.MM.y G",
3064
- "M": "dd.MM.y – dd.MM.y G",
3065
- "y": "dd.MM.y – dd.MM.y G"
3066
- },
3067
- "yMEd": {
3068
- "d": "E, dd.MM.y – E, dd.MM.y G",
3069
- "M": "E, dd.MM.y – E, dd.MM.y G",
3070
- "y": "E, dd.MM.y – E, dd.MM.y G"
3071
- },
3072
- "yMMM": {
3073
- "M": "MMM–MMM y G",
3074
- "y": "MMM y – MMM y G"
3075
- },
3076
- "yMMMd": {
3077
- "d": "d–d MMM y G",
3078
- "M": "d MMM – d MMM y G",
3079
- "y": "d MMM y – d MMM y G"
3080
- },
3081
- "yMMMEd": {
3082
- "d": "E, d MMM – E, d MMM y G",
3083
- "M": "E, d MMM – E, d MMM y G",
3084
- "y": "E, d MMM y – E, d MMM y G"
3085
- },
3086
- "yMMMM": {
3087
- "M": "MMMM–MMMM y G",
3088
- "y": "MMMM y – MMMM y G"
3089
- }
3090
- }
3091
- },
3092
- "months": {
3093
- "format": {
3094
- "abbreviated": [
3095
- "ian.",
3096
- "feb.",
3097
- "mar.",
3098
- "apr.",
3099
- "mai",
3100
- "iun.",
3101
- "iul.",
3102
- "aug.",
3103
- "sept.",
3104
- "oct.",
3105
- "nov.",
3106
- "dec."
3107
- ],
3108
- "narrow": [
3109
- "I",
3110
- "F",
3111
- "M",
3112
- "A",
3113
- "M",
3114
- "I",
3115
- "I",
3116
- "A",
3117
- "S",
3118
- "O",
3119
- "N",
3120
- "D"
3121
- ],
3122
- "wide": [
3123
- "ianuarie",
3124
- "februarie",
3125
- "martie",
3126
- "aprilie",
3127
- "mai",
3128
- "iunie",
3129
- "iulie",
3130
- "august",
3131
- "septembrie",
3132
- "octombrie",
3133
- "noiembrie",
3134
- "decembrie"
3135
- ]
3136
- },
3137
- "stand-alone": {
3138
- "abbreviated": [
3139
- "ian.",
3140
- "feb.",
3141
- "mar.",
3142
- "apr.",
3143
- "mai",
3144
- "iun.",
3145
- "iul.",
3146
- "aug.",
3147
- "sept.",
3148
- "oct.",
3149
- "nov.",
3150
- "dec."
3151
- ],
3152
- "narrow": [
3153
- "I",
3154
- "F",
3155
- "M",
3156
- "A",
3157
- "M",
3158
- "I",
3159
- "I",
3160
- "A",
3161
- "S",
3162
- "O",
3163
- "N",
3164
- "D"
3165
- ],
3166
- "wide": [
3167
- "ianuarie",
3168
- "februarie",
3169
- "martie",
3170
- "aprilie",
3171
- "mai",
3172
- "iunie",
3173
- "iulie",
3174
- "august",
3175
- "septembrie",
3176
- "octombrie",
3177
- "noiembrie",
3178
- "decembrie"
3179
- ]
3180
- }
3181
- },
3182
- "days": {
3183
- "format": {
3184
- "abbreviated": [
3185
- "dum.",
3186
- "lun.",
3187
- "mar.",
3188
- "mie.",
3189
- "joi",
3190
- "vin.",
3191
- "sâm."
3192
- ],
3193
- "narrow": [
3194
- "D",
3195
- "L",
3196
- "M",
3197
- "M",
3198
- "J",
3199
- "V",
3200
- "S"
3201
- ],
3202
- "short": [
3203
- "du.",
3204
- "lu.",
3205
- "ma.",
3206
- "mi.",
3207
- "joi",
3208
- "vi.",
3209
- "sâ."
3210
- ],
3211
- "wide": [
3212
- "duminică",
3213
- "luni",
3214
- "marți",
3215
- "miercuri",
3216
- "joi",
3217
- "vineri",
3218
- "sâmbătă"
3219
- ]
3220
- },
3221
- "stand-alone": {
3222
- "abbreviated": [
3223
- "dum.",
3224
- "lun.",
3225
- "mar.",
3226
- "mie.",
3227
- "joi",
3228
- "vin.",
3229
- "sâm."
3230
- ],
3231
- "narrow": [
3232
- "D",
3233
- "L",
3234
- "M",
3235
- "M",
3236
- "J",
3237
- "V",
3238
- "S"
3239
- ],
3240
- "short": [
3241
- "du.",
3242
- "lu.",
3243
- "ma.",
3244
- "mi.",
3245
- "joi",
3246
- "vi.",
3247
- "sâ."
3248
- ],
3249
- "wide": [
3250
- "duminică",
3251
- "luni",
3252
- "marți",
3253
- "miercuri",
3254
- "joi",
3255
- "vineri",
3256
- "sâmbătă"
3257
- ]
3258
- }
3259
- },
3260
- "quarters": {
3261
- "format": {
3262
- "abbreviated": [
3263
- "trim. I",
3264
- "trim. II",
3265
- "trim. III",
3266
- "trim. IV"
3267
- ],
3268
- "narrow": [
3269
- "I",
3270
- "II",
3271
- "III",
3272
- "IV"
3273
- ],
3274
- "wide": [
3275
- "trimestrul I",
3276
- "trimestrul al II-lea",
3277
- "trimestrul al III-lea",
3278
- "trimestrul al IV-lea"
3279
- ]
3280
- },
3281
- "stand-alone": {
3282
- "abbreviated": [
3283
- "trim. I",
3284
- "trim. II",
3285
- "trim. III",
3286
- "trim. IV"
3287
- ],
3288
- "narrow": [
3289
- "I",
3290
- "II",
3291
- "III",
3292
- "IV"
3293
- ],
3294
- "wide": [
3295
- "trimestrul I",
3296
- "trimestrul al II-lea",
3297
- "trimestrul al III-lea",
3298
- "trimestrul al IV-lea"
3299
- ]
3300
- }
3301
- },
3302
- "dayPeriods": {
3303
- "format": {
3304
- "abbreviated": [
3305
- "a.m.",
3306
- "p.m."
3307
- ],
3308
- "narrow": [
3309
- "a.m.",
3310
- "p.m."
3311
- ],
3312
- "wide": [
3313
- "a.m.",
3314
- "p.m."
3315
- ]
3316
- },
3317
- "stand-alone": {
3318
- "abbreviated": [
3319
- "a.m.",
3320
- "p.m."
3321
- ],
3322
- "narrow": [
3323
- "a.m.",
3324
- "p.m."
3325
- ],
3326
- "wide": [
3327
- "a.m.",
3328
- "p.m."
3329
- ]
3330
- }
3331
- },
3332
- "era-wide": {
3333
- "0": "era budistă"
3334
- },
3335
- "era-abbreviated": {
3336
- "0": "e.b."
3337
- },
3338
- "era-narrow": {
3339
- "0": "e.b."
3340
- }
3341
- },
3342
- "dateFields": {
3343
- "era": {
3344
- "displayName": "eră"
3345
- },
3346
- "year-wide": {
3347
- "displayName": "an",
3348
- "relative-type--1": "anul trecut",
3349
- "relative-type-0": "anul acesta",
3350
- "relative-type-1": "anul viitor",
3351
- "relativeTime-type-future": {
3352
- "relativeTimePattern-count-one": "peste {0} an",
3353
- "relativeTimePattern-count-few": "peste {0} ani",
3354
- "relativeTimePattern-count-other": "peste {0} de ani"
3355
- },
3356
- "relativeTime-type-past": {
3357
- "relativeTimePattern-count-one": "acum {0} an",
3358
- "relativeTimePattern-count-few": "acum {0} ani",
3359
- "relativeTimePattern-count-other": "acum {0} de ani"
3360
- }
3361
- },
3362
- "year-short": {
3363
- "displayName": "an",
3364
- "relative-type--1": "anul trecut",
3365
- "relative-type-0": "anul acesta",
3366
- "relative-type-1": "anul viitor",
3367
- "relativeTime-type-future": {
3368
- "relativeTimePattern-count-one": "peste {0} an",
3369
- "relativeTimePattern-count-few": "peste {0} ani",
3370
- "relativeTimePattern-count-other": "peste {0} de ani"
3371
- },
3372
- "relativeTime-type-past": {
3373
- "relativeTimePattern-count-one": "acum {0} an",
3374
- "relativeTimePattern-count-few": "acum {0} ani",
3375
- "relativeTimePattern-count-other": "acum {0} de ani"
3376
- }
3377
- },
3378
- "year-narrow": {
3379
- "displayName": "an",
3380
- "relative-type--1": "anul trecut",
3381
- "relative-type-0": "anul acesta",
3382
- "relative-type-1": "anul viitor",
3383
- "relativeTime-type-future": {
3384
- "relativeTimePattern-count-one": "+{0} an",
3385
- "relativeTimePattern-count-few": "+{0} ani",
3386
- "relativeTimePattern-count-other": "+{0} ani"
3387
- },
3388
- "relativeTime-type-past": {
3389
- "relativeTimePattern-count-one": "-{0} an",
3390
- "relativeTimePattern-count-few": "-{0} ani",
3391
- "relativeTimePattern-count-other": "-{0} ani"
3392
- }
3393
- },
3394
- "quarter-wide": {
3395
- "displayName": "trimestru",
3396
- "relative-type--1": "trimestrul trecut",
3397
- "relative-type-0": "trimestrul acesta",
3398
- "relative-type-1": "trimestrul viitor",
3399
- "relativeTime-type-future": {
3400
- "relativeTimePattern-count-one": "peste {0} trimestru",
3401
- "relativeTimePattern-count-few": "peste {0} trimestre",
3402
- "relativeTimePattern-count-other": "peste {0} de trimestre"
3403
- },
3404
- "relativeTime-type-past": {
3405
- "relativeTimePattern-count-one": "acum {0} trimestru",
3406
- "relativeTimePattern-count-few": "acum {0} trimestre",
3407
- "relativeTimePattern-count-other": "acum {0} de trimestre"
3408
- }
3409
- },
3410
- "quarter-short": {
3411
- "displayName": "trim.",
3412
- "relative-type--1": "trim. trecut",
3413
- "relative-type-0": "trim. acesta",
3414
- "relative-type-1": "trim. viitor",
3415
- "relativeTime-type-future": {
3416
- "relativeTimePattern-count-one": "peste {0} trim.",
3417
- "relativeTimePattern-count-few": "peste {0} trim.",
3418
- "relativeTimePattern-count-other": "peste {0} trim."
3419
- },
3420
- "relativeTime-type-past": {
3421
- "relativeTimePattern-count-one": "acum {0} trim.",
3422
- "relativeTimePattern-count-few": "acum {0} trim.",
3423
- "relativeTimePattern-count-other": "acum {0} trim."
3424
- }
3425
- },
3426
- "quarter-narrow": {
3427
- "displayName": "trim.",
3428
- "relative-type--1": "trim. trecut",
3429
- "relative-type-0": "trim. acesta",
3430
- "relative-type-1": "trim. viitor",
3431
- "relativeTime-type-future": {
3432
- "relativeTimePattern-count-one": "+{0} trim.",
3433
- "relativeTimePattern-count-few": "+{0} trim.",
3434
- "relativeTimePattern-count-other": "+{0} trim."
3435
- },
3436
- "relativeTime-type-past": {
3437
- "relativeTimePattern-count-one": "-{0} trim.",
3438
- "relativeTimePattern-count-few": "-{0} trim.",
3439
- "relativeTimePattern-count-other": "-{0} trim."
3440
- }
3441
- },
3442
- "month-wide": {
3443
- "displayName": "lună",
3444
- "relative-type--1": "luna trecută",
3445
- "relative-type-0": "luna aceasta",
3446
- "relative-type-1": "luna viitoare",
3447
- "relativeTime-type-future": {
3448
- "relativeTimePattern-count-one": "peste {0} lună",
3449
- "relativeTimePattern-count-few": "peste {0} luni",
3450
- "relativeTimePattern-count-other": "peste {0} de luni"
3451
- },
3452
- "relativeTime-type-past": {
3453
- "relativeTimePattern-count-one": "acum {0} lună",
3454
- "relativeTimePattern-count-few": "acum {0} luni",
3455
- "relativeTimePattern-count-other": "acum {0} de luni"
3456
- }
3457
- },
3458
- "month-short": {
3459
- "displayName": "lună",
3460
- "relative-type--1": "luna trecută",
3461
- "relative-type-0": "luna aceasta",
3462
- "relative-type-1": "luna viitoare",
3463
- "relativeTime-type-future": {
3464
- "relativeTimePattern-count-one": "peste {0} lună",
3465
- "relativeTimePattern-count-few": "peste {0} luni",
3466
- "relativeTimePattern-count-other": "peste {0} luni"
3467
- },
3468
- "relativeTime-type-past": {
3469
- "relativeTimePattern-count-one": "acum {0} lună",
3470
- "relativeTimePattern-count-few": "acum {0} luni",
3471
- "relativeTimePattern-count-other": "acum {0} luni"
3472
- }
3473
- },
3474
- "month-narrow": {
3475
- "displayName": "lună",
3476
- "relative-type--1": "luna trecută",
3477
- "relative-type-0": "luna aceasta",
3478
- "relative-type-1": "luna viitoare",
3479
- "relativeTime-type-future": {
3480
- "relativeTimePattern-count-one": "+{0} lună",
3481
- "relativeTimePattern-count-few": "+{0} luni",
3482
- "relativeTimePattern-count-other": "+{0} luni"
3483
- },
3484
- "relativeTime-type-past": {
3485
- "relativeTimePattern-count-one": "-{0} lună",
3486
- "relativeTimePattern-count-few": "-{0} luni",
3487
- "relativeTimePattern-count-other": "-{0} luni"
3488
- }
3489
- },
3490
- "week-wide": {
3491
- "displayName": "săptămână",
3492
- "relative-type--1": "săptămâna trecută",
3493
- "relative-type-0": "săptămâna aceasta",
3494
- "relative-type-1": "săptămâna viitoare",
3495
- "relativeTime-type-future": {
3496
- "relativeTimePattern-count-one": "peste {0} săptămână",
3497
- "relativeTimePattern-count-few": "peste {0} săptămâni",
3498
- "relativeTimePattern-count-other": "peste {0} de săptămâni"
3499
- },
3500
- "relativeTime-type-past": {
3501
- "relativeTimePattern-count-one": "acum {0} săptămână",
3502
- "relativeTimePattern-count-few": "acum {0} săptămâni",
3503
- "relativeTimePattern-count-other": "acum {0} de săptămâni"
3504
- },
3505
- "relativePeriod": "săptămâna cu {0}"
3506
- },
3507
- "week-short": {
3508
- "displayName": "săpt.",
3509
- "relative-type--1": "săpt. trecută",
3510
- "relative-type-0": "săpt. aceasta",
3511
- "relative-type-1": "săpt. viitoare",
3512
- "relativeTime-type-future": {
3513
- "relativeTimePattern-count-one": "peste {0} săpt.",
3514
- "relativeTimePattern-count-few": "peste {0} săpt.",
3515
- "relativeTimePattern-count-other": "peste {0} săpt."
3516
- },
3517
- "relativeTime-type-past": {
3518
- "relativeTimePattern-count-one": "acum {0} săpt.",
3519
- "relativeTimePattern-count-few": "acum {0} săpt.",
3520
- "relativeTimePattern-count-other": "acum {0} săpt."
3521
- },
3522
- "relativePeriod": "săpt. cu {0}"
3523
- },
3524
- "week-narrow": {
3525
- "displayName": "săpt.",
3526
- "relative-type--1": "săpt. trecută",
3527
- "relative-type-0": "săptămâna aceasta",
3528
- "relative-type-1": "săpt. viitoare",
3529
- "relativeTime-type-future": {
3530
- "relativeTimePattern-count-one": "+{0} săpt.",
3531
- "relativeTimePattern-count-few": "+{0} săpt.",
3532
- "relativeTimePattern-count-other": "+{0} săpt."
3533
- },
3534
- "relativeTime-type-past": {
3535
- "relativeTimePattern-count-one": "-{0} săpt.",
3536
- "relativeTimePattern-count-few": "-{0} săpt.",
3537
- "relativeTimePattern-count-other": "-{0} săpt."
3538
- },
3539
- "relativePeriod": "săpt. cu {0}"
3540
- },
3541
- "day-wide": {
3542
- "displayName": "zi",
3543
- "relative-type--2": "alaltăieri",
3544
- "relative-type--1": "ieri",
3545
- "relative-type-0": "azi",
3546
- "relative-type-1": "mâine",
3547
- "relative-type-2": "poimâine",
3548
- "relativeTime-type-future": {
3549
- "relativeTimePattern-count-one": "peste {0} zi",
3550
- "relativeTimePattern-count-few": "peste {0} zile",
3551
- "relativeTimePattern-count-other": "peste {0} de zile"
3552
- },
3553
- "relativeTime-type-past": {
3554
- "relativeTimePattern-count-one": "acum {0} zi",
3555
- "relativeTimePattern-count-few": "acum {0} zile",
3556
- "relativeTimePattern-count-other": "acum {0} de zile"
3557
- }
3558
- },
3559
- "day-short": {
3560
- "displayName": "zi",
3561
- "relative-type--2": "alaltăieri",
3562
- "relative-type--1": "ieri",
3563
- "relative-type-0": "azi",
3564
- "relative-type-1": "mâine",
3565
- "relative-type-2": "poimâine",
3566
- "relativeTime-type-future": {
3567
- "relativeTimePattern-count-one": "peste {0} zi",
3568
- "relativeTimePattern-count-few": "peste {0} zile",
3569
- "relativeTimePattern-count-other": "peste {0} de zile"
3570
- },
3571
- "relativeTime-type-past": {
3572
- "relativeTimePattern-count-one": "acum {0} zi",
3573
- "relativeTimePattern-count-few": "acum {0} zile",
3574
- "relativeTimePattern-count-other": "acum {0} de zile"
3575
- }
3576
- },
3577
- "day-narrow": {
3578
- "displayName": "zi",
3579
- "relative-type--2": "alaltăieri",
3580
- "relative-type--1": "ieri",
3581
- "relative-type-0": "azi",
3582
- "relative-type-1": "mâine",
3583
- "relative-type-2": "poimâine",
3584
- "relativeTime-type-future": {
3585
- "relativeTimePattern-count-one": "+{0} zi",
3586
- "relativeTimePattern-count-few": "+{0} zile",
3587
- "relativeTimePattern-count-other": "+{0} zile"
3588
- },
3589
- "relativeTime-type-past": {
3590
- "relativeTimePattern-count-one": "-{0} zi",
3591
- "relativeTimePattern-count-few": "-{0} zile",
3592
- "relativeTimePattern-count-other": "-{0} zile"
3593
- }
3594
- },
3595
- "weekday": {
3596
- "displayName": "ziua din săptămână"
3597
- },
3598
- "hour-wide": {
3599
- "displayName": "oră",
3600
- "relative-type-0": "ora aceasta",
3601
- "relativeTime-type-future": {
3602
- "relativeTimePattern-count-one": "peste {0} oră",
3603
- "relativeTimePattern-count-few": "peste {0} ore",
3604
- "relativeTimePattern-count-other": "peste {0} de ore"
3605
- },
3606
- "relativeTime-type-past": {
3607
- "relativeTimePattern-count-one": "acum {0} oră",
3608
- "relativeTimePattern-count-few": "acum {0} ore",
3609
- "relativeTimePattern-count-other": "acum {0} de ore"
3610
- }
3611
- },
3612
- "hour-short": {
3613
- "displayName": "h",
3614
- "relative-type-0": "ora aceasta",
3615
- "relativeTime-type-future": {
3616
- "relativeTimePattern-count-one": "peste {0} h",
3617
- "relativeTimePattern-count-few": "peste {0} h",
3618
- "relativeTimePattern-count-other": "peste {0} h"
3619
- },
3620
- "relativeTime-type-past": {
3621
- "relativeTimePattern-count-one": "acum {0} h",
3622
- "relativeTimePattern-count-few": "acum {0} h",
3623
- "relativeTimePattern-count-other": "acum {0} h"
3624
- }
3625
- },
3626
- "hour-narrow": {
3627
- "displayName": "h",
3628
- "relative-type-0": "ora aceasta",
3629
- "relativeTime-type-future": {
3630
- "relativeTimePattern-count-one": "+{0} h",
3631
- "relativeTimePattern-count-few": "+{0} h",
3632
- "relativeTimePattern-count-other": "+{0} h"
3633
- },
3634
- "relativeTime-type-past": {
3635
- "relativeTimePattern-count-one": "-{0} h",
3636
- "relativeTimePattern-count-few": "-{0} h",
3637
- "relativeTimePattern-count-other": "-{0} h"
3638
- }
3639
- },
3640
- "minute-wide": {
3641
- "displayName": "minut",
3642
- "relative-type-0": "minutul acesta",
3643
- "relativeTime-type-future": {
3644
- "relativeTimePattern-count-one": "peste {0} minut",
3645
- "relativeTimePattern-count-few": "peste {0} minute",
3646
- "relativeTimePattern-count-other": "peste {0} de minute"
3647
- },
3648
- "relativeTime-type-past": {
3649
- "relativeTimePattern-count-one": "acum {0} minut",
3650
- "relativeTimePattern-count-few": "acum {0} minute",
3651
- "relativeTimePattern-count-other": "acum {0} de minute"
3652
- }
3653
- },
3654
- "minute-short": {
3655
- "displayName": "min.",
3656
- "relative-type-0": "minutul acesta",
3657
- "relativeTime-type-future": {
3658
- "relativeTimePattern-count-one": "peste {0} min.",
3659
- "relativeTimePattern-count-few": "peste {0} min.",
3660
- "relativeTimePattern-count-other": "peste {0} min."
3661
- },
3662
- "relativeTime-type-past": {
3663
- "relativeTimePattern-count-one": "acum {0} min.",
3664
- "relativeTimePattern-count-few": "acum {0} min.",
3665
- "relativeTimePattern-count-other": "acum {0} min."
3666
- }
3667
- },
3668
- "minute-narrow": {
3669
- "displayName": "m",
3670
- "relative-type-0": "minutul acesta",
3671
- "relativeTime-type-future": {
3672
- "relativeTimePattern-count-one": "+{0} m",
3673
- "relativeTimePattern-count-few": "+{0} m",
3674
- "relativeTimePattern-count-other": "+{0} m"
3675
- },
3676
- "relativeTime-type-past": {
3677
- "relativeTimePattern-count-one": "-{0} m",
3678
- "relativeTimePattern-count-few": "-{0} m",
3679
- "relativeTimePattern-count-other": "-{0} m"
3680
- }
3681
- },
3682
- "second-wide": {
3683
- "displayName": "secundă",
3684
- "relative-type-0": "acum",
3685
- "relativeTime-type-future": {
3686
- "relativeTimePattern-count-one": "peste {0} secundă",
3687
- "relativeTimePattern-count-few": "peste {0} secunde",
3688
- "relativeTimePattern-count-other": "peste {0} de secunde"
3689
- },
3690
- "relativeTime-type-past": {
3691
- "relativeTimePattern-count-one": "acum {0} secundă",
3692
- "relativeTimePattern-count-few": "acum {0} secunde",
3693
- "relativeTimePattern-count-other": "acum {0} de secunde"
3694
- }
3695
- },
3696
- "second-short": {
3697
- "displayName": "sec.",
3698
- "relative-type-0": "acum",
3699
- "relativeTime-type-future": {
3700
- "relativeTimePattern-count-one": "peste {0} sec.",
3701
- "relativeTimePattern-count-few": "peste {0} sec.",
3702
- "relativeTimePattern-count-other": "peste {0} sec."
3703
- },
3704
- "relativeTime-type-past": {
3705
- "relativeTimePattern-count-one": "acum {0} sec.",
3706
- "relativeTimePattern-count-few": "acum {0} sec.",
3707
- "relativeTimePattern-count-other": "acum {0} sec."
3708
- }
3709
- },
3710
- "second-narrow": {
3711
- "displayName": "s",
3712
- "relative-type-0": "acum",
3713
- "relativeTime-type-future": {
3714
- "relativeTimePattern-count-one": "+{0} s",
3715
- "relativeTimePattern-count-few": "+{0} s",
3716
- "relativeTimePattern-count-other": "+{0} s"
3717
- },
3718
- "relativeTime-type-past": {
3719
- "relativeTimePattern-count-one": "-{0} s",
3720
- "relativeTimePattern-count-few": "-{0} s",
3721
- "relativeTimePattern-count-other": "-{0} s"
3722
- }
3723
- },
3724
- "zone": {
3725
- "displayName": "fus orar"
3726
- }
3727
- },
3728
- "decimalFormat": {
3729
- "standard": "#,##0.###"
3730
- },
3731
- "decimalFormat-long": {
3732
- "1000-one": "0 mie",
3733
- "1000-few": "0 mii",
3734
- "1000-other": "0 de mii",
3735
- "10000-one": "00 mie",
3736
- "10000-few": "00 mii",
3737
- "10000-other": "00 de mii",
3738
- "100000-one": "000 mie",
3739
- "100000-few": "000 mii",
3740
- "100000-other": "000 de mii",
3741
- "1000000-one": "0 milion",
3742
- "1000000-few": "0 milioane",
3743
- "1000000-other": "0 de milioane",
3744
- "10000000-one": "00 milion",
3745
- "10000000-few": "00 milioane",
3746
- "10000000-other": "00 de milioane",
3747
- "100000000-one": "000 milion",
3748
- "100000000-few": "000 milioane",
3749
- "100000000-other": "000 de milioane",
3750
- "1000000000-one": "0 miliard",
3751
- "1000000000-few": "0 miliarde",
3752
- "1000000000-other": "0 de miliarde",
3753
- "10000000000-one": "00 miliard",
3754
- "10000000000-few": "00 miliarde",
3755
- "10000000000-other": "00 de miliarde",
3756
- "100000000000-one": "000 miliard",
3757
- "100000000000-few": "000 miliarde",
3758
- "100000000000-other": "000 de miliarde",
3759
- "1000000000000-one": "0 trilion",
3760
- "1000000000000-few": "0 trilioane",
3761
- "1000000000000-other": "0 de trilioane",
3762
- "10000000000000-one": "00 trilion",
3763
- "10000000000000-few": "00 trilioane",
3764
- "10000000000000-other": "00 de trilioane",
3765
- "100000000000000-one": "000 trilion",
3766
- "100000000000000-few": "000 trilioane",
3767
- "100000000000000-other": "000 de trilioane"
3768
- },
3769
- "decimalFormat-short": {
3770
- "1000-one": "0 K",
3771
- "1000-few": "0 K",
3772
- "1000-other": "0 K",
3773
- "10000-one": "00 K",
3774
- "10000-few": "00 K",
3775
- "10000-other": "00 K",
3776
- "100000-one": "000 K",
3777
- "100000-few": "000 K",
3778
- "100000-other": "000 K",
3779
- "1000000-one": "0 mil'.'",
3780
- "1000000-few": "0 mil'.'",
3781
- "1000000-other": "0 mil'.'",
3782
- "10000000-one": "00 mil'.'",
3783
- "10000000-few": "00 mil'.'",
3784
- "10000000-other": "00 mil'.'",
3785
- "100000000-one": "000 mil'.'",
3786
- "100000000-few": "000 mil'.'",
3787
- "100000000-other": "000 mil'.'",
3788
- "1000000000-one": "0 mld'.'",
3789
- "1000000000-few": "0 mld'.'",
3790
- "1000000000-other": "0 mld'.'",
3791
- "10000000000-one": "00 mld'.'",
3792
- "10000000000-few": "00 mld'.'",
3793
- "10000000000-other": "00 mld'.'",
3794
- "100000000000-one": "000 mld'.'",
3795
- "100000000000-few": "000 mld'.'",
3796
- "100000000000-other": "000 mld'.'",
3797
- "1000000000000-one": "0 tril'.'",
3798
- "1000000000000-few": "0 tril'.'",
3799
- "1000000000000-other": "0 tril'.'",
3800
- "10000000000000-one": "00 tril'.'",
3801
- "10000000000000-few": "00 tril'.'",
3802
- "10000000000000-other": "00 tril'.'",
3803
- "100000000000000-one": "000 tril'.'",
3804
- "100000000000000-few": "000 tril'.'",
3805
- "100000000000000-other": "000 tril'.'"
3806
- },
3807
- "scientificFormat": {
3808
- "standard": "#E0"
3809
- },
3810
- "percentFormat": {
3811
- "standard": "#,##0 %"
3812
- },
3813
- "currencyFormat": {
3814
- "standard": "#,##0.00 ¤",
3815
- "accounting": "#,##0.00 ¤;(#,##0.00 ¤)",
3816
- "currencySpacing": {
3817
- "beforeCurrency": {
3818
- "currencyMatch": "[:^S:]",
3819
- "surroundingMatch": "[:digit:]",
3820
- "insertBetween": " "
3821
- },
3822
- "afterCurrency": {
3823
- "currencyMatch": "[:^S:]",
3824
- "surroundingMatch": "[:digit:]",
3825
- "insertBetween": " "
3826
- }
3827
- }
3828
- },
3829
- "currencyFormat-short": {
3830
- "1000-one": "0 mie ¤",
3831
- "1000-few": "0 mii ¤",
3832
- "1000-other": "0 mii ¤",
3833
- "10000-one": "00 mii ¤",
3834
- "10000-few": "00 mii ¤",
3835
- "10000-other": "00 mii ¤",
3836
- "100000-one": "000 mii ¤",
3837
- "100000-few": "000 mii ¤",
3838
- "100000-other": "000 mii ¤",
3839
- "1000000-one": "0 mil'.' ¤",
3840
- "1000000-few": "0 mil'.' ¤",
3841
- "1000000-other": "0 mil'.' ¤",
3842
- "10000000-one": "00 mil'.' ¤",
3843
- "10000000-few": "00 mil'.' ¤",
3844
- "10000000-other": "00 mil'.' ¤",
3845
- "100000000-one": "000 mil'.' ¤",
3846
- "100000000-few": "000 mil'.' ¤",
3847
- "100000000-other": "000 mil'.' ¤",
3848
- "1000000000-one": "0 mld'.' ¤",
3849
- "1000000000-few": "0 mld'.' ¤",
3850
- "1000000000-other": "0 mld'.' ¤",
3851
- "10000000000-one": "00 mld'.' ¤",
3852
- "10000000000-few": "00 mld'.' ¤",
3853
- "10000000000-other": "00 mld'.' ¤",
3854
- "100000000000-one": "000 mld'.' ¤",
3855
- "100000000000-few": "000 mld'.' ¤",
3856
- "100000000000-other": "000 mld'.' ¤",
3857
- "1000000000000-one": "0 tril'.' ¤",
3858
- "1000000000000-few": "0 tril'.' ¤",
3859
- "1000000000000-other": "0 tril'.' ¤",
3860
- "10000000000000-one": "00 tril'.' ¤",
3861
- "10000000000000-few": "00 tril'.' ¤",
3862
- "10000000000000-other": "00 tril'.' ¤",
3863
- "100000000000000-one": "000 tril'.' ¤",
3864
- "100000000000000-few": "000 tril'.' ¤",
3865
- "100000000000000-other": "000 tril'.' ¤"
3866
- },
3867
- "symbols-latn-decimal": ",",
3868
- "symbols-latn-group": ".",
3869
- "symbols-latn-list": ";",
3870
- "symbols-latn-percentSign": "%",
3871
- "symbols-latn-plusSign": "+",
3872
- "symbols-latn-minusSign": "-",
3873
- "symbols-latn-exponential": "E",
3874
- "symbols-latn-superscriptingExponent": "×",
3875
- "symbols-latn-perMille": "‰",
3876
- "symbols-latn-infinity": "∞",
3877
- "symbols-latn-nan": "NaN",
3878
- "symbols-latn-timeSeparator": ":",
3879
- "currencySymbols": {
3880
- "XAF": "FCFA",
3881
- "XOF": "CFA",
3882
- "XPF": "CFPF",
3883
- "XXX": "¤"
3884
- },
3885
- "rtl": false,
3886
- "listPattern-standard-wide": {
3887
- "2": "{0} și {1}",
3888
- "start": "{0}, {1}",
3889
- "middle": "{0}, {1}",
3890
- "end": "{0} și {1}"
3891
- },
3892
- "listPattern-or-wide": {
3893
- "2": "{0} sau {1}",
3894
- "start": "{0}, {1}",
3895
- "middle": "{0}, {1}",
3896
- "end": "{0} sau {1}"
3897
- },
3898
- "listPattern-or-short": {
3899
- "2": "{0} sau {1}",
3900
- "start": "{0}, {1}",
3901
- "middle": "{0}, {1}",
3902
- "end": "{0} sau {1}"
3903
- },
3904
- "listPattern-standard-short": {
3905
- "2": "{0} și {1}",
3906
- "start": "{0}, {1}",
3907
- "middle": "{0}, {1}",
3908
- "end": "{0} și {1}"
3909
- },
3910
- "units": {
3911
- "short": {
3912
- "per": {
3913
- "compoundUnitPattern": "{0}/{1}"
3914
- },
3915
- "acceleration-g-force": {
3916
- "displayName": "forță g",
3917
- "unitPattern-count-one": "{0} G",
3918
- "unitPattern-count-few": "{0} G",
3919
- "unitPattern-count-other": "{0} G"
3920
- },
3921
- "acceleration-meter-per-second-squared": {
3922
- "displayName": "m/s²",
3923
- "unitPattern-count-one": "{0} m/s²",
3924
- "unitPattern-count-few": "{0} m/s²",
3925
- "unitPattern-count-other": "{0} m/s²"
3926
- },
3927
- "angle-revolution": {
3928
- "displayName": "rev.",
3929
- "unitPattern-count-one": "{0} rev.",
3930
- "unitPattern-count-few": "{0} rev.",
3931
- "unitPattern-count-other": "{0} rev."
3932
- },
3933
- "angle-radian": {
3934
- "displayName": "rad",
3935
- "unitPattern-count-one": "{0} rad",
3936
- "unitPattern-count-few": "{0} rad",
3937
- "unitPattern-count-other": "{0} rad"
3938
- },
3939
- "angle-degree": {
3940
- "displayName": "grade",
3941
- "unitPattern-count-one": "{0}°",
3942
- "unitPattern-count-few": "{0}°",
3943
- "unitPattern-count-other": "{0}°"
3944
- },
3945
- "angle-arc-minute": {
3946
- "displayName": "arcmin",
3947
- "unitPattern-count-one": "{0} arcmin",
3948
- "unitPattern-count-few": "{0} arcmin",
3949
- "unitPattern-count-other": "{0} arcmin"
3950
- },
3951
- "angle-arc-second": {
3952
- "displayName": "arcsec",
3953
- "unitPattern-count-one": "{0} arcsec",
3954
- "unitPattern-count-few": "{0} arcsec",
3955
- "unitPattern-count-other": "{0} arcsec"
3956
- },
3957
- "area-square-kilometer": {
3958
- "displayName": "km²",
3959
- "unitPattern-count-one": "{0} km²",
3960
- "unitPattern-count-few": "{0} km²",
3961
- "unitPattern-count-other": "{0} km²",
3962
- "perUnitPattern": "{0}/km²"
3963
- },
3964
- "area-hectare": {
3965
- "displayName": "ha",
3966
- "unitPattern-count-one": "{0} ha",
3967
- "unitPattern-count-few": "{0} ha",
3968
- "unitPattern-count-other": "{0} ha"
3969
- },
3970
- "area-square-meter": {
3971
- "displayName": "m²",
3972
- "unitPattern-count-one": "{0} m²",
3973
- "unitPattern-count-few": "{0} m²",
3974
- "unitPattern-count-other": "{0} m²",
3975
- "perUnitPattern": "{0} pe m²"
3976
- },
3977
- "area-square-centimeter": {
3978
- "displayName": "cm²",
3979
- "unitPattern-count-one": "{0} cm²",
3980
- "unitPattern-count-few": "{0} cm²",
3981
- "unitPattern-count-other": "{0} cm²",
3982
- "perUnitPattern": "{0} pe cm²"
3983
- },
3984
- "area-square-mile": {
3985
- "displayName": "mi²",
3986
- "unitPattern-count-one": "{0} mi²",
3987
- "unitPattern-count-few": "{0} mi²",
3988
- "unitPattern-count-other": "{0} mi²",
3989
- "perUnitPattern": "{0}/mi²"
3990
- },
3991
- "area-acre": {
3992
- "displayName": "acri",
3993
- "unitPattern-count-one": "{0} ac.",
3994
- "unitPattern-count-few": "{0} ac.",
3995
- "unitPattern-count-other": "{0} ac."
3996
- },
3997
- "area-square-yard": {
3998
- "displayName": "yd²",
3999
- "unitPattern-count-one": "{0} yd²",
4000
- "unitPattern-count-few": "{0} yd²",
4001
- "unitPattern-count-other": "{0} yd²"
4002
- },
4003
- "area-square-foot": {
4004
- "displayName": "ft²",
4005
- "unitPattern-count-one": "{0} ft²",
4006
- "unitPattern-count-few": "{0} ft²",
4007
- "unitPattern-count-other": "{0} ft²"
4008
- },
4009
- "area-square-inch": {
4010
- "displayName": "in²",
4011
- "unitPattern-count-one": "{0} in²",
4012
- "unitPattern-count-few": "{0} in²",
4013
- "unitPattern-count-other": "{0} in²",
4014
- "perUnitPattern": "{0}/in²"
4015
- },
4016
- "concentr-karat": {
4017
- "displayName": "kt",
4018
- "unitPattern-count-one": "{0} kt",
4019
- "unitPattern-count-few": "{0} kt",
4020
- "unitPattern-count-other": "{0} kt"
4021
- },
4022
- "concentr-milligram-per-deciliter": {
4023
- "displayName": "mg/dl",
4024
- "unitPattern-count-one": "{0} mg/dl",
4025
- "unitPattern-count-few": "{0} mg/dl",
4026
- "unitPattern-count-other": "{0} mg/dl"
4027
- },
4028
- "concentr-millimole-per-liter": {
4029
- "displayName": "mmol/l",
4030
- "unitPattern-count-one": "{0} mmol/l",
4031
- "unitPattern-count-few": "{0} mmol/l",
4032
- "unitPattern-count-other": "{0} mmol/l"
4033
- },
4034
- "concentr-part-per-million": {
4035
- "displayName": "ppm",
4036
- "unitPattern-count-one": "{0} ppm",
4037
- "unitPattern-count-few": "{0} ppm",
4038
- "unitPattern-count-other": "{0} ppm"
4039
- },
4040
- "concentr-percent": {
4041
- "displayName": "%",
4042
- "unitPattern-count-one": "{0}%",
4043
- "unitPattern-count-few": "{0}%",
4044
- "unitPattern-count-other": "{0}%"
4045
- },
4046
- "concentr-permille": {
4047
- "displayName": "‰",
4048
- "unitPattern-count-one": "{0}‰",
4049
- "unitPattern-count-few": "{0}‰",
4050
- "unitPattern-count-other": "{0}‰"
4051
- },
4052
- "consumption-liter-per-kilometer": {
4053
- "displayName": "l/km",
4054
- "unitPattern-count-one": "{0} l/km",
4055
- "unitPattern-count-few": "{0} l/km",
4056
- "unitPattern-count-other": "{0} l/km"
4057
- },
4058
- "consumption-liter-per-100kilometers": {
4059
- "displayName": "l/100 km",
4060
- "unitPattern-count-one": "{0} l/100 km",
4061
- "unitPattern-count-few": "{0} l/100 km",
4062
- "unitPattern-count-other": "{0} l/100 km"
4063
- },
4064
- "consumption-mile-per-gallon": {
4065
- "displayName": "mile/gal.",
4066
- "unitPattern-count-one": "{0} milă/gal.",
4067
- "unitPattern-count-few": "{0} mile/gal.",
4068
- "unitPattern-count-other": "{0} mile/gal."
4069
- },
4070
- "consumption-mile-per-gallon-imperial": {
4071
- "displayName": "mi/gal imp.",
4072
- "unitPattern-count-one": "{0} mi/gal imp.",
4073
- "unitPattern-count-few": "{0} mi/gal imp.",
4074
- "unitPattern-count-other": "{0} mi/gal imp."
4075
- },
4076
- "digital-petabyte": {
4077
- "displayName": "PB",
4078
- "unitPattern-count-one": "{0} PB",
4079
- "unitPattern-count-few": "{0} PB",
4080
- "unitPattern-count-other": "{0} PB"
4081
- },
4082
- "digital-terabyte": {
4083
- "displayName": "TB",
4084
- "unitPattern-count-one": "{0} TB",
4085
- "unitPattern-count-few": "{0} TB",
4086
- "unitPattern-count-other": "{0} TB"
4087
- },
4088
- "digital-terabit": {
4089
- "displayName": "Tb",
4090
- "unitPattern-count-one": "{0} Tb",
4091
- "unitPattern-count-few": "{0} Tb",
4092
- "unitPattern-count-other": "{0} Tb"
4093
- },
4094
- "digital-gigabyte": {
4095
- "displayName": "GB",
4096
- "unitPattern-count-one": "{0} GB",
4097
- "unitPattern-count-few": "{0} GB",
4098
- "unitPattern-count-other": "{0} GB"
4099
- },
4100
- "digital-gigabit": {
4101
- "displayName": "Gb",
4102
- "unitPattern-count-one": "{0} Gb",
4103
- "unitPattern-count-few": "{0} Gb",
4104
- "unitPattern-count-other": "{0} Gb"
4105
- },
4106
- "digital-megabyte": {
4107
- "displayName": "MB",
4108
- "unitPattern-count-one": "{0} MB",
4109
- "unitPattern-count-few": "{0} MB",
4110
- "unitPattern-count-other": "{0} MB"
4111
- },
4112
- "digital-megabit": {
4113
- "displayName": "Mb",
4114
- "unitPattern-count-one": "{0} Mb",
4115
- "unitPattern-count-few": "{0} Mb",
4116
- "unitPattern-count-other": "{0} Mb"
4117
- },
4118
- "digital-kilobyte": {
4119
- "displayName": "kB",
4120
- "unitPattern-count-one": "{0} kB",
4121
- "unitPattern-count-few": "{0} kB",
4122
- "unitPattern-count-other": "{0} kB"
4123
- },
4124
- "digital-kilobit": {
4125
- "displayName": "kb",
4126
- "unitPattern-count-one": "{0} kb",
4127
- "unitPattern-count-few": "{0} kb",
4128
- "unitPattern-count-other": "{0} kb"
4129
- },
4130
- "digital-byte": {
4131
- "displayName": "B",
4132
- "unitPattern-count-one": "{0} B",
4133
- "unitPattern-count-few": "{0} B",
4134
- "unitPattern-count-other": "{0} B"
4135
- },
4136
- "digital-bit": {
4137
- "displayName": "b",
4138
- "unitPattern-count-one": "{0} b",
4139
- "unitPattern-count-few": "{0} b",
4140
- "unitPattern-count-other": "{0} b"
4141
- },
4142
- "duration-century": {
4143
- "displayName": "sec.",
4144
- "unitPattern-count-one": "{0} sec.",
4145
- "unitPattern-count-few": "{0} sec.",
4146
- "unitPattern-count-other": "{0} sec."
4147
- },
4148
- "duration-year": {
4149
- "displayName": "ani",
4150
- "unitPattern-count-one": "{0} an",
4151
- "unitPattern-count-few": "{0} ani",
4152
- "unitPattern-count-other": "{0} ani",
4153
- "perUnitPattern": "{0}/an"
4154
- },
4155
- "duration-month": {
4156
- "displayName": "luni",
4157
- "unitPattern-count-one": "{0} lună",
4158
- "unitPattern-count-few": "{0} luni",
4159
- "unitPattern-count-other": "{0} luni",
4160
- "perUnitPattern": "{0}/lună"
4161
- },
4162
- "duration-week": {
4163
- "displayName": "săptămâni",
4164
- "unitPattern-count-one": "{0} săpt.",
4165
- "unitPattern-count-few": "{0} săpt.",
4166
- "unitPattern-count-other": "{0} săpt.",
4167
- "perUnitPattern": "{0}/săpt."
4168
- },
4169
- "duration-day": {
4170
- "displayName": "zile",
4171
- "unitPattern-count-one": "{0} zi",
4172
- "unitPattern-count-few": "{0} zile",
4173
- "unitPattern-count-other": "{0} zile",
4174
- "perUnitPattern": "{0}/zi"
4175
- },
4176
- "duration-hour": {
4177
- "displayName": "ore",
4178
- "unitPattern-count-one": "{0} oră",
4179
- "unitPattern-count-few": "{0} ore",
4180
- "unitPattern-count-other": "{0} ore",
4181
- "perUnitPattern": "{0}/h"
4182
- },
4183
- "duration-minute": {
4184
- "displayName": "min.",
4185
- "unitPattern-count-one": "{0} min.",
4186
- "unitPattern-count-few": "{0} min.",
4187
- "unitPattern-count-other": "{0} min.",
4188
- "perUnitPattern": "{0}/min."
4189
- },
4190
- "duration-second": {
4191
- "displayName": "s",
4192
- "unitPattern-count-one": "{0} s",
4193
- "unitPattern-count-few": "{0} s",
4194
- "unitPattern-count-other": "{0} s",
4195
- "perUnitPattern": "{0}/s"
4196
- },
4197
- "duration-millisecond": {
4198
- "displayName": "ms",
4199
- "unitPattern-count-one": "{0} ms",
4200
- "unitPattern-count-few": "{0} ms",
4201
- "unitPattern-count-other": "{0} ms"
4202
- },
4203
- "duration-microsecond": {
4204
- "displayName": "μs",
4205
- "unitPattern-count-one": "{0} μs",
4206
- "unitPattern-count-few": "{0} μs",
4207
- "unitPattern-count-other": "{0} μs"
4208
- },
4209
- "duration-nanosecond": {
4210
- "displayName": "ns",
4211
- "unitPattern-count-one": "{0} ns",
4212
- "unitPattern-count-few": "{0} ns",
4213
- "unitPattern-count-other": "{0} ns"
4214
- },
4215
- "electric-ampere": {
4216
- "displayName": "A",
4217
- "unitPattern-count-one": "{0} A",
4218
- "unitPattern-count-few": "{0} A",
4219
- "unitPattern-count-other": "{0} A"
4220
- },
4221
- "electric-milliampere": {
4222
- "displayName": "mA",
4223
- "unitPattern-count-one": "{0} mA",
4224
- "unitPattern-count-few": "{0} mA",
4225
- "unitPattern-count-other": "{0} mA"
4226
- },
4227
- "electric-ohm": {
4228
- "displayName": "Ω",
4229
- "unitPattern-count-one": "{0} Ω",
4230
- "unitPattern-count-few": "{0} Ω",
4231
- "unitPattern-count-other": "{0} Ω"
4232
- },
4233
- "electric-volt": {
4234
- "displayName": "V",
4235
- "unitPattern-count-one": "{0} V",
4236
- "unitPattern-count-few": "{0} V",
4237
- "unitPattern-count-other": "{0} V"
4238
- },
4239
- "energy-kilocalorie": {
4240
- "displayName": "kcal",
4241
- "unitPattern-count-one": "{0} kcal",
4242
- "unitPattern-count-few": "{0} kcal",
4243
- "unitPattern-count-other": "{0} kcal"
4244
- },
4245
- "energy-calorie": {
4246
- "displayName": "cal",
4247
- "unitPattern-count-one": "{0} cal",
4248
- "unitPattern-count-few": "{0} cal",
4249
- "unitPattern-count-other": "{0} cal"
4250
- },
4251
- "energy-foodcalorie": {
4252
- "displayName": "kcal",
4253
- "unitPattern-count-one": "{0} kcal",
4254
- "unitPattern-count-few": "{0} kcal",
4255
- "unitPattern-count-other": "{0} kcal"
4256
- },
4257
- "energy-kilojoule": {
4258
- "displayName": "kJ",
4259
- "unitPattern-count-one": "{0} kJ",
4260
- "unitPattern-count-few": "{0} kJ",
4261
- "unitPattern-count-other": "{0} kJ"
4262
- },
4263
- "energy-joule": {
4264
- "displayName": "J",
4265
- "unitPattern-count-one": "{0} J",
4266
- "unitPattern-count-few": "{0} J",
4267
- "unitPattern-count-other": "{0} J"
4268
- },
4269
- "energy-kilowatt-hour": {
4270
- "displayName": "kWh",
4271
- "unitPattern-count-one": "{0} kWh",
4272
- "unitPattern-count-few": "{0} kWh",
4273
- "unitPattern-count-other": "{0} kWh"
4274
- },
4275
- "frequency-gigahertz": {
4276
- "displayName": "GHz",
4277
- "unitPattern-count-one": "{0} GHz",
4278
- "unitPattern-count-few": "{0} GHz",
4279
- "unitPattern-count-other": "{0} GHz"
4280
- },
4281
- "frequency-megahertz": {
4282
- "displayName": "MHz",
4283
- "unitPattern-count-one": "{0} MHz",
4284
- "unitPattern-count-few": "{0} MHz",
4285
- "unitPattern-count-other": "{0} MHz"
4286
- },
4287
- "frequency-kilohertz": {
4288
- "displayName": "kHz",
4289
- "unitPattern-count-one": "{0} kHz",
4290
- "unitPattern-count-few": "{0} kHz",
4291
- "unitPattern-count-other": "{0} kHz"
4292
- },
4293
- "frequency-hertz": {
4294
- "displayName": "Hz",
4295
- "unitPattern-count-one": "{0} Hz",
4296
- "unitPattern-count-few": "{0} Hz",
4297
- "unitPattern-count-other": "{0} Hz"
4298
- },
4299
- "length-kilometer": {
4300
- "displayName": "km",
4301
- "unitPattern-count-one": "{0} km",
4302
- "unitPattern-count-few": "{0} km",
4303
- "unitPattern-count-other": "{0} km",
4304
- "perUnitPattern": "{0}/km"
4305
- },
4306
- "length-meter": {
4307
- "displayName": "metri",
4308
- "unitPattern-count-one": "{0} m",
4309
- "unitPattern-count-few": "{0} m",
4310
- "unitPattern-count-other": "{0} m",
4311
- "perUnitPattern": "{0}/m"
4312
- },
4313
- "length-decimeter": {
4314
- "displayName": "dm",
4315
- "unitPattern-count-one": "{0} dm",
4316
- "unitPattern-count-few": "{0} dm",
4317
- "unitPattern-count-other": "{0} dm"
4318
- },
4319
- "length-centimeter": {
4320
- "displayName": "cm",
4321
- "unitPattern-count-one": "{0} cm",
4322
- "unitPattern-count-few": "{0} cm",
4323
- "unitPattern-count-other": "{0} cm",
4324
- "perUnitPattern": "{0}/cm"
4325
- },
4326
- "length-millimeter": {
4327
- "displayName": "mm",
4328
- "unitPattern-count-one": "{0} mm",
4329
- "unitPattern-count-few": "{0} mm",
4330
- "unitPattern-count-other": "{0} mm"
4331
- },
4332
- "length-micrometer": {
4333
- "displayName": "µm",
4334
- "unitPattern-count-one": "{0} µm",
4335
- "unitPattern-count-few": "{0} µm",
4336
- "unitPattern-count-other": "{0} µm"
4337
- },
4338
- "length-nanometer": {
4339
- "displayName": "nm",
4340
- "unitPattern-count-one": "{0} nm",
4341
- "unitPattern-count-few": "{0} nm",
4342
- "unitPattern-count-other": "{0} nm"
4343
- },
4344
- "length-picometer": {
4345
- "displayName": "pm",
4346
- "unitPattern-count-one": "{0} pm",
4347
- "unitPattern-count-few": "{0} pm",
4348
- "unitPattern-count-other": "{0} pm"
4349
- },
4350
- "length-mile": {
4351
- "displayName": "mi",
4352
- "unitPattern-count-one": "{0} mi",
4353
- "unitPattern-count-few": "{0} mi",
4354
- "unitPattern-count-other": "{0} mi"
4355
- },
4356
- "length-yard": {
4357
- "displayName": "yd",
4358
- "unitPattern-count-one": "{0} yd",
4359
- "unitPattern-count-few": "{0} yd",
4360
- "unitPattern-count-other": "{0} yd"
4361
- },
4362
- "length-foot": {
4363
- "displayName": "ft",
4364
- "unitPattern-count-one": "{0} ft",
4365
- "unitPattern-count-few": "{0} ft",
4366
- "unitPattern-count-other": "{0} ft",
4367
- "perUnitPattern": "{0}/ft"
4368
- },
4369
- "length-inch": {
4370
- "displayName": "in",
4371
- "unitPattern-count-one": "{0} in",
4372
- "unitPattern-count-few": "{0} in",
4373
- "unitPattern-count-other": "{0} in",
4374
- "perUnitPattern": "{0}/in"
4375
- },
4376
- "length-parsec": {
4377
- "displayName": "pc",
4378
- "unitPattern-count-one": "{0} pc",
4379
- "unitPattern-count-few": "{0} pc",
4380
- "unitPattern-count-other": "{0} pc"
4381
- },
4382
- "length-light-year": {
4383
- "displayName": "a.l.",
4384
- "unitPattern-count-one": "{0} a.l.",
4385
- "unitPattern-count-few": "{0} a.l.",
4386
- "unitPattern-count-other": "{0} a.l."
4387
- },
4388
- "length-astronomical-unit": {
4389
- "displayName": "ua",
4390
- "unitPattern-count-one": "{0} ua",
4391
- "unitPattern-count-few": "{0} ua",
4392
- "unitPattern-count-other": "{0} ua"
4393
- },
4394
- "length-furlong": {
4395
- "displayName": "fur",
4396
- "unitPattern-count-other": "{0} fur"
4397
- },
4398
- "length-fathom": {
4399
- "displayName": "fm",
4400
- "unitPattern-count-other": "{0} fth"
4401
- },
4402
- "length-nautical-mile": {
4403
- "displayName": "mn",
4404
- "unitPattern-count-one": "{0} mn",
4405
- "unitPattern-count-few": "{0} mn",
4406
- "unitPattern-count-other": "{0} mn"
4407
- },
4408
- "length-mile-scandinavian": {
4409
- "displayName": "smi",
4410
- "unitPattern-count-one": "{0} smi",
4411
- "unitPattern-count-few": "{0} smi",
4412
- "unitPattern-count-other": "{0} smi"
4413
- },
4414
- "length-point": {
4415
- "displayName": "pt",
4416
- "unitPattern-count-one": "{0} pt",
4417
- "unitPattern-count-few": "{0} pt",
4418
- "unitPattern-count-other": "{0} pt"
4419
- },
4420
- "light-lux": {
4421
- "displayName": "lx",
4422
- "unitPattern-count-one": "{0} lx",
4423
- "unitPattern-count-few": "{0} lx",
4424
- "unitPattern-count-other": "{0} lx"
4425
- },
4426
- "mass-metric-ton": {
4427
- "displayName": "t",
4428
- "unitPattern-count-one": "{0} t",
4429
- "unitPattern-count-few": "{0} t",
4430
- "unitPattern-count-other": "{0} t"
4431
- },
4432
- "mass-kilogram": {
4433
- "displayName": "kg",
4434
- "unitPattern-count-one": "{0} kg",
4435
- "unitPattern-count-few": "{0} kg",
4436
- "unitPattern-count-other": "{0} kg",
4437
- "perUnitPattern": "{0}/kg"
4438
- },
4439
- "mass-gram": {
4440
- "displayName": "grame",
4441
- "unitPattern-count-one": "{0} g",
4442
- "unitPattern-count-few": "{0} g",
4443
- "unitPattern-count-other": "{0} g",
4444
- "perUnitPattern": "{0}/g"
4445
- },
4446
- "mass-milligram": {
4447
- "displayName": "mg",
4448
- "unitPattern-count-one": "{0} mg",
4449
- "unitPattern-count-few": "{0} mg",
4450
- "unitPattern-count-other": "{0} mg"
4451
- },
4452
- "mass-microgram": {
4453
- "displayName": "µg",
4454
- "unitPattern-count-one": "{0} µg",
4455
- "unitPattern-count-few": "{0} µg",
4456
- "unitPattern-count-other": "{0} µg"
4457
- },
4458
- "mass-ton": {
4459
- "displayName": "t.s.",
4460
- "unitPattern-count-one": "{0} t.s.",
4461
- "unitPattern-count-few": "{0} t.s.",
4462
- "unitPattern-count-other": "{0} t.s."
4463
- },
4464
- "mass-stone": {
4465
- "displayName": "st",
4466
- "unitPattern-count-other": "{0} st"
4467
- },
4468
- "mass-pound": {
4469
- "displayName": "lb",
4470
- "unitPattern-count-one": "{0} lb",
4471
- "unitPattern-count-few": "{0} lb",
4472
- "unitPattern-count-other": "{0} lb",
4473
- "perUnitPattern": "{0}/lb"
4474
- },
4475
- "mass-ounce": {
4476
- "displayName": "oz",
4477
- "unitPattern-count-one": "{0} oz",
4478
- "unitPattern-count-few": "{0} oz",
4479
- "unitPattern-count-other": "{0} oz",
4480
- "perUnitPattern": "{0}/oz"
4481
- },
4482
- "mass-ounce-troy": {
4483
- "displayName": "oz t",
4484
- "unitPattern-count-one": "{0} oz t",
4485
- "unitPattern-count-few": "{0} oz t",
4486
- "unitPattern-count-other": "{0} oz t"
4487
- },
4488
- "mass-carat": {
4489
- "displayName": "carate",
4490
- "unitPattern-count-one": "{0} ct",
4491
- "unitPattern-count-few": "{0} ct",
4492
- "unitPattern-count-other": "{0} ct"
4493
- },
4494
- "power-gigawatt": {
4495
- "displayName": "GW",
4496
- "unitPattern-count-one": "{0} GW",
4497
- "unitPattern-count-few": "{0} GW",
4498
- "unitPattern-count-other": "{0} GW"
4499
- },
4500
- "power-megawatt": {
4501
- "displayName": "MW",
4502
- "unitPattern-count-one": "{0} MW",
4503
- "unitPattern-count-few": "{0} MW",
4504
- "unitPattern-count-other": "{0} MW"
4505
- },
4506
- "power-kilowatt": {
4507
- "displayName": "kW",
4508
- "unitPattern-count-one": "{0} kW",
4509
- "unitPattern-count-few": "{0} kW",
4510
- "unitPattern-count-other": "{0} kW"
4511
- },
4512
- "power-watt": {
4513
- "displayName": "W",
4514
- "unitPattern-count-one": "{0} W",
4515
- "unitPattern-count-few": "{0} W",
4516
- "unitPattern-count-other": "{0} W"
4517
- },
4518
- "power-milliwatt": {
4519
- "displayName": "mW",
4520
- "unitPattern-count-one": "{0} mW",
4521
- "unitPattern-count-few": "{0} mW",
4522
- "unitPattern-count-other": "{0} mW"
4523
- },
4524
- "power-horsepower": {
4525
- "displayName": "CP",
4526
- "unitPattern-count-one": "{0} CP",
4527
- "unitPattern-count-few": "{0} CP",
4528
- "unitPattern-count-other": "{0} CP"
4529
- },
4530
- "pressure-hectopascal": {
4531
- "displayName": "hPa",
4532
- "unitPattern-count-one": "{0} hPa",
4533
- "unitPattern-count-few": "{0} hPa",
4534
- "unitPattern-count-other": "{0} hPa"
4535
- },
4536
- "pressure-millimeter-of-mercury": {
4537
- "displayName": "mm Hg",
4538
- "unitPattern-count-one": "{0} mm Hg",
4539
- "unitPattern-count-few": "{0} mm Hg",
4540
- "unitPattern-count-other": "{0} mm Hg"
4541
- },
4542
- "pressure-pound-per-square-inch": {
4543
- "displayName": "psi",
4544
- "unitPattern-count-one": "{0} psi",
4545
- "unitPattern-count-few": "{0} psi",
4546
- "unitPattern-count-other": "{0} psi"
4547
- },
4548
- "pressure-inch-hg": {
4549
- "displayName": "in Hg",
4550
- "unitPattern-count-one": "{0} in Hg",
4551
- "unitPattern-count-few": "{0} in Hg",
4552
- "unitPattern-count-other": "{0} in Hg"
4553
- },
4554
- "pressure-millibar": {
4555
- "displayName": "mbar",
4556
- "unitPattern-count-one": "{0} mbar",
4557
- "unitPattern-count-few": "{0} mbar",
4558
- "unitPattern-count-other": "{0} mbar"
4559
- },
4560
- "pressure-atmosphere": {
4561
- "displayName": "atm",
4562
- "unitPattern-count-one": "{0} atm",
4563
- "unitPattern-count-few": "{0} atm",
4564
- "unitPattern-count-other": "{0} atm"
4565
- },
4566
- "speed-kilometer-per-hour": {
4567
- "displayName": "km/h",
4568
- "unitPattern-count-one": "{0} km/h",
4569
- "unitPattern-count-few": "{0} km/h",
4570
- "unitPattern-count-other": "{0} km/h"
4571
- },
4572
- "speed-meter-per-second": {
4573
- "displayName": "m/s",
4574
- "unitPattern-count-one": "{0} m/s",
4575
- "unitPattern-count-few": "{0} m/s",
4576
- "unitPattern-count-other": "{0} m/s"
4577
- },
4578
- "speed-mile-per-hour": {
4579
- "displayName": "mi/h",
4580
- "unitPattern-count-one": "{0} mi/h",
4581
- "unitPattern-count-few": "{0} mi/h",
4582
- "unitPattern-count-other": "{0} mi/h"
4583
- },
4584
- "speed-knot": {
4585
- "displayName": "kn",
4586
- "unitPattern-count-one": "{0} kn",
4587
- "unitPattern-count-few": "{0} kn",
4588
- "unitPattern-count-other": "{0} kn"
4589
- },
4590
- "temperature-generic": {
4591
- "displayName": "°",
4592
- "unitPattern-count-one": "{0}°",
4593
- "unitPattern-count-few": "{0}°",
4594
- "unitPattern-count-other": "{0}°"
4595
- },
4596
- "temperature-celsius": {
4597
- "displayName": "°C",
4598
- "unitPattern-count-one": "{0} °C",
4599
- "unitPattern-count-few": "{0} °C",
4600
- "unitPattern-count-other": "{0} °C"
4601
- },
4602
- "temperature-fahrenheit": {
4603
- "displayName": "°F",
4604
- "unitPattern-count-one": "{0} °F",
4605
- "unitPattern-count-few": "{0} °F",
4606
- "unitPattern-count-other": "{0} °F"
4607
- },
4608
- "temperature-kelvin": {
4609
- "displayName": "K",
4610
- "unitPattern-count-one": "{0} K",
4611
- "unitPattern-count-few": "{0} K",
4612
- "unitPattern-count-other": "{0} K"
4613
- },
4614
- "volume-cubic-kilometer": {
4615
- "displayName": "km³",
4616
- "unitPattern-count-one": "{0} km³",
4617
- "unitPattern-count-few": "{0} km³",
4618
- "unitPattern-count-other": "{0} km³"
4619
- },
4620
- "volume-cubic-meter": {
4621
- "displayName": "m³",
4622
- "unitPattern-count-one": "{0} m³",
4623
- "unitPattern-count-few": "{0} m³",
4624
- "unitPattern-count-other": "{0} m³",
4625
- "perUnitPattern": "{0}/m³"
4626
- },
4627
- "volume-cubic-centimeter": {
4628
- "displayName": "cm³",
4629
- "unitPattern-count-one": "{0} cm³",
4630
- "unitPattern-count-few": "{0} cm³",
4631
- "unitPattern-count-other": "{0} cm³",
4632
- "perUnitPattern": "{0}/cm³"
4633
- },
4634
- "volume-cubic-mile": {
4635
- "displayName": "mi³",
4636
- "unitPattern-count-one": "{0} mi³",
4637
- "unitPattern-count-few": "{0} mi³",
4638
- "unitPattern-count-other": "{0} mi³"
4639
- },
4640
- "volume-cubic-yard": {
4641
- "displayName": "yd³",
4642
- "unitPattern-count-one": "{0} yd³",
4643
- "unitPattern-count-few": "{0} yd³",
4644
- "unitPattern-count-other": "{0} yd³"
4645
- },
4646
- "volume-cubic-foot": {
4647
- "displayName": "ft³",
4648
- "unitPattern-count-one": "{0} ft³",
4649
- "unitPattern-count-few": "{0} ft³",
4650
- "unitPattern-count-other": "{0} ft³"
4651
- },
4652
- "volume-cubic-inch": {
4653
- "displayName": "in³",
4654
- "unitPattern-count-one": "{0} in³",
4655
- "unitPattern-count-few": "{0} in³",
4656
- "unitPattern-count-other": "{0} in³"
4657
- },
4658
- "volume-megaliter": {
4659
- "displayName": "Ml",
4660
- "unitPattern-count-one": "{0} Ml",
4661
- "unitPattern-count-few": "{0} Ml",
4662
- "unitPattern-count-other": "{0} Ml"
4663
- },
4664
- "volume-hectoliter": {
4665
- "displayName": "hl",
4666
- "unitPattern-count-one": "{0} hl",
4667
- "unitPattern-count-few": "{0} hl",
4668
- "unitPattern-count-other": "{0} hl"
4669
- },
4670
- "volume-liter": {
4671
- "displayName": "litri",
4672
- "unitPattern-count-one": "{0} l",
4673
- "unitPattern-count-few": "{0} l",
4674
- "unitPattern-count-other": "{0} l",
4675
- "perUnitPattern": "{0}/l"
4676
- },
4677
- "volume-deciliter": {
4678
- "displayName": "dl",
4679
- "unitPattern-count-one": "{0} dl",
4680
- "unitPattern-count-few": "{0} dl",
4681
- "unitPattern-count-other": "{0} dl"
4682
- },
4683
- "volume-centiliter": {
4684
- "displayName": "cl",
4685
- "unitPattern-count-one": "{0} cl",
4686
- "unitPattern-count-few": "{0} cl",
4687
- "unitPattern-count-other": "{0} cl"
4688
- },
4689
- "volume-milliliter": {
4690
- "displayName": "ml",
4691
- "unitPattern-count-one": "{0} ml",
4692
- "unitPattern-count-few": "{0} ml",
4693
- "unitPattern-count-other": "{0} ml"
4694
- },
4695
- "volume-pint-metric": {
4696
- "displayName": "mpt",
4697
- "unitPattern-count-one": "{0} mpt",
4698
- "unitPattern-count-few": "{0} mpt",
4699
- "unitPattern-count-other": "{0} mpt"
4700
- },
4701
- "volume-cup-metric": {
4702
- "displayName": "mcup",
4703
- "unitPattern-count-one": "{0} mc",
4704
- "unitPattern-count-few": "{0} mc",
4705
- "unitPattern-count-other": "{0} mc"
4706
- },
4707
- "volume-acre-foot": {
4708
- "displayName": "ac ft",
4709
- "unitPattern-count-one": "{0} ac ft",
4710
- "unitPattern-count-few": "{0} ac ft",
4711
- "unitPattern-count-other": "{0} ac ft"
4712
- },
4713
- "volume-bushel": {
4714
- "displayName": "bu",
4715
- "unitPattern-count-other": "{0} bu"
4716
- },
4717
- "volume-gallon": {
4718
- "displayName": "gal",
4719
- "unitPattern-count-one": "{0} gal",
4720
- "unitPattern-count-few": "{0} gal",
4721
- "unitPattern-count-other": "{0} gal",
4722
- "perUnitPattern": "{0}/gal"
4723
- },
4724
- "volume-gallon-imperial": {
4725
- "displayName": "gal imp.",
4726
- "unitPattern-count-one": "{0} gal imp.",
4727
- "unitPattern-count-few": "{0} gal imp.",
4728
- "unitPattern-count-other": "{0} gal imp.",
4729
- "perUnitPattern": "{0} gal imp."
4730
- },
4731
- "volume-quart": {
4732
- "displayName": "qt",
4733
- "unitPattern-count-one": "{0} qt",
4734
- "unitPattern-count-few": "{0} qt",
4735
- "unitPattern-count-other": "{0} qt"
4736
- },
4737
- "volume-pint": {
4738
- "displayName": "pinte",
4739
- "unitPattern-count-one": "{0} pt",
4740
- "unitPattern-count-few": "{0} pt",
4741
- "unitPattern-count-other": "{0} pt"
4742
- },
4743
- "volume-cup": {
4744
- "displayName": "căni",
4745
- "unitPattern-count-one": "{0} c",
4746
- "unitPattern-count-few": "{0} c",
4747
- "unitPattern-count-other": "{0} c"
4748
- },
4749
- "volume-fluid-ounce": {
4750
- "displayName": "fl oz",
4751
- "unitPattern-count-one": "{0} fl oz",
4752
- "unitPattern-count-few": "{0} fl oz",
4753
- "unitPattern-count-other": "{0} fl oz"
4754
- },
4755
- "volume-tablespoon": {
4756
- "displayName": "tbsp",
4757
- "unitPattern-count-one": "{0} tbsp",
4758
- "unitPattern-count-few": "{0} tbsp",
4759
- "unitPattern-count-other": "{0} tbsp"
4760
- },
4761
- "volume-teaspoon": {
4762
- "displayName": "tsp",
4763
- "unitPattern-count-one": "{0} tsp",
4764
- "unitPattern-count-few": "{0} tsp",
4765
- "unitPattern-count-other": "{0} tsp"
4766
- },
4767
- "coordinateUnit": {
4768
- "displayName": "direcție",
4769
- "east": "{0}E",
4770
- "north": "{0}N",
4771
- "south": "{0}S",
4772
- "west": "{0}V"
4773
- }
4774
- }
4775
- },
4776
- "currencyDigits": {
4777
- "ADP": 0,
4778
- "AFN": 0,
4779
- "ALL": 0,
4780
- "BHD": 3,
4781
- "BIF": 0,
4782
- "BYR": 0,
4783
- "CLF": 4,
4784
- "CLP": 0,
4785
- "DEFAULT": 2,
4786
- "DJF": 0,
4787
- "ESP": 0,
4788
- "GNF": 0,
4789
- "HUF": 0,
4790
- "IQD": 0,
4791
- "IRR": 0,
4792
- "ISK": 0,
4793
- "ITL": 0,
4794
- "JOD": 3,
4795
- "JPY": 0,
4796
- "KMF": 0,
4797
- "KPW": 0,
4798
- "KRW": 0,
4799
- "KWD": 3,
4800
- "LAK": 0,
4801
- "LBP": 0,
4802
- "LUF": 0,
4803
- "LYD": 3,
4804
- "MGA": 0,
4805
- "MGF": 0,
4806
- "MMK": 0,
4807
- "MRO": 0,
4808
- "OMR": 3,
4809
- "PYG": 0,
4810
- "RSD": 0,
4811
- "RWF": 0,
4812
- "SLL": 0,
4813
- "SOS": 0,
4814
- "STD": 0,
4815
- "SYP": 0,
4816
- "TMM": 0,
4817
- "TND": 3,
4818
- "TRL": 0,
4819
- "TWD": 0,
4820
- "UGX": 0,
4821
- "UYI": 0,
4822
- "UYW": 4,
4823
- "VND": 0,
4824
- "VUV": 0,
4825
- "XAF": 0,
4826
- "XOF": 0,
4827
- "XPF": 0,
4828
- "YER": 0,
4829
- "ZMK": 0,
4830
- "ZWD": 0
4831
- },
4832
- "plurals": {
4833
- "one": "i = 1 and v = 0",
4834
- "few": "v != 0 or n = 0 or n != 1 and n % 100 = 1..19"
4835
- },
4836
- "weekData-minDays": 1,
4837
- "weekData-firstDay": 1,
4838
- "weekData-weekendStart": 6,
4839
- "weekData-weekendEnd": 0,
4840
- "timeData": {
4841
- "_allowed": "H hB",
4842
- "_preferred": "H"
4843
- },
4844
- "eras-gregorian": {
4845
- "0": {
4846
- "_end": "0-12-31"
4847
- },
4848
- "1": {
4849
- "_start": "1-01-01"
4850
- }
4851
- },
4852
- "eras-islamic": {
4853
- "0": {
4854
- "_start": "622-7-15"
4855
- }
4856
- },
4857
- "eras-persian": {
4858
- "0": {
4859
- "_start": "622-01-01"
4860
- }
4861
- },
4862
- "eras-buddhist": {
4863
- "0": {
4864
- "_start": "-542-01-01"
4865
- }
4866
- },
4867
- "eras-japanese": {
4868
- "232": {
4869
- "_start": "1868-9-8"
4870
- },
4871
- "233": {
4872
- "_start": "1912-7-30"
4873
- },
4874
- "234": {
4875
- "_start": "1926-12-25"
4876
- },
4877
- "235": {
4878
- "_start": "1989-1-8"
4879
- }
4880
- }
4881
- }