{
  "locale": "pl",
  "format": "icu-messageformat",
  "note": "In ICU MessageFormat, '#' inside a plural branch binds to the NEAREST enclosing plural argument, not the outermost one. Where an outer count must appear inside an inner plural, these messages use the explicit {name} form instead of '#'.",
  "messages": {
    "shared": "{count, plural, =0 {Nikt tego nie udostępnił} one {{sharerGender, select, female {Udostępniła} male {Udostępnił} other {Udostępnili}} to} few {Udostępniły to # osoby} many {Udostępniło to # osób} other {Udostępniło to # osoby}}",
    "reminders": "{audience, select, self {Masz {count, plural, one {# przypomnienie} few {# przypomnienia} many {# przypomnień} other {# przypomnienia}}} other {Zespół ma {count, plural, one {# przypomnienie} few {# przypomnienia} many {# przypomnień} other {# przypomnienia}}}}"
  },
  "cases": [
    {
      "message": "shared",
      "args": {
        "count": 1,
        "sharerGender": "female"
      },
      "expectedCategory": "one -> select female"
    },
    {
      "message": "shared",
      "args": {
        "count": 3,
        "sharerGender": "other"
      },
      "expectedCategory": "few"
    },
    {
      "message": "shared",
      "args": {
        "count": 5,
        "sharerGender": "other"
      },
      "expectedCategory": "many"
    },
    {
      "message": "shared",
      "args": {
        "count": 22,
        "sharerGender": "other"
      },
      "expectedCategory": "few"
    },
    {
      "message": "reminders",
      "args": {
        "audience": "self",
        "count": 12
      },
      "expectedCategory": "many"
    },
    {
      "message": "reminders",
      "args": {
        "audience": "team",
        "count": 1.5
      },
      "expectedCategory": "other (fractional)"
    }
  ],
  "pluralCategories": "one, few, many, other"
}
