File: plural-form.js

package info (click to toggle)
firefox 147.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,683,484 kB
  • sloc: cpp: 7,607,246; javascript: 6,533,185; ansic: 3,775,227; python: 1,415,393; xml: 634,561; asm: 438,951; java: 186,241; sh: 62,752; makefile: 18,079; objc: 13,092; perl: 12,808; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10; exp: 6
file content (160 lines) | stat: -rw-r--r-- 5,205 bytes parent folder | download | duplicates (2)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// Disable eslint warnings to preserve original code style.
/* eslint-disable */

/**
 * This module provides the PluralForm object which contains a method to figure
 * out which plural form of a word to use for a given number based on the
 * current localization.
 */

const PluralForm = {
  init()
  {
    delete this.numForms;
    delete this.get;

    let [numForms, pluralFunc] = this.getPluralRule();
    this.numForms = () => numForms;
    this.get = (aNum, aWords) => {
      // Figure out which index to use for the semi-colon separated words
      let index = pluralFunc(aNum ? Number(aNum) : 0);
      let words = aWords ? aWords.split(/;/) : [""];

      // Explicitly check bounds to avoid strict warnings
      let ret = index < words.length ? words[index] : undefined;

      // Check for array out of bounds or empty strings
      if ((ret == undefined) || (ret == "")) {
        console.warn(`plural-form.js: Index #${index} of '${aWords}' for value ${aNum} is invalid;\n`);

        // Default to the first entry (which might be empty, but not undefined)
        ret = words[0];
      }

      return ret;
    };
  },

  /**
   * Get the correct plural form of a word based on the number
   *
   * @param aNum
   *        The number to decide which plural form to use
   * @param aWords
   *        A semi-colon (;) separated string of words to pick the plural form
   * @return The appropriate plural form of the word
   */
  get get()
  {
    this.init();
    return this.get;
  },

  /**
   * Get the number of forms for the current plural rule
   *
   * @return The number of forms
   */
  get numForms()
  {
    this.init();
    return this.numForms;
  },

  /**
   * Selects the number of plural categories and the function for selecting between them.
   *
   * The default is to use the same plural rules as English, which has "one" and "other" categories.
   * This is only used for a small number of devtools messages that have a custom format;
   * Fluent plurals in general rely on Unicode Common Locale Data Repository data.
   *
   * @return The available plural function that gives the appropriate index
   *   based on the plural rule number specified. The first element is the number
   *   of plural forms and the second is the function to figure out the index.
   */
  getPluralRule()
  {
    let appLocale = Services.locale.appLocalesAsLangTags[0];

    // See searchfox.org/firefox-main/rev/f6385e6644d5d4343d33b692810275c434122199/intl/docs/locale.rst#463-471
    // Swap ja-JP-mac (legacy locale in gecko, but invalid) with the valid ja-JP-macos
    if (appLocale === "ja-JP-mac") {
      appLocale = "ja-JP-macos";
    }

    const locale = new Intl.Locale(appLocale);
    switch (locale.language) {
      case "bo":
      case "id":
      case "ja":
      case "km":
      case "ko":
      case "lo":
      case "meh":
      case "ms":
      case "my":
      case "th":
      case "vi":
      case "wo":
      case "zh":
        return [1, (n) => 0];
      case "bn":
      case "fa":
      case "fr":
      case "gu":
      case "hi":
      case "oc":
      case "pa":
        return [2, (n) => n>1?1:0];
      case "ltg":
      case "lv":
        return [3, (n) => n%10==1&&n%100!=11?1:n%10==0?0:2];
      case "gd":
        return [4, (n) => n==1||n==11?0:n==2||n==12?1:n>0&&n<20?2:3];
      case "ro":
        return [3, (n) => n==1?0:n==0||n%100>0&&n%100<20?1:2];
      case "lt":
        return [3, (n) => n%10==1&&n%100!=11?0:n%10>=2&&(n%100<10||n%100>=20)?2:1];
      case "be":
      case "ru":
      case "uk":
        return [3, (n) => n%10==1&&n%100!=11?0:n%10>=2&&n%10<=4&&(n%100<10||n%100>=20)?1:2];
      case "cs":
      case "sk":
        return [3, (n) => n==1?0:n>=2&&n<=4?1:2];
      case "pl":
      case "szl":
        return [3, (n) => n==1?0:n%10>=2&&n%10<=4&&(n%100<10||n%100>=20)?1:2];
      case "dsb":
      case "hsb":
      case "sl":
        return [4, (n) => n%100==1?0:n%100==2?1:n%100==3||n%100==4?2:3];
      case "ga":
        return [5, (n) => n==1?0:n==2?1:n>=3&&n<=6?2:n>=7&&n<=10?3:4];
      case "ar":
        return [6, (n) => n==0?5:n==1?0:n==2?1:n%100>=3&&n%100<=10?2:n%100>=11&&n%100<=99?3:4];
      case "is":
      case "mk":
        return [4, (n) => n==1?0:n==0||n%100>0&&n%100<=10?1:n%100>10&&n%100<20?2:3];
      case "br":
        return [5, (n) => n%10==1&&n%100!=11&&n%100!=71&&n%100!=91?0:n%10==2&&n%100!=12&&n%100!=72&&n%100!=92?1:(n%10==3||n%10==4||n%10==9)&&n%100!=13&&n%100!=14&&n%100!=19&&n%100!=73&&n%100!=74&&n%100!=79&&n%100!=93&&n%100!=94&&n%100!=99?2:n%1000000==0&&n!=0?3:4];
      case "cy":
        return [6, (n) => n==0?0:n==1?1:n==2?2:n==3?3:n==6?4:5];
      case "bs":
      case "hr":
      case "sr":
        return [3, (n) => n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2];
      default:
        return [2, (n) => n!=1?1:0];
    }
  }
};

exports.PluralForm = PluralForm;
exports.get = PluralForm.get;

/* eslint-enable */