summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XPluralCategory.js
blob: 299abbb4b0d787b17fb1b71197950bff27b54e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"

export const ICU4XPluralCategory_js_to_rust = {
  "Zero": 0,
  "One": 1,
  "Two": 2,
  "Few": 3,
  "Many": 4,
  "Other": 5,
};

export const ICU4XPluralCategory_rust_to_js = {
  [0]: "Zero",
  [1]: "One",
  [2]: "Two",
  [3]: "Few",
  [4]: "Many",
  [5]: "Other",
};

export const ICU4XPluralCategory = {
  "Zero": "Zero",
  "One": "One",
  "Two": "Two",
  "Few": "Few",
  "Many": "Many",
  "Other": "Other",
};