@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,371 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"supplemental": {
|
3
|
-
"version": {
|
4
|
-
"_number": "$Revision: 14855 $",
|
5
|
-
"_unicodeVersion": "12.1.0",
|
6
|
-
"_cldrVersion": "35.1"
|
7
|
-
},
|
8
|
-
"plurals-type-ordinal": {
|
9
|
-
"af": {
|
10
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
11
|
-
},
|
12
|
-
"am": {
|
13
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
14
|
-
},
|
15
|
-
"ar": {
|
16
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
17
|
-
},
|
18
|
-
"as": {
|
19
|
-
"pluralRule-count-one": "n = 1,5,7,8,9,10 @integer 1, 5, 7~10",
|
20
|
-
"pluralRule-count-two": "n = 2,3 @integer 2, 3",
|
21
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
22
|
-
"pluralRule-count-many": "n = 6 @integer 6",
|
23
|
-
"pluralRule-count-other": " @integer 0, 11~25, 100, 1000, 10000, 100000, 1000000, …"
|
24
|
-
},
|
25
|
-
"az": {
|
26
|
-
"pluralRule-count-one": "i % 10 = 1,2,5,7,8 or i % 100 = 20,50,70,80 @integer 1, 2, 5, 7, 8, 11, 12, 15, 17, 18, 20~22, 25, 101, 1001, …",
|
27
|
-
"pluralRule-count-few": "i % 10 = 3,4 or i % 1000 = 100,200,300,400,500,600,700,800,900 @integer 3, 4, 13, 14, 23, 24, 33, 34, 43, 44, 53, 54, 63, 64, 73, 74, 100, 1003, …",
|
28
|
-
"pluralRule-count-many": "i = 0 or i % 10 = 6 or i % 100 = 40,60,90 @integer 0, 6, 16, 26, 36, 40, 46, 56, 106, 1006, …",
|
29
|
-
"pluralRule-count-other": " @integer 9, 10, 19, 29, 30, 39, 49, 59, 69, 79, 109, 1000, 10000, 100000, 1000000, …"
|
30
|
-
},
|
31
|
-
"be": {
|
32
|
-
"pluralRule-count-few": "n % 10 = 2,3 and n % 100 != 12,13 @integer 2, 3, 22, 23, 32, 33, 42, 43, 52, 53, 62, 63, 72, 73, 82, 83, 102, 1002, …",
|
33
|
-
"pluralRule-count-other": " @integer 0, 1, 4~17, 100, 1000, 10000, 100000, 1000000, …"
|
34
|
-
},
|
35
|
-
"bg": {
|
36
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
37
|
-
},
|
38
|
-
"bn": {
|
39
|
-
"pluralRule-count-one": "n = 1,5,7,8,9,10 @integer 1, 5, 7~10",
|
40
|
-
"pluralRule-count-two": "n = 2,3 @integer 2, 3",
|
41
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
42
|
-
"pluralRule-count-many": "n = 6 @integer 6",
|
43
|
-
"pluralRule-count-other": " @integer 0, 11~25, 100, 1000, 10000, 100000, 1000000, …"
|
44
|
-
},
|
45
|
-
"bs": {
|
46
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
47
|
-
},
|
48
|
-
"ca": {
|
49
|
-
"pluralRule-count-one": "n = 1,3 @integer 1, 3",
|
50
|
-
"pluralRule-count-two": "n = 2 @integer 2",
|
51
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
52
|
-
"pluralRule-count-other": " @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …"
|
53
|
-
},
|
54
|
-
"ce": {
|
55
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
56
|
-
},
|
57
|
-
"cs": {
|
58
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
59
|
-
},
|
60
|
-
"cy": {
|
61
|
-
"pluralRule-count-zero": "n = 0,7,8,9 @integer 0, 7~9",
|
62
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
63
|
-
"pluralRule-count-two": "n = 2 @integer 2",
|
64
|
-
"pluralRule-count-few": "n = 3,4 @integer 3, 4",
|
65
|
-
"pluralRule-count-many": "n = 5,6 @integer 5, 6",
|
66
|
-
"pluralRule-count-other": " @integer 10~25, 100, 1000, 10000, 100000, 1000000, …"
|
67
|
-
},
|
68
|
-
"da": {
|
69
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
70
|
-
},
|
71
|
-
"de": {
|
72
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
73
|
-
},
|
74
|
-
"dsb": {
|
75
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
76
|
-
},
|
77
|
-
"el": {
|
78
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
79
|
-
},
|
80
|
-
"en": {
|
81
|
-
"pluralRule-count-one": "n % 10 = 1 and n % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …",
|
82
|
-
"pluralRule-count-two": "n % 10 = 2 and n % 100 != 12 @integer 2, 22, 32, 42, 52, 62, 72, 82, 102, 1002, …",
|
83
|
-
"pluralRule-count-few": "n % 10 = 3 and n % 100 != 13 @integer 3, 23, 33, 43, 53, 63, 73, 83, 103, 1003, …",
|
84
|
-
"pluralRule-count-other": " @integer 0, 4~18, 100, 1000, 10000, 100000, 1000000, …"
|
85
|
-
},
|
86
|
-
"es": {
|
87
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
88
|
-
},
|
89
|
-
"et": {
|
90
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
91
|
-
},
|
92
|
-
"eu": {
|
93
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
94
|
-
},
|
95
|
-
"fa": {
|
96
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
97
|
-
},
|
98
|
-
"fi": {
|
99
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
100
|
-
},
|
101
|
-
"fil": {
|
102
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
103
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
104
|
-
},
|
105
|
-
"fr": {
|
106
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
107
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
108
|
-
},
|
109
|
-
"fy": {
|
110
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
111
|
-
},
|
112
|
-
"ga": {
|
113
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
114
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
115
|
-
},
|
116
|
-
"gd": {
|
117
|
-
"pluralRule-count-one": "n = 1,11 @integer 1, 11",
|
118
|
-
"pluralRule-count-two": "n = 2,12 @integer 2, 12",
|
119
|
-
"pluralRule-count-few": "n = 3,13 @integer 3, 13",
|
120
|
-
"pluralRule-count-other": " @integer 0, 4~10, 14~21, 100, 1000, 10000, 100000, 1000000, …"
|
121
|
-
},
|
122
|
-
"gl": {
|
123
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
124
|
-
},
|
125
|
-
"gsw": {
|
126
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
127
|
-
},
|
128
|
-
"gu": {
|
129
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
130
|
-
"pluralRule-count-two": "n = 2,3 @integer 2, 3",
|
131
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
132
|
-
"pluralRule-count-many": "n = 6 @integer 6",
|
133
|
-
"pluralRule-count-other": " @integer 0, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"
|
134
|
-
},
|
135
|
-
"he": {
|
136
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
137
|
-
},
|
138
|
-
"hi": {
|
139
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
140
|
-
"pluralRule-count-two": "n = 2,3 @integer 2, 3",
|
141
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
142
|
-
"pluralRule-count-many": "n = 6 @integer 6",
|
143
|
-
"pluralRule-count-other": " @integer 0, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"
|
144
|
-
},
|
145
|
-
"hr": {
|
146
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
147
|
-
},
|
148
|
-
"hsb": {
|
149
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
150
|
-
},
|
151
|
-
"hu": {
|
152
|
-
"pluralRule-count-one": "n = 1,5 @integer 1, 5",
|
153
|
-
"pluralRule-count-other": " @integer 0, 2~4, 6~17, 100, 1000, 10000, 100000, 1000000, …"
|
154
|
-
},
|
155
|
-
"hy": {
|
156
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
157
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
158
|
-
},
|
159
|
-
"ia": {
|
160
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
161
|
-
},
|
162
|
-
"id": {
|
163
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
164
|
-
},
|
165
|
-
"in": {
|
166
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
167
|
-
},
|
168
|
-
"is": {
|
169
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
170
|
-
},
|
171
|
-
"it": {
|
172
|
-
"pluralRule-count-many": "n = 11,8,80,800 @integer 8, 11, 80, 800",
|
173
|
-
"pluralRule-count-other": " @integer 0~7, 9, 10, 12~17, 100, 1000, 10000, 100000, 1000000, …"
|
174
|
-
},
|
175
|
-
"iw": {
|
176
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
177
|
-
},
|
178
|
-
"ja": {
|
179
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
180
|
-
},
|
181
|
-
"ka": {
|
182
|
-
"pluralRule-count-one": "i = 1 @integer 1",
|
183
|
-
"pluralRule-count-many": "i = 0 or i % 100 = 2..20,40,60,80 @integer 0, 2~16, 102, 1002, …",
|
184
|
-
"pluralRule-count-other": " @integer 21~36, 100, 1000, 10000, 100000, 1000000, …"
|
185
|
-
},
|
186
|
-
"kk": {
|
187
|
-
"pluralRule-count-many": "n % 10 = 6 or n % 10 = 9 or n % 10 = 0 and n != 0 @integer 6, 9, 10, 16, 19, 20, 26, 29, 30, 36, 39, 40, 100, 1000, 10000, 100000, 1000000, …",
|
188
|
-
"pluralRule-count-other": " @integer 0~5, 7, 8, 11~15, 17, 18, 21, 101, 1001, …"
|
189
|
-
},
|
190
|
-
"km": {
|
191
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
192
|
-
},
|
193
|
-
"kn": {
|
194
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
195
|
-
},
|
196
|
-
"ko": {
|
197
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
198
|
-
},
|
199
|
-
"kw": {
|
200
|
-
"pluralRule-count-one": "n = 1..4 or n % 100 = 1..4,21..24,41..44,61..64,81..84 @integer 1~4, 21~24, 41~44, 61~64, 101, 1001, …",
|
201
|
-
"pluralRule-count-many": "n = 5 or n % 100 = 5 @integer 5, 105, 205, 305, 405, 505, 605, 705, 1005, …",
|
202
|
-
"pluralRule-count-other": " @integer 0, 6~20, 100, 1000, 10000, 100000, 1000000, …"
|
203
|
-
},
|
204
|
-
"ky": {
|
205
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
206
|
-
},
|
207
|
-
"lo": {
|
208
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
209
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
210
|
-
},
|
211
|
-
"lt": {
|
212
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
213
|
-
},
|
214
|
-
"lv": {
|
215
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
216
|
-
},
|
217
|
-
"mk": {
|
218
|
-
"pluralRule-count-one": "i % 10 = 1 and i % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …",
|
219
|
-
"pluralRule-count-two": "i % 10 = 2 and i % 100 != 12 @integer 2, 22, 32, 42, 52, 62, 72, 82, 102, 1002, …",
|
220
|
-
"pluralRule-count-many": "i % 10 = 7,8 and i % 100 != 17,18 @integer 7, 8, 27, 28, 37, 38, 47, 48, 57, 58, 67, 68, 77, 78, 87, 88, 107, 1007, …",
|
221
|
-
"pluralRule-count-other": " @integer 0, 3~6, 9~19, 100, 1000, 10000, 100000, 1000000, …"
|
222
|
-
},
|
223
|
-
"ml": {
|
224
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
225
|
-
},
|
226
|
-
"mn": {
|
227
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
228
|
-
},
|
229
|
-
"mo": {
|
230
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
231
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
232
|
-
},
|
233
|
-
"mr": {
|
234
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
235
|
-
"pluralRule-count-two": "n = 2,3 @integer 2, 3",
|
236
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
237
|
-
"pluralRule-count-other": " @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …"
|
238
|
-
},
|
239
|
-
"ms": {
|
240
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
241
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
242
|
-
},
|
243
|
-
"my": {
|
244
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
245
|
-
},
|
246
|
-
"nb": {
|
247
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
248
|
-
},
|
249
|
-
"ne": {
|
250
|
-
"pluralRule-count-one": "n = 1..4 @integer 1~4",
|
251
|
-
"pluralRule-count-other": " @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …"
|
252
|
-
},
|
253
|
-
"nl": {
|
254
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
255
|
-
},
|
256
|
-
"or": {
|
257
|
-
"pluralRule-count-one": "n = 1,5,7..9 @integer 1, 5, 7~9",
|
258
|
-
"pluralRule-count-two": "n = 2,3 @integer 2, 3",
|
259
|
-
"pluralRule-count-few": "n = 4 @integer 4",
|
260
|
-
"pluralRule-count-many": "n = 6 @integer 6",
|
261
|
-
"pluralRule-count-other": " @integer 0, 10~24, 100, 1000, 10000, 100000, 1000000, …"
|
262
|
-
},
|
263
|
-
"pa": {
|
264
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
265
|
-
},
|
266
|
-
"pl": {
|
267
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
268
|
-
},
|
269
|
-
"prg": {
|
270
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
271
|
-
},
|
272
|
-
"ps": {
|
273
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
274
|
-
},
|
275
|
-
"pt": {
|
276
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
277
|
-
},
|
278
|
-
"ro": {
|
279
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
280
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
281
|
-
},
|
282
|
-
"root": {
|
283
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
284
|
-
},
|
285
|
-
"ru": {
|
286
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
287
|
-
},
|
288
|
-
"sc": {
|
289
|
-
"pluralRule-count-many": "n = 11,8,80,800 @integer 8, 11, 80, 800",
|
290
|
-
"pluralRule-count-other": " @integer 0~7, 9, 10, 12~17, 100, 1000, 10000, 100000, 1000000, …"
|
291
|
-
},
|
292
|
-
"scn": {
|
293
|
-
"pluralRule-count-many": "n = 11,8,80,800 @integer 8, 11, 80, 800",
|
294
|
-
"pluralRule-count-other": " @integer 0~7, 9, 10, 12~17, 100, 1000, 10000, 100000, 1000000, …"
|
295
|
-
},
|
296
|
-
"sd": {
|
297
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
298
|
-
},
|
299
|
-
"sh": {
|
300
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
301
|
-
},
|
302
|
-
"si": {
|
303
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
304
|
-
},
|
305
|
-
"sk": {
|
306
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
307
|
-
},
|
308
|
-
"sl": {
|
309
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
310
|
-
},
|
311
|
-
"sq": {
|
312
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
313
|
-
"pluralRule-count-many": "n % 10 = 4 and n % 100 != 14 @integer 4, 24, 34, 44, 54, 64, 74, 84, 104, 1004, …",
|
314
|
-
"pluralRule-count-other": " @integer 0, 2, 3, 5~17, 100, 1000, 10000, 100000, 1000000, …"
|
315
|
-
},
|
316
|
-
"sr": {
|
317
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
318
|
-
},
|
319
|
-
"sv": {
|
320
|
-
"pluralRule-count-one": "n % 10 = 1,2 and n % 100 != 11,12 @integer 1, 2, 21, 22, 31, 32, 41, 42, 51, 52, 61, 62, 71, 72, 81, 82, 101, 1001, …",
|
321
|
-
"pluralRule-count-other": " @integer 0, 3~17, 100, 1000, 10000, 100000, 1000000, …"
|
322
|
-
},
|
323
|
-
"sw": {
|
324
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
325
|
-
},
|
326
|
-
"ta": {
|
327
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
328
|
-
},
|
329
|
-
"te": {
|
330
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
331
|
-
},
|
332
|
-
"th": {
|
333
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
334
|
-
},
|
335
|
-
"tk": {
|
336
|
-
"pluralRule-count-few": "n % 10 = 6,9 or n = 10 @integer 6, 9, 10, 16, 19, 26, 29, 36, 39, 106, 1006, …",
|
337
|
-
"pluralRule-count-other": " @integer 0~5, 7, 8, 11~15, 17, 18, 20, 100, 1000, 10000, 100000, 1000000, …"
|
338
|
-
},
|
339
|
-
"tl": {
|
340
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
341
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
342
|
-
},
|
343
|
-
"tr": {
|
344
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
345
|
-
},
|
346
|
-
"uk": {
|
347
|
-
"pluralRule-count-few": "n % 10 = 3 and n % 100 != 13 @integer 3, 23, 33, 43, 53, 63, 73, 83, 103, 1003, …",
|
348
|
-
"pluralRule-count-other": " @integer 0~2, 4~16, 100, 1000, 10000, 100000, 1000000, …"
|
349
|
-
},
|
350
|
-
"ur": {
|
351
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
352
|
-
},
|
353
|
-
"uz": {
|
354
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
355
|
-
},
|
356
|
-
"vi": {
|
357
|
-
"pluralRule-count-one": "n = 1 @integer 1",
|
358
|
-
"pluralRule-count-other": " @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …"
|
359
|
-
},
|
360
|
-
"yue": {
|
361
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
362
|
-
},
|
363
|
-
"zh": {
|
364
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
365
|
-
},
|
366
|
-
"zu": {
|
367
|
-
"pluralRule-count-other": " @integer 0~15, 100, 1000, 10000, 100000, 1000000, …"
|
368
|
-
}
|
369
|
-
}
|
370
|
-
}
|
371
|
-
}
|
@@ -1,180 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"supplemental": {
|
3
|
-
"version": {
|
4
|
-
"_number": "$Revision: 14982 $",
|
5
|
-
"_unicodeVersion": "12.1.0",
|
6
|
-
"_cldrVersion": "35.1"
|
7
|
-
},
|
8
|
-
"parentLocales": {
|
9
|
-
"parentLocale": {
|
10
|
-
"en-150": "en-001",
|
11
|
-
"en-AG": "en-001",
|
12
|
-
"en-AI": "en-001",
|
13
|
-
"en-AU": "en-001",
|
14
|
-
"en-BB": "en-001",
|
15
|
-
"en-BM": "en-001",
|
16
|
-
"en-BS": "en-001",
|
17
|
-
"en-BW": "en-001",
|
18
|
-
"en-BZ": "en-001",
|
19
|
-
"en-CA": "en-001",
|
20
|
-
"en-CC": "en-001",
|
21
|
-
"en-CK": "en-001",
|
22
|
-
"en-CM": "en-001",
|
23
|
-
"en-CX": "en-001",
|
24
|
-
"en-CY": "en-001",
|
25
|
-
"en-DG": "en-001",
|
26
|
-
"en-DM": "en-001",
|
27
|
-
"en-ER": "en-001",
|
28
|
-
"en-FJ": "en-001",
|
29
|
-
"en-FK": "en-001",
|
30
|
-
"en-FM": "en-001",
|
31
|
-
"en-GB": "en-001",
|
32
|
-
"en-GD": "en-001",
|
33
|
-
"en-GG": "en-001",
|
34
|
-
"en-GH": "en-001",
|
35
|
-
"en-GI": "en-001",
|
36
|
-
"en-GM": "en-001",
|
37
|
-
"en-GY": "en-001",
|
38
|
-
"en-HK": "en-001",
|
39
|
-
"en-IE": "en-001",
|
40
|
-
"en-IL": "en-001",
|
41
|
-
"en-IM": "en-001",
|
42
|
-
"en-IN": "en-001",
|
43
|
-
"en-IO": "en-001",
|
44
|
-
"en-JE": "en-001",
|
45
|
-
"en-JM": "en-001",
|
46
|
-
"en-KE": "en-001",
|
47
|
-
"en-KI": "en-001",
|
48
|
-
"en-KN": "en-001",
|
49
|
-
"en-KY": "en-001",
|
50
|
-
"en-LC": "en-001",
|
51
|
-
"en-LR": "en-001",
|
52
|
-
"en-LS": "en-001",
|
53
|
-
"en-MG": "en-001",
|
54
|
-
"en-MO": "en-001",
|
55
|
-
"en-MS": "en-001",
|
56
|
-
"en-MT": "en-001",
|
57
|
-
"en-MU": "en-001",
|
58
|
-
"en-MW": "en-001",
|
59
|
-
"en-MY": "en-001",
|
60
|
-
"en-NA": "en-001",
|
61
|
-
"en-NF": "en-001",
|
62
|
-
"en-NG": "en-001",
|
63
|
-
"en-NR": "en-001",
|
64
|
-
"en-NU": "en-001",
|
65
|
-
"en-NZ": "en-001",
|
66
|
-
"en-PG": "en-001",
|
67
|
-
"en-PH": "en-001",
|
68
|
-
"en-PK": "en-001",
|
69
|
-
"en-PN": "en-001",
|
70
|
-
"en-PW": "en-001",
|
71
|
-
"en-RW": "en-001",
|
72
|
-
"en-SB": "en-001",
|
73
|
-
"en-SC": "en-001",
|
74
|
-
"en-SD": "en-001",
|
75
|
-
"en-SG": "en-001",
|
76
|
-
"en-SH": "en-001",
|
77
|
-
"en-SL": "en-001",
|
78
|
-
"en-SS": "en-001",
|
79
|
-
"en-SX": "en-001",
|
80
|
-
"en-SZ": "en-001",
|
81
|
-
"en-TC": "en-001",
|
82
|
-
"en-TK": "en-001",
|
83
|
-
"en-TO": "en-001",
|
84
|
-
"en-TT": "en-001",
|
85
|
-
"en-TV": "en-001",
|
86
|
-
"en-TZ": "en-001",
|
87
|
-
"en-UG": "en-001",
|
88
|
-
"en-VC": "en-001",
|
89
|
-
"en-VG": "en-001",
|
90
|
-
"en-VU": "en-001",
|
91
|
-
"en-WS": "en-001",
|
92
|
-
"en-ZA": "en-001",
|
93
|
-
"en-ZM": "en-001",
|
94
|
-
"en-ZW": "en-001",
|
95
|
-
"en-AT": "en-150",
|
96
|
-
"en-BE": "en-150",
|
97
|
-
"en-CH": "en-150",
|
98
|
-
"en-DE": "en-150",
|
99
|
-
"en-DK": "en-150",
|
100
|
-
"en-FI": "en-150",
|
101
|
-
"en-NL": "en-150",
|
102
|
-
"en-SE": "en-150",
|
103
|
-
"en-SI": "en-150",
|
104
|
-
"es-AR": "es-419",
|
105
|
-
"es-BO": "es-419",
|
106
|
-
"es-BR": "es-419",
|
107
|
-
"es-BZ": "es-419",
|
108
|
-
"es-CL": "es-419",
|
109
|
-
"es-CO": "es-419",
|
110
|
-
"es-CR": "es-419",
|
111
|
-
"es-CU": "es-419",
|
112
|
-
"es-DO": "es-419",
|
113
|
-
"es-EC": "es-419",
|
114
|
-
"es-GT": "es-419",
|
115
|
-
"es-HN": "es-419",
|
116
|
-
"es-MX": "es-419",
|
117
|
-
"es-NI": "es-419",
|
118
|
-
"es-PA": "es-419",
|
119
|
-
"es-PE": "es-419",
|
120
|
-
"es-PR": "es-419",
|
121
|
-
"es-PY": "es-419",
|
122
|
-
"es-SV": "es-419",
|
123
|
-
"es-US": "es-419",
|
124
|
-
"es-UY": "es-419",
|
125
|
-
"es-VE": "es-419",
|
126
|
-
"pt-AO": "pt-PT",
|
127
|
-
"pt-CH": "pt-PT",
|
128
|
-
"pt-CV": "pt-PT",
|
129
|
-
"pt-FR": "pt-PT",
|
130
|
-
"pt-GQ": "pt-PT",
|
131
|
-
"pt-GW": "pt-PT",
|
132
|
-
"pt-LU": "pt-PT",
|
133
|
-
"pt-MO": "pt-PT",
|
134
|
-
"pt-MZ": "pt-PT",
|
135
|
-
"pt-ST": "pt-PT",
|
136
|
-
"pt-TL": "pt-PT",
|
137
|
-
"az-Arab": "root",
|
138
|
-
"az-Cyrl": "root",
|
139
|
-
"blt-Latn": "root",
|
140
|
-
"bm-Nkoo": "root",
|
141
|
-
"bs-Cyrl": "root",
|
142
|
-
"byn-Latn": "root",
|
143
|
-
"cu-Glag": "root",
|
144
|
-
"dje-Arab": "root",
|
145
|
-
"dyo-Arab": "root",
|
146
|
-
"en-Dsrt": "root",
|
147
|
-
"en-Shaw": "root",
|
148
|
-
"ff-Adlm": "root",
|
149
|
-
"ff-Arab": "root",
|
150
|
-
"ha-Arab": "root",
|
151
|
-
"iu-Latn": "root",
|
152
|
-
"kk-Arab": "root",
|
153
|
-
"ku-Arab": "root",
|
154
|
-
"ky-Arab": "root",
|
155
|
-
"ky-Latn": "root",
|
156
|
-
"ml-Arab": "root",
|
157
|
-
"mn-Mong": "root",
|
158
|
-
"ms-Arab": "root",
|
159
|
-
"pa-Arab": "root",
|
160
|
-
"sd-Deva": "root",
|
161
|
-
"sd-Khoj": "root",
|
162
|
-
"sd-Sind": "root",
|
163
|
-
"shi-Latn": "root",
|
164
|
-
"so-Arab": "root",
|
165
|
-
"sr-Latn": "root",
|
166
|
-
"sw-Arab": "root",
|
167
|
-
"tg-Arab": "root",
|
168
|
-
"ug-Cyrl": "root",
|
169
|
-
"uz-Arab": "root",
|
170
|
-
"uz-Cyrl": "root",
|
171
|
-
"vai-Latn": "root",
|
172
|
-
"wo-Arab": "root",
|
173
|
-
"yo-Arab": "root",
|
174
|
-
"yue-Hans": "root",
|
175
|
-
"zh-Hant": "root",
|
176
|
-
"zh-Hant-MO": "zh-Hant-HK"
|
177
|
-
}
|
178
|
-
}
|
179
|
-
}
|
180
|
-
}
|