{
  "locale": "ar",
  "language": "Arabic",
  "source": "CLDR plural rules",
  "note": "Rule expressions use CLDR plural-rule syntax: n is the absolute value of the source number, i its integer digits and v the count of visible fraction digits. Categories are selected by the FIRST matching rule; 'other' is always the fallback. Assert on the category returned for each sample value, not on any wording.",
  "categories": [
    "zero",
    "one",
    "two",
    "few",
    "many",
    "other"
  ],
  "cardinal": {
    "zero": "n = 0",
    "one": "n = 1",
    "two": "n = 2",
    "few": "n % 100 = 3..10",
    "many": "n % 100 = 11..99",
    "other": "(default — everything the rules above do not match)"
  },
  "cardinalSamples": {
    "zero": [
      0
    ],
    "one": [
      1
    ],
    "two": [
      2
    ],
    "few": [
      3,
      4,
      9,
      10,
      103,
      110
    ],
    "many": [
      11,
      26,
      99,
      111,
      199
    ],
    "other": [
      100,
      101,
      102,
      200,
      1000,
      1.5
    ]
  },
  "ordinal": {
    "other": "(default — Arabic has a single ordinal category)"
  },
  "ordinalSamples": {
    "other": [
      1,
      2,
      3,
      11,
      21,
      100
    ]
  },
  "gettextPluralForms": "nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5);",
  "trap": "A catalog written with only one/other silently renders 'many' counts (11-99) with the singular noun form."
}
