diff --git a/.gitattributes b/.gitattributes index b3fd15d..42f0303 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,5 @@ -/tests/ export-ignore /.* export-ignore +/gh-pages/ export-ignore +/tests/ export-ignore /README.md export-ignore /phpunit.xml export-ignore diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..bd8cad7 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,52 @@ +name: Build GitHub Pages + +on: + push: + branches: + - main + tags-ignore: + - "**" + workflow_dispatch: + inputs: + recreate-json: + description: 'Re-create JSON files' + type: boolean + +permissions: + contents: write + pages: write + id-token: write + +jobs: + publish: + name: Build + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Delete existing JSON files + if: github.event.inputs.recreate-json + run: rm -rf gh-pages/public/data/versions + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: npm + cache-dependency-path: gh-pages/package-lock.json + - name: Install dependencies + working-directory: gh-pages + run: npm ci + - name: Check coding style + working-directory: gh-pages + run: npm run lint:check + - name: Build + run: npm run build + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: gh-pages/dist + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 42ab917..80569c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,9 @@ on: - main tags-ignore: - "**" + paths-ignore: + - .github/workflows/gh-pages.yml + - "gh-pages/**" pull_request: branches: - main diff --git a/gh-pages/.gitignore b/gh-pages/.gitignore new file mode 100644 index 0000000..527141c --- /dev/null +++ b/gh-pages/.gitignore @@ -0,0 +1,26 @@ +/dist/ + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/gh-pages/.prettierignore b/gh-pages/.prettierignore new file mode 100644 index 0000000..87174b6 --- /dev/null +++ b/gh-pages/.prettierignore @@ -0,0 +1 @@ +/public/ diff --git a/gh-pages/.prettierrc.yml b/gh-pages/.prettierrc.yml new file mode 100644 index 0000000..5e158ef --- /dev/null +++ b/gh-pages/.prettierrc.yml @@ -0,0 +1,15 @@ +# See https://prettier.io/docs/options +printWidth: 80 +tabWidth: 2 +useTabs: false +semi: true +singleQuote: true +quoteProps: as-needed +jsxSingleQuote: false +trailingComma: all +bracketSpacing: false +bracketSameLine: false +arrowParens: always +vueIndentScriptAndStyle: false +endOfLine: lf +singleAttributePerLine: false diff --git a/gh-pages/.vscode/extensions.json b/gh-pages/.vscode/extensions.json new file mode 100644 index 0000000..da9331c --- /dev/null +++ b/gh-pages/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar", "esbenp.prettier-vscode"] +} diff --git a/gh-pages/.vscode/settings.json b/gh-pages/.vscode/settings.json new file mode 100644 index 0000000..67bc011 --- /dev/null +++ b/gh-pages/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnPaste": true, + "editor.formatOnSave": true, + "[yaml]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + } +} diff --git a/gh-pages/README.md b/gh-pages/README.md new file mode 100644 index 0000000..188c420 --- /dev/null +++ b/gh-pages/README.md @@ -0,0 +1,43 @@ +## Development + +### Install dependencies (keeping the configured one) + +```sh +npm ci +``` + +### Install dependencies (updating to the latest available versions) + +```sh +npm install +``` + +### Build for development + +```sh +npm run dev +``` + +### Checking coding style + +```sh +npm run lint:check +``` + +### Fixing coding style + +```sh +npm run lint:fix +``` + +### Build for production + +```sh +npm run build +``` + +### Preview the app built for production + +```sh +npm run preview +``` diff --git a/gh-pages/bin/create-cldr-data.js b/gh-pages/bin/create-cldr-data.js new file mode 100644 index 0000000..0bb4a95 --- /dev/null +++ b/gh-pages/bin/create-cldr-data.js @@ -0,0 +1,88 @@ +import child_process from 'node:child_process'; +import fs from 'node:fs'; +import path from 'node:path'; +import {fileURLToPath} from 'node:url'; + +const PROJECT_ROOT = path + .resolve(path.dirname(fileURLToPath(import.meta.url)), '..', '..') + .replaceAll(path.sep, '/') + .replace(/\/$/, ''); + +const DATADIR = + path + .resolve(path.dirname(fileURLToPath(import.meta.url)), '..') + .replaceAll(path.sep, '/') + .replace(/\/$/, '') + '/public/data'; + +const VERSIONS = JSON.parse(fs.readFileSync(`${DATADIR}/versions.json`)); +if (!fs.existsSync(`${DATADIR}/versions`)) { + fs.mkdirSync(`${DATADIR}/versions`); +} + +for (let version of VERSIONS) { + const outputFileCompressed = `${DATADIR}/versions/${version}.min.json`; + const outputFileUncompressed = `${DATADIR}/versions/${version}.json`; + if ( + fs.existsSync(outputFileCompressed) && + fs.existsSync(outputFileUncompressed) + ) { + continue; + } + process.stdout.write(`# Creating data for version ${version}\n`); + const importer = child_process.spawn( + 'php', + [`${PROJECT_ROOT}/bin/import-cldr-data`, version], + { + stdio: [ + // stdin + 'ignore', + // stout + 'inherit', + // stderr + 'inherit', + ], + }, + ); + await new Promise((resolve, reject) => { + importer.on('close', (code) => { + if (code === 0) { + resolve(); + } else { + reject(new Error(`Child process exited with code ${code}`)); + } + }); + }); + process.stdout.write('Creating json files\n'); + for (let compressed of [false, true]) { + const outputFile = compressed + ? outputFileCompressed + : outputFileUncompressed; + const exporter = child_process.spawn( + 'php', + [ + `${PROJECT_ROOT}/bin/export-plural-rules`, + `--output=${outputFile}`, + compressed ? 'json' : 'prettyjson', + ], + { + stdio: [ + // stdin + 'ignore', + // stout + 'inherit', + // stderr + 'inherit', + ], + }, + ); + await new Promise((resolve, reject) => { + exporter.on('close', (code) => { + if (code === 0) { + resolve(); + } else { + reject(new Error(`Child process exited with code ${code}`)); + } + }); + }); + } +} diff --git a/gh-pages/index.html b/gh-pages/index.html new file mode 100644 index 0000000..cd9d64b --- /dev/null +++ b/gh-pages/index.html @@ -0,0 +1,26 @@ + + + + + + + + + gettext plural rules - built from CLDR + + +
+ + + diff --git a/gh-pages/package-lock.json b/gh-pages/package-lock.json new file mode 100644 index 0000000..8e6edd4 --- /dev/null +++ b/gh-pages/package-lock.json @@ -0,0 +1,1907 @@ +{ + "name": "gettext-plurals", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "gettext-plurals", + "version": "0.0.0", + "dependencies": { + "@popperjs/core": "^2.11.8", + "bootstrap": "^5.3.3", + "vue": "^3.5.13" + }, + "devDependencies": { + "@types/bootstrap": "^5.2.10", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/tsconfig": "^0.7.0", + "prettier": "^3.5.3", + "sass-embedded": "^1.86.0", + "typescript": "~5.7.2", + "vite": "^6.2.0", + "vue-tsc": "^2.2.4" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz", + "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.10" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz", + "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bufbuild/protobuf": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.2.4.tgz", + "integrity": "sha512-P9xQgtMh71TA7tHTnbDe68zcI+TPnkyyfBIhGaUr4iUEIXN7yI01DyjmmdEwXTk5OlISBJYkoxCVj2dwmHqIkA==", + "dev": true, + "license": "(Apache-2.0 AND BSD-3-Clause)" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz", + "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz", + "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz", + "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz", + "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz", + "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz", + "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz", + "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz", + "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz", + "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz", + "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz", + "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz", + "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz", + "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz", + "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz", + "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz", + "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz", + "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz", + "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz", + "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz", + "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz", + "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz", + "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz", + "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz", + "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz", + "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.36.0.tgz", + "integrity": "sha512-jgrXjjcEwN6XpZXL0HUeOVGfjXhPyxAbbhD0BlXUB+abTOpbPiN5Wb3kOT7yb+uEtATNYF5x5gIfwutmuBA26w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.36.0.tgz", + "integrity": "sha512-NyfuLvdPdNUfUNeYKUwPwKsE5SXa2J6bCt2LdB/N+AxShnkpiczi3tcLJrm5mA+eqpy0HmaIY9F6XCa32N5yzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.36.0.tgz", + "integrity": "sha512-JQ1Jk5G4bGrD4pWJQzWsD8I1n1mgPXq33+/vP4sk8j/z/C2siRuxZtaUA7yMTf71TCZTZl/4e1bfzwUmFb3+rw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.36.0.tgz", + "integrity": "sha512-6c6wMZa1lrtiRsbDziCmjE53YbTkxMYhhnWnSW8R/yqsM7a6mSJ3uAVT0t8Y/DGt7gxUWYuFM4bwWk9XCJrFKA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.36.0.tgz", + "integrity": "sha512-KXVsijKeJXOl8QzXTsA+sHVDsFOmMCdBRgFmBb+mfEb/7geR7+C8ypAml4fquUt14ZyVXaw2o1FWhqAfOvA4sg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.36.0.tgz", + "integrity": "sha512-dVeWq1ebbvByI+ndz4IJcD4a09RJgRYmLccwlQ8bPd4olz3Y213uf1iwvc7ZaxNn2ab7bjc08PrtBgMu6nb4pQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.36.0.tgz", + "integrity": "sha512-bvXVU42mOVcF4le6XSjscdXjqx8okv4n5vmwgzcmtvFdifQ5U4dXFYaCB87namDRKlUL9ybVtLQ9ztnawaSzvg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.36.0.tgz", + "integrity": "sha512-JFIQrDJYrxOnyDQGYkqnNBtjDwTgbasdbUiQvcU8JmGDfValfH1lNpng+4FWlhaVIR4KPkeddYjsVVbmJYvDcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.36.0.tgz", + "integrity": "sha512-KqjYVh3oM1bj//5X7k79PSCZ6CvaVzb7Qs7VMWS+SlWB5M8p3FqufLP9VNp4CazJ0CsPDLwVD9r3vX7Ci4J56A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.36.0.tgz", + "integrity": "sha512-QiGnhScND+mAAtfHqeT+cB1S9yFnNQ/EwCg5yE3MzoaZZnIV0RV9O5alJAoJKX/sBONVKeZdMfO8QSaWEygMhw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.36.0.tgz", + "integrity": "sha512-1ZPyEDWF8phd4FQtTzMh8FQwqzvIjLsl6/84gzUxnMNFBtExBtpL51H67mV9xipuxl1AEAerRBgBwFNpkw8+Lg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.36.0.tgz", + "integrity": "sha512-VMPMEIUpPFKpPI9GZMhJrtu8rxnp6mJR3ZzQPykq4xc2GmdHj3Q4cA+7avMyegXy4n1v+Qynr9fR88BmyO74tg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.36.0.tgz", + "integrity": "sha512-ttE6ayb/kHwNRJGYLpuAvB7SMtOeQnVXEIpMtAvx3kepFQeowVED0n1K9nAdraHUPJ5hydEMxBpIR7o4nrm8uA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.36.0.tgz", + "integrity": "sha512-4a5gf2jpS0AIe7uBjxDeUMNcFmaRTbNv7NxI5xOCs4lhzsVyGR/0qBXduPnoWf6dGC365saTiwag8hP1imTgag==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.36.0.tgz", + "integrity": "sha512-5KtoW8UWmwFKQ96aQL3LlRXX16IMwyzMq/jSSVIIyAANiE1doaQsx/KRyhAvpHlPjPiSU/AYX/8m+lQ9VToxFQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.36.0.tgz", + "integrity": "sha512-sycrYZPrv2ag4OCvaN5js+f01eoZ2U+RmT5as8vhxiFz+kxwlHrsxOwKPSA8WyS+Wc6Epid9QeI/IkQ9NkgYyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.36.0.tgz", + "integrity": "sha512-qbqt4N7tokFwwSVlWDsjfoHgviS3n/vZ8LK0h1uLG9TYIRuUTJC88E1xb3LM2iqZ/WTqNQjYrtmtGmrmmawB6A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.36.0.tgz", + "integrity": "sha512-t+RY0JuRamIocMuQcfwYSOkmdX9dtkr1PbhKW42AMvaDQa+jOdpUYysroTF/nuPpAaQMWp7ye+ndlmmthieJrQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.36.0.tgz", + "integrity": "sha512-aRXd7tRZkWLqGbChgcMMDEHjOKudo1kChb1Jt1IfR8cY/KIpgNviLeJy5FUb9IpSuQj8dU2fAYNMPW/hLKOSTw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/bootstrap": { + "version": "5.2.10", + "resolved": "https://registry.npmjs.org/@types/bootstrap/-/bootstrap-5.2.10.tgz", + "integrity": "sha512-F2X+cd6551tep0MvVZ6nM8v7XgGN/twpdNDjqS1TUM7YFNEtQYWk+dKAnH+T1gr6QgCoGMPl487xw/9hXooa2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@popperjs/core": "^2.9.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.3.tgz", + "integrity": "sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@volar/language-core": { + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.12.tgz", + "integrity": "sha512-RLrFdXEaQBWfSnYGVxvR2WrO6Bub0unkdHYIdC31HzIEqATIuuhRRzYu76iGPZ6OtA4Au1SnW0ZwIqPP217YhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "2.4.12" + } + }, + "node_modules/@volar/source-map": { + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.12.tgz", + "integrity": "sha512-bUFIKvn2U0AWojOaqf63ER0N/iHIBYZPpNGogfLPQ68F5Eet6FnLlyho7BS0y2HJ1jFhSif7AcuTx1TqsCzRzw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@volar/typescript": { + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.12.tgz", + "integrity": "sha512-HJB73OTJDgPc80K30wxi3if4fSsZZAOScbj2fcicMuOPoOkcf9NNAINb33o+DzhBdF9xTKC1gnPmIRDous5S0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.12", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz", + "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.13", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz", + "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.13", + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz", + "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.13", + "@vue/compiler-dom": "3.5.13", + "@vue/compiler-ssr": "3.5.13", + "@vue/shared": "3.5.13", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.48", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz", + "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.13", + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/compiler-vue2": { + "version": "2.7.16", + "resolved": "https://registry.npmjs.org/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", + "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/@vue/language-core": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-2.2.8.tgz", + "integrity": "sha512-rrzB0wPGBvcwaSNRriVWdNAbHQWSf0NlGqgKHK5mEkXpefjUlVRP62u03KvwZpvKVjRnBIQ/Lwre+Mx9N6juUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "~2.4.11", + "@vue/compiler-dom": "^3.5.0", + "@vue/compiler-vue2": "^2.7.16", + "@vue/shared": "^3.5.0", + "alien-signals": "^1.0.3", + "minimatch": "^9.0.3", + "muggle-string": "^0.4.1", + "path-browserify": "^1.0.1" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz", + "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz", + "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.13", + "@vue/shared": "3.5.13" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz", + "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.13", + "@vue/runtime-core": "3.5.13", + "@vue/shared": "3.5.13", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz", + "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.13", + "@vue/shared": "3.5.13" + }, + "peerDependencies": { + "vue": "3.5.13" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz", + "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==", + "license": "MIT" + }, + "node_modules/@vue/tsconfig": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@vue/tsconfig/-/tsconfig-0.7.0.tgz", + "integrity": "sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "typescript": "5.x", + "vue": "^3.4.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "vue": { + "optional": true + } + } + }, + "node_modules/alien-signals": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/alien-signals/-/alien-signals-1.0.4.tgz", + "integrity": "sha512-DJqqQD3XcsaQcQ1s+iE2jDUZmmQpXwHiR6fCAim/w87luaW+vmLY8fMlrdkmRwzaFXhkxf3rqPCR59tKVv1MDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/bootstrap": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz", + "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "license": "MIT", + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/buffer-builder": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz", + "integrity": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==", + "dev": true, + "license": "MIT/X11" + }, + "node_modules/colorjs.io": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz", + "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true, + "license": "MIT" + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz", + "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.1", + "@esbuild/android-arm": "0.25.1", + "@esbuild/android-arm64": "0.25.1", + "@esbuild/android-x64": "0.25.1", + "@esbuild/darwin-arm64": "0.25.1", + "@esbuild/darwin-x64": "0.25.1", + "@esbuild/freebsd-arm64": "0.25.1", + "@esbuild/freebsd-x64": "0.25.1", + "@esbuild/linux-arm": "0.25.1", + "@esbuild/linux-arm64": "0.25.1", + "@esbuild/linux-ia32": "0.25.1", + "@esbuild/linux-loong64": "0.25.1", + "@esbuild/linux-mips64el": "0.25.1", + "@esbuild/linux-ppc64": "0.25.1", + "@esbuild/linux-riscv64": "0.25.1", + "@esbuild/linux-s390x": "0.25.1", + "@esbuild/linux-x64": "0.25.1", + "@esbuild/netbsd-arm64": "0.25.1", + "@esbuild/netbsd-x64": "0.25.1", + "@esbuild/openbsd-arm64": "0.25.1", + "@esbuild/openbsd-x64": "0.25.1", + "@esbuild/sunos-x64": "0.25.1", + "@esbuild/win32-arm64": "0.25.1", + "@esbuild/win32-ia32": "0.25.1", + "@esbuild/win32-x64": "0.25.1" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/immutable": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/magic-string": { + "version": "0.30.17", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.10.tgz", + "integrity": "sha512-vSJJTG+t/dIKAUhUDw/dLdZ9s//5OxcHqLaDWWrW4Cdq7o6tdLIczUkMXt2MBNmk6sJRZBZRXVixs7URY1CmIg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/postcss": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/rollup": { + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.36.0.tgz", + "integrity": "sha512-zwATAXNQxUcd40zgtQG0ZafcRK4g004WtEl7kbuhTWPvf07PsfohXl39jVUvPF7jvNAIkKPQ2XrsDlWuxBd++Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.36.0", + "@rollup/rollup-android-arm64": "4.36.0", + "@rollup/rollup-darwin-arm64": "4.36.0", + "@rollup/rollup-darwin-x64": "4.36.0", + "@rollup/rollup-freebsd-arm64": "4.36.0", + "@rollup/rollup-freebsd-x64": "4.36.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.36.0", + "@rollup/rollup-linux-arm-musleabihf": "4.36.0", + "@rollup/rollup-linux-arm64-gnu": "4.36.0", + "@rollup/rollup-linux-arm64-musl": "4.36.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.36.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.36.0", + "@rollup/rollup-linux-riscv64-gnu": "4.36.0", + "@rollup/rollup-linux-s390x-gnu": "4.36.0", + "@rollup/rollup-linux-x64-gnu": "4.36.0", + "@rollup/rollup-linux-x64-musl": "4.36.0", + "@rollup/rollup-win32-arm64-msvc": "4.36.0", + "@rollup/rollup-win32-ia32-msvc": "4.36.0", + "@rollup/rollup-win32-x64-msvc": "4.36.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/sass-embedded": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.86.0.tgz", + "integrity": "sha512-Ibq5DzxjSf9f/IJmKeHVeXlVqiZWdRJF+RXy6v6UupvMYVMU5Ei+teSFBvvpPD5bB2QhhnU/OJlSM0EBCtfr9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@bufbuild/protobuf": "^2.0.0", + "buffer-builder": "^0.2.0", + "colorjs.io": "^0.5.0", + "immutable": "^5.0.2", + "rxjs": "^7.4.0", + "supports-color": "^8.1.1", + "sync-child-process": "^1.0.2", + "varint": "^6.0.0" + }, + "bin": { + "sass": "dist/bin/sass.js" + }, + "engines": { + "node": ">=16.0.0" + }, + "optionalDependencies": { + "sass-embedded-android-arm": "1.86.0", + "sass-embedded-android-arm64": "1.86.0", + "sass-embedded-android-ia32": "1.86.0", + "sass-embedded-android-riscv64": "1.86.0", + "sass-embedded-android-x64": "1.86.0", + "sass-embedded-darwin-arm64": "1.86.0", + "sass-embedded-darwin-x64": "1.86.0", + "sass-embedded-linux-arm": "1.86.0", + "sass-embedded-linux-arm64": "1.86.0", + "sass-embedded-linux-ia32": "1.86.0", + "sass-embedded-linux-musl-arm": "1.86.0", + "sass-embedded-linux-musl-arm64": "1.86.0", + "sass-embedded-linux-musl-ia32": "1.86.0", + "sass-embedded-linux-musl-riscv64": "1.86.0", + "sass-embedded-linux-musl-x64": "1.86.0", + "sass-embedded-linux-riscv64": "1.86.0", + "sass-embedded-linux-x64": "1.86.0", + "sass-embedded-win32-arm64": "1.86.0", + "sass-embedded-win32-ia32": "1.86.0", + "sass-embedded-win32-x64": "1.86.0" + } + }, + "node_modules/sass-embedded-android-arm": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.86.0.tgz", + "integrity": "sha512-NS8v6BCbzskXUMBtzfuB+j2yQMgiwg5edKHTYfQU7gAWai2hkRhS06YNEMff3aRxV0IFInxPRHOobd8xWPHqeA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-arm64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.86.0.tgz", + "integrity": "sha512-r7MZtlAI2VFUnKE8B5UOrpoE6OGpdf1dIB6ndoxb3oiURgMyfTVU7yvJcL12GGvtVwQ2boCj6dq//Lqq9CXPlQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-ia32": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-android-ia32/-/sass-embedded-android-ia32-1.86.0.tgz", + "integrity": "sha512-UjfElrGaOTNOnxLZLxf6MFndFIe7zyK+81f83BioZ7/jcoAd6iCHZT8yQMvu8wINyVodPcaXZl8KxlKcl62VAA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-riscv64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.86.0.tgz", + "integrity": "sha512-TsqCLxHWLFS2mbpUkL/nge3jSkaPK2VmLkkoi5iO/EQT4SFvm1lNUgPwlLXu9DplZ+aqGVzRS9Y6Psjv+qW7kw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-x64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.86.0.tgz", + "integrity": "sha512-8Q263GgwGjz7Jkf7Eghp7NrwqskDL95WO9sKrNm9iOd2re/M48W7RN/lpdcZwrUnEOhueks0RRyYyZYBNRz8Tg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-darwin-arm64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.86.0.tgz", + "integrity": "sha512-d8oMEaIweq1tjrb/BT43igDviOMS1TeDpc51QF7vAHkt9drSjPmqEmbqStdFYPAGZj1j0RA4WCRoVl6jVixi/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-darwin-x64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.86.0.tgz", + "integrity": "sha512-5NLRtn0ZUDBkfpKOsgLGl9B34po4Qui8Nff/lXTO+YkxBQFX4GoMkYNk9EJqHwoLLzICsxIhNDMMDiPGz7Fdrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-arm": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.86.0.tgz", + "integrity": "sha512-b6wm0+Il+blJDleRXAqA6JISGMjRb0/thTEg4NWgmiJwUoZjDycj5FTbfYPnLXjCEIMGaYmW3patrJ3JMJcT3Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-arm64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.86.0.tgz", + "integrity": "sha512-50A+0rhahRDRkKkv+qS7GDAAkW1VPm2RCX4zY4JWydhV4NwMXr6HbkLnsJ2MGixCyibPh59iflMpNBhe7SEMNg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-ia32": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.86.0.tgz", + "integrity": "sha512-h0mr9w71TV3BRPk9JHr0flnRCznhkraY14gaj5T+t78vUFByOUMxp4hTr+JpZAR5mv0mIeoMwrQYwWJoqKI0mw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-arm": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.86.0.tgz", + "integrity": "sha512-KZU70jBMVykC9HzS+o2FhrJaprFLDk3LWXVPtBFxgLlkcQ/apCkUCh2WVNViLhI2U4NrMSnTvd4kDnC/0m8qIw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-arm64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.86.0.tgz", + "integrity": "sha512-5OZjiJIUyhvKJIGNDEjyRUWDe+W91hq4Bji27sy8gdEuDzPWLx4NzwpKwsBUALUfyW/J5dxgi0ZAQnI3HieyQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-ia32": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-ia32/-/sass-embedded-linux-musl-ia32-1.86.0.tgz", + "integrity": "sha512-vq9wJ7kaELrsNU6Ld6kvrIHxoIUWaD+5T6TQVj4SJP/iw1NjonyCDMQGGs6UgsIEzvaIwtlSlDbRewAq+4PchA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-riscv64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.86.0.tgz", + "integrity": "sha512-UZJPu4zKe3phEzoSVRh5jcSicBBPe+jEbVNALHSSz881iOAYnDQXHITGeQ4mM1/7e/LTyryHk6EPBoaLOv6JrA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-x64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.86.0.tgz", + "integrity": "sha512-8taAgbWMk4QHneJcouWmWZJlmKa2O03g4I/CFo4bfMPL87bibY90pAsSDd+C+t81g0+2aK0/lY/BoB0r3qXLiA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-riscv64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.86.0.tgz", + "integrity": "sha512-yREY6o2sLwiiA03MWHVpnUliLscz0flEmFW/wzxYZJDqg9eZteB3hUWgZD63eLm2PTZsYxDQpjAHpa48nnIEmA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-x64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.86.0.tgz", + "integrity": "sha512-sH0F8np9PTgTbFcJWxfr1NzPkL5ID2NcpMtZyKPTdnn9NkE/L2UwXSo6xOvY0Duc4Hg+58wSrDnj6KbvdeHCPg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-win32-arm64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.86.0.tgz", + "integrity": "sha512-4O1XVUxLTIjMOvrziYwEZgvFqC5sF6t0hTAPJ+h2uiAUZg9Joo0PvuEedXurjISgDBsb5W5DTL9hH9q1BbP4cQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-win32-ia32": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.86.0.tgz", + "integrity": "sha512-zuSP2axkGm4VaJWt38P464H+4424Swr9bzFNfbbznxe3Ue4RuqSBqwiLiYdg9Q1cecTQ2WGH7G7WO56KK7WLwg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-win32-x64": { + "version": "1.86.0", + "resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.86.0.tgz", + "integrity": "sha512-GVX0CHtukr3kjqfqretSlPiJzV7V4JxUjpRZV+yC9gUMTiDErilJh2Chw1r0+MYiYvumCDUSDlticmvJs7v0tA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/sync-child-process": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/sync-child-process/-/sync-child-process-1.0.2.tgz", + "integrity": "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "sync-message-port": "^1.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/sync-message-port": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sync-message-port/-/sync-message-port-1.1.3.tgz", + "integrity": "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/varint": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", + "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.2.tgz", + "integrity": "sha512-yW7PeMM+LkDzc7CgJuRLMW2Jz0FxMOsVJ8Lv3gpgW9WLcb9cTW+121UEr1hvmfR7w3SegR5ItvYyzVz1vxNJgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "postcss": "^8.5.3", + "rollup": "^4.30.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vscode-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz", + "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/vue": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz", + "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.13", + "@vue/compiler-sfc": "3.5.13", + "@vue/runtime-dom": "3.5.13", + "@vue/server-renderer": "3.5.13", + "@vue/shared": "3.5.13" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-tsc": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-2.2.8.tgz", + "integrity": "sha512-jBYKBNFADTN+L+MdesNX/TB3XuDSyaWynKMDgR+yCSln0GQ9Tfb7JS2lr46s2LiFUT1WsmfWsSvIElyxzOPqcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "~2.4.11", + "@vue/language-core": "2.2.8" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": ">=5.0.0" + } + } + } +} diff --git a/gh-pages/package.json b/gh-pages/package.json new file mode 100644 index 0000000..293a154 --- /dev/null +++ b/gh-pages/package.json @@ -0,0 +1,30 @@ +{ + "name": "gettext-plurals", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "lint:check": "prettier --check .", + "lint:fix": "prettier --write .", + "predev": "node ./bin/create-cldr-data.js", + "dev": "vite", + "prebuild": "node ./bin/create-cldr-data.js", + "build": "vue-tsc -b && vite build", + "preview": "vite preview" + }, + "dependencies": { + "@popperjs/core": "^2.11.8", + "bootstrap": "^5.3.3", + "vue": "^3.5.13" + }, + "devDependencies": { + "@types/bootstrap": "^5.2.10", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/tsconfig": "^0.7.0", + "prettier": "^3.5.3", + "sass-embedded": "^1.86.0", + "typescript": "~5.7.2", + "vite": "^6.2.0", + "vue-tsc": "^2.2.4" + } +} diff --git a/gh-pages/public/data/versions.json b/gh-pages/public/data/versions.json new file mode 100644 index 0000000..6151d1c --- /dev/null +++ b/gh-pages/public/data/versions.json @@ -0,0 +1,14 @@ +[ + "47", + "46.1", + "45", + "44.1", + "43.1", + "42", + "41", + "40", + "39", + "38.1", + "37", + "36.1" +] diff --git a/gh-pages/public/data/versions/36.1.json b/gh-pages/public/data/versions/36.1.json new file mode 100644 index 0000000..fcc08bf --- /dev/null +++ b/gh-pages/public/data/versions/36.1.json @@ -0,0 +1,2731 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fulah", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "many": "20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …", + "other": "0, 3~17, 101, 1001, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~10, 102~107, 1002, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 102, 1002, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Sakha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/36.1.min.json b/gh-pages/public/data/versions/36.1.min.json new file mode 100644 index 0000000..a650901 --- /dev/null +++ b/gh-pages/public/data/versions/36.1.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fulah","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))","plurals":4,"cases":["one","two","many","other"],"examples":{"one":"1","two":"2","many":"20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …","other":"0, 3~17, 101, 1001, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))","plurals":4,"cases":["one","few","many","other"],"examples":{"one":"1","few":"0, 2~10, 102~107, 1002, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 102, 1002, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Sakha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/37.json b/gh-pages/public/data/versions/37.json new file mode 100644 index 0000000..b3a3d58 --- /dev/null +++ b/gh-pages/public/data/versions/37.json @@ -0,0 +1,2759 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fulah", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "many": "20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …", + "other": "0, 3~17, 101, 1001, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~10, 102~107, 1002, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 102, 1002, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Sakha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/37.min.json b/gh-pages/public/data/versions/37.min.json new file mode 100644 index 0000000..b774627 --- /dev/null +++ b/gh-pages/public/data/versions/37.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fulah","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))","plurals":4,"cases":["one","two","many","other"],"examples":{"one":"1","two":"2","many":"20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …","other":"0, 3~17, 101, 1001, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))","plurals":4,"cases":["one","few","many","other"],"examples":{"one":"1","few":"0, 2~10, 102~107, 1002, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 102, 1002, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Sakha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/38.1.json b/gh-pages/public/data/versions/38.1.json new file mode 100644 index 0000000..1e473b1 --- /dev/null +++ b/gh-pages/public/data/versions/38.1.json @@ -0,0 +1,2787 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fulah", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1e6, 2e6, 3e6, 4e6, 5e6, 6e6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1e3, 2e3, 3e3, 4e3, 5e3, 6e3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "many": "20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …", + "other": "0, 3~17, 101, 1001, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~10, 102~107, 1002, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 102, 1002, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Sakha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/38.1.min.json b/gh-pages/public/data/versions/38.1.min.json new file mode 100644 index 0000000..6715975 --- /dev/null +++ b/gh-pages/public/data/versions/38.1.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fulah","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1e6, 2e6, 3e6, 4e6, 5e6, 6e6, …","other":"2~17, 100, 1000, 10000, 100000, 1e3, 2e3, 3e3, 4e3, 5e3, 6e3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))","plurals":4,"cases":["one","two","many","other"],"examples":{"one":"1","two":"2","many":"20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …","other":"0, 3~17, 101, 1001, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))","plurals":4,"cases":["one","few","many","other"],"examples":{"one":"1","few":"0, 2~10, 102~107, 1002, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 102, 1002, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Sakha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/39.json b/gh-pages/public/data/versions/39.json new file mode 100644 index 0000000..1ef0146 --- /dev/null +++ b/gh-pages/public/data/versions/39.json @@ -0,0 +1,2787 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fulah", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "many": "20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …", + "other": "0, 3~17, 101, 1001, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~10, 102~107, 1002, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 102, 1002, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Sakha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/39.min.json b/gh-pages/public/data/versions/39.min.json new file mode 100644 index 0000000..9a2be50 --- /dev/null +++ b/gh-pages/public/data/versions/39.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fulah","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))","plurals":4,"cases":["one","two","many","other"],"examples":{"one":"1","two":"2","many":"20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …","other":"0, 3~17, 101, 1001, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))","plurals":4,"cases":["one","few","many","other"],"examples":{"one":"1","few":"0, 2~10, 102~107, 1002, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 102, 1002, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Sakha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/40.json b/gh-pages/public/data/versions/40.json new file mode 100644 index 0000000..839b4d3 --- /dev/null +++ b/gh-pages/public/data/versions/40.json @@ -0,0 +1,2830 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fulah", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "many": "20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …", + "other": "0, 3~17, 101, 1001, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~10, 102~107, 1002, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 102, 1002, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Sakha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/40.min.json b/gh-pages/public/data/versions/40.min.json new file mode 100644 index 0000000..4f728c4 --- /dev/null +++ b/gh-pages/public/data/versions/40.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fulah","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))","plurals":4,"cases":["one","two","many","other"],"examples":{"one":"1","two":"2","many":"20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …","other":"0, 3~17, 101, 1001, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))","plurals":4,"cases":["one","few","many","other"],"examples":{"one":"1","few":"0, 2~10, 102~107, 1002, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 102, 1002, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Sakha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/41.json b/gh-pages/public/data/versions/41.json new file mode 100644 index 0000000..839b4d3 --- /dev/null +++ b/gh-pages/public/data/versions/41.json @@ -0,0 +1,2830 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fulah", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "many": "20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …", + "other": "0, 3~17, 101, 1001, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~10, 102~107, 1002, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 102, 1002, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Sakha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/41.min.json b/gh-pages/public/data/versions/41.min.json new file mode 100644 index 0000000..4f728c4 --- /dev/null +++ b/gh-pages/public/data/versions/41.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fulah","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3))","plurals":4,"cases":["one","two","many","other"],"examples":{"one":"1","two":"2","many":"20, 30, 40, 50, 60, 70, 80, 90, 100, 1000, 10000, 100000, 1000000, …","other":"0, 3~17, 101, 1001, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 10) ? 1 : ((n % 100 >= 11 && n % 100 <= 19) ? 2 : 3))","plurals":4,"cases":["one","few","many","other"],"examples":{"one":"1","few":"0, 2~10, 102~107, 1002, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 102, 1002, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Sakha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/42.json b/gh-pages/public/data/versions/42.json new file mode 100644 index 0000000..9efd354 --- /dev/null +++ b/gh-pages/public/data/versions/42.json @@ -0,0 +1,2847 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/42.min.json b/gh-pages/public/data/versions/42.min.json new file mode 100644 index 0000000..0295311 --- /dev/null +++ b/gh-pages/public/data/versions/42.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/43.1.json b/gh-pages/public/data/versions/43.1.json new file mode 100644 index 0000000..9efd354 --- /dev/null +++ b/gh-pages/public/data/versions/43.1.json @@ -0,0 +1,2847 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/43.1.min.json b/gh-pages/public/data/versions/43.1.min.json new file mode 100644 index 0000000..0295311 --- /dev/null +++ b/gh-pages/public/data/versions/43.1.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/44.1.json b/gh-pages/public/data/versions/44.1.json new file mode 100644 index 0000000..de1a696 --- /dev/null +++ b/gh-pages/public/data/versions/44.1.json @@ -0,0 +1,2862 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "blo": { + "name": "Anii", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/44.1.min.json b/gh-pages/public/data/versions/44.1.min.json new file mode 100644 index 0000000..cf247c8 --- /dev/null +++ b/gh-pages/public/data/versions/44.1.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"blo":{"name":"Anii","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/45.json b/gh-pages/public/data/versions/45.json new file mode 100644 index 0000000..de1a696 --- /dev/null +++ b/gh-pages/public/data/versions/45.json @@ -0,0 +1,2862 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "blo": { + "name": "Anii", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/45.min.json b/gh-pages/public/data/versions/45.min.json new file mode 100644 index 0000000..cf247c8 --- /dev/null +++ b/gh-pages/public/data/versions/45.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"blo":{"name":"Anii","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/46.1.json b/gh-pages/public/data/versions/46.1.json new file mode 100644 index 0000000..84a1402 --- /dev/null +++ b/gh-pages/public/data/versions/46.1.json @@ -0,0 +1,2892 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "blo": { + "name": "Anii", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "csw": { + "name": "Swampy Cree", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lld": { + "name": "Dolomitic Ladin", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/46.1.min.json b/gh-pages/public/data/versions/46.1.min.json new file mode 100644 index 0000000..acd6f0b --- /dev/null +++ b/gh-pages/public/data/versions/46.1.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"blo":{"name":"Anii","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"csw":{"name":"Swampy Cree","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lld":{"name":"Dolomitic Ladin","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/data/versions/47.json b/gh-pages/public/data/versions/47.json new file mode 100644 index 0000000..84a1402 --- /dev/null +++ b/gh-pages/public/data/versions/47.json @@ -0,0 +1,2892 @@ +{ + "af": { + "name": "Afrikaans", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ak": { + "name": "Akan", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "am": { + "name": "Amharic", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "an": { + "name": "Aragonese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ar": { + "name": "Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "ars": { + "name": "Najdi Arabic", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3~10, 103~110, 1003, …", + "many": "11~26, 111, 1011, …", + "other": "100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …" + } + }, + "as": { + "name": "Assamese", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "asa": { + "name": "Asu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ast": { + "name": "Asturian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "az": { + "name": "Azerbaijani", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bal": { + "name": "Baluchi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "be": { + "name": "Belarusian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bem": { + "name": "Bemba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bez": { + "name": "Bena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bg": { + "name": "Bulgarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bho": { + "name": "Bhojpuri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "blo": { + "name": "Anii", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bm": { + "name": "Bambara", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bn": { + "name": "Bangla", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bo": { + "name": "Tibetan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "br": { + "name": "Breton", + "formula": "(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 81, 101, 1001, …", + "two": "2, 22, 32, 42, 52, 62, 82, 102, 1002, …", + "few": "3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …", + "many": "1000000, …", + "other": "0, 5~8, 10~20, 100, 1000, 10000, 100000, …" + } + }, + "brx": { + "name": "Bodo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "bs": { + "name": "Bosnian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ca": { + "name": "Catalan", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ce": { + "name": "Chechen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ceb": { + "name": "Cebuano", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "cgg": { + "name": "Chiga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "chr": { + "name": "Cherokee", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ckb": { + "name": "Central Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cs": { + "name": "Czech", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "csw": { + "name": "Swampy Cree", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "cy": { + "name": "Welsh", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2", + "few": "3", + "many": "6", + "other": "4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "da": { + "name": "Danish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "de": { + "name": "German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "doi": { + "name": "Dogri", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dsb": { + "name": "Lower Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dv": { + "name": "Divehi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "dz": { + "name": "Dzongkha", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ee": { + "name": "Ewe", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "el": { + "name": "Greek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "en": { + "name": "English", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eo": { + "name": "Esperanto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "es": { + "name": "Spanish", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "et": { + "name": "Estonian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "eu": { + "name": "Basque", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fa": { + "name": "Persian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ff": { + "name": "Fula", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fi": { + "name": "Finnish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fil": { + "name": "Filipino", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "fo": { + "name": "Faroese", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fr": { + "name": "French", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "fur": { + "name": "Friulian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "fy": { + "name": "Western Frisian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ga": { + "name": "Irish", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "3~6", + "many": "7~10", + "other": "0, 11~25, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gd": { + "name": "Scottish Gaelic", + "formula": "(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11", + "two": "2, 12", + "few": "3~10, 13~19", + "other": "0, 20~34, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gl": { + "name": "Galician", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gsw": { + "name": "Swiss German", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gu": { + "name": "Gujarati", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "guw": { + "name": "Gun", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "gv": { + "name": "Manx", + "formula": "(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …", + "two": "2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …", + "few": "0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …", + "other": "3~10, 13~19, 23, 103, 1003, …" + } + }, + "ha": { + "name": "Hausa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "haw": { + "name": "Hawaiian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "he": { + "name": "Hebrew", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hi": { + "name": "Hindi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hnj": { + "name": "Hmong Njua", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hr": { + "name": "Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hsb": { + "name": "Upper Sorbian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hu": { + "name": "Hungarian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "hy": { + "name": "Armenian", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ia": { + "name": "Interlingua", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "id": { + "name": "Indonesian", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ig": { + "name": "Igbo", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ii": { + "name": "Sichuan Yi", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "io": { + "name": "Ido", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "is": { + "name": "Icelandic", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "it": { + "name": "Italian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "iu": { + "name": "Inuktitut", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ja": { + "name": "Japanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jbo": { + "name": "Lojban", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jgo": { + "name": "Ngomba", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jmc": { + "name": "Machame", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "jv": { + "name": "Javanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ka": { + "name": "Georgian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kab": { + "name": "Kabyle", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kaj": { + "name": "Jju", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kcg": { + "name": "Tyap", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kde": { + "name": "Makonde", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kea": { + "name": "Kabuverdianu", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kk": { + "name": "Kazakh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kkj": { + "name": "Kako", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kl": { + "name": "Kalaallisut", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "km": { + "name": "Khmer", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kn": { + "name": "Kannada", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ko": { + "name": "Korean", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ks": { + "name": "Kashmiri", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksb": { + "name": "Shambala", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ksh": { + "name": "Colognian", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ku": { + "name": "Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "kw": { + "name": "Cornish", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))", + "plurals": 6, + "cases": [ + "zero", + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "two": "2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …", + "few": "3, 23, 43, 63, 83, 103, 123, 143, 1003, …", + "many": "21, 41, 61, 81, 101, 121, 141, 161, 1001, …", + "other": "4~19, 100, 1004, 1000000, …" + } + }, + "ky": { + "name": "Kyrgyz", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lag": { + "name": "Langi", + "formula": "(n == 0) ? 0 : ((n == 1) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0", + "one": "1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lb": { + "name": "Luxembourgish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lg": { + "name": "Ganda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lij": { + "name": "Ligurian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lkt": { + "name": "Lakota", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lld": { + "name": "Dolomitic Ladin", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "ln": { + "name": "Lingala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lo": { + "name": "Lao", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lt": { + "name": "Lithuanian", + "formula": "(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~9, 22~29, 102, 1002, …", + "other": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "lv": { + "name": "Latvian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "mas": { + "name": "Masai", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mg": { + "name": "Malagasy", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mgo": { + "name": "Metaʼ", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mk": { + "name": "Macedonian", + "formula": "n % 10 != 1 || n % 100 == 11", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ml": { + "name": "Malayalam", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mn": { + "name": "Mongolian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mr": { + "name": "Marathi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ms": { + "name": "Malay", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "mt": { + "name": "Maltese", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))", + "plurals": 5, + "cases": [ + "one", + "two", + "few", + "many", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "few": "0, 3~10, 103~109, 1003, …", + "many": "11~19, 111~117, 1011, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "my": { + "name": "Burmese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nah": { + "name": "Nahuatl", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "naq": { + "name": "Nama", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nb": { + "name": "Norwegian Bokmål", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nd": { + "name": "North Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ne": { + "name": "Nepali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nl": { + "name": "Dutch", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nn": { + "name": "Norwegian Nynorsk", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nnh": { + "name": "Ngiemboon", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "no": { + "name": "Norwegian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nqo": { + "name": "N’Ko", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nr": { + "name": "South Ndebele", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nso": { + "name": "Northern Sotho", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ny": { + "name": "Nyanja", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "nyn": { + "name": "Nyankole", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "om": { + "name": "Oromo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "or": { + "name": "Odia", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "os": { + "name": "Ossetic", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "osa": { + "name": "Osage", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pa": { + "name": "Punjabi", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pap": { + "name": "Papiamento", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pcm": { + "name": "Nigerian Pidgin", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pl": { + "name": "Polish", + "formula": "(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "prg": { + "name": "Prussian", + "formula": "(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)", + "plurals": 3, + "cases": [ + "zero", + "one", + "other" + ], + "examples": { + "zero": "0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …", + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "other": "2~9, 22~29, 102, 1002, …" + } + }, + "ps": { + "name": "Pashto", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "pt": { + "name": "Portuguese", + "formula": "(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "0, 1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "pt_PT": { + "name": "European Portuguese", + "territory": "Portugal", + "baseLanguage": "Portuguese", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "rm": { + "name": "Romansh", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ro": { + "name": "Romanian", + "formula": "(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "0, 2~16, 101, 1001, …", + "other": "20~35, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rof": { + "name": "Rombo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ru": { + "name": "Russian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "rwk": { + "name": "Rwa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sah": { + "name": "Yakut", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "saq": { + "name": "Samburu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sat": { + "name": "Santali", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sc": { + "name": "Sardinian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "scn": { + "name": "Sicilian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "sd": { + "name": "Sindhi", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sdh": { + "name": "Southern Kurdish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "se": { + "name": "Northern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "seh": { + "name": "Sena", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ses": { + "name": "Koyraboro Senni", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sg": { + "name": "Sango", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sh": { + "name": "Serbo-Croatian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "shi": { + "name": "Tachelhit", + "formula": "(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "0, 1", + "few": "2~10", + "other": "11~26, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "si": { + "name": "Sinhala", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sk": { + "name": "Slovak", + "formula": "(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1", + "few": "2~4", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sl": { + "name": "Slovenian", + "formula": "(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))", + "plurals": 4, + "cases": [ + "one", + "two", + "few", + "other" + ], + "examples": { + "one": "1, 101, 201, 301, 401, 501, 601, 701, 1001, …", + "two": "2, 102, 202, 302, 402, 502, 602, 702, 1002, …", + "few": "3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sma": { + "name": "Southern Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smi": { + "name": "Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smj": { + "name": "Lule Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "smn": { + "name": "Inari Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sms": { + "name": "Skolt Sami", + "formula": "(n == 1) ? 0 : ((n == 2) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "two", + "other" + ], + "examples": { + "one": "1", + "two": "2", + "other": "0, 3~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sn": { + "name": "Shona", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "so": { + "name": "Somali", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sq": { + "name": "Albanian", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sr": { + "name": "Serbian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ss": { + "name": "Swati", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ssy": { + "name": "Saho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "st": { + "name": "Southern Sotho", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "su": { + "name": "Sundanese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sv": { + "name": "Swedish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "sw": { + "name": "Swahili", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "syr": { + "name": "Syriac", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ta": { + "name": "Tamil", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "te": { + "name": "Telugu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "teo": { + "name": "Teso", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "th": { + "name": "Thai", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ti": { + "name": "Tigrinya", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tig": { + "name": "Tigre", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tk": { + "name": "Turkmen", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tl": { + "name": "Tagalog", + "formula": "n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …", + "other": "4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …" + } + }, + "tn": { + "name": "Tswana", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "to": { + "name": "Tongan", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tpi": { + "name": "Tok Pisin", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tr": { + "name": "Turkish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ts": { + "name": "Tsonga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "tzm": { + "name": "Central Atlas Tamazight", + "formula": "n >= 2 && (n < 11 || n > 99)", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1, 11~24", + "other": "2~10, 100~106, 1000, 10000, 100000, 1000000, …" + } + }, + "ug": { + "name": "Uyghur", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uk": { + "name": "Ukrainian", + "formula": "(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "few", + "other" + ], + "examples": { + "one": "1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …", + "few": "2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …", + "other": "0, 5~19, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ur": { + "name": "Urdu", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "uz": { + "name": "Uzbek", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "ve": { + "name": "Venda", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vec": { + "name": "Venetian", + "formula": "(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)", + "plurals": 3, + "cases": [ + "one", + "many", + "other" + ], + "examples": { + "one": "1", + "many": "1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …" + } + }, + "vi": { + "name": "Vietnamese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vo": { + "name": "Volapük", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "vun": { + "name": "Vunjo", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wa": { + "name": "Walloon", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wae": { + "name": "Walser", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "wo": { + "name": "Wolof", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xh": { + "name": "Xhosa", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "xog": { + "name": "Soga", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yi": { + "name": "Yiddish", + "formula": "n != 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "1", + "other": "0, 2~16, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yo": { + "name": "Yoruba", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "yue": { + "name": "Cantonese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zh": { + "name": "Chinese", + "formula": "0", + "plurals": 1, + "cases": [ + "other" + ], + "examples": { + "other": "0~15, 100, 1000, 10000, 100000, 1000000, …" + } + }, + "zu": { + "name": "Zulu", + "formula": "n > 1", + "plurals": 2, + "cases": [ + "one", + "other" + ], + "examples": { + "one": "0, 1", + "other": "2~17, 100, 1000, 10000, 100000, 1000000, …" + } + } +} \ No newline at end of file diff --git a/gh-pages/public/data/versions/47.min.json b/gh-pages/public/data/versions/47.min.json new file mode 100644 index 0000000..acd6f0b --- /dev/null +++ b/gh-pages/public/data/versions/47.min.json @@ -0,0 +1 @@ +{"af":{"name":"Afrikaans","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ak":{"name":"Akan","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"am":{"name":"Amharic","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"an":{"name":"Aragonese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ar":{"name":"Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"ars":{"name":"Najdi Arabic","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3~10, 103~110, 1003, …","many":"11~26, 111, 1011, …","other":"100~102, 200~202, 300~302, 400~402, 500~502, 600, 1000, 10000, 100000, 1000000, …"}},"as":{"name":"Assamese","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"asa":{"name":"Asu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ast":{"name":"Asturian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"az":{"name":"Azerbaijani","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bal":{"name":"Baluchi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"be":{"name":"Belarusian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"bem":{"name":"Bemba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bez":{"name":"Bena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bg":{"name":"Bulgarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bho":{"name":"Bhojpuri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"blo":{"name":"Anii","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bm":{"name":"Bambara","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"bn":{"name":"Bangla","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"bo":{"name":"Tibetan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"br":{"name":"Breton","formula":"(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 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) ? 2 : ((n != 0 && n % 1000000 == 0) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 81, 101, 1001, …","two":"2, 22, 32, 42, 52, 62, 82, 102, 1002, …","few":"3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …","many":"1000000, …","other":"0, 5~8, 10~20, 100, 1000, 10000, 100000, …"}},"brx":{"name":"Bodo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"bs":{"name":"Bosnian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ca":{"name":"Catalan","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ce":{"name":"Chechen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ceb":{"name":"Cebuano","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"cgg":{"name":"Chiga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"chr":{"name":"Cherokee","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ckb":{"name":"Central Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"cs":{"name":"Czech","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"csw":{"name":"Swampy Cree","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"cy":{"name":"Welsh","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2","few":"3","many":"6","other":"4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …"}},"da":{"name":"Danish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"de":{"name":"German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"doi":{"name":"Dogri","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"dsb":{"name":"Lower Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"dv":{"name":"Divehi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"dz":{"name":"Dzongkha","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ee":{"name":"Ewe","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"el":{"name":"Greek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"en":{"name":"English","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eo":{"name":"Esperanto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"es":{"name":"Spanish","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"et":{"name":"Estonian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"eu":{"name":"Basque","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fa":{"name":"Persian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ff":{"name":"Fula","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"fi":{"name":"Finnish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fil":{"name":"Filipino","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"fo":{"name":"Faroese","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fr":{"name":"French","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"fur":{"name":"Friulian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"fy":{"name":"Western Frisian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ga":{"name":"Irish","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n >= 3 && n <= 6) ? 2 : ((n >= 7 && n <= 10) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"3~6","many":"7~10","other":"0, 11~25, 100, 1000, 10000, 100000, 1000000, …"}},"gd":{"name":"Scottish Gaelic","formula":"(n == 1 || n == 11) ? 0 : ((n == 2 || n == 12) ? 1 : ((n >= 3 && n <= 10 || n >= 13 && n <= 19) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11","two":"2, 12","few":"3~10, 13~19","other":"0, 20~34, 100, 1000, 10000, 100000, 1000000, …"}},"gl":{"name":"Galician","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gsw":{"name":"Swiss German","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"gu":{"name":"Gujarati","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"guw":{"name":"Gun","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"gv":{"name":"Manx","formula":"(n % 10 == 1) ? 0 : ((n % 10 == 2) ? 1 : ((n % 100 == 0 || n % 100 == 20 || n % 100 == 40 || n % 100 == 60 || n % 100 == 80) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 11, 21, 31, 41, 51, 61, 71, 101, 1001, …","two":"2, 12, 22, 32, 42, 52, 62, 72, 102, 1002, …","few":"0, 20, 40, 60, 80, 100, 120, 140, 1000, 10000, 100000, 1000000, …","other":"3~10, 13~19, 23, 103, 1003, …"}},"ha":{"name":"Hausa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"haw":{"name":"Hawaiian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"he":{"name":"Hebrew","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"hi":{"name":"Hindi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"hnj":{"name":"Hmong Njua","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"hr":{"name":"Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hsb":{"name":"Upper Sorbian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"hu":{"name":"Hungarian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"hy":{"name":"Armenian","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ia":{"name":"Interlingua","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"id":{"name":"Indonesian","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ig":{"name":"Igbo","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ii":{"name":"Sichuan Yi","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"io":{"name":"Ido","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"is":{"name":"Icelandic","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"it":{"name":"Italian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"iu":{"name":"Inuktitut","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"ja":{"name":"Japanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jbo":{"name":"Lojban","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"jgo":{"name":"Ngomba","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jmc":{"name":"Machame","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"jv":{"name":"Javanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ka":{"name":"Georgian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kab":{"name":"Kabyle","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"kaj":{"name":"Jju","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kcg":{"name":"Tyap","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kde":{"name":"Makonde","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kea":{"name":"Kabuverdianu","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kk":{"name":"Kazakh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kkj":{"name":"Kako","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kl":{"name":"Kalaallisut","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"km":{"name":"Khmer","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"kn":{"name":"Kannada","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ko":{"name":"Korean","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ks":{"name":"Kashmiri","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksb":{"name":"Shambala","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ksh":{"name":"Colognian","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ku":{"name":"Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"kw":{"name":"Cornish","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : (((n % 100 == 2 || n % 100 == 22 || n % 100 == 42 || n % 100 == 62 || n % 100 == 82) || n % 1000 == 0 && (n % 100000 >= 1000 && n % 100000 <= 20000 || n % 100000 == 40000 || n % 100000 == 60000 || n % 100000 == 80000) || n != 0 && n % 1000000 == 100000) ? 2 : ((n % 100 == 3 || n % 100 == 23 || n % 100 == 43 || n % 100 == 63 || n % 100 == 83) ? 3 : ((n != 1 && (n % 100 == 1 || n % 100 == 21 || n % 100 == 41 || n % 100 == 61 || n % 100 == 81)) ? 4 : 5))))","plurals":6,"cases":["zero","one","two","few","many","other"],"examples":{"zero":"0","one":"1","two":"2, 22, 42, 62, 82, 102, 122, 142, 1000, 10000, 100000, …","few":"3, 23, 43, 63, 83, 103, 123, 143, 1003, …","many":"21, 41, 61, 81, 101, 121, 141, 161, 1001, …","other":"4~19, 100, 1004, 1000000, …"}},"ky":{"name":"Kyrgyz","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lag":{"name":"Langi","formula":"(n == 0) ? 0 : ((n == 1) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0","one":"1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lb":{"name":"Luxembourgish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lg":{"name":"Ganda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lij":{"name":"Ligurian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"lkt":{"name":"Lakota","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lld":{"name":"Dolomitic Ladin","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"ln":{"name":"Lingala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"lo":{"name":"Lao","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"lt":{"name":"Lithuanian","formula":"(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~9, 22~29, 102, 1002, …","other":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …"}},"lv":{"name":"Latvian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"mas":{"name":"Masai","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mg":{"name":"Malagasy","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"mgo":{"name":"Metaʼ","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mk":{"name":"Macedonian","formula":"n % 10 != 1 || n % 100 == 11","plurals":2,"cases":["one","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ml":{"name":"Malayalam","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mn":{"name":"Mongolian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"mr":{"name":"Marathi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ms":{"name":"Malay","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"mt":{"name":"Maltese","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : ((n == 0 || n % 100 >= 3 && n % 100 <= 10) ? 2 : ((n % 100 >= 11 && n % 100 <= 19) ? 3 : 4)))","plurals":5,"cases":["one","two","few","many","other"],"examples":{"one":"1","two":"2","few":"0, 3~10, 103~109, 1003, …","many":"11~19, 111~117, 1011, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"my":{"name":"Burmese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nah":{"name":"Nahuatl","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"naq":{"name":"Nama","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"nb":{"name":"Norwegian Bokmål","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nd":{"name":"North Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ne":{"name":"Nepali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nl":{"name":"Dutch","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nn":{"name":"Norwegian Nynorsk","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nnh":{"name":"Ngiemboon","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"no":{"name":"Norwegian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nqo":{"name":"N’Ko","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"nr":{"name":"South Ndebele","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nso":{"name":"Northern Sotho","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"ny":{"name":"Nyanja","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"nyn":{"name":"Nyankole","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"om":{"name":"Oromo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"or":{"name":"Odia","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"os":{"name":"Ossetic","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"osa":{"name":"Osage","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"pa":{"name":"Punjabi","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pap":{"name":"Papiamento","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pcm":{"name":"Nigerian Pidgin","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"pl":{"name":"Polish","formula":"(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"prg":{"name":"Prussian","formula":"(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2)","plurals":3,"cases":["zero","one","other"],"examples":{"zero":"0, 10~20, 30, 40, 50, 60, 100, 1000, 10000, 100000, 1000000, …","one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","other":"2~9, 22~29, 102, 1002, …"}},"ps":{"name":"Pashto","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"pt":{"name":"Portuguese","formula":"(n == 0 || n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"0, 1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"pt_PT":{"name":"European Portuguese","territory":"Portugal","baseLanguage":"Portuguese","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"rm":{"name":"Romansh","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ro":{"name":"Romanian","formula":"(n == 1) ? 0 : ((n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"0, 2~16, 101, 1001, …","other":"20~35, 100, 1000, 10000, 100000, 1000000, …"}},"rof":{"name":"Rombo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ru":{"name":"Russian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"rwk":{"name":"Rwa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sah":{"name":"Yakut","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"saq":{"name":"Samburu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sat":{"name":"Santali","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sc":{"name":"Sardinian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"scn":{"name":"Sicilian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"sd":{"name":"Sindhi","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sdh":{"name":"Southern Kurdish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"se":{"name":"Northern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"seh":{"name":"Sena","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ses":{"name":"Koyraboro Senni","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sg":{"name":"Sango","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sh":{"name":"Serbo-Croatian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"shi":{"name":"Tachelhit","formula":"(n == 0 || n == 1) ? 0 : ((n >= 2 && n <= 10) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"0, 1","few":"2~10","other":"11~26, 100, 1000, 10000, 100000, 1000000, …"}},"si":{"name":"Sinhala","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"sk":{"name":"Slovak","formula":"(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1","few":"2~4","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sl":{"name":"Slovenian","formula":"(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3))","plurals":4,"cases":["one","two","few","other"],"examples":{"one":"1, 101, 201, 301, 401, 501, 601, 701, 1001, …","two":"2, 102, 202, 302, 402, 502, 602, 702, 1002, …","few":"3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603, 604, 703, 704, 1003, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"sma":{"name":"Southern Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smi":{"name":"Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smj":{"name":"Lule Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"smn":{"name":"Inari Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sms":{"name":"Skolt Sami","formula":"(n == 1) ? 0 : ((n == 2) ? 1 : 2)","plurals":3,"cases":["one","two","other"],"examples":{"one":"1","two":"2","other":"0, 3~17, 100, 1000, 10000, 100000, 1000000, …"}},"sn":{"name":"Shona","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"so":{"name":"Somali","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sq":{"name":"Albanian","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sr":{"name":"Serbian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ss":{"name":"Swati","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ssy":{"name":"Saho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"st":{"name":"Southern Sotho","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"su":{"name":"Sundanese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"sv":{"name":"Swedish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"sw":{"name":"Swahili","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"syr":{"name":"Syriac","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ta":{"name":"Tamil","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"te":{"name":"Telugu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"teo":{"name":"Teso","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"th":{"name":"Thai","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"ti":{"name":"Tigrinya","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"tig":{"name":"Tigre","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tk":{"name":"Turkmen","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tl":{"name":"Tagalog","formula":"n != 1 && n != 2 && n != 3 && (n % 10 == 4 || n % 10 == 6 || n % 10 == 9)","plurals":2,"cases":["one","other"],"examples":{"one":"0~3, 5, 7, 8, 10~13, 15, 17, 18, 20, 21, 100, 1000, 10000, 100000, 1000000, …","other":"4, 6, 9, 14, 16, 19, 24, 26, 104, 1004, …"}},"tn":{"name":"Tswana","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"to":{"name":"Tongan","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tpi":{"name":"Tok Pisin","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"tr":{"name":"Turkish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ts":{"name":"Tsonga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"tzm":{"name":"Central Atlas Tamazight","formula":"n >= 2 && (n < 11 || n > 99)","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1, 11~24","other":"2~10, 100~106, 1000, 10000, 100000, 1000000, …"}},"ug":{"name":"Uyghur","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uk":{"name":"Ukrainian","formula":"(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2)","plurals":3,"cases":["one","few","other"],"examples":{"one":"1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …","few":"2~4, 22~24, 32~34, 42~44, 52~54, 62, 102, 1002, …","other":"0, 5~19, 100, 1000, 10000, 100000, 1000000, …"}},"ur":{"name":"Urdu","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"uz":{"name":"Uzbek","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"ve":{"name":"Venda","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vec":{"name":"Venetian","formula":"(n == 1) ? 0 : ((n != 0 && n % 1000000 == 0) ? 1 : 2)","plurals":3,"cases":["one","many","other"],"examples":{"one":"1","many":"1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …","other":"0, 2~16, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3, 6c3, …"}},"vi":{"name":"Vietnamese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"vo":{"name":"Volapük","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"vun":{"name":"Vunjo","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wa":{"name":"Walloon","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}},"wae":{"name":"Walser","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"wo":{"name":"Wolof","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"xh":{"name":"Xhosa","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"xog":{"name":"Soga","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yi":{"name":"Yiddish","formula":"n != 1","plurals":2,"cases":["one","other"],"examples":{"one":"1","other":"0, 2~16, 100, 1000, 10000, 100000, 1000000, …"}},"yo":{"name":"Yoruba","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"yue":{"name":"Cantonese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zh":{"name":"Chinese","formula":"0","plurals":1,"cases":["other"],"examples":{"other":"0~15, 100, 1000, 10000, 100000, 1000000, …"}},"zu":{"name":"Zulu","formula":"n > 1","plurals":2,"cases":["one","other"],"examples":{"one":"0, 1","other":"2~17, 100, 1000, 10000, 100000, 1000000, …"}}} \ No newline at end of file diff --git a/gh-pages/public/vite.svg b/gh-pages/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/gh-pages/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/gh-pages/src/App.vue b/gh-pages/src/App.vue new file mode 100644 index 0000000..4edf214 --- /dev/null +++ b/gh-pages/src/App.vue @@ -0,0 +1,159 @@ + + + diff --git a/gh-pages/src/UrlService.ts b/gh-pages/src/UrlService.ts new file mode 100644 index 0000000..20ad5c0 --- /dev/null +++ b/gh-pages/src/UrlService.ts @@ -0,0 +1,30 @@ +let skipListenHashChange: number = 0; + +export function getVersionFromUrl(): string { + return window.location.hash?.replace(/^#/, '') || ''; +} + +export function setVersionInUrl(version: string): void { + skipListenHashChange++; + try { + if (version === '') { + history.replaceState( + null, + '', + window.location.pathname + window.location.search, + ); + } else { + history.replaceState(null, '', `#${version}`); + } + } finally { + skipListenHashChange--; + } +} + +export function onVersionChanged(callback: (version: string) => void): void { + window.addEventListener('hashchange', () => { + if (skipListenHashChange === 0) { + callback(getVersionFromUrl()); + } + }); +} diff --git a/gh-pages/src/Version.ts b/gh-pages/src/Version.ts new file mode 100644 index 0000000..116be5c --- /dev/null +++ b/gh-pages/src/Version.ts @@ -0,0 +1,34 @@ +type PluralCases = 'zero' | 'one' | 'two' | 'few' | 'many' | 'other'; + +export interface LanguageData { + name: string; + formula: string; + plurals: number; + cases: PluralCases[]; + examples: Record; +} +export type Version = Record & {_version: string}; + +let availableVersions: string[] | undefined; + +let loadedVersions: Record = {}; + +export async function getAvailableVersions(): Promise { + if (availableVersions !== undefined) { + return availableVersions; + } + const response = await fetch('data/versions.json'); + availableVersions = await response.json(); + return availableVersions; +} + +export async function getVersion(version: string): Promise { + if (loadedVersions[version] !== undefined) { + return loadedVersions[version]; + } + const response = await fetch(`data/versions/${version}.min.json`); + const data = await response.json(); + data._version = version; + loadedVersions[version] = data; + return (loadedVersions[version] = data); +} diff --git a/gh-pages/src/assets/favicon.svg b/gh-pages/src/assets/favicon.svg new file mode 100644 index 0000000..e6ca0fd --- /dev/null +++ b/gh-pages/src/assets/favicon.svg @@ -0,0 +1,4 @@ + + + A 文 + diff --git a/gh-pages/src/env.d.ts b/gh-pages/src/env.d.ts new file mode 100644 index 0000000..cdcd3ff --- /dev/null +++ b/gh-pages/src/env.d.ts @@ -0,0 +1 @@ +declare module 'boostrap'; diff --git a/gh-pages/src/main.ts b/gh-pages/src/main.ts new file mode 100644 index 0000000..6f8314b --- /dev/null +++ b/gh-pages/src/main.ts @@ -0,0 +1,5 @@ +import {createApp} from 'vue'; +import './style.scss'; +import App from './App.vue'; + +createApp(App).mount('#app'); diff --git a/gh-pages/src/style.scss b/gh-pages/src/style.scss new file mode 100644 index 0000000..3316d95 --- /dev/null +++ b/gh-pages/src/style.scss @@ -0,0 +1 @@ +@use 'bootstrap/scss/bootstrap'; diff --git a/gh-pages/src/vite-env.d.ts b/gh-pages/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/gh-pages/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/gh-pages/tsconfig.app.json b/gh-pages/tsconfig.app.json new file mode 100644 index 0000000..7fb078c --- /dev/null +++ b/gh-pages/tsconfig.app.json @@ -0,0 +1,14 @@ +{ + "extends": "@vue/tsconfig/tsconfig.dom.json", + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"] +} diff --git a/gh-pages/tsconfig.json b/gh-pages/tsconfig.json new file mode 100644 index 0000000..b3de6fd --- /dev/null +++ b/gh-pages/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + {"path": "./tsconfig.app.json"}, + {"path": "./tsconfig.node.json"} + ] +} diff --git a/gh-pages/tsconfig.node.json b/gh-pages/tsconfig.node.json new file mode 100644 index 0000000..db0becc --- /dev/null +++ b/gh-pages/tsconfig.node.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2022", + "lib": ["ES2023"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/gh-pages/vite.config.ts b/gh-pages/vite.config.ts new file mode 100644 index 0000000..1a0f721 --- /dev/null +++ b/gh-pages/vite.config.ts @@ -0,0 +1,18 @@ +import {defineConfig} from 'vite'; +import vue from '@vitejs/plugin-vue'; + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [vue()], + css: { + preprocessorOptions: { + scss: { + quietDeps: true, + }, + }, + }, + build: { + emptyOutDir: true, + }, + base: './', +}); diff --git a/src/Exporter/Docs.php b/src/Exporter/Docs.php deleted file mode 100644 index c4c5d4c..0000000 --- a/src/Exporter/Docs.php +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - gettext plural rules - built from CLDR - - - - - - -
- -EOT; - $result .= static::buildTable($languages, true); - $result .= <<<'EOT' - -
- - - - -EOT; - - return $result; - } -}