@bizdoc/core 1.7.0-next.3 → 1.7.0-next.7
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.
- package/README.md +4 -3
- package/assets/fonts/MaterialIcons-Regular.svg +2373 -2373
- package/assets/fonts/README.md +9 -9
- package/assets/fonts/codepoints +932 -932
- package/assets/fonts/material-icons.css +36 -36
- package/assets/themes/brown.min.css +83 -81
- package/assets/themes/dark.min.css +77 -75
- package/assets/themes/default.min.css +90 -88
- package/assets/themes/green.min.css +83 -81
- package/assets/themes/indigo.min.css +83 -81
- package/bundles/bizdoc-core.umd.js +1086 -1600
- package/bundles/bizdoc-core.umd.js.map +1 -1
- package/esm2015/lib/app.component.js +7 -13
- package/esm2015/lib/bizdoc.module.js +2 -37
- package/esm2015/lib/browse/filter/filter.component.js +2 -2
- package/esm2015/lib/core/configuration.js +1 -1
- package/esm2015/lib/core/controls/combination-picker-body.js +2 -2
- package/esm2015/lib/core/models.js +1 -1
- package/esm2015/lib/core/session.service.js +5 -9
- package/esm2015/lib/core/slots/slots.component.js +6 -4
- package/esm2015/lib/cube/accum/accum.component.js +4 -7
- package/esm2015/lib/cube/chart/chart.component.js +6 -3
- package/esm2015/lib/cube/cube-info.service.js +100 -0
- package/esm2015/lib/cube/cube-view.component.js +11 -30
- package/esm2015/lib/cube/declarations.js +1 -1
- package/esm2015/lib/cube/explore/explore-items.component.js +5 -7
- package/esm2015/lib/cube/explore/explore.pane.component.js +2 -5
- package/esm2015/lib/cube/filter/filter-tags.component.exp.js +8 -8
- package/esm2015/lib/cube/filter/filter.component.js +14 -11
- package/esm2015/lib/cube/grid/grid.component.js +4 -3
- package/esm2015/lib/cube/grid/spreadsheet.component.js +4 -4
- package/esm2015/lib/cube/matrix/matrix.base.js +130 -0
- package/esm2015/lib/cube/matrix/matrix.component.js +68 -0
- package/esm2015/lib/cube/matrix/matrix.mobile.component.js +62 -0
- package/esm2015/lib/cube/matrix/matrix.pane.component.js +70 -0
- package/esm2015/lib/cube/matrix/table.component.js +254 -0
- package/esm2015/lib/cube/pivot/pivot.component.js +4 -4
- package/esm2015/lib/cube/view-base.js +76 -0
- package/esm2015/lib/cube/view.mobile.component.js +31 -54
- package/esm2015/lib/cube/view.pane.component.js +26 -58
- package/esm2015/lib/dashboard/cube/accum-cube.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-analysis.base.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-chart.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/filter/filter.component.js +3 -3
- package/esm2015/lib/desktop.module.js +6 -6
- package/esm2015/lib/home/sign/sign.component.js +2 -2
- package/esm2015/lib/impersonate/impersonate.component.js +69 -0
- package/esm2015/lib/mobile.module.js +9 -9
- package/esm2015/lib/reports/cube/grid-documents.component.js +10 -9
- package/esm2015/lib/reports/cube/usage-args.component.js +2 -2
- package/esm2015/lib/routes.desktop.js +3 -3
- package/esm2015/lib/routes.mobile.js +5 -5
- package/esm2015/lib/scheduler/schedule.component.js +21 -17
- package/esm2015/lib/shared.module.js +26 -26
- package/esm2015/lib/system.module.js +8 -10
- package/esm2015/lib/views/cube/cube-base.js +10 -5
- package/esm2015/lib/views/cube/matrix.component.js +95 -0
- package/esm2015/lib/views/cube/view.component.js +19 -21
- package/esm2015/lib/views/document-view-ref.js +3 -2
- package/esm2015/lib/views/timeline/timeline.component.exp.js +317 -0
- package/esm2015/lib/views/view-item.component.js +11 -7
- package/esm2015/lib/views/views.component.js +10 -11
- package/esm2015/public-api.js +4 -8
- package/fesm2015/bizdoc-core.js +902 -1382
- package/fesm2015/bizdoc-core.js.map +1 -1
- package/lib/app.component.d.ts +1 -4
- package/lib/core/configuration.d.ts +1 -17
- package/lib/core/controls/combination-picker-body.d.ts +1 -1
- package/lib/core/models.d.ts +1 -0
- package/lib/core/session.service.d.ts +0 -5
- package/lib/core/slots/slots.component.d.ts +1 -1
- package/lib/cube/accum/accum.component.d.ts +3 -7
- package/lib/cube/chart/chart.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.service.d.ts → cube-info.service.d.ts} +6 -6
- package/lib/cube/cube-view.component.d.ts +4 -9
- package/lib/cube/declarations.d.ts +3 -5
- package/lib/cube/explore/explore-items.component.d.ts +1 -4
- package/lib/cube/explore/explore.pane.component.d.ts +0 -1
- package/lib/cube/filter/filter-tags.component.exp.d.ts +2 -2
- package/lib/cube/filter/filter.component.d.ts +4 -3
- package/lib/cube/grid/grid.component.d.ts +2 -1
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.base.d.ts → matrix/matrix.base.d.ts} +5 -5
- package/lib/cube/{info/cube-info.component.d.ts → matrix/matrix.component.d.ts} +8 -8
- package/lib/cube/{info/cube-info.mobile.component.d.ts → matrix/matrix.mobile.component.d.ts} +4 -4
- package/lib/cube/{info/cube-info.pane.component.d.ts → matrix/matrix.pane.component.d.ts} +5 -5
- package/lib/cube/{info → matrix}/table.component.d.ts +4 -5
- package/lib/cube/pivot/pivot.component.d.ts +2 -4
- package/lib/cube/view-base.d.ts +39 -0
- package/lib/cube/view.mobile.component.d.ts +8 -25
- package/lib/cube/view.pane.component.d.ts +8 -26
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -1
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -1
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -1
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -1
- package/lib/desktop.module.d.ts +2 -2
- package/lib/{login/impersonate → impersonate}/impersonate.component.d.ts +3 -3
- package/lib/mobile.module.d.ts +2 -2
- package/lib/scheduler/schedule.component.d.ts +4 -1
- package/lib/shared.module.d.ts +48 -50
- package/lib/system.module.d.ts +25 -26
- package/lib/views/cube/cube-base.d.ts +16 -10
- package/lib/views/cube/{table.component.d.ts → matrix.component.d.ts} +2 -15
- package/lib/views/cube/view.component.d.ts +2 -9
- package/lib/views/document-view-ref.d.ts +3 -1
- package/lib/views/timeline/timeline.component.exp.d.ts +64 -0
- package/lib/views/view-item.component.d.ts +4 -2
- package/lib/views/views.component.d.ts +3 -5
- package/package.json +15 -17
- package/public-api.d.ts +4 -8
- package/esm2015/lib/admin/users/users.component.js +0 -155
- package/esm2015/lib/admin/users/users.service.js +0 -29
- package/esm2015/lib/cube/info/cube-info.base.js +0 -128
- package/esm2015/lib/cube/info/cube-info.component.js +0 -69
- package/esm2015/lib/cube/info/cube-info.mobile.component.js +0 -62
- package/esm2015/lib/cube/info/cube-info.pane.component.js +0 -70
- package/esm2015/lib/cube/info/cube-info.service.js +0 -100
- package/esm2015/lib/cube/info/table.component.js +0 -258
- package/esm2015/lib/login/forgot/forgot.component.js +0 -50
- package/esm2015/lib/login/form.authentication.js +0 -71
- package/esm2015/lib/login/form.interceptor.js +0 -26
- package/esm2015/lib/login/impersonate/impersonate.component.js +0 -69
- package/esm2015/lib/login/login.component.js +0 -130
- package/esm2015/lib/login/okta.authentication.js +0 -41
- package/esm2015/lib/login/okta.component.js +0 -84
- package/esm2015/lib/login/okta.interceptor.js +0 -30
- package/esm2015/lib/login/prompt/prompt.component.js +0 -194
- package/esm2015/lib/login/signin-info.service.js +0 -49
- package/esm2015/lib/views/cube/table.component.js +0 -107
- package/lib/admin/users/users.component.d.ts +0 -41
- package/lib/admin/users/users.service.d.ts +0 -30
- package/lib/login/forgot/forgot.component.d.ts +0 -20
- package/lib/login/form.authentication.d.ts +0 -29
- package/lib/login/form.interceptor.d.ts +0 -11
- package/lib/login/login.component.d.ts +0 -18
- package/lib/login/okta.authentication.d.ts +0 -13
- package/lib/login/okta.component.d.ts +0 -18
- package/lib/login/okta.interceptor.d.ts +0 -11
- package/lib/login/prompt/prompt.component.d.ts +0 -45
- package/lib/login/signin-info.service.d.ts +0 -18
- package/src/assets/.gitkeep +0 -0
- package/src/assets/animations/13194-message.json +0 -1
- package/src/assets/animations/1408-network-lost.json +0 -1
- package/src/assets/animations/19560-loading.json +0 -1
- package/src/assets/animations/21928-folder.json +0 -1
- package/src/assets/animations/21941-airplane-animation-movement.json +0 -1
- package/src/assets/animations/2252-broken-stick-error.json +0 -1
- package/src/assets/animations/24910-new-message-notification.json +0 -1
- package/src/assets/animations/25974-paper-plane.json +0 -1
- package/src/assets/animations/36395-lonely-404.json +0 -1
- package/src/assets/animations/36499-page-not-found.json +0 -1
- package/src/assets/animations/37211-google-icons-forms.json +0 -1
- package/src/assets/animations/41896-application.json +0 -1
- package/src/assets/animations/4958-404-not-found.json +0 -1
- package/src/assets/animations/51956-success-icon.json +0 -1
- package/src/assets/animations/53402-bell.json +0 -1
- package/src/assets/animations/5371-volaris-tickets.json +0 -1
- package/src/assets/animations/58266-quad-cube-shifter-1.json +0 -1
- package/src/assets/animations/58509-shifting-cubes-2.json +0 -1
- package/src/assets/animations/8318-loader.json +0 -1
- package/src/assets/animations/lf20_isphoahq.json +0 -1
- package/src/assets/animations/lf30_editor_6kz6oezn.json +0 -1
- package/src/assets/animations/lf30_editor_b6axvtp7.json +0 -1
- package/src/assets/animations/lf30_editor_cq62rpyv.json +0 -1
- package/src/assets/animations/lf30_editor_fbytfhvg.json +0 -1
- package/src/assets/animations/lf30_editor_h1xoyem7.json +0 -1
- package/src/assets/animations/lf30_editor_qr7zgmcs.json +0 -1
- package/src/assets/animations/lf30_editor_rxee1cqy.json +0 -1
- package/src/assets/animations/lf30_editor_yxy6fuei.json +0 -1
- package/src/assets/bizdoc-schema.json +0 -1238
- package/src/assets/favicon.ico +0 -0
- package/src/assets/fonts/LICENSE.txt +0 -202
- package/src/assets/fonts/MaterialIcons-Outlined.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.eot +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.ijmap +0 -1
- package/src/assets/fonts/MaterialIcons-Regular.svg +0 -2373
- package/src/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons.css +0 -55
- package/src/assets/fonts/README.md +0 -9
- package/src/assets/fonts/Roboto-Black.ttf +0 -0
- package/src/assets/fonts/Roboto-BlackItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/assets/fonts/Roboto-BoldItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Italic.ttf +0 -0
- package/src/assets/fonts/Roboto-Light.ttf +0 -0
- package/src/assets/fonts/Roboto-LightItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/assets/fonts/Roboto-MediumItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/assets/fonts/Roboto-Thin.ttf +0 -0
- package/src/assets/fonts/Roboto-ThinItalic.ttf +0 -0
- package/src/assets/fonts/codepoints +0 -932
- package/src/assets/fonts/material-icons.css +0 -36
- package/src/assets/i18n/cldr-data/main/he/ca-buddhist.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-chinese.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-coptic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-dangi.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic-amete-alem.json +0 -538
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-generic.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/ca-gregorian.json +0 -552
- package/src/assets/i18n/cldr-data/main/he/ca-hebrew.json +0 -557
- package/src/assets/i18n/cldr-data/main/he/ca-indian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-civil.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-rgsa.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-tbla.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-umalqura.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-japanese.json +0 -1240
- package/src/assets/i18n/cldr-data/main/he/ca-persian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-roc.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/characters.json +0 -53
- package/src/assets/i18n/cldr-data/main/he/currencies.json +0 -1982
- package/src/assets/i18n/cldr-data/main/he/dateFields.json +0 -860
- package/src/assets/i18n/cldr-data/main/he/delimiters.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/languages.json +0 -555
- package/src/assets/i18n/cldr-data/main/he/layout.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/listPatterns.json +0 -69
- package/src/assets/i18n/cldr-data/main/he/localeDisplayNames.json +0 -231
- package/src/assets/i18n/cldr-data/main/he/measurementSystemNames.json +0 -20
- package/src/assets/i18n/cldr-data/main/he/numbers.json +0 -233
- package/src/assets/i18n/cldr-data/main/he/posix.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/scripts.json +0 -191
- package/src/assets/i18n/cldr-data/main/he/territories.json +0 -324
- package/src/assets/i18n/cldr-data/main/he/timeZoneNames.json +0 -2301
- package/src/assets/i18n/cldr-data/main/he/units.json +0 -3408
- package/src/assets/i18n/cldr-data/main/he/variants.json +0 -119
- package/src/assets/i18n/cldr-data/supplemental/aliases.json +0 -4391
- package/src/assets/i18n/cldr-data/supplemental/calendarData.json +0 -865
- package/src/assets/i18n/cldr-data/supplemental/calendarPreferenceData.json +0 -50
- package/src/assets/i18n/cldr-data/supplemental/characterFallbacks.json +0 -888
- package/src/assets/i18n/cldr-data/supplemental/codeMappings.json +0 -1932
- package/src/assets/i18n/cldr-data/supplemental/currencyData.json +0 -3589
- package/src/assets/i18n/cldr-data/supplemental/dayPeriods.json +0 -2008
- package/src/assets/i18n/cldr-data/supplemental/gender.json +0 -67
- package/src/assets/i18n/cldr-data/supplemental/languageData.json +0 -6450
- package/src/assets/i18n/cldr-data/supplemental/languageGroups.json +0 -115
- package/src/assets/i18n/cldr-data/supplemental/languageMatching.json +0 -1864
- package/src/assets/i18n/cldr-data/supplemental/likelySubtags.json +0 -1844
- package/src/assets/i18n/cldr-data/supplemental/measurementData.json +0 -44
- package/src/assets/i18n/cldr-data/supplemental/metaZones.json +0 -7049
- package/src/assets/i18n/cldr-data/supplemental/numberingSystems.json +0 -343
- package/src/assets/i18n/cldr-data/supplemental/ordinals.json +0 -371
- package/src/assets/i18n/cldr-data/supplemental/parentLocales.json +0 -180
- package/src/assets/i18n/cldr-data/supplemental/plurals.json +0 -884
- package/src/assets/i18n/cldr-data/supplemental/primaryZones.json +0 -22
- package/src/assets/i18n/cldr-data/supplemental/references.json +0 -1181
- package/src/assets/i18n/cldr-data/supplemental/territoryContainment.json +0 -753
- package/src/assets/i18n/cldr-data/supplemental/territoryInfo.json +0 -6604
- package/src/assets/i18n/cldr-data/supplemental/timeData.json +0 -1031
- package/src/assets/i18n/cldr-data/supplemental/unitPreferenceData.json +0 -290
- package/src/assets/i18n/cldr-data/supplemental/weekData.json +0 -316
- package/src/assets/i18n/cldr-data/supplemental/windowsZones.json +0 -3520
- package/src/assets/icons/icon-128x128.png +0 -0
- package/src/assets/icons/icon-144x144.png +0 -0
- package/src/assets/icons/icon-152x152.png +0 -0
- package/src/assets/icons/icon-192x192.png +0 -0
- package/src/assets/icons/icon-256x256.png +0 -0
- package/src/assets/icons/icon-32x32.png +0 -0
- package/src/assets/icons/icon-512x512.png +0 -0
- package/src/assets/js/app-sw.js +0 -16
- package/src/assets/js/firebase-messaging-sw.js +0 -1
- package/src/assets/js/logo.js +0 -31
- package/src/assets/logo.json +0 -1
- package/src/assets/logo.svg +0 -38
- package/src/assets/manifest.json +0 -43
- package/src/assets/sounds/alert_error-03.ogg +0 -0
- package/src/assets/sounds/navigation_hover-tap.ogg +0 -0
- package/src/assets/sounds/notification_simple-01.ogg +0 -0
- package/src/assets/themes/brown.min.css +0 -81
- package/src/assets/themes/dark.min.css +0 -76
- package/src/assets/themes/default.min.css +0 -88
- package/src/assets/themes/green.min.css +0 -81
- package/src/assets/themes/indigo.min.css +0 -81
- package/src/assets/themes/okta-sign-in.min.css +0 -17
@@ -1,231 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"main": {
|
3
|
-
"he": {
|
4
|
-
"identity": {
|
5
|
-
"version": {
|
6
|
-
"_number": "$Revision: 14842 $",
|
7
|
-
"_cldrVersion": "35.1"
|
8
|
-
},
|
9
|
-
"language": "he"
|
10
|
-
},
|
11
|
-
"localeDisplayNames": {
|
12
|
-
"localeDisplayPattern": {
|
13
|
-
"localePattern": "{0} ({1})",
|
14
|
-
"localeSeparator": "{0}, {1}",
|
15
|
-
"localeKeyTypePattern": "{0}: {1}"
|
16
|
-
},
|
17
|
-
"keys": {
|
18
|
-
"calendar": "לוח שנה",
|
19
|
-
"cf": "תבנית מטבע",
|
20
|
-
"colAlternate": "התעלם מסמלים במיון",
|
21
|
-
"colBackwards": "מיון לפי הטעמות בסדר הפוך",
|
22
|
-
"colCaseFirst": "סידור לפי אותיות רישיות/קטנות",
|
23
|
-
"colCaseLevel": "מיון תלוי רישיות",
|
24
|
-
"collation": "סדר מיון",
|
25
|
-
"colNormalization": "מיון מנורמל",
|
26
|
-
"colNumeric": "מיון לפי מספרים",
|
27
|
-
"colStrength": "עוצמת המיון",
|
28
|
-
"currency": "מטבע",
|
29
|
-
"hc": "מחזור השעות (12 או 24)",
|
30
|
-
"lb": "סגנון מעבר שורה",
|
31
|
-
"ms": "מערכת מדידה",
|
32
|
-
"numbers": "מספרים",
|
33
|
-
"timezone": "אזור זמן",
|
34
|
-
"va": "משתנה אזור",
|
35
|
-
"x": "שימוש פרטי"
|
36
|
-
},
|
37
|
-
"types": {
|
38
|
-
"calendar": {
|
39
|
-
"buddhist": "לוח השנה הבודהיסטי",
|
40
|
-
"chinese": "לוח השנה הסיני",
|
41
|
-
"coptic": "לוח שנה קופטי",
|
42
|
-
"dangi": "לוח השנה הקוריאני",
|
43
|
-
"ethiopic": "לוח השנה האתיופי",
|
44
|
-
"ethiopic-amete-alem": "לוח השנה אמטה אלם האתיופי",
|
45
|
-
"gregorian": "לוח השנה הגרגוריאני",
|
46
|
-
"hebrew": "לוח השנה העברי",
|
47
|
-
"indian": "לוח השנה ההודי הלאומי",
|
48
|
-
"islamic": "לוח השנה המוסלמי",
|
49
|
-
"islamic-civil": "לוח השנה המוסלמי האזרחי",
|
50
|
-
"islamic-rgsa": "לוח השנה המוסלמי (ערב הסעודית)",
|
51
|
-
"islamic-tbla": "לוח השנה המוסלמי האסטרולוגי",
|
52
|
-
"islamic-umalqura": "לוח השנה המוסלמי אום אל-קורא",
|
53
|
-
"iso8601": "לוח שנה ISO-8601",
|
54
|
-
"japanese": "לוח השנה היפני",
|
55
|
-
"persian": "לוח השנה הפרסי",
|
56
|
-
"roc": "לוח השנה הטאיווני"
|
57
|
-
},
|
58
|
-
"cf": {
|
59
|
-
"account": "תבנית מטבע למטרות חשבונאות",
|
60
|
-
"standard": "תבנית מטבע רגילה"
|
61
|
-
},
|
62
|
-
"colAlternate": {
|
63
|
-
"non-ignorable": "מיין סמלים",
|
64
|
-
"shifted": "מיין תוך התעלמות מסמלים"
|
65
|
-
},
|
66
|
-
"colBackwards": {
|
67
|
-
"no": "מיין הטעמות בצורה רגילה",
|
68
|
-
"yes": "מיין לפי הטעמות בסדר הפוך"
|
69
|
-
},
|
70
|
-
"colCaseFirst": {
|
71
|
-
"lower": "מיין תחילה לפי אותיות קטנות",
|
72
|
-
"no": "מיין לפי סדר רישיות רגיל",
|
73
|
-
"upper": "מיין תחילה לפי אותיות רישיות"
|
74
|
-
},
|
75
|
-
"colCaseLevel": {
|
76
|
-
"no": "מיין באופן שאינו תלוי רישיות",
|
77
|
-
"yes": "מיין באופן תלוי רישיות"
|
78
|
-
},
|
79
|
-
"collation": {
|
80
|
-
"big5han": "מיון סינית מסורתית",
|
81
|
-
"compat": "סדר מיון קודם, עבור תאימות",
|
82
|
-
"dictionary": "סדר מיון במילון",
|
83
|
-
"ducet": "סדר מיון Unicode המוגדר כברירת מחדל",
|
84
|
-
"emoji": "emoji",
|
85
|
-
"eor": "חוקי סדר אירופיים",
|
86
|
-
"gb2312han": "מיון סינית מודרנית",
|
87
|
-
"phonebook": "מיון ספר טלפונים",
|
88
|
-
"phonetic": "סדר מיון פונטי",
|
89
|
-
"pinyin": "מיון פיניין",
|
90
|
-
"reformed": "סדר מיון מתוקן",
|
91
|
-
"search": "חיפוש למטרה כללית",
|
92
|
-
"searchjl": "חפש לפי העיצור הראשון באותיות הנגול",
|
93
|
-
"standard": "סדר מיון רגיל",
|
94
|
-
"stroke": "סדר מיון לפי ספירת תווים",
|
95
|
-
"traditional": "מיון מסורתי",
|
96
|
-
"unihan": "סדר מיון לפי ספירת תווים Radical-Stroke",
|
97
|
-
"zhuyin": "zhuyin"
|
98
|
-
},
|
99
|
-
"colNormalization": {
|
100
|
-
"no": "מיין ללא נורמליזציה",
|
101
|
-
"yes": "מיין לפי Unicode מנורמל"
|
102
|
-
},
|
103
|
-
"colNumeric": {
|
104
|
-
"no": "מיין ספרות בנפרד",
|
105
|
-
"yes": "מיין ספרות לפי סדר מספרי"
|
106
|
-
},
|
107
|
-
"colStrength": {
|
108
|
-
"identical": "מיין הכל",
|
109
|
-
"primary": "מיין תוך התעלמות מהטעמות",
|
110
|
-
"quaternary": "מיין לפי הטעמות/רישיות/רוחב/קאנה",
|
111
|
-
"secondary": "מיין לפי הטעמות",
|
112
|
-
"tertiary": "מיין הטעמות/רישיות/רוחב"
|
113
|
-
},
|
114
|
-
"d0": {
|
115
|
-
"fwidth": "רוחב מלא",
|
116
|
-
"hwidth": "חצי רוחב",
|
117
|
-
"npinyin": "מספרי"
|
118
|
-
},
|
119
|
-
"hc": {
|
120
|
-
"h11": "מערכת של 12 שעות (0–11)",
|
121
|
-
"h12": "מערכת של 12 שעות (1–12)",
|
122
|
-
"h23": "מערכת של 24 שעות (0–23)",
|
123
|
-
"h24": "מערכת של 24 שעות (1–24)"
|
124
|
-
},
|
125
|
-
"lb": {
|
126
|
-
"loose": "סגנון מעבר שורה גמיש",
|
127
|
-
"normal": "סגנון מעבר שורה רגיל",
|
128
|
-
"strict": "סגנון מעבר שורה קשיח"
|
129
|
-
},
|
130
|
-
"m0": {
|
131
|
-
"bgn": "מטבע BGN",
|
132
|
-
"ungegn": "UNGEGN"
|
133
|
-
},
|
134
|
-
"ms": {
|
135
|
-
"metric": "מערכת מטרית",
|
136
|
-
"uksystem": "מערכת מדידה אימפריאלית",
|
137
|
-
"ussystem": "מערכת מדידה אמריקאית"
|
138
|
-
},
|
139
|
-
"numbers": {
|
140
|
-
"ahom": "ahom",
|
141
|
-
"arab": "ספרות הודיות-ערביות",
|
142
|
-
"arabext": "ספרות הודיות-ערביות מורחבות",
|
143
|
-
"armn": "ספרות ארמניות",
|
144
|
-
"armnlow": "ספרות ארמניות קטנות",
|
145
|
-
"bali": "bali",
|
146
|
-
"beng": "ספרות בנגליות",
|
147
|
-
"brah": "brah",
|
148
|
-
"cakm": "cakm",
|
149
|
-
"cham": "cham",
|
150
|
-
"cyrl": "cyrl",
|
151
|
-
"deva": "ספרות של דוונגארי",
|
152
|
-
"ethi": "ספרות אתיופיות",
|
153
|
-
"finance": "ספרות פיננסיות",
|
154
|
-
"fullwide": "ספרות ברוחב מלא",
|
155
|
-
"geor": "ספרות גאורגיות",
|
156
|
-
"gong": "gong",
|
157
|
-
"gonm": "gonm",
|
158
|
-
"grek": "ספרות יווניות",
|
159
|
-
"greklow": "ספרות יווניות קטנות",
|
160
|
-
"gujr": "ספרות גוג׳רטיות",
|
161
|
-
"guru": "ספרות גורמוקיות",
|
162
|
-
"hanidec": "ספרות סיניות עשרוניות",
|
163
|
-
"hans": "ספרות סיניות פשוטות",
|
164
|
-
"hansfin": "ספרות פיננסיות סיניות פשוטות",
|
165
|
-
"hant": "ספרות סיניות מסורתיות",
|
166
|
-
"hantfin": "ספרות פיננסיות סיניות מסורתיות",
|
167
|
-
"hebr": "ספרות עבריות",
|
168
|
-
"hmng": "hmng",
|
169
|
-
"hmnp": "hmnp",
|
170
|
-
"java": "java",
|
171
|
-
"jpan": "ספרות יפניות",
|
172
|
-
"jpanfin": "ספרות פיננסיות יפניות",
|
173
|
-
"kali": "kali",
|
174
|
-
"khmr": "ספרות חמריות",
|
175
|
-
"knda": "ספרות של קאנאדה",
|
176
|
-
"lana": "lana",
|
177
|
-
"lanatham": "lanatham",
|
178
|
-
"laoo": "ספרות של לאוס",
|
179
|
-
"latn": "ספרות מערביות",
|
180
|
-
"lepc": "lepc",
|
181
|
-
"limb": "limb",
|
182
|
-
"mathbold": "mathbold",
|
183
|
-
"mathdbl": "mathdbl",
|
184
|
-
"mathmono": "mathmono",
|
185
|
-
"mathsanb": "mathsanb",
|
186
|
-
"mathsans": "mathsans",
|
187
|
-
"mlym": "ספרות של מליאלאם",
|
188
|
-
"modi": "modi",
|
189
|
-
"mong": "ספרות מונגוליות",
|
190
|
-
"mroo": "mroo",
|
191
|
-
"mtei": "mtei",
|
192
|
-
"mymr": "ספרות של מיאנמר",
|
193
|
-
"mymrshan": "mymrshan",
|
194
|
-
"mymrtlng": "mymrtlng",
|
195
|
-
"native": "ספרות מקומיות",
|
196
|
-
"nkoo": "nkoo",
|
197
|
-
"olck": "olck",
|
198
|
-
"orya": "ספרות אוריה",
|
199
|
-
"osma": "osma",
|
200
|
-
"rohg": "rohg",
|
201
|
-
"roman": "ספרות רומיות",
|
202
|
-
"romanlow": "ספרות רומיות קטנות",
|
203
|
-
"saur": "saur",
|
204
|
-
"shrd": "shrd",
|
205
|
-
"sind": "sind",
|
206
|
-
"sinh": "sinh",
|
207
|
-
"sora": "sora",
|
208
|
-
"sund": "sund",
|
209
|
-
"takr": "takr",
|
210
|
-
"talu": "talu",
|
211
|
-
"taml": "ספרות טמיליות מסורתיות",
|
212
|
-
"tamldec": "ספרות טמיליות",
|
213
|
-
"telu": "ספרות טלוגו",
|
214
|
-
"thai": "ספרות תאיות",
|
215
|
-
"tibt": "ספרות טיבטיות",
|
216
|
-
"tirh": "tirh",
|
217
|
-
"traditional": "ספרות מסורתיות",
|
218
|
-
"vaii": "ספרות ואי",
|
219
|
-
"wara": "wara",
|
220
|
-
"wcho": "wcho"
|
221
|
-
}
|
222
|
-
},
|
223
|
-
"codePatterns": {
|
224
|
-
"language": "שפה: {0}",
|
225
|
-
"script": "כתב: {0}",
|
226
|
-
"territory": "אזור: {0}"
|
227
|
-
}
|
228
|
-
}
|
229
|
-
}
|
230
|
-
}
|
231
|
-
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"main": {
|
3
|
-
"he": {
|
4
|
-
"identity": {
|
5
|
-
"version": {
|
6
|
-
"_number": "$Revision: 14842 $",
|
7
|
-
"_cldrVersion": "35.1"
|
8
|
-
},
|
9
|
-
"language": "he"
|
10
|
-
},
|
11
|
-
"localeDisplayNames": {
|
12
|
-
"measurementSystemNames": {
|
13
|
-
"metric": "מטרי",
|
14
|
-
"UK": "אימפריאלי",
|
15
|
-
"US": "ארה״ב"
|
16
|
-
}
|
17
|
-
}
|
18
|
-
}
|
19
|
-
}
|
20
|
-
}
|
@@ -1,233 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"main": {
|
3
|
-
"he": {
|
4
|
-
"identity": {
|
5
|
-
"version": {
|
6
|
-
"_number": "$Revision: 14842 $",
|
7
|
-
"_cldrVersion": "35.1"
|
8
|
-
},
|
9
|
-
"language": "he"
|
10
|
-
},
|
11
|
-
"numbers": {
|
12
|
-
"defaultNumberingSystem": "latn",
|
13
|
-
"otherNumberingSystems": {
|
14
|
-
"native": "latn",
|
15
|
-
"traditional": "hebr"
|
16
|
-
},
|
17
|
-
"minimumGroupingDigits": "1",
|
18
|
-
"symbols-numberSystem-latn": {
|
19
|
-
"decimal": ".",
|
20
|
-
"group": ",",
|
21
|
-
"list": ";",
|
22
|
-
"percentSign": "%",
|
23
|
-
"plusSign": "+",
|
24
|
-
"minusSign": "-",
|
25
|
-
"exponential": "E",
|
26
|
-
"superscriptingExponent": "×",
|
27
|
-
"perMille": "‰",
|
28
|
-
"infinity": "∞",
|
29
|
-
"nan": "NaN",
|
30
|
-
"timeSeparator": ":"
|
31
|
-
},
|
32
|
-
"decimalFormats-numberSystem-latn": {
|
33
|
-
"standard": "#,##0.###",
|
34
|
-
"long": {
|
35
|
-
"decimalFormat": {
|
36
|
-
"1000-count-one": "0 אלף",
|
37
|
-
"1000-count-two": "0 אלף",
|
38
|
-
"1000-count-many": "0 אלף",
|
39
|
-
"1000-count-other": "0 אלף",
|
40
|
-
"10000-count-one": "00 אלף",
|
41
|
-
"10000-count-two": "00 אלף",
|
42
|
-
"10000-count-many": "00 אלף",
|
43
|
-
"10000-count-other": "00 אלף",
|
44
|
-
"100000-count-one": "000 אלף",
|
45
|
-
"100000-count-two": "000 אלף",
|
46
|
-
"100000-count-many": "000 אלף",
|
47
|
-
"100000-count-other": "000 אלף",
|
48
|
-
"1000000-count-one": "0 מיליון",
|
49
|
-
"1000000-count-two": "0 מיליון",
|
50
|
-
"1000000-count-many": "0 מיליון",
|
51
|
-
"1000000-count-other": "0 מיליון",
|
52
|
-
"10000000-count-one": "00 מיליון",
|
53
|
-
"10000000-count-two": "00 מיליון",
|
54
|
-
"10000000-count-many": "00 מיליון",
|
55
|
-
"10000000-count-other": "00 מיליון",
|
56
|
-
"100000000-count-one": "000 מיליון",
|
57
|
-
"100000000-count-two": "000 מיליון",
|
58
|
-
"100000000-count-many": "000 מיליון",
|
59
|
-
"100000000-count-other": "000 מיליון",
|
60
|
-
"1000000000-count-one": "0 מיליארד",
|
61
|
-
"1000000000-count-two": "0 מיליארד",
|
62
|
-
"1000000000-count-many": "0 מיליארד",
|
63
|
-
"1000000000-count-other": "0 מיליארד",
|
64
|
-
"10000000000-count-one": "00 מיליארד",
|
65
|
-
"10000000000-count-two": "00 מיליארד",
|
66
|
-
"10000000000-count-many": "00 מיליארד",
|
67
|
-
"10000000000-count-other": "00 מיליארד",
|
68
|
-
"100000000000-count-one": "000 מיליארד",
|
69
|
-
"100000000000-count-two": "000 מיליארד",
|
70
|
-
"100000000000-count-many": "000 מיליארד",
|
71
|
-
"100000000000-count-other": "000 מיליארד",
|
72
|
-
"1000000000000-count-one": "0 טריליון",
|
73
|
-
"1000000000000-count-two": "0 טריליון",
|
74
|
-
"1000000000000-count-many": "0 טריליון",
|
75
|
-
"1000000000000-count-other": "0 טריליון",
|
76
|
-
"10000000000000-count-one": "00 טריליון",
|
77
|
-
"10000000000000-count-two": "00 טריליון",
|
78
|
-
"10000000000000-count-many": "00 טריליון",
|
79
|
-
"10000000000000-count-other": "00 טריליון",
|
80
|
-
"100000000000000-count-one": "000 טריליון",
|
81
|
-
"100000000000000-count-two": "000 טריליון",
|
82
|
-
"100000000000000-count-many": "000 טריליון",
|
83
|
-
"100000000000000-count-other": "000 טריליון"
|
84
|
-
}
|
85
|
-
},
|
86
|
-
"short": {
|
87
|
-
"decimalFormat": {
|
88
|
-
"1000-count-one": "0K",
|
89
|
-
"1000-count-two": "0K",
|
90
|
-
"1000-count-many": "0K",
|
91
|
-
"1000-count-other": "0K",
|
92
|
-
"10000-count-one": "00K",
|
93
|
-
"10000-count-two": "00K",
|
94
|
-
"10000-count-many": "00K",
|
95
|
-
"10000-count-other": "00K",
|
96
|
-
"100000-count-one": "000K",
|
97
|
-
"100000-count-two": "000K",
|
98
|
-
"100000-count-many": "000K",
|
99
|
-
"100000-count-other": "000K",
|
100
|
-
"1000000-count-one": "0M",
|
101
|
-
"1000000-count-two": "0M",
|
102
|
-
"1000000-count-many": "0M",
|
103
|
-
"1000000-count-other": "0M",
|
104
|
-
"10000000-count-one": "00M",
|
105
|
-
"10000000-count-two": "00M",
|
106
|
-
"10000000-count-many": "00M",
|
107
|
-
"10000000-count-other": "00M",
|
108
|
-
"100000000-count-one": "000M",
|
109
|
-
"100000000-count-two": "000M",
|
110
|
-
"100000000-count-many": "000M",
|
111
|
-
"100000000-count-other": "000M",
|
112
|
-
"1000000000-count-one": "0B",
|
113
|
-
"1000000000-count-two": "0B",
|
114
|
-
"1000000000-count-many": "0B",
|
115
|
-
"1000000000-count-other": "0B",
|
116
|
-
"10000000000-count-one": "00B",
|
117
|
-
"10000000000-count-two": "00B",
|
118
|
-
"10000000000-count-many": "00B",
|
119
|
-
"10000000000-count-other": "00B",
|
120
|
-
"100000000000-count-one": "000B",
|
121
|
-
"100000000000-count-two": "000B",
|
122
|
-
"100000000000-count-many": "000B",
|
123
|
-
"100000000000-count-other": "000B",
|
124
|
-
"1000000000000-count-one": "0T",
|
125
|
-
"1000000000000-count-two": "0T",
|
126
|
-
"1000000000000-count-many": "0T",
|
127
|
-
"1000000000000-count-other": "0T",
|
128
|
-
"10000000000000-count-one": "00T",
|
129
|
-
"10000000000000-count-two": "00T",
|
130
|
-
"10000000000000-count-many": "00T",
|
131
|
-
"10000000000000-count-other": "00T",
|
132
|
-
"100000000000000-count-one": "000T",
|
133
|
-
"100000000000000-count-two": "000T",
|
134
|
-
"100000000000000-count-many": "000T",
|
135
|
-
"100000000000000-count-other": "000T"
|
136
|
-
}
|
137
|
-
}
|
138
|
-
},
|
139
|
-
"scientificFormats-numberSystem-latn": {
|
140
|
-
"standard": "#E0"
|
141
|
-
},
|
142
|
-
"percentFormats-numberSystem-latn": {
|
143
|
-
"standard": "#,##0%"
|
144
|
-
},
|
145
|
-
"currencyFormats-numberSystem-latn": {
|
146
|
-
"currencySpacing": {
|
147
|
-
"beforeCurrency": {
|
148
|
-
"currencyMatch": "[:^S:]",
|
149
|
-
"surroundingMatch": "[:digit:]",
|
150
|
-
"insertBetween": " "
|
151
|
-
},
|
152
|
-
"afterCurrency": {
|
153
|
-
"currencyMatch": "[:^S:]",
|
154
|
-
"surroundingMatch": "[:digit:]",
|
155
|
-
"insertBetween": " "
|
156
|
-
}
|
157
|
-
},
|
158
|
-
"standard": "#,##0.00 ¤;-#,##0.00 ¤",
|
159
|
-
"accounting": "#,##0.00 ¤",
|
160
|
-
"short": {
|
161
|
-
"standard": {
|
162
|
-
"1000-count-one": "¤ 0K",
|
163
|
-
"1000-count-two": "¤ 0K",
|
164
|
-
"1000-count-many": "¤0K",
|
165
|
-
"1000-count-other": "¤ 0K",
|
166
|
-
"10000-count-one": "¤00K",
|
167
|
-
"10000-count-two": "¤00K",
|
168
|
-
"10000-count-many": "¤00K",
|
169
|
-
"10000-count-other": "¤ 00K",
|
170
|
-
"100000-count-one": "¤000K",
|
171
|
-
"100000-count-two": "¤000K",
|
172
|
-
"100000-count-many": "¤000K",
|
173
|
-
"100000-count-other": "¤000K",
|
174
|
-
"1000000-count-one": "¤0M",
|
175
|
-
"1000000-count-two": "¤0M",
|
176
|
-
"1000000-count-many": "¤0M",
|
177
|
-
"1000000-count-other": "¤0M",
|
178
|
-
"10000000-count-one": "¤00M",
|
179
|
-
"10000000-count-two": "¤00M",
|
180
|
-
"10000000-count-many": "¤00M",
|
181
|
-
"10000000-count-other": "¤00M",
|
182
|
-
"100000000-count-one": "¤000M",
|
183
|
-
"100000000-count-two": "¤000M",
|
184
|
-
"100000000-count-many": "¤000M",
|
185
|
-
"100000000-count-other": "¤000M",
|
186
|
-
"1000000000-count-one": "¤0B",
|
187
|
-
"1000000000-count-two": "¤0B",
|
188
|
-
"1000000000-count-many": "¤0B",
|
189
|
-
"1000000000-count-other": "¤0B",
|
190
|
-
"10000000000-count-one": "¤00B",
|
191
|
-
"10000000000-count-two": "¤00B",
|
192
|
-
"10000000000-count-many": "¤00B",
|
193
|
-
"10000000000-count-other": "¤00B",
|
194
|
-
"100000000000-count-one": "¤000B",
|
195
|
-
"100000000000-count-two": "¤000B",
|
196
|
-
"100000000000-count-many": "¤000B",
|
197
|
-
"100000000000-count-other": "¤000B",
|
198
|
-
"1000000000000-count-one": "¤0T",
|
199
|
-
"1000000000000-count-two": "¤0T",
|
200
|
-
"1000000000000-count-many": "¤0T",
|
201
|
-
"1000000000000-count-other": "¤0T",
|
202
|
-
"10000000000000-count-one": "¤00T",
|
203
|
-
"10000000000000-count-two": "¤00T",
|
204
|
-
"10000000000000-count-many": "¤00T",
|
205
|
-
"10000000000000-count-other": "¤00T",
|
206
|
-
"100000000000000-count-one": "¤000T",
|
207
|
-
"100000000000000-count-two": "¤000T",
|
208
|
-
"100000000000000-count-many": "¤000T",
|
209
|
-
"100000000000000-count-other": "¤000T"
|
210
|
-
}
|
211
|
-
},
|
212
|
-
"unitPattern-count-one": "{0} {1}",
|
213
|
-
"unitPattern-count-two": "{0} {1}",
|
214
|
-
"unitPattern-count-many": "{0} {1}",
|
215
|
-
"unitPattern-count-other": "{0} {1}"
|
216
|
-
},
|
217
|
-
"miscPatterns-numberSystem-latn": {
|
218
|
-
"approximately": "~{0}",
|
219
|
-
"atLeast": "≥{0}+",
|
220
|
-
"atMost": "≤{0}",
|
221
|
-
"range": "{0}–{1}"
|
222
|
-
},
|
223
|
-
"minimalPairs": {
|
224
|
-
"pluralMinimalPairs-count-one": "שנה",
|
225
|
-
"pluralMinimalPairs-count-two": "שנתיים",
|
226
|
-
"pluralMinimalPairs-count-many": "{0} שנה",
|
227
|
-
"pluralMinimalPairs-count-other": "{0} שנים",
|
228
|
-
"other": "פנה ימינה בפנייה ה-{0}"
|
229
|
-
}
|
230
|
-
}
|
231
|
-
}
|
232
|
-
}
|
233
|
-
}
|