diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b03aff9ab73..05078ffa45c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ // README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node { "name": "FakerJs", - "image": "mcr.microsoft.com/devcontainers/typescript-node:0-18", + "image": "mcr.microsoft.com/devcontainers/typescript-node:20@sha256:173debabac3a927225aac3fa451dfd1baa780d5fb8f8e513b1efc615e3221225", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 0f4d21c0d57..ac01c8c2c28 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -192,6 +192,7 @@ module.exports = defineConfig({ 'vitest/expect-expect': 'off', 'vitest/prefer-each': 'error', + 'vitest/prefer-to-have-length': 'error', 'vitest/valid-expect': ['error', { maxArgs: 2 }], }, }, diff --git a/.github/renovate.json5 b/.github/renovate.json5 index ac590676e1b..2c1b82f4561 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -58,6 +58,7 @@ "matchPackageNames": ["@algolia/client-search", "ts-morph", "vitepress"] } ], + "stopUpdatingLabel": "s: on hold", "vulnerabilityAlerts": { "labels": ["c: security", "p: 2-high"], "assignees": ["team:maintainers"] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7498419253e..fe0ad5cea5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,13 +22,13 @@ jobs: name: 'Build & Unit Test: node-${{ matrix.node_version }}, ${{ matrix.os }}' steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 with: # Required for docs/versions tests fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Set node version to ${{ matrix.node_version }} uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -70,13 +70,13 @@ jobs: run: date - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 with: # Required for docs/versions tests fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Set node version to ${{ matrix.node_version }} uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -104,10 +104,10 @@ jobs: name: 'E2E Doc Test: node-20, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Install deps run: pnpm install @@ -125,12 +125,12 @@ jobs: name: 'Lint: node-20, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Set node version to 20 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -155,12 +155,12 @@ jobs: name: 'TS-Check: node-20, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Set node version to 20 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -185,12 +185,12 @@ jobs: name: 'Codecov: node-20, ubuntu-latest' steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Set node version to 20 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 @@ -210,7 +210,7 @@ jobs: run: pnpm vitest run --coverage - name: Upload coverage to Codecov - uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0 + uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4.3.1 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 006918667dc..1b36e8e7502 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -15,12 +15,12 @@ jobs: pull-requests: write steps: - name: Checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 with: fetch-depth: 0 - name: Install pnpm - uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 + uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 - name: Set node version to 20 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index da58a945f85..edd8f891386 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -20,7 +20,7 @@ jobs: name: Semantic Pull Request steps: - name: Validate PR title - uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0 + uses: amannn/action-semantic-pull-request@cfb60706e18bc85e8aec535e3c577abe8f70378e # v5.5.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.versionrc.json b/.versionrc.json index d1865ecf423..186e98aac7f 100644 --- a/.versionrc.json +++ b/.versionrc.json @@ -1,4 +1,7 @@ { + "skip": { + "tag": true + }, "types": [ { "type": "feat", "scope": "locale", "section": "New Locales" }, { "type": "feat", "section": "Features" }, diff --git a/CHANGELOG.md b/CHANGELOG.md index bb50c9f1ba5..d5905e24f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. ## [9.0.0-alpha.0](https://github.com/faker-js/faker/compare/v8.4.1...v9.0.0-alpha.0) (2024-04-12) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index e92efc8e073..b226f441971 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -4,8 +4,8 @@ import { apiPages } from './api-pages'; import { algoliaIndex, currentVersion, - oldVersions, versionBannerInfix, + versionLinks, } from './versions'; type SidebarItem = DefaultTheme.SidebarItem; @@ -14,25 +14,44 @@ const description = 'Generate massive amounts of fake (but reasonable) data for testing and development.'; const image = 'https://fakerjs.dev/social-image.png'; -function extendSideNav(current: SidebarItem): SidebarItem[] { +function getSideBarWithExpandedEntry(entryToExpand: string): SidebarItem[] { const links: SidebarItem[] = [ { text: 'Guide', items: [ { - text: 'Usage Guide', + text: 'Getting Started', link: '/guide/', }, + { + text: 'Usage', + link: '/guide/usage', + }, + { + text: 'Localization', + link: '/guide/localization', + }, + { + text: 'Frameworks', + link: '/guide/frameworks', + }, + { + text: 'Randomizer', + link: '/guide/randomizer', + }, + { + text: 'Unique Values', + link: '/guide/unique', + }, + { + text: 'Upgrading to v9', + link: '/guide/upgrading', + }, ], }, { text: 'API', - items: [ - { - text: 'API Reference', - link: '/api/', - }, - ], + items: apiPages, }, { text: 'About', @@ -40,10 +59,26 @@ function extendSideNav(current: SidebarItem): SidebarItem[] { { text: 'Announcements', link: '/about/announcements', + items: [ + { text: '2022-09-08', link: '/about/announcements/2022-09-08' }, + { text: '2022-01-14', link: '/about/announcements/2022-01-14' }, + ], }, { text: 'Roadmap', link: '/about/roadmap/', + items: [ + { + text: 'v9 - Tree-Shakeable Module-Functions', + link: '/about/roadmap/v9', + }, + { text: 'v8 - Make Faker Handier', link: '/about/roadmap/v8' }, + { + text: 'v7 - Cleanup & Improvements', + link: '/about/roadmap/v7', + }, + { text: 'v6 - Continue Faker', link: '/about/roadmap/v6' }, + ], }, { text: 'Team', @@ -56,7 +91,9 @@ function extendSideNav(current: SidebarItem): SidebarItem[] { ], }, ]; - links[links.findIndex((group) => group.text === current.text)] = current; + for (const entry of links) { + entry.collapsed = entry.text !== entryToExpand; + } return links; } @@ -188,7 +225,7 @@ const config: UserConfig = { text: 'Release Notes', link: 'https://github.com/faker-js/faker/releases', }, - ...oldVersions.map(({ version, link }) => ({ + ...versionLinks.map(({ version, link }) => ({ text: version, link, })), @@ -197,81 +234,9 @@ const config: UserConfig = { ], sidebar: { - '/guide/': extendSideNav({ - text: 'Guide', - items: [ - { - text: 'Getting Started', - link: '/guide/', - }, - { - text: 'Usage', - link: '/guide/usage', - }, - { - text: 'Localization', - link: '/guide/localization', - }, - { - text: 'Frameworks', - link: '/guide/frameworks', - }, - { - text: 'Randomizer', - link: '/guide/randomizer', - }, - { - text: 'Unique Values', - link: '/guide/unique', - }, - { - text: 'Upgrading to v9', - link: '/guide/upgrading', - }, - ], - }), - '/api/': extendSideNav({ - text: 'API', - items: apiPages, - }), - - '/about/': extendSideNav({ - text: 'About', - items: [ - { - text: 'Announcements', - link: '/about/announcements', - items: [ - { text: '2022-09-08', link: '/about/announcements/2022-09-08' }, - { text: '2022-01-14', link: '/about/announcements/2022-01-14' }, - ], - }, - { - text: 'Roadmap', - link: '/about/roadmap/', - items: [ - { - text: 'v9 - Tree-Shakeable Module-Functions', - link: '/about/roadmap/v9', - }, - { text: 'v8 - Make Faker Handier', link: '/about/roadmap/v8' }, - { - text: 'v7 - Cleanup & Improvements', - link: '/about/roadmap/v7', - }, - { text: 'v6 - Continue Faker', link: '/about/roadmap/v6' }, - ], - }, - { - text: 'Team', - link: '/about/team', - }, - { - text: 'Contributing', - link: '/about/contributing', - }, - ], - }), + '/guide/': getSideBarWithExpandedEntry('Guide'), + '/api/': getSideBarWithExpandedEntry('API'), + '/about/': getSideBarWithExpandedEntry('About'), }, }, diff --git a/docs/.vitepress/versions.ts b/docs/.vitepress/versions.ts index a44b65c39ba..9d693e3d730 100644 --- a/docs/.vitepress/versions.ts +++ b/docs/.vitepress/versions.ts @@ -9,17 +9,13 @@ function readBranchName(): string { } function readOtherLatestReleaseTagNames(): string[] { - const currentMajorVersion = semver.major(version); const latestReleaseTagNames = execSync('git tag -l') .toString('utf8') .split('\n') .filter((tag) => semver.valid(tag)) - .filter((tag) => { - // Only consider tags for our deployed website versions, - // excluding the current major version. - const majorVersion = semver.major(tag); - return majorVersion >= 6 && majorVersion !== currentMajorVersion; - }) + // Only consider tags for our deployed website versions + .filter((tag) => semver.major(tag) >= 6) + // Find the latest tag for each major version .reduce>((latestTagByMajor, tag) => { const majorVersion = semver.major(tag); @@ -39,10 +35,6 @@ const { BRANCH: branchName = readBranchName(), } = process.env; -const hiddenLink = - deployContext === 'production' - ? 'https://fakerjs.dev/' - : `https://${branchName}.fakerjs.dev/`; const otherVersions = readOtherLatestReleaseTagNames(); const isReleaseBranch = /^v\d+$/.test(branchName); @@ -60,11 +52,7 @@ export const versionBannerInfix: string | null = (() => { })(); export const currentVersion = isReleaseBranch ? `v${version}` : branchName; -export const oldVersions = [ - { - version: 'latest', - link: 'https://fakerjs.dev/', - }, +export const versionLinks = [ { version: 'next', link: 'https://next.fakerjs.dev/', @@ -73,7 +61,9 @@ export const oldVersions = [ version, link: `https://v${semver.major(version)}.fakerjs.dev/`, })), -].filter(({ link }) => link !== hiddenLink); +] + // Don't link to the current branch's version. + .filter(({ link }) => link !== `https://${branchName}.fakerjs.dev/`); export const algoliaIndex = isReleaseBranch ? `fakerjs-v${semver.major(version)}` diff --git a/docs/about/team/members.json b/docs/about/team/members.json index 9e05b9c4367..b9895029d4c 100644 --- a/docs/about/team/members.json +++ b/docs/about/team/members.json @@ -13,32 +13,6 @@ ], "sponsor": "https://github.com/sponsors/Shinigami92" }, - { - "avatar": "https://github.com/damienwebdev.png", - "name": "Damien Retzinger", - "title": "Advisor", - "org": "", - "orgLink": "", - "desc": "", - "links": [ - { "icon": "github", "link": "https://github.com/damienwebdev" }, - { "icon": "twitter", "link": "https://twitter.com/damienwebdev" } - ], - "sponsor": "https://github.com/sponsors/damienwebdev" - }, - { - "avatar": "https://github.com/prisis.png", - "name": "Daniel Bannert", - "title": "Organization Owner", - "org": "", - "orgLink": "", - "desc": "", - "links": [ - { "icon": "github", "link": "https://github.com/prisis" }, - { "icon": "twitter", "link": "https://twitter.com/_prisis_" } - ], - "sponsor": "https://github.com/sponsors/prisis" - }, { "avatar": "https://github.com/ST-DDT.png", "name": "Daniel Theuke", @@ -49,19 +23,6 @@ "links": [{ "icon": "github", "link": "https://github.com/ST-DDT" }], "sponsor": "https://github.com/sponsors/ST-DDT" }, - { - "avatar": "https://github.com/JessicaSachs.png", - "name": "Jessica Sachs", - "title": "Press Officer", - "org": "", - "orgLink": "", - "desc": "", - "links": [ - { "icon": "github", "link": "https://github.com/JessicaSachs" }, - { "icon": "twitter", "link": "https://twitter.com/_JessicaSachs" } - ], - "sponsor": "https://github.com/sponsors/JessicaSachs" - }, { "avatar": "https://github.com/xDivisionByZerox.png", "name": "Leyla Jähnig", @@ -111,6 +72,45 @@ { "icon": "twitter", "link": "https://twitter.com/PiotrKuczynski" } ], "sponsor": "https://github.com/sponsors/pkuczynski" + }, + { + "avatar": "https://github.com/damienwebdev.png", + "name": "Damien Retzinger", + "title": "Advisor", + "org": "", + "orgLink": "", + "desc": "", + "links": [ + { "icon": "github", "link": "https://github.com/damienwebdev" }, + { "icon": "twitter", "link": "https://twitter.com/damienwebdev" } + ], + "sponsor": "https://github.com/sponsors/damienwebdev" + }, + { + "avatar": "https://github.com/prisis.png", + "name": "Daniel Bannert", + "title": "Organization Owner", + "org": "", + "orgLink": "", + "desc": "", + "links": [ + { "icon": "github", "link": "https://github.com/prisis" }, + { "icon": "twitter", "link": "https://twitter.com/_prisis_" } + ], + "sponsor": "https://github.com/sponsors/prisis" + }, + { + "avatar": "https://github.com/JessicaSachs.png", + "name": "Jessica Sachs", + "title": "Press Officer", + "org": "", + "orgLink": "", + "desc": "", + "links": [ + { "icon": "github", "link": "https://github.com/JessicaSachs" }, + { "icon": "twitter", "link": "https://twitter.com/_JessicaSachs" } + ], + "sponsor": "https://github.com/sponsors/JessicaSachs" } ], "emeriti": [ diff --git a/docs/api/index.md b/docs/api/index.md index d962f905374..a99815d0f02 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1,7 +1,6 @@ --- layout: page title: API Reference -sidebar: false footer: false --- diff --git a/netlify.toml b/netlify.toml index 73355306402..c53c3c746c4 100644 --- a/netlify.toml +++ b/netlify.toml @@ -24,7 +24,7 @@ # Alias for the next page [[redirects]] - from = "https://v9.fakerjs.dev" + from = "https://v10.fakerjs.dev" to = "https://next.fakerjs.dev" status = 302 force = true diff --git a/package.json b/package.json index 782f5f8f8f4..a68ad21a1ca 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "docs:test:e2e:ci": "run-s docs:build:ci docs:test:e2e:run", "docs:test:e2e:run": "run-p --race docs:serve \"cypress run\"", "docs:test:e2e:open": "run-p --race docs:serve \"cypress open\"", - "release": "standard-version", + "release": "commit-and-tag-version", "prepublishOnly": "pnpm run clean && pnpm install && pnpm run build", "preflight": "pnpm install && run-s generate format lint build test:update-snapshots ts-check" }, @@ -97,17 +97,16 @@ "@eslint-types/prettier": "5.1.3", "@eslint-types/typescript-eslint": "7.5.0", "@eslint-types/unicorn": "52.0.0", - "@types/node": "20.12.7", + "@types/node": "20.12.11", "@types/sanitize-html": "2.11.0", "@types/semver": "7.5.8", - "@types/validator": "13.11.9", - "@typescript-eslint/eslint-plugin": "7.7.0", - "@typescript-eslint/parser": "7.7.0", - "@vitest/coverage-v8": "1.5.0", - "@vitest/ui": "1.5.0", + "@types/validator": "13.11.10", + "@typescript-eslint/eslint-plugin": "7.8.0", + "@typescript-eslint/parser": "7.8.0", + "@vitest/coverage-v8": "1.6.0", + "@vitest/ui": "1.6.0", "@vueuse/core": "10.9.0", - "conventional-changelog-cli": "4.1.0", - "cypress": "13.7.3", + "cypress": "13.9.0", "eslint": "8.57.0", "eslint-config-prettier": "9.1.0", "eslint-define-config": "2.1.0", @@ -117,25 +116,24 @@ "eslint-plugin-prettier": "5.1.3", "eslint-plugin-unicorn": "52.0.0", "eslint-plugin-vitest": "0.4.1", - "glob": "10.3.12", "npm-run-all2": "6.1.2", "prettier": "3.2.5", "prettier-plugin-organize-imports": "3.2.4", - "rimraf": "5.0.5", + "rimraf": "5.0.7", "sanitize-html": "2.13.0", - "semver": "7.6.0", - "standard-version": "9.5.0", + "semver": "7.6.2", + "commit-and-tag-version": "12.4.1", "ts-morph": "22.0.0", "tsup": "8.0.2", - "tsx": "4.7.2", + "tsx": "4.10.1", "typescript": "5.4.5", - "validator": "13.11.0", - "vite": "5.2.8", - "vitepress": "1.1.0", - "vitest": "1.5.0", - "vue": "3.4.21" + "validator": "13.12.0", + "vite": "5.2.11", + "vitepress": "1.1.4", + "vitest": "1.6.0", + "vue": "3.4.27" }, - "packageManager": "pnpm@9.0.1", + "packageManager": "pnpm@9.1.1", "engines": { "node": ">=18.0.0", "npm": ">=9.0.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bca228678d2..2f149ca988d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -30,8 +30,8 @@ importers: specifier: 52.0.0 version: 52.0.0 '@types/node': - specifier: 20.12.7 - version: 20.12.7 + specifier: 20.12.11 + version: 20.12.11 '@types/sanitize-html': specifier: 2.11.0 version: 2.11.0 @@ -39,29 +39,29 @@ importers: specifier: 7.5.8 version: 7.5.8 '@types/validator': - specifier: 13.11.9 - version: 13.11.9 + specifier: 13.11.10 + version: 13.11.10 '@typescript-eslint/eslint-plugin': - specifier: 7.7.0 - version: 7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) + specifier: 7.8.0 + version: 7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': - specifier: 7.7.0 - version: 7.7.0(eslint@8.57.0)(typescript@5.4.5) + specifier: 7.8.0 + version: 7.8.0(eslint@8.57.0)(typescript@5.4.5) '@vitest/coverage-v8': - specifier: 1.5.0 - version: 1.5.0(vitest@1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0)) + specifier: 1.6.0 + version: 1.6.0(vitest@1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0)) '@vitest/ui': - specifier: 1.5.0 - version: 1.5.0(vitest@1.5.0) + specifier: 1.6.0 + version: 1.6.0(vitest@1.6.0) '@vueuse/core': specifier: 10.9.0 - version: 10.9.0(vue@3.4.21(typescript@5.4.5)) - conventional-changelog-cli: - specifier: 4.1.0 - version: 4.1.0 + version: 10.9.0(vue@3.4.27(typescript@5.4.5)) + commit-and-tag-version: + specifier: 12.4.1 + version: 12.4.1 cypress: - specifier: 13.7.3 - version: 13.7.3 + specifier: 13.9.0 + version: 13.9.0 eslint: specifier: 8.57.0 version: 8.57.0 @@ -88,10 +88,7 @@ importers: version: 52.0.0(eslint@8.57.0) eslint-plugin-vitest: specifier: 0.4.1 - version: 0.4.1(@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)(vitest@1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0)) - glob: - specifier: 10.3.12 - version: 10.3.12 + version: 0.4.1(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)(vitest@1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0)) npm-run-all2: specifier: 6.1.2 version: 6.1.2 @@ -102,17 +99,14 @@ importers: specifier: 3.2.4 version: 3.2.4(prettier@3.2.5)(typescript@5.4.5) rimraf: - specifier: 5.0.5 - version: 5.0.5 + specifier: 5.0.7 + version: 5.0.7 sanitize-html: specifier: 2.13.0 version: 2.13.0 semver: - specifier: 7.6.0 - version: 7.6.0 - standard-version: - specifier: 9.5.0 - version: 9.5.0 + specifier: 7.6.2 + version: 7.6.2 ts-morph: specifier: 22.0.0 version: 22.0.0 @@ -120,33 +114,29 @@ importers: specifier: 8.0.2 version: 8.0.2(postcss@8.4.38)(typescript@5.4.5) tsx: - specifier: 4.7.2 - version: 4.7.2 + specifier: 4.10.1 + version: 4.10.1 typescript: specifier: 5.4.5 version: 5.4.5 validator: - specifier: 13.11.0 - version: 13.11.0 + specifier: 13.12.0 + version: 13.12.0 vite: - specifier: 5.2.8 - version: 5.2.8(@types/node@20.12.7) + specifier: 5.2.11 + version: 5.2.11(@types/node@20.12.11) vitepress: - specifier: 1.1.0 - version: 1.1.0(@algolia/client-search@4.23.3)(@types/node@20.12.7)(postcss@8.4.38)(search-insights@2.13.0)(typescript@5.4.5) + specifier: 1.1.4 + version: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.12.11)(postcss@8.4.38)(search-insights@2.13.0)(typescript@5.4.5) vitest: - specifier: 1.5.0 - version: 1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0) + specifier: 1.6.0 + version: 1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0) vue: - specifier: 3.4.21 - version: 3.4.21(typescript@5.4.5) + specifier: 3.4.27 + version: 3.4.27(typescript@5.4.5) packages: - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - '@actions/github@6.0.0': resolution: {integrity: sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==} @@ -222,6 +212,9 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} + '@asamuzakjp/dom-selector@2.0.2': + resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==} + '@babel/code-frame@7.24.2': resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} @@ -230,21 +223,21 @@ packages: resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.22.20': - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + '@babel/helper-validator-identifier@7.24.5': + resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.2': - resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} + '@babel/highlight@7.24.5': + resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.24.4': - resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} + '@babel/parser@7.24.5': + resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/types@7.24.0': - resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} + '@babel/types@7.24.5': + resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -616,10 +609,6 @@ packages: resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} engines: {node: '>=6.9.0'} - '@hutson/parse-repository-url@5.0.0': - resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} - engines: {node: '>=10.13.0'} - '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -681,8 +670,8 @@ packages: '@octokit/openapi-types@20.0.0': resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} - '@octokit/openapi-types@22.1.0': - resolution: {integrity: sha512-pGUdSP+eEPfZiQHNkZI0U01HLipxncisdJQB4G//OAmfeO8sqTQ9KRa0KF03TUPCziNsoXUrTg4B2Q1EX++T0Q==} + '@octokit/openapi-types@22.2.0': + resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} '@octokit/plugin-paginate-rest@9.2.1': resolution: {integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==} @@ -707,8 +696,8 @@ packages: '@octokit/types@12.6.0': resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} - '@octokit/types@13.4.1': - resolution: {integrity: sha512-Y73oOAzRBAUzR/iRAbGULzpNkX8vaxKCqEtg6K74Ff3w9f5apFnWtE/2nade7dMWWW3bS5Kkd6DJS4HF04xreg==} + '@octokit/types@13.5.0': + resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==} '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} @@ -721,91 +710,91 @@ packages: '@polka/url@1.0.0-next.25': resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} - '@rollup/rollup-android-arm-eabi@4.14.3': - resolution: {integrity: sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==} + '@rollup/rollup-android-arm-eabi@4.17.2': + resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.14.3': - resolution: {integrity: sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==} + '@rollup/rollup-android-arm64@4.17.2': + resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.14.3': - resolution: {integrity: sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==} + '@rollup/rollup-darwin-arm64@4.17.2': + resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.14.3': - resolution: {integrity: sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==} + '@rollup/rollup-darwin-x64@4.17.2': + resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.14.3': - resolution: {integrity: sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==} + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.14.3': - resolution: {integrity: sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==} + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.14.3': - resolution: {integrity: sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==} + '@rollup/rollup-linux-arm64-gnu@4.17.2': + resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.14.3': - resolution: {integrity: sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==} + '@rollup/rollup-linux-arm64-musl@4.17.2': + resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.14.3': - resolution: {integrity: sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.14.3': - resolution: {integrity: sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==} + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.14.3': - resolution: {integrity: sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==} + '@rollup/rollup-linux-s390x-gnu@4.17.2': + resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.14.3': - resolution: {integrity: sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==} + '@rollup/rollup-linux-x64-gnu@4.17.2': + resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.14.3': - resolution: {integrity: sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==} + '@rollup/rollup-linux-x64-musl@4.17.2': + resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.14.3': - resolution: {integrity: sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==} + '@rollup/rollup-win32-arm64-msvc@4.17.2': + resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.14.3': - resolution: {integrity: sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==} + '@rollup/rollup-win32-ia32-msvc@4.17.2': + resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.14.3': - resolution: {integrity: sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==} + '@rollup/rollup-win32-x64-msvc@4.17.2': + resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} cpu: [x64] os: [win32] - '@shikijs/core@1.3.0': - resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==} + '@shikijs/core@1.5.1': + resolution: {integrity: sha512-xjV63pRUBvxA1LsxOUhRKLPh0uUjwBLzAKLdEuYSLIylo71sYuwDcttqNP01Ib1TZlLfO840CXHPlgUUsYFjzg==} - '@shikijs/transformers@1.3.0': - resolution: {integrity: sha512-3mlpg2I9CjhjE96dEWQOGeCWoPcyTov3s4aAsHmgvnTHa8MBknEnCQy8/xivJPSpD+olqOqIEoHnLfbNJK29AA==} + '@shikijs/transformers@1.5.1': + resolution: {integrity: sha512-vir+y0elkjh2CepLVbqeGX+ftuc6WpfWNCMV/EBIallSLzhBfDO9r/TORDVOzegbTg9JMEmtOFv6PT9cSZTcyA==} '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -819,20 +808,20 @@ packages: '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - '@types/linkify-it@3.0.5': - resolution: {integrity: sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==} + '@types/linkify-it@5.0.0': + resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} - '@types/markdown-it@13.0.7': - resolution: {integrity: sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==} + '@types/markdown-it@14.1.1': + resolution: {integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==} - '@types/mdurl@1.0.5': - resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==} + '@types/mdurl@2.0.0': + resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} '@types/minimist@1.2.5': resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - '@types/node@20.12.7': - resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} + '@types/node@20.12.11': + resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -849,8 +838,8 @@ packages: '@types/sizzle@2.3.8': resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} - '@types/validator@13.11.9': - resolution: {integrity: sha512-FCTsikRozryfayPuiI46QzH3fnrOoctTjvOYZkho9BTFLCOZ2rgZJHMOVgCOfttjPJcgOx52EpkY0CMfy87MIw==} + '@types/validator@13.11.10': + resolution: {integrity: sha512-e2PNXoXLr6Z+dbfx5zSh9TRlXJrELycxiaXznp4S5+D2M3b9bqJEitNHA5923jhnB2zzFiZHa2f0SI1HoIahpg==} '@types/web-bluetooth@0.0.20': resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} @@ -858,8 +847,8 @@ packages: '@types/yauzl@2.10.3': resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - '@typescript-eslint/eslint-plugin@7.7.0': - resolution: {integrity: sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==} + '@typescript-eslint/eslint-plugin@7.8.0': + resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -869,8 +858,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@7.7.0': - resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==} + '@typescript-eslint/parser@7.8.0': + resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -883,12 +872,12 @@ packages: resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@7.7.0': - resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==} + '@typescript-eslint/scope-manager@7.8.0': + resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/type-utils@7.7.0': - resolution: {integrity: sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==} + '@typescript-eslint/type-utils@7.8.0': + resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -901,8 +890,8 @@ packages: resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@7.7.0': - resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==} + '@typescript-eslint/types@7.8.0': + resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==} engines: {node: ^18.18.0 || >=20.0.0} '@typescript-eslint/typescript-estree@6.21.0': @@ -914,8 +903,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@7.7.0': - resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==} + '@typescript-eslint/typescript-estree@7.8.0': + resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -929,8 +918,8 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@7.7.0': - resolution: {integrity: sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==} + '@typescript-eslint/utils@7.8.0': + resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -939,8 +928,8 @@ packages: resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/visitor-keys@7.7.0': - resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==} + '@typescript-eslint/visitor-keys@7.8.0': + resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==} engines: {node: ^18.18.0 || >=20.0.0} '@ungap/structured-clone@1.2.0': @@ -953,70 +942,70 @@ packages: vite: ^5.0.0 vue: ^3.2.25 - '@vitest/coverage-v8@1.5.0': - resolution: {integrity: sha512-1igVwlcqw1QUMdfcMlzzY4coikSIBN944pkueGi0pawrX5I5Z+9hxdTR+w3Sg6Q3eZhvdMAs8ZaF9JuTG1uYOQ==} + '@vitest/coverage-v8@1.6.0': + resolution: {integrity: sha512-KvapcbMY/8GYIG0rlwwOKCVNRc0OL20rrhFkg/CHNzncV03TE2XWvO5w9uZYoxNiMEBacAJt3unSOiZ7svePew==} peerDependencies: - vitest: 1.5.0 + vitest: 1.6.0 - '@vitest/expect@1.5.0': - resolution: {integrity: sha512-0pzuCI6KYi2SIC3LQezmxujU9RK/vwC1U9R0rLuGlNGcOuDWxqWKu6nUdFsX9tH1WU0SXtAxToOsEjeUn1s3hA==} + '@vitest/expect@1.6.0': + resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==} - '@vitest/runner@1.5.0': - resolution: {integrity: sha512-7HWwdxXP5yDoe7DTpbif9l6ZmDwCzcSIK38kTSIt6CFEpMjX4EpCgT6wUmS0xTXqMI6E/ONmfgRKmaujpabjZQ==} + '@vitest/runner@1.6.0': + resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==} - '@vitest/snapshot@1.5.0': - resolution: {integrity: sha512-qpv3fSEuNrhAO3FpH6YYRdaECnnRjg9VxbhdtPwPRnzSfHVXnNzzrpX4cJxqiwgRMo7uRMWDFBlsBq4Cr+rO3A==} + '@vitest/snapshot@1.6.0': + resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==} - '@vitest/spy@1.5.0': - resolution: {integrity: sha512-vu6vi6ew5N5MMHJjD5PoakMRKYdmIrNJmyfkhRpQt5d9Ewhw9nZ5Aqynbi3N61bvk9UvZ5UysMT6ayIrZ8GA9w==} + '@vitest/spy@1.6.0': + resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==} - '@vitest/ui@1.5.0': - resolution: {integrity: sha512-ETcToK2TzICf/Oartvt19IH7yR4oCs8GrQk5hRhZ5oZFaSdDHTh6o3EdzyxOaY24NZ20cXYYNGjj1se/5vHfFg==} + '@vitest/ui@1.6.0': + resolution: {integrity: sha512-k3Lyo+ONLOgylctiGovRKy7V4+dIN2yxstX3eY5cWFXH6WP+ooVX79YSyi0GagdTQzLmT43BF27T0s6dOIPBXA==} peerDependencies: - vitest: 1.5.0 + vitest: 1.6.0 - '@vitest/utils@1.5.0': - resolution: {integrity: sha512-BDU0GNL8MWkRkSRdNFvCUCAVOeHaUlVJ9Tx0TYBZyXaaOTmGtUFObzchCivIBrIwKzvZA7A9sCejVhXM2aY98A==} + '@vitest/utils@1.6.0': + resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} - '@vue/compiler-core@3.4.21': - resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==} + '@vue/compiler-core@3.4.27': + resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==} - '@vue/compiler-dom@3.4.21': - resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==} + '@vue/compiler-dom@3.4.27': + resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==} - '@vue/compiler-sfc@3.4.21': - resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==} + '@vue/compiler-sfc@3.4.27': + resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==} - '@vue/compiler-ssr@3.4.21': - resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==} + '@vue/compiler-ssr@3.4.27': + resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==} - '@vue/devtools-api@7.0.27': - resolution: {integrity: sha512-BFCFCusSDcw2UcOFD/QeK7OxD1x2C/m+uAN30Q7jLKECSW53hmz0urzJmX834GuWDZX/hIxkyUKnLLfEIP1c/w==} + '@vue/devtools-api@7.1.3': + resolution: {integrity: sha512-W8IwFJ/o5iUk78jpqhvScbgCsPiOp2uileDVC0NDtW38gCWhsnu9SeBTjcdu3lbwLdsjc+H1c5Msd/x9ApbcFA==} - '@vue/devtools-kit@7.0.27': - resolution: {integrity: sha512-/A5xM38pPCFX5Yhl/lRFAzjyK6VNsH670nww2WbjFKWqlu3I+lMxWKzQkCW6A1V8bduITgl2kHORfg2gTw6QaA==} + '@vue/devtools-kit@7.1.3': + resolution: {integrity: sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==} peerDependencies: vue: ^3.0.0 - '@vue/devtools-shared@7.0.27': - resolution: {integrity: sha512-4VxtmZ6yjhiSloqZZq2UYU0TBGxOJ8GxWvp5OlAH70zYqi0FIAyWGPkOhvfoZ7DKQyv2UU0mmKzFHjsEkelGyQ==} + '@vue/devtools-shared@7.1.3': + resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==} - '@vue/reactivity@3.4.21': - resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==} + '@vue/reactivity@3.4.27': + resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==} - '@vue/runtime-core@3.4.21': - resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==} + '@vue/runtime-core@3.4.27': + resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==} - '@vue/runtime-dom@3.4.21': - resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==} + '@vue/runtime-dom@3.4.27': + resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==} - '@vue/server-renderer@3.4.21': - resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==} + '@vue/server-renderer@3.4.27': + resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==} peerDependencies: - vue: 3.4.21 + vue: 3.4.27 - '@vue/shared@3.4.21': - resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==} + '@vue/shared@3.4.27': + resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==} '@vueuse/core@10.9.0': resolution: {integrity: sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==} @@ -1089,6 +1078,10 @@ packages: add-stream@1.0.0: resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + agent-base@7.1.1: + resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} + engines: {node: '>= 14'} + aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} @@ -1217,6 +1210,9 @@ packages: before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + bidi-js@1.0.3: + resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} + binary-extensions@2.3.0: resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} engines: {node: '>=8'} @@ -1255,8 +1251,8 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - bundle-require@4.0.2: - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + bundle-require@4.1.0: + resolution: {integrity: sha512-FeArRFM+ziGkRViKRnSTbHZc35dgmR9yNog05Kn0+ItI59pOAISGvnnIwW1WgFZQW59IxD9QpJnUPkdIPfZuXg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.17' @@ -1285,8 +1281,8 @@ packages: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - caniuse-lite@1.0.30001610: - resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} + caniuse-lite@1.0.30001617: + resolution: {integrity: sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -1334,8 +1330,8 @@ packages: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} - cli-table3@0.6.4: - resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==} + cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} engines: {node: 10.* || >= 12.*} cli-truncate@2.1.0: @@ -1345,6 +1341,10 @@ packages: cliui@7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + code-block-writer@13.0.1: resolution: {integrity: sha512-c5or4P6erEA69TxaxTNcHUNcIn+oyxSRTOWV+pSYF+z4epXqNvwvJ70XPGjPNgue83oAFAPBRQYwpAJ/Hpe/Sg==} @@ -1380,6 +1380,11 @@ packages: resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} engines: {node: '>= 12.0.0'} + commit-and-tag-version@12.4.1: + resolution: {integrity: sha512-+NAbDJ2KiXDvV45S8r6o1DWbeEXijxb+Vxp9dsogISuSeRZ5JOPiaQsHoDKhZ58FuBtmp6ITe/hpeFu2gT82xA==} + engines: {node: '>=18'} + hasBin: true + common-tags@1.8.2: resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} engines: {node: '>=4.0.0'} @@ -1394,35 +1399,21 @@ packages: resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} engines: {'0': node >= 6.0} + confbox@0.1.7: + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} + conventional-changelog-angular@5.0.13: resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} engines: {node: '>=10'} - conventional-changelog-angular@7.0.0: - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} - engines: {node: '>=16'} - conventional-changelog-atom@2.0.8: resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==} engines: {node: '>=10'} - conventional-changelog-atom@4.0.0: - resolution: {integrity: sha512-q2YtiN7rnT1TGwPTwjjBSIPIzDJCRE+XAUahWxnh+buKK99Kks4WLMHoexw38GXx9OUxAsrp44f9qXe5VEMYhw==} - engines: {node: '>=16'} - - conventional-changelog-cli@4.1.0: - resolution: {integrity: sha512-MscvILWZ6nWOoC+p/3Nn3D2cVLkjeQjyZPUr0bQ+vUORE/SPrkClJh8BOoMNpS4yk+zFJ5LlgXACxH6XGQoRXA==} - engines: {node: '>=16'} - hasBin: true - conventional-changelog-codemirror@2.0.8: resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==} engines: {node: '>=10'} - conventional-changelog-codemirror@4.0.0: - resolution: {integrity: sha512-hQSojc/5imn1GJK3A75m9hEZZhc3urojA5gMpnar4JHmgLnuM3CUIARPpEk86glEKr3c54Po3WV/vCaO/U8g3Q==} - engines: {node: '>=16'} - conventional-changelog-config-spec@2.1.0: resolution: {integrity: sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==} @@ -1430,105 +1421,72 @@ packages: resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} engines: {node: '>=10'} - conventional-changelog-conventionalcommits@7.0.2: - resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} - engines: {node: '>=16'} + conventional-changelog-conventionalcommits@6.1.0: + resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==} + engines: {node: '>=14'} conventional-changelog-core@4.2.4: resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} engines: {node: '>=10'} - conventional-changelog-core@7.0.0: - resolution: {integrity: sha512-UYgaB1F/COt7VFjlYKVE/9tTzfU3VUq47r6iWf6lM5T7TlOxr0thI63ojQueRLIpVbrtHK4Ffw+yQGduw2Bhdg==} - engines: {node: '>=16'} - conventional-changelog-ember@2.0.9: resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==} engines: {node: '>=10'} - conventional-changelog-ember@4.0.0: - resolution: {integrity: sha512-D0IMhwcJUg1Y8FSry6XAplEJcljkHVlvAZddhhsdbL1rbsqRsMfGx/PIkPYq0ru5aDgn+OxhQ5N5yR7P9mfsvA==} - engines: {node: '>=16'} - conventional-changelog-eslint@3.0.9: resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==} engines: {node: '>=10'} - conventional-changelog-eslint@5.0.0: - resolution: {integrity: sha512-6JtLWqAQIeJLn/OzUlYmzd9fKeNSWmQVim9kql+v4GrZwLx807kAJl3IJVc3jTYfVKWLxhC3BGUxYiuVEcVjgA==} - engines: {node: '>=16'} - conventional-changelog-express@2.0.6: resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==} engines: {node: '>=10'} - conventional-changelog-express@4.0.0: - resolution: {integrity: sha512-yWyy5c7raP9v7aTvPAWzqrztACNO9+FEI1FSYh7UP7YT1AkWgv5UspUeB5v3Ibv4/o60zj2o9GF2tqKQ99lIsw==} - engines: {node: '>=16'} - conventional-changelog-jquery@3.0.11: resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==} engines: {node: '>=10'} - conventional-changelog-jquery@5.0.0: - resolution: {integrity: sha512-slLjlXLRNa/icMI3+uGLQbtrgEny3RgITeCxevJB+p05ExiTgHACP5p3XiMKzjBn80n+Rzr83XMYfRInEtCPPw==} - engines: {node: '>=16'} - conventional-changelog-jshint@2.0.9: resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==} engines: {node: '>=10'} - conventional-changelog-jshint@4.0.0: - resolution: {integrity: sha512-LyXq1bbl0yG0Ai1SbLxIk8ZxUOe3AjnlwE6sVRQmMgetBk+4gY9EO3d00zlEt8Y8gwsITytDnPORl8al7InTjg==} - engines: {node: '>=16'} - conventional-changelog-preset-loader@2.3.4: resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} engines: {node: '>=10'} - conventional-changelog-preset-loader@4.1.0: - resolution: {integrity: sha512-HozQjJicZTuRhCRTq4rZbefaiCzRM2pr6u2NL3XhrmQm4RMnDXfESU6JKu/pnKwx5xtdkYfNCsbhN5exhiKGJA==} - engines: {node: '>=16'} + conventional-changelog-preset-loader@3.0.0: + resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} + engines: {node: '>=14'} conventional-changelog-writer@5.0.1: resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} engines: {node: '>=10'} hasBin: true - conventional-changelog-writer@7.0.1: - resolution: {integrity: sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==} - engines: {node: '>=16'} - hasBin: true - conventional-changelog@3.1.25: resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} engines: {node: '>=10'} - conventional-changelog@5.1.0: - resolution: {integrity: sha512-aWyE/P39wGYRPllcCEZDxTVEmhyLzTc9XA6z6rVfkuCD2UBnhV/sgSOKbQrEG5z9mEZJjnopjgQooTKxEg8mAg==} - engines: {node: '>=16'} - conventional-commits-filter@2.0.7: resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} engines: {node: '>=10'} - conventional-commits-filter@4.0.0: - resolution: {integrity: sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==} - engines: {node: '>=16'} + conventional-commits-filter@3.0.0: + resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} + engines: {node: '>=14'} conventional-commits-parser@3.2.4: resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} engines: {node: '>=10'} hasBin: true - conventional-commits-parser@5.0.0: - resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} - engines: {node: '>=16'} + conventional-commits-parser@4.0.0: + resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} + engines: {node: '>=14'} hasBin: true - conventional-recommended-bump@6.1.0: - resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: '>=10'} + conventional-recommended-bump@7.0.1: + resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} + engines: {node: '>=14'} hasBin: true core-js-compat@3.37.0: @@ -1544,11 +1502,19 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + cssstyle@4.0.1: + resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==} + engines: {node: '>=18'} + csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - cypress@13.7.3: - resolution: {integrity: sha512-uoecY6FTCAuIEqLUYkTrxamDBjMHTYak/1O7jtgwboHiTnS1NaMOoR08KcTrbRZFCBvYOiS4tEkQRmsV+xcrag==} + cypress@13.9.0: + resolution: {integrity: sha512-atNjmYfHsvTuCaxTxLZr9xGoHz53LLui3266WWxXJHY7+N6OdwJdg/feEa3T+buez9dmUXHT1izCOklqG82uCQ==} engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -1556,14 +1522,14 @@ packages: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} engines: {node: '>=8'} - dargs@8.1.0: - resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} - engines: {node: '>=12'} - dashdash@1.14.1: resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} engines: {node: '>=0.10'} + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + data-view-buffer@1.0.1: resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} engines: {node: '>= 0.4'} @@ -1579,8 +1545,8 @@ packages: dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - dayjs@1.11.10: - resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} + dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} debug@3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} @@ -1607,6 +1573,9 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + deep-eql@4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} engines: {node: '>=6'} @@ -1680,8 +1649,8 @@ packages: ecc-jsbn@0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} - electron-to-chromium@1.4.738: - resolution: {integrity: sha512-lwKft2CLFztD+vEIpesrOtCrko/TFnEJlHFdRhazU7Y/jx5qc4cqsocfVrBg4So4gGe9lvxnbLIoev47WMpg+A==} + electron-to-chromium@1.4.763: + resolution: {integrity: sha512-k4J8NrtJ9QrvHLRo8Q18OncqBCB7tIUyqxRcJnlonQ0ioHKYB988GcDFF3ZePmnb8eHEopDs/wPHR/iGAFgoUQ==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -1936,10 +1905,6 @@ packages: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} - find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - flat-cache@3.2.0: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -1964,6 +1929,10 @@ packages: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -2018,8 +1987,8 @@ packages: resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} - get-tsconfig@4.7.3: - resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} + get-tsconfig@4.7.5: + resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} getos@3.2.1: resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} @@ -2032,9 +2001,9 @@ packages: engines: {node: '>=10'} hasBin: true - git-raw-commits@4.0.0: - resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} - engines: {node: '>=16'} + git-raw-commits@3.0.0: + resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} + engines: {node: '>=14'} hasBin: true git-remote-origin-url@2.0.0: @@ -2046,9 +2015,9 @@ packages: engines: {node: '>=10'} hasBin: true - git-semver-tags@7.0.1: - resolution: {integrity: sha512-NY0ZHjJzyyNXHTDZmj+GG7PyuAKtMsyWSwh07CR2hOZFa+/yoTsXci/nF2obzL8UDhakFNkD9gNdt/Ed+cxh2Q==} - engines: {node: '>=16'} + git-semver-tags@5.0.1: + resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} + engines: {node: '>=14'} hasBin: true gitconfiglocal@1.0.0: @@ -2062,9 +2031,9 @@ packages: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} engines: {node: '>=10.13.0'} - glob@10.3.12: - resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} - engines: {node: '>=16 || 14 >=14.17'} + glob@10.3.15: + resolution: {integrity: sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==} + engines: {node: '>=16 || 14 >=14.18'} hasBin: true glob@7.2.3: @@ -2078,8 +2047,8 @@ packages: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} - globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} globby@11.1.0: @@ -2144,9 +2113,9 @@ packages: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} - hosted-git-info@7.0.1: - resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==} - engines: {node: ^16.14.0 || >=18.0.0} + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} @@ -2154,10 +2123,18 @@ packages: htmlparser2@8.0.2: resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + http-signature@1.3.6: resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} engines: {node: '>=0.10'} + https-proxy-agent@7.0.4: + resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} + engines: {node: '>= 14'} + human-signals@1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} @@ -2170,6 +2147,10 @@ packages: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -2291,6 +2272,9 @@ packages: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} engines: {node: '>=0.10.0'} + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -2319,10 +2303,6 @@ packages: resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} engines: {node: '>=0.10.0'} - is-text-path@2.0.0: - resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} - engines: {node: '>=8'} - is-typed-array@1.1.13: resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} @@ -2390,6 +2370,15 @@ packages: resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==} engines: {node: '>=12.0.0'} + jsdom@23.2.0: + resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true @@ -2408,8 +2397,8 @@ packages: json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - json-parse-even-better-errors@3.0.1: - resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==} + json-parse-even-better-errors@3.0.2: + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} json-schema-traverse@0.4.1: @@ -2424,9 +2413,6 @@ packages: json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} - jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} @@ -2460,10 +2446,6 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - listr2@3.14.0: resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} engines: {node: '>=10.0.0'} @@ -2501,10 +2483,6 @@ packages: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} - locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lodash.ismatch@4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} @@ -2531,17 +2509,16 @@ packages: loupe@2.3.7: resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} - lru-cache@10.2.0: - resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} + lru-cache@10.2.2: + resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} engines: {node: 14 || >=16.14} lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - magic-string@0.30.9: - resolution: {integrity: sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==} - engines: {node: '>=12'} + magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} magicast@0.3.4: resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==} @@ -2561,14 +2538,13 @@ packages: mark.js@8.11.1: resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + memorystream@0.3.1: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - meow@12.1.1: - resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} - engines: {node: '>=16.10'} - meow@8.1.2: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} engines: {node: '>=10'} @@ -2622,8 +2598,8 @@ packages: minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + minipass@7.1.1: + resolution: {integrity: sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==} engines: {node: '>=16 || 14 >=14.17'} minisearch@6.3.0: @@ -2637,8 +2613,8 @@ packages: engines: {node: '>=10'} hasBin: true - mlly@1.6.1: - resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==} + mlly@1.7.0: + resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==} modify-values@1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} @@ -2678,10 +2654,6 @@ packages: resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} engines: {node: '>=10'} - normalize-package-data@6.0.0: - resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==} - engines: {node: ^16.14.0 || >=18.0.0} - normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} @@ -2729,8 +2701,8 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} ospath@1.2.2: @@ -2748,10 +2720,6 @@ packages: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} - p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - p-limit@5.0.0: resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} engines: {node: '>=18'} @@ -2772,10 +2740,6 @@ packages: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} - p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} @@ -2800,13 +2764,12 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} - parse-json@7.1.1: - resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} - engines: {node: '>=16'} - parse-srcset@1.0.2: resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} + parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -2818,10 +2781,6 @@ packages: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} - path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} @@ -2837,9 +2796,9 @@ packages: path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - path-scurry@1.10.2: - resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} - engines: {node: '>=16 || 14 >=14.17'} + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} path-type@3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} @@ -2888,8 +2847,8 @@ packages: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} engines: {node: '>= 6'} - pkg-types@1.0.3: - resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} + pkg-types@1.1.1: + resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==} pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} @@ -2915,8 +2874,8 @@ packages: resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} - preact@10.20.2: - resolution: {integrity: sha512-S1d1ernz3KQ+Y2awUxKakpfOg2CEmJmwOP+6igPx6dgr6pgDvenqYviyokWso2rhHvGtTlWWnJDa7RaPbQerTg==} + preact@10.21.0: + resolution: {integrity: sha512-aQAIxtzWEwH8ou+OovWVSVNlFImL7xUCwJX3YMqA3U8iKCNC34999fFOnWjYNsylgfPgMexpbk7WYOLtKr/mxg==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -2990,17 +2949,13 @@ packages: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} - react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} read-package-json-fast@3.0.2: resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - read-pkg-up@10.1.0: - resolution: {integrity: sha512-aNtBq4jR8NawpKJQldrQcSW9y/d+KWH4v24HWkHljOZ7H0av+YTGANBzRh9A5pw7v/bLVsLVPpOhJ7gHNVy8lA==} - engines: {node: '>=16'} - read-pkg-up@3.0.0: resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} engines: {node: '>=4'} @@ -3017,10 +2972,6 @@ packages: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} - read-pkg@8.1.0: - resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==} - engines: {node: '>=16'} - readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -3055,6 +3006,10 @@ packages: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + requires-port@1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} @@ -3088,16 +3043,19 @@ packages: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true - rimraf@5.0.5: - resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==} - engines: {node: '>=14'} + rimraf@5.0.7: + resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==} + engines: {node: '>=14.18'} hasBin: true - rollup@4.14.3: - resolution: {integrity: sha512-ag5tTQKYsj1bhrFC9+OEWqb5O6VYgtQDO9hPDBMmIbePwhfSr+ExlcU741t8Dhw5DkPCQf6noz0jb36D6W9/hw==} + rollup@4.17.2: + resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rrweb-cssom@0.6.0: + resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -3124,6 +3082,10 @@ packages: sanitize-html@2.13.0: resolution: {integrity: sha512-Xff91Z+4Mz5QiNSLdLWwjgBDm5b1RU6xBT0+12rapjiaR7SwfRdjw8f+6Rir2MXKLrDicRFHdb51hGOAxmsUIA==} + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + search-insights@2.13.0: resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==} @@ -3135,8 +3097,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.6.0: - resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} engines: {node: '>=10'} hasBin: true @@ -3159,8 +3121,8 @@ packages: shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - shiki@1.3.0: - resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==} + shiki@1.5.1: + resolution: {integrity: sha512-vx4Ds3M3B9ZEmLeSXqBAB85osBWV8ErZfP69kuFQZozPgHc33m7spLTCUkcjwEjFm3gk3F9IdXMv8kX+v9xDHA==} side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} @@ -3226,10 +3188,6 @@ packages: split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} - split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} - split@1.0.1: resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} @@ -3241,11 +3199,6 @@ packages: stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - standard-version@9.5.0: - resolution: {integrity: sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==} - engines: {node: '>=10'} - hasBin: true - std-env@3.7.0: resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} @@ -3274,10 +3227,6 @@ packages: string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - stringify-package@1.0.1: - resolution: {integrity: sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==} - deprecated: This module is not used anymore, and has been replaced by @npmcli/package-json - strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -3330,6 +3279,9 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + synckit@0.8.8: resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==} engines: {node: ^14.18.0 || >=16.0.0} @@ -3337,14 +3289,6 @@ packages: tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} - temp-dir@3.0.0: - resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} - engines: {node: '>=14.16'} - - tempfile@5.0.0: - resolution: {integrity: sha512-bX655WZI/F7EoTDw9JvQURqAXiPHi8o8+yFxPF2lWYyz1aHnmMRuXWqL6YB6GmeO0o4DIYWHLgGNi/X64T+X4Q==} - engines: {node: '>=14.18'} - test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -3353,10 +3297,6 @@ packages: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} - text-extensions@2.4.0: - resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} - engines: {node: '>=8'} - text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} @@ -3379,8 +3319,8 @@ packages: through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - tinybench@2.7.0: - resolution: {integrity: sha512-Qgayeb106x2o4hNzNjsZEfFziw8IbKqtbXBjVh7VIZfBxfD5M4gWtpyx5+YTae2gJ6Y6Dz/KLepiv16RFeQWNA==} + tinybench@2.8.0: + resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==} tinypool@0.8.4: resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} @@ -3406,13 +3346,17 @@ packages: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} - tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} engines: {node: '>=6'} tr46@1.0.1: resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + tr46@5.0.0: + resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} + engines: {node: '>=18'} + tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true @@ -3464,8 +3408,8 @@ packages: peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - tsx@4.7.2: - resolution: {integrity: sha512-BCNd4kz6fz12fyrgCTEdZHGJ9fWTGeUzXmQysh0RVocDY3h4frk05ZNCXSy4kIenF7y/QnrdiVpTsyNRn6vlAw==} + tsx@4.10.1: + resolution: {integrity: sha512-G+CcyTOopwhuI81FU+KpzGN5UBhHgGEDlGt8mHAXKxv8pDGr6WI7hI7aRjTRol5WzFVsSNuzl3ekCZ0eLIJlEQ==} engines: {node: '>=18.0.0'} hasBin: true @@ -3507,14 +3451,6 @@ packages: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} - type-fest@3.13.1: - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} - engines: {node: '>=14.16'} - - type-fest@4.15.0: - resolution: {integrity: sha512-tB9lu0pQpX5KJq54g+oHOLumOx+pMep4RaM6liXh2PKmVRFF+/vAtUP0ZaJ0kOySfVNjF6doBWPHhBhISKdlIA==} - engines: {node: '>=16'} - typed-array-buffer@1.0.2: resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} engines: {node: '>= 0.4'} @@ -3572,8 +3508,8 @@ packages: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} - update-browserslist-db@1.0.13: - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + update-browserslist-db@1.0.15: + resolution: {integrity: sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -3594,21 +3530,21 @@ packages: validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - validator@13.11.0: - resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==} + validator@13.12.0: + resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} engines: {node: '>= 0.10'} verror@1.10.0: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} - vite-node@1.5.0: - resolution: {integrity: sha512-tV8h6gMj6vPzVCa7l+VGq9lwoJjW8Y79vst8QZZGiuRAfijU+EEWuc0kFpmndQrWhMMhet1jdSF+40KSZUqIIw==} + vite-node@1.6.0: + resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite@5.2.8: - resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==} + vite@5.2.11: + resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -3635,8 +3571,8 @@ packages: terser: optional: true - vitepress@1.1.0: - resolution: {integrity: sha512-G+NS5I2OETxC0SfGAMDO75JWNkrcir0UCptuhQMNoaZhhlqvYtTDQhph4qGc5dtiTtZkcFa/bCcSx+A2gSS3lA==} + vitepress@1.1.4: + resolution: {integrity: sha512-bWIzFZXpPB6NIDBuWnS20aMADH+FcFKDfQNYFvbOWij03PR29eImTceQHIzCKordjXYBhM/TjE5VKFTUJ3EheA==} hasBin: true peerDependencies: markdown-it-mathjax3: ^4 @@ -3647,15 +3583,15 @@ packages: postcss: optional: true - vitest@1.5.0: - resolution: {integrity: sha512-d8UKgR0m2kjdxDWX6911uwxout6GHS0XaGH1cksSIVVG8kRlE7G7aBw7myKQCvDI5dT4j7ZMa+l706BIORMDLw==} + vitest@1.6.0: + resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 1.5.0 - '@vitest/ui': 1.5.0 + '@vitest/browser': 1.6.0 + '@vitest/ui': 1.6.0 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -3683,17 +3619,37 @@ packages: '@vue/composition-api': optional: true - vue@3.4.21: - resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==} + vue@3.4.27: + resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + webidl-conversions@4.0.2: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + whatwg-url@14.0.0: + resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==} + engines: {node: '>=18'} + whatwg-url@7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} @@ -3714,6 +3670,10 @@ packages: engines: {node: '>=8'} hasBin: true + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} @@ -3732,6 +3692,25 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + ws@8.17.0: + resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} @@ -3743,8 +3722,8 @@ packages: yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yaml@2.4.1: - resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} + yaml@2.4.2: + resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==} engines: {node: '>= 14'} hasBin: true @@ -3752,10 +3731,18 @@ packages: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} engines: {node: '>=10'} + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} @@ -3769,8 +3756,6 @@ packages: snapshots: - '@aashutoshrathi/word-wrap@1.2.6': {} - '@actions/github@6.0.0': dependencies: '@actions/http-client': 2.2.1 @@ -3892,30 +3877,36 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 + '@asamuzakjp/dom-selector@2.0.2': + dependencies: + bidi-js: 1.0.3 + css-tree: 2.3.1 + is-potential-custom-element-name: 1.0.1 + '@babel/code-frame@7.24.2': dependencies: - '@babel/highlight': 7.24.2 + '@babel/highlight': 7.24.5 picocolors: 1.0.0 '@babel/helper-string-parser@7.24.1': {} - '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.5': {} - '@babel/highlight@7.24.2': + '@babel/highlight@7.24.5': dependencies: - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.0 - '@babel/parser@7.24.4': + '@babel/parser@7.24.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 - '@babel/types@7.24.0': + '@babel/types@7.24.5': dependencies: '@babel/helper-string-parser': 7.24.1 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 to-fast-properties: 2.0.0 '@bcoe/v8-coverage@0.2.3': {} @@ -3940,7 +3931,7 @@ snapshots: performance-now: 2.1.0 qs: 6.10.4 safe-buffer: 5.2.1 - tough-cookie: 4.1.3 + tough-cookie: 4.1.4 tunnel-agent: 0.6.0 uuid: 8.3.2 @@ -3956,7 +3947,7 @@ snapshots: '@docsearch/js@3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)': dependencies: '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0) - preact: 10.20.2 + preact: 10.21.0 transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -4168,8 +4159,6 @@ snapshots: '@hutson/parse-repository-url@3.0.2': {} - '@hutson/parse-repository-url@5.0.0': {} - '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 @@ -4222,24 +4211,24 @@ snapshots: '@octokit/graphql': 7.1.0 '@octokit/request': 8.4.0 '@octokit/request-error': 5.1.0 - '@octokit/types': 13.4.1 + '@octokit/types': 13.5.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 '@octokit/endpoint@9.0.5': dependencies: - '@octokit/types': 13.4.1 + '@octokit/types': 13.5.0 universal-user-agent: 6.0.1 '@octokit/graphql@7.1.0': dependencies: '@octokit/request': 8.4.0 - '@octokit/types': 13.4.1 + '@octokit/types': 13.5.0 universal-user-agent: 6.0.1 '@octokit/openapi-types@20.0.0': {} - '@octokit/openapi-types@22.1.0': {} + '@octokit/openapi-types@22.2.0': {} '@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.2.0)': dependencies: @@ -4253,7 +4242,7 @@ snapshots: '@octokit/request-error@5.1.0': dependencies: - '@octokit/types': 13.4.1 + '@octokit/types': 13.5.0 deprecation: 2.3.1 once: 1.4.0 @@ -4261,16 +4250,16 @@ snapshots: dependencies: '@octokit/endpoint': 9.0.5 '@octokit/request-error': 5.1.0 - '@octokit/types': 13.4.1 + '@octokit/types': 13.5.0 universal-user-agent: 6.0.1 '@octokit/types@12.6.0': dependencies: '@octokit/openapi-types': 20.0.0 - '@octokit/types@13.4.1': + '@octokit/types@13.5.0': dependencies: - '@octokit/openapi-types': 22.1.0 + '@octokit/openapi-types': 22.2.0 '@pkgjs/parseargs@0.11.0': optional: true @@ -4279,59 +4268,59 @@ snapshots: '@polka/url@1.0.0-next.25': {} - '@rollup/rollup-android-arm-eabi@4.14.3': + '@rollup/rollup-android-arm-eabi@4.17.2': optional: true - '@rollup/rollup-android-arm64@4.14.3': + '@rollup/rollup-android-arm64@4.17.2': optional: true - '@rollup/rollup-darwin-arm64@4.14.3': + '@rollup/rollup-darwin-arm64@4.17.2': optional: true - '@rollup/rollup-darwin-x64@4.14.3': + '@rollup/rollup-darwin-x64@4.17.2': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.14.3': + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.14.3': + '@rollup/rollup-linux-arm-musleabihf@4.17.2': optional: true - '@rollup/rollup-linux-arm64-gnu@4.14.3': + '@rollup/rollup-linux-arm64-gnu@4.17.2': optional: true - '@rollup/rollup-linux-arm64-musl@4.14.3': + '@rollup/rollup-linux-arm64-musl@4.17.2': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.14.3': + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.14.3': + '@rollup/rollup-linux-riscv64-gnu@4.17.2': optional: true - '@rollup/rollup-linux-s390x-gnu@4.14.3': + '@rollup/rollup-linux-s390x-gnu@4.17.2': optional: true - '@rollup/rollup-linux-x64-gnu@4.14.3': + '@rollup/rollup-linux-x64-gnu@4.17.2': optional: true - '@rollup/rollup-linux-x64-musl@4.14.3': + '@rollup/rollup-linux-x64-musl@4.17.2': optional: true - '@rollup/rollup-win32-arm64-msvc@4.14.3': + '@rollup/rollup-win32-arm64-msvc@4.17.2': optional: true - '@rollup/rollup-win32-ia32-msvc@4.14.3': + '@rollup/rollup-win32-ia32-msvc@4.17.2': optional: true - '@rollup/rollup-win32-x64-msvc@4.14.3': + '@rollup/rollup-win32-x64-msvc@4.17.2': optional: true - '@shikijs/core@1.3.0': {} + '@shikijs/core@1.5.1': {} - '@shikijs/transformers@1.3.0': + '@shikijs/transformers@1.5.1': dependencies: - shiki: 1.3.0 + shiki: 1.5.1 '@sinclair/typebox@0.27.8': {} @@ -4346,18 +4335,18 @@ snapshots: '@types/json-schema@7.0.15': {} - '@types/linkify-it@3.0.5': {} + '@types/linkify-it@5.0.0': {} - '@types/markdown-it@13.0.7': + '@types/markdown-it@14.1.1': dependencies: - '@types/linkify-it': 3.0.5 - '@types/mdurl': 1.0.5 + '@types/linkify-it': 5.0.0 + '@types/mdurl': 2.0.0 - '@types/mdurl@1.0.5': {} + '@types/mdurl@2.0.0': {} '@types/minimist@1.2.5': {} - '@types/node@20.12.7': + '@types/node@20.12.11': dependencies: undici-types: 5.26.5 @@ -4373,41 +4362,41 @@ snapshots: '@types/sizzle@2.3.8': {} - '@types/validator@13.11.9': {} + '@types/validator@13.11.10': {} '@types/web-bluetooth@0.0.20': {} '@types/yauzl@2.10.3': dependencies: - '@types/node': 20.12.7 + '@types/node': 20.12.11 optional: true - '@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/type-utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - semver: 7.6.0 + semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 optionalDependencies: @@ -4420,15 +4409,15 @@ snapshots: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - '@typescript-eslint/scope-manager@7.7.0': + '@typescript-eslint/scope-manager@7.8.0': dependencies: - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 - '@typescript-eslint/type-utils@7.7.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/type-utils@7.8.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4(supports-color@8.1.1) eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) @@ -4439,7 +4428,7 @@ snapshots: '@typescript-eslint/types@6.21.0': {} - '@typescript-eslint/types@7.7.0': {} + '@typescript-eslint/types@7.8.0': {} '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': dependencies: @@ -4449,22 +4438,22 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 - semver: 7.6.0 + semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 - semver: 7.6.0 + semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 @@ -4480,21 +4469,21 @@ snapshots: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) eslint: 8.57.0 - semver: 7.6.0 + semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.7.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/utils@7.8.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) eslint: 8.57.0 - semver: 7.6.0 + semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript @@ -4504,19 +4493,19 @@ snapshots: '@typescript-eslint/types': 6.21.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@7.7.0': + '@typescript-eslint/visitor-keys@7.8.0': dependencies: - '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/types': 7.8.0 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-vue@5.0.4(vite@5.2.8(@types/node@20.12.7))(vue@3.4.21(typescript@5.4.5))': + '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.12.11))(vue@3.4.27(typescript@5.4.5))': dependencies: - vite: 5.2.8(@types/node@20.12.7) - vue: 3.4.21(typescript@5.4.5) + vite: 5.2.11(@types/node@20.12.11) + vue: 3.4.27(typescript@5.4.5) - '@vitest/coverage-v8@1.5.0(vitest@1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0))': + '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -4525,143 +4514,143 @@ snapshots: istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.4 istanbul-reports: 3.1.7 - magic-string: 0.30.9 + magic-string: 0.30.10 magicast: 0.3.4 picocolors: 1.0.0 std-env: 3.7.0 strip-literal: 2.1.0 test-exclude: 6.0.0 - vitest: 1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0) + vitest: 1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0) transitivePeerDependencies: - supports-color - '@vitest/expect@1.5.0': + '@vitest/expect@1.6.0': dependencies: - '@vitest/spy': 1.5.0 - '@vitest/utils': 1.5.0 + '@vitest/spy': 1.6.0 + '@vitest/utils': 1.6.0 chai: 4.4.1 - '@vitest/runner@1.5.0': + '@vitest/runner@1.6.0': dependencies: - '@vitest/utils': 1.5.0 + '@vitest/utils': 1.6.0 p-limit: 5.0.0 pathe: 1.1.2 - '@vitest/snapshot@1.5.0': + '@vitest/snapshot@1.6.0': dependencies: - magic-string: 0.30.9 + magic-string: 0.30.10 pathe: 1.1.2 pretty-format: 29.7.0 - '@vitest/spy@1.5.0': + '@vitest/spy@1.6.0': dependencies: tinyspy: 2.2.1 - '@vitest/ui@1.5.0(vitest@1.5.0)': + '@vitest/ui@1.6.0(vitest@1.6.0)': dependencies: - '@vitest/utils': 1.5.0 + '@vitest/utils': 1.6.0 fast-glob: 3.3.2 fflate: 0.8.2 flatted: 3.3.1 pathe: 1.1.2 picocolors: 1.0.0 sirv: 2.0.4 - vitest: 1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0) + vitest: 1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0) - '@vitest/utils@1.5.0': + '@vitest/utils@1.6.0': dependencies: diff-sequences: 29.6.3 estree-walker: 3.0.3 loupe: 2.3.7 pretty-format: 29.7.0 - '@vue/compiler-core@3.4.21': + '@vue/compiler-core@3.4.27': dependencies: - '@babel/parser': 7.24.4 - '@vue/shared': 3.4.21 + '@babel/parser': 7.24.5 + '@vue/shared': 3.4.27 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.0 - '@vue/compiler-dom@3.4.21': + '@vue/compiler-dom@3.4.27': dependencies: - '@vue/compiler-core': 3.4.21 - '@vue/shared': 3.4.21 + '@vue/compiler-core': 3.4.27 + '@vue/shared': 3.4.27 - '@vue/compiler-sfc@3.4.21': + '@vue/compiler-sfc@3.4.27': dependencies: - '@babel/parser': 7.24.4 - '@vue/compiler-core': 3.4.21 - '@vue/compiler-dom': 3.4.21 - '@vue/compiler-ssr': 3.4.21 - '@vue/shared': 3.4.21 + '@babel/parser': 7.24.5 + '@vue/compiler-core': 3.4.27 + '@vue/compiler-dom': 3.4.27 + '@vue/compiler-ssr': 3.4.27 + '@vue/shared': 3.4.27 estree-walker: 2.0.2 - magic-string: 0.30.9 + magic-string: 0.30.10 postcss: 8.4.38 source-map-js: 1.2.0 - '@vue/compiler-ssr@3.4.21': + '@vue/compiler-ssr@3.4.27': dependencies: - '@vue/compiler-dom': 3.4.21 - '@vue/shared': 3.4.21 + '@vue/compiler-dom': 3.4.27 + '@vue/shared': 3.4.27 - '@vue/devtools-api@7.0.27(vue@3.4.21(typescript@5.4.5))': + '@vue/devtools-api@7.1.3(vue@3.4.27(typescript@5.4.5))': dependencies: - '@vue/devtools-kit': 7.0.27(vue@3.4.21(typescript@5.4.5)) + '@vue/devtools-kit': 7.1.3(vue@3.4.27(typescript@5.4.5)) transitivePeerDependencies: - vue - '@vue/devtools-kit@7.0.27(vue@3.4.21(typescript@5.4.5))': + '@vue/devtools-kit@7.1.3(vue@3.4.27(typescript@5.4.5))': dependencies: - '@vue/devtools-shared': 7.0.27 + '@vue/devtools-shared': 7.1.3 hookable: 5.5.3 mitt: 3.0.1 perfect-debounce: 1.0.0 speakingurl: 14.0.1 - vue: 3.4.21(typescript@5.4.5) + vue: 3.4.27(typescript@5.4.5) - '@vue/devtools-shared@7.0.27': + '@vue/devtools-shared@7.1.3': dependencies: rfdc: 1.3.1 - '@vue/reactivity@3.4.21': + '@vue/reactivity@3.4.27': dependencies: - '@vue/shared': 3.4.21 + '@vue/shared': 3.4.27 - '@vue/runtime-core@3.4.21': + '@vue/runtime-core@3.4.27': dependencies: - '@vue/reactivity': 3.4.21 - '@vue/shared': 3.4.21 + '@vue/reactivity': 3.4.27 + '@vue/shared': 3.4.27 - '@vue/runtime-dom@3.4.21': + '@vue/runtime-dom@3.4.27': dependencies: - '@vue/runtime-core': 3.4.21 - '@vue/shared': 3.4.21 + '@vue/runtime-core': 3.4.27 + '@vue/shared': 3.4.27 csstype: 3.1.3 - '@vue/server-renderer@3.4.21(vue@3.4.21(typescript@5.4.5))': + '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.4.5))': dependencies: - '@vue/compiler-ssr': 3.4.21 - '@vue/shared': 3.4.21 - vue: 3.4.21(typescript@5.4.5) + '@vue/compiler-ssr': 3.4.27 + '@vue/shared': 3.4.27 + vue: 3.4.27(typescript@5.4.5) - '@vue/shared@3.4.21': {} + '@vue/shared@3.4.27': {} - '@vueuse/core@10.9.0(vue@3.4.21(typescript@5.4.5))': + '@vueuse/core@10.9.0(vue@3.4.27(typescript@5.4.5))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.9.0 - '@vueuse/shared': 10.9.0(vue@3.4.21(typescript@5.4.5)) - vue-demi: 0.14.7(vue@3.4.21(typescript@5.4.5)) + '@vueuse/shared': 10.9.0(vue@3.4.27(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.27(typescript@5.4.5)) transitivePeerDependencies: - '@vue/composition-api' - vue - '@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.21(typescript@5.4.5))': + '@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.27(typescript@5.4.5))': dependencies: - '@vueuse/core': 10.9.0(vue@3.4.21(typescript@5.4.5)) - '@vueuse/shared': 10.9.0(vue@3.4.21(typescript@5.4.5)) - vue-demi: 0.14.7(vue@3.4.21(typescript@5.4.5)) + '@vueuse/core': 10.9.0(vue@3.4.27(typescript@5.4.5)) + '@vueuse/shared': 10.9.0(vue@3.4.27(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.27(typescript@5.4.5)) optionalDependencies: focus-trap: 7.5.4 transitivePeerDependencies: @@ -4670,9 +4659,9 @@ snapshots: '@vueuse/metadata@10.9.0': {} - '@vueuse/shared@10.9.0(vue@3.4.21(typescript@5.4.5))': + '@vueuse/shared@10.9.0(vue@3.4.27(typescript@5.4.5))': dependencies: - vue-demi: 0.14.7(vue@3.4.21(typescript@5.4.5)) + vue-demi: 0.14.7(vue@3.4.27(typescript@5.4.5)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -4692,6 +4681,12 @@ snapshots: add-stream@1.0.0: {} + agent-base@7.1.1: + dependencies: + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 @@ -4820,6 +4815,10 @@ snapshots: before-after-hook@2.2.3: {} + bidi-js@1.0.3: + dependencies: + require-from-string: 2.0.2 + binary-extensions@2.3.0: {} blob-util@2.0.2: {} @@ -4841,10 +4840,10 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001610 - electron-to-chromium: 1.4.738 + caniuse-lite: 1.0.30001617 + electron-to-chromium: 1.4.763 node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.23.0) + update-browserslist-db: 1.0.15(browserslist@4.23.0) buffer-crc32@0.2.13: {} @@ -4857,7 +4856,7 @@ snapshots: builtin-modules@3.3.0: {} - bundle-require@4.0.2(esbuild@0.19.12): + bundle-require@4.1.0(esbuild@0.19.12): dependencies: esbuild: 0.19.12 load-tsconfig: 0.2.5 @@ -4884,7 +4883,7 @@ snapshots: camelcase@5.3.1: {} - caniuse-lite@1.0.30001610: {} + caniuse-lite@1.0.30001617: {} caseless@0.12.0: {} @@ -4941,7 +4940,7 @@ snapshots: dependencies: restore-cursor: 3.1.0 - cli-table3@0.6.4: + cli-table3@0.6.5: dependencies: string-width: 4.2.3 optionalDependencies: @@ -4958,6 +4957,12 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + code-block-writer@13.0.1: {} color-convert@1.9.3: @@ -4984,6 +4989,30 @@ snapshots: comment-parser@1.4.1: {} + commit-and-tag-version@12.4.1: + dependencies: + chalk: 2.4.2 + conventional-changelog: 3.1.25 + conventional-changelog-config-spec: 2.1.0 + conventional-changelog-conventionalcommits: 6.1.0 + conventional-recommended-bump: 7.0.1 + detect-indent: 6.1.0 + detect-newline: 3.1.0 + dotgitignore: 2.1.0 + figures: 3.2.0 + find-up: 5.0.0 + git-semver-tags: 5.0.1 + jsdom: 23.2.0 + semver: 7.6.2 + w3c-xmlserializer: 5.0.0 + yaml: 2.4.2 + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + common-tags@1.8.2: {} compare-func@2.0.0: @@ -5000,34 +5029,21 @@ snapshots: readable-stream: 3.6.2 typedarray: 0.0.6 + confbox@0.1.7: {} + conventional-changelog-angular@5.0.13: dependencies: compare-func: 2.0.0 q: 1.5.1 - conventional-changelog-angular@7.0.0: - dependencies: - compare-func: 2.0.0 - conventional-changelog-atom@2.0.8: dependencies: q: 1.5.1 - conventional-changelog-atom@4.0.0: {} - - conventional-changelog-cli@4.1.0: - dependencies: - add-stream: 1.0.0 - conventional-changelog: 5.1.0 - meow: 12.1.1 - tempfile: 5.0.0 - conventional-changelog-codemirror@2.0.8: dependencies: q: 1.5.1 - conventional-changelog-codemirror@4.0.0: {} - conventional-changelog-config-spec@2.1.0: {} conventional-changelog-conventionalcommits@4.6.3: @@ -5036,7 +5052,7 @@ snapshots: lodash: 4.17.21 q: 1.5.1 - conventional-changelog-conventionalcommits@7.0.2: + conventional-changelog-conventionalcommits@6.1.0: dependencies: compare-func: 2.0.0 @@ -5057,55 +5073,30 @@ snapshots: read-pkg-up: 3.0.0 through2: 4.0.2 - conventional-changelog-core@7.0.0: - dependencies: - '@hutson/parse-repository-url': 5.0.0 - add-stream: 1.0.0 - conventional-changelog-writer: 7.0.1 - conventional-commits-parser: 5.0.0 - git-raw-commits: 4.0.0 - git-semver-tags: 7.0.1 - hosted-git-info: 7.0.1 - normalize-package-data: 6.0.0 - read-pkg: 8.1.0 - read-pkg-up: 10.1.0 - conventional-changelog-ember@2.0.9: dependencies: q: 1.5.1 - conventional-changelog-ember@4.0.0: {} - conventional-changelog-eslint@3.0.9: dependencies: q: 1.5.1 - conventional-changelog-eslint@5.0.0: {} - conventional-changelog-express@2.0.6: dependencies: q: 1.5.1 - conventional-changelog-express@4.0.0: {} - conventional-changelog-jquery@3.0.11: dependencies: q: 1.5.1 - conventional-changelog-jquery@5.0.0: {} - conventional-changelog-jshint@2.0.9: dependencies: compare-func: 2.0.0 q: 1.5.1 - conventional-changelog-jshint@4.0.0: - dependencies: - compare-func: 2.0.0 - conventional-changelog-preset-loader@2.3.4: {} - conventional-changelog-preset-loader@4.1.0: {} + conventional-changelog-preset-loader@3.0.0: {} conventional-changelog-writer@5.0.1: dependencies: @@ -5119,15 +5110,6 @@ snapshots: split: 1.0.1 through2: 4.0.2 - conventional-changelog-writer@7.0.1: - dependencies: - conventional-commits-filter: 4.0.0 - handlebars: 4.7.8 - json-stringify-safe: 5.0.1 - meow: 12.1.1 - semver: 7.6.0 - split2: 4.2.0 - conventional-changelog@3.1.25: dependencies: conventional-changelog-angular: 5.0.13 @@ -5142,26 +5124,15 @@ snapshots: conventional-changelog-jshint: 2.0.9 conventional-changelog-preset-loader: 2.3.4 - conventional-changelog@5.1.0: - dependencies: - conventional-changelog-angular: 7.0.0 - conventional-changelog-atom: 4.0.0 - conventional-changelog-codemirror: 4.0.0 - conventional-changelog-conventionalcommits: 7.0.2 - conventional-changelog-core: 7.0.0 - conventional-changelog-ember: 4.0.0 - conventional-changelog-eslint: 5.0.0 - conventional-changelog-express: 4.0.0 - conventional-changelog-jquery: 5.0.0 - conventional-changelog-jshint: 4.0.0 - conventional-changelog-preset-loader: 4.1.0 - conventional-commits-filter@2.0.7: dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 - conventional-commits-filter@4.0.0: {} + conventional-commits-filter@3.0.0: + dependencies: + lodash.ismatch: 4.4.0 + modify-values: 1.0.1 conventional-commits-parser@3.2.4: dependencies: @@ -5172,23 +5143,22 @@ snapshots: split2: 3.2.2 through2: 4.0.2 - conventional-commits-parser@5.0.0: + conventional-commits-parser@4.0.0: dependencies: JSONStream: 1.3.5 - is-text-path: 2.0.0 - meow: 12.1.1 - split2: 4.2.0 + is-text-path: 1.0.1 + meow: 8.1.2 + split2: 3.2.2 - conventional-recommended-bump@6.1.0: + conventional-recommended-bump@7.0.1: dependencies: concat-stream: 2.0.0 - conventional-changelog-preset-loader: 2.3.4 - conventional-commits-filter: 2.0.7 - conventional-commits-parser: 3.2.4 - git-raw-commits: 2.0.11 - git-semver-tags: 4.1.1 + conventional-changelog-preset-loader: 3.0.0 + conventional-commits-filter: 3.0.0 + conventional-commits-parser: 4.0.0 + git-raw-commits: 3.0.0 + git-semver-tags: 5.0.1 meow: 8.1.2 - q: 1.5.1 core-js-compat@3.37.0: dependencies: @@ -5204,9 +5174,18 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.0 + + cssstyle@4.0.1: + dependencies: + rrweb-cssom: 0.6.0 + csstype@3.1.3: {} - cypress@13.7.3: + cypress@13.9.0: dependencies: '@cypress/request': 3.0.1 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -5220,10 +5199,10 @@ snapshots: chalk: 4.1.2 check-more-types: 2.24.0 cli-cursor: 3.1.0 - cli-table3: 0.6.4 + cli-table3: 0.6.5 commander: 6.2.1 common-tags: 1.8.2 - dayjs: 1.11.10 + dayjs: 1.11.11 debug: 4.3.4(supports-color@8.1.1) enquirer: 2.4.1 eventemitter2: 6.4.7 @@ -5245,7 +5224,7 @@ snapshots: process: 0.11.10 proxy-from-env: 1.0.0 request-progress: 3.0.0 - semver: 7.6.0 + semver: 7.6.2 supports-color: 8.1.1 tmp: 0.2.3 untildify: 4.0.0 @@ -5253,12 +5232,15 @@ snapshots: dargs@7.0.0: {} - dargs@8.1.0: {} - dashdash@1.14.1: dependencies: assert-plus: 1.0.0 + data-urls@5.0.0: + dependencies: + whatwg-mimetype: 4.0.0 + whatwg-url: 14.0.0 + data-view-buffer@1.0.1: dependencies: call-bind: 1.0.7 @@ -5279,7 +5261,7 @@ snapshots: dateformat@3.0.3: {} - dayjs@1.11.10: {} + dayjs@1.11.11: {} debug@3.2.7(supports-color@8.1.1): dependencies: @@ -5300,6 +5282,8 @@ snapshots: decamelize@1.2.0: {} + decimal.js@10.4.3: {} + deep-eql@4.1.3: dependencies: type-detect: 4.0.8 @@ -5372,7 +5356,7 @@ snapshots: jsbn: 0.1.1 safer-buffer: 2.1.2 - electron-to-chromium@1.4.738: {} + electron-to-chromium@1.4.763: {} emoji-regex@8.0.0: {} @@ -5410,7 +5394,7 @@ snapshots: function.prototype.name: 1.1.6 get-intrinsic: 1.2.4 get-symbol-description: 1.0.2 - globalthis: 1.0.3 + globalthis: 1.0.4 gopd: 1.0.1 has-property-descriptors: 1.0.2 has-proto: 1.0.3 @@ -5561,7 +5545,7 @@ snapshots: eslint: 8.57.0 esquery: 1.5.0 is-builtin-module: 3.2.1 - semver: 7.6.0 + semver: 7.6.2 spdx-expression-parse: 4.0.0 transitivePeerDependencies: - supports-color @@ -5577,7 +5561,7 @@ snapshots: eslint-plugin-unicorn@52.0.0(eslint@8.57.0): dependencies: - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@eslint/eslintrc': 2.1.4 ci-info: 4.0.0 @@ -5592,18 +5576,18 @@ snapshots: read-pkg-up: 7.0.1 regexp-tree: 0.1.27 regjsparser: 0.10.0 - semver: 7.6.0 + semver: 7.6.2 strip-indent: 3.0.0 transitivePeerDependencies: - supports-color - eslint-plugin-vitest@0.4.1(@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)(vitest@1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0)): + eslint-plugin-vitest@0.4.1(@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)(vitest@1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0)): dependencies: - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) - vitest: 1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0) + '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) + vitest: 1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0) transitivePeerDependencies: - supports-color - typescript @@ -5652,7 +5636,7 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: @@ -5794,11 +5778,6 @@ snapshots: locate-path: 6.0.0 path-exists: 4.0.0 - find-up@6.3.0: - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - flat-cache@3.2.0: dependencies: flatted: 3.3.1 @@ -5828,6 +5807,12 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 + form-data@4.0.0: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 @@ -5884,7 +5869,7 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.4 - get-tsconfig@4.7.3: + get-tsconfig@4.7.5: dependencies: resolve-pkg-maps: 1.0.0 @@ -5904,11 +5889,11 @@ snapshots: split2: 3.2.2 through2: 4.0.2 - git-raw-commits@4.0.0: + git-raw-commits@3.0.0: dependencies: - dargs: 8.1.0 - meow: 12.1.1 - split2: 4.2.0 + dargs: 7.0.0 + meow: 8.1.2 + split2: 3.2.2 git-remote-origin-url@2.0.0: dependencies: @@ -5920,10 +5905,10 @@ snapshots: meow: 8.1.2 semver: 6.3.1 - git-semver-tags@7.0.1: + git-semver-tags@5.0.1: dependencies: - meow: 12.1.1 - semver: 7.6.0 + meow: 8.1.2 + semver: 7.6.2 gitconfiglocal@1.0.0: dependencies: @@ -5937,13 +5922,13 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.3.12: + glob@10.3.15: dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 minimatch: 9.0.4 - minipass: 7.0.4 - path-scurry: 1.10.2 + minipass: 7.1.1 + path-scurry: 1.11.1 glob@7.2.3: dependencies: @@ -5962,9 +5947,10 @@ snapshots: dependencies: type-fest: 0.20.2 - globalthis@1.0.3: + globalthis@1.0.4: dependencies: define-properties: 1.2.1 + gopd: 1.0.1 globby@11.1.0: dependencies: @@ -6024,9 +6010,9 @@ snapshots: dependencies: lru-cache: 6.0.0 - hosted-git-info@7.0.1: + html-encoding-sniffer@4.0.0: dependencies: - lru-cache: 10.2.0 + whatwg-encoding: 3.1.1 html-escaper@2.0.2: {} @@ -6037,18 +6023,36 @@ snapshots: domutils: 3.1.0 entities: 4.5.0 + http-proxy-agent@7.0.2: + dependencies: + agent-base: 7.1.1 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + http-signature@1.3.6: dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 sshpk: 1.18.0 + https-proxy-agent@7.0.4: + dependencies: + agent-base: 7.1.1 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + human-signals@1.1.1: {} human-signals@2.1.0: {} human-signals@5.0.0: {} + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + ieee754@1.2.1: {} ignore@5.3.1: {} @@ -6150,6 +6154,8 @@ snapshots: is-plain-object@5.0.0: {} + is-potential-custom-element-name@1.0.1: {} + is-regex@1.1.4: dependencies: call-bind: 1.0.7 @@ -6175,10 +6181,6 @@ snapshots: dependencies: text-extensions: 1.9.0 - is-text-path@2.0.0: - dependencies: - text-extensions: 2.4.0 - is-typed-array@1.1.13: dependencies: which-typed-array: 1.1.15 @@ -6240,6 +6242,34 @@ snapshots: jsdoc-type-pratt-parser@4.0.0: {} + jsdom@23.2.0: + dependencies: + '@asamuzakjp/dom-selector': 2.0.2 + cssstyle: 4.0.1 + data-urls: 5.0.0 + decimal.js: 10.4.3 + form-data: 4.0.0 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 + is-potential-custom-element-name: 1.0.1 + parse5: 7.1.2 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.0.0 + ws: 8.17.0 + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + jsesc@0.5.0: {} jsesc@3.0.2: {} @@ -6250,7 +6280,7 @@ snapshots: json-parse-even-better-errors@2.3.1: {} - json-parse-even-better-errors@3.0.1: {} + json-parse-even-better-errors@3.0.2: {} json-schema-traverse@0.4.1: {} @@ -6260,8 +6290,6 @@ snapshots: json-stringify-safe@5.0.1: {} - jsonc-parser@3.2.1: {} - jsonfile@6.1.0: dependencies: universalify: 2.0.1 @@ -6294,8 +6322,6 @@ snapshots: lines-and-columns@1.2.4: {} - lines-and-columns@2.0.4: {} - listr2@3.14.0(enquirer@2.4.1): dependencies: cli-truncate: 2.1.0 @@ -6320,8 +6346,8 @@ snapshots: local-pkg@0.5.0: dependencies: - mlly: 1.6.1 - pkg-types: 1.0.3 + mlly: 1.7.0 + pkg-types: 1.1.1 locate-path@2.0.0: dependencies: @@ -6341,10 +6367,6 @@ snapshots: dependencies: p-locate: 5.0.0 - locate-path@7.2.0: - dependencies: - p-locate: 6.0.0 - lodash.ismatch@4.4.0: {} lodash.merge@4.6.2: {} @@ -6371,25 +6393,25 @@ snapshots: dependencies: get-func-name: 2.0.2 - lru-cache@10.2.0: {} + lru-cache@10.2.2: {} lru-cache@6.0.0: dependencies: yallist: 4.0.0 - magic-string@0.30.9: + magic-string@0.30.10: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 magicast@0.3.4: dependencies: - '@babel/parser': 7.24.4 - '@babel/types': 7.24.0 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 source-map-js: 1.2.0 make-dir@4.0.0: dependencies: - semver: 7.6.0 + semver: 7.6.2 map-obj@1.0.1: {} @@ -6397,9 +6419,9 @@ snapshots: mark.js@8.11.1: {} - memorystream@0.3.1: {} + mdn-data@2.0.30: {} - meow@12.1.1: {} + memorystream@0.3.1: {} meow@8.1.2: dependencies: @@ -6456,7 +6478,7 @@ snapshots: minimist@1.2.8: {} - minipass@7.0.4: {} + minipass@7.1.1: {} minisearch@6.3.0: {} @@ -6464,11 +6486,11 @@ snapshots: mkdirp@3.0.1: {} - mlly@1.6.1: + mlly@1.7.0: dependencies: acorn: 8.11.3 pathe: 1.1.2 - pkg-types: 1.0.3 + pkg-types: 1.1.1 ufo: 1.5.3 modify-values@1.0.1: {} @@ -6504,14 +6526,7 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.1 - semver: 7.6.0 - validate-npm-package-license: 3.0.4 - - normalize-package-data@6.0.0: - dependencies: - hosted-git-info: 7.0.1 - is-core-module: 2.13.1 - semver: 7.6.0 + semver: 7.6.2 validate-npm-package-license: 3.0.4 normalize-path@3.0.0: {} @@ -6561,14 +6576,14 @@ snapshots: dependencies: mimic-fn: 4.0.0 - optionator@0.9.3: + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 ospath@1.2.2: {} @@ -6584,10 +6599,6 @@ snapshots: dependencies: yocto-queue: 0.1.0 - p-limit@4.0.0: - dependencies: - yocto-queue: 1.0.0 - p-limit@5.0.0: dependencies: yocto-queue: 1.0.0 @@ -6608,10 +6619,6 @@ snapshots: dependencies: p-limit: 3.1.0 - p-locate@6.0.0: - dependencies: - p-limit: 4.0.0 - p-map@4.0.0: dependencies: aggregate-error: 3.1.0 @@ -6636,24 +6643,18 @@ snapshots: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - parse-json@7.1.1: - dependencies: - '@babel/code-frame': 7.24.2 - error-ex: 1.3.2 - json-parse-even-better-errors: 3.0.1 - lines-and-columns: 2.0.4 - type-fest: 3.13.1 - parse-srcset@1.0.2: {} + parse5@7.1.2: + dependencies: + entities: 4.5.0 + path-browserify@1.0.1: {} path-exists@3.0.0: {} path-exists@4.0.0: {} - path-exists@5.0.0: {} - path-is-absolute@1.0.1: {} path-key@3.1.1: {} @@ -6662,10 +6663,10 @@ snapshots: path-parse@1.0.7: {} - path-scurry@1.10.2: + path-scurry@1.11.1: dependencies: - lru-cache: 10.2.0 - minipass: 7.0.4 + lru-cache: 10.2.2 + minipass: 7.1.1 path-type@3.0.0: dependencies: @@ -6695,10 +6696,10 @@ snapshots: pirates@4.0.6: {} - pkg-types@1.0.3: + pkg-types@1.1.1: dependencies: - jsonc-parser: 3.2.1 - mlly: 1.6.1 + confbox: 0.1.7 + mlly: 1.7.0 pathe: 1.1.2 pluralize@8.0.0: {} @@ -6708,7 +6709,7 @@ snapshots: postcss-load-config@4.0.2(postcss@8.4.38): dependencies: lilconfig: 3.1.1 - yaml: 2.4.1 + yaml: 2.4.2 optionalDependencies: postcss: 8.4.38 @@ -6718,7 +6719,7 @@ snapshots: picocolors: 1.0.0 source-map-js: 1.2.0 - preact@10.20.2: {} + preact@10.21.0: {} prelude-ls@1.2.1: {} @@ -6739,7 +6740,7 @@ snapshots: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 18.2.0 + react-is: 18.3.1 process-nextick-args@2.0.1: {} @@ -6768,19 +6769,13 @@ snapshots: quick-lru@4.0.1: {} - react-is@18.2.0: {} + react-is@18.3.1: {} read-package-json-fast@3.0.2: dependencies: - json-parse-even-better-errors: 3.0.1 + json-parse-even-better-errors: 3.0.2 npm-normalize-package-bin: 3.0.1 - read-pkg-up@10.1.0: - dependencies: - find-up: 6.3.0 - read-pkg: 8.1.0 - type-fest: 4.15.0 - read-pkg-up@3.0.0: dependencies: find-up: 2.1.0 @@ -6805,13 +6800,6 @@ snapshots: parse-json: 5.2.0 type-fest: 0.6.0 - read-pkg@8.1.0: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 6.0.0 - parse-json: 7.1.1 - type-fest: 4.15.0 - readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 @@ -6856,6 +6844,8 @@ snapshots: require-directory@2.1.1: {} + require-from-string@2.0.2: {} + requires-port@1.0.0: {} resolve-from@4.0.0: {} @@ -6883,32 +6873,34 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@5.0.5: + rimraf@5.0.7: dependencies: - glob: 10.3.12 + glob: 10.3.15 - rollup@4.14.3: + rollup@4.17.2: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.14.3 - '@rollup/rollup-android-arm64': 4.14.3 - '@rollup/rollup-darwin-arm64': 4.14.3 - '@rollup/rollup-darwin-x64': 4.14.3 - '@rollup/rollup-linux-arm-gnueabihf': 4.14.3 - '@rollup/rollup-linux-arm-musleabihf': 4.14.3 - '@rollup/rollup-linux-arm64-gnu': 4.14.3 - '@rollup/rollup-linux-arm64-musl': 4.14.3 - '@rollup/rollup-linux-powerpc64le-gnu': 4.14.3 - '@rollup/rollup-linux-riscv64-gnu': 4.14.3 - '@rollup/rollup-linux-s390x-gnu': 4.14.3 - '@rollup/rollup-linux-x64-gnu': 4.14.3 - '@rollup/rollup-linux-x64-musl': 4.14.3 - '@rollup/rollup-win32-arm64-msvc': 4.14.3 - '@rollup/rollup-win32-ia32-msvc': 4.14.3 - '@rollup/rollup-win32-x64-msvc': 4.14.3 + '@rollup/rollup-android-arm-eabi': 4.17.2 + '@rollup/rollup-android-arm64': 4.17.2 + '@rollup/rollup-darwin-arm64': 4.17.2 + '@rollup/rollup-darwin-x64': 4.17.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 + '@rollup/rollup-linux-arm-musleabihf': 4.17.2 + '@rollup/rollup-linux-arm64-gnu': 4.17.2 + '@rollup/rollup-linux-arm64-musl': 4.17.2 + '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 + '@rollup/rollup-linux-riscv64-gnu': 4.17.2 + '@rollup/rollup-linux-s390x-gnu': 4.17.2 + '@rollup/rollup-linux-x64-gnu': 4.17.2 + '@rollup/rollup-linux-x64-musl': 4.17.2 + '@rollup/rollup-win32-arm64-msvc': 4.17.2 + '@rollup/rollup-win32-ia32-msvc': 4.17.2 + '@rollup/rollup-win32-x64-msvc': 4.17.2 fsevents: 2.3.3 + rrweb-cssom@0.6.0: {} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 @@ -6945,15 +6937,17 @@ snapshots: parse-srcset: 1.0.2 postcss: 8.4.38 + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 + search-insights@2.13.0: {} semver@5.7.2: {} semver@6.3.1: {} - semver@7.6.0: - dependencies: - lru-cache: 6.0.0 + semver@7.6.2: {} set-function-length@1.2.2: dependencies: @@ -6979,9 +6973,9 @@ snapshots: shell-quote@1.8.1: {} - shiki@1.3.0: + shiki@1.5.1: dependencies: - '@shikijs/core': 1.3.0 + '@shikijs/core': 1.5.1 side-channel@1.0.6: dependencies: @@ -7049,8 +7043,6 @@ snapshots: dependencies: readable-stream: 3.6.2 - split2@4.2.0: {} - split@1.0.1: dependencies: through: 2.3.8 @@ -7069,23 +7061,6 @@ snapshots: stackback@0.0.2: {} - standard-version@9.5.0: - dependencies: - chalk: 2.4.2 - conventional-changelog: 3.1.25 - conventional-changelog-config-spec: 2.1.0 - conventional-changelog-conventionalcommits: 4.6.3 - conventional-recommended-bump: 6.1.0 - detect-indent: 6.1.0 - detect-newline: 3.1.0 - dotgitignore: 2.1.0 - figures: 3.2.0 - find-up: 5.0.0 - git-semver-tags: 4.1.1 - semver: 7.6.0 - stringify-package: 1.0.1 - yargs: 16.2.0 - std-env@3.7.0: {} string-width@4.2.3: @@ -7127,8 +7102,6 @@ snapshots: dependencies: safe-buffer: 5.2.1 - stringify-package@1.0.1: {} - strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -7157,7 +7130,7 @@ snapshots: dependencies: '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 10.3.12 + glob: 10.3.15 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -7177,6 +7150,8 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} + symbol-tree@3.2.4: {} + synckit@0.8.8: dependencies: '@pkgr/core': 0.1.1 @@ -7184,12 +7159,6 @@ snapshots: tabbable@6.2.0: {} - temp-dir@3.0.0: {} - - tempfile@5.0.0: - dependencies: - temp-dir: 3.0.0 - test-exclude@6.0.0: dependencies: '@istanbuljs/schema': 0.1.3 @@ -7198,8 +7167,6 @@ snapshots: text-extensions@1.9.0: {} - text-extensions@2.4.0: {} - text-table@0.2.0: {} thenify-all@1.6.0: @@ -7223,7 +7190,7 @@ snapshots: through@2.3.8: {} - tinybench@2.7.0: {} + tinybench@2.8.0: {} tinypool@0.8.4: {} @@ -7239,7 +7206,7 @@ snapshots: totalist@3.0.1: {} - tough-cookie@4.1.3: + tough-cookie@4.1.4: dependencies: psl: 1.9.0 punycode: 2.3.1 @@ -7250,6 +7217,10 @@ snapshots: dependencies: punycode: 2.3.1 + tr46@5.0.0: + dependencies: + punycode: 2.3.1 + tree-kill@1.2.2: {} trim-newlines@3.0.1: {} @@ -7271,7 +7242,7 @@ snapshots: tsup@8.0.2(postcss@8.4.38)(typescript@5.4.5): dependencies: - bundle-require: 4.0.2(esbuild@0.19.12) + bundle-require: 4.1.0(esbuild@0.19.12) cac: 6.7.14 chokidar: 3.6.0 debug: 4.3.4(supports-color@8.1.1) @@ -7281,7 +7252,7 @@ snapshots: joycon: 3.1.1 postcss-load-config: 4.0.2(postcss@8.4.38) resolve-from: 5.0.0 - rollup: 4.14.3 + rollup: 4.17.2 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tree-kill: 1.2.2 @@ -7297,10 +7268,10 @@ snapshots: tslib: 1.14.1 typescript: 5.4.5 - tsx@4.7.2: + tsx@4.10.1: dependencies: - esbuild: 0.19.12 - get-tsconfig: 4.7.3 + esbuild: 0.20.2 + get-tsconfig: 4.7.5 optionalDependencies: fsevents: 2.3.3 @@ -7328,10 +7299,6 @@ snapshots: type-fest@0.8.1: {} - type-fest@3.13.1: {} - - type-fest@4.15.0: {} - typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 @@ -7394,7 +7361,7 @@ snapshots: untildify@4.0.0: {} - update-browserslist-db@1.0.13(browserslist@4.23.0): + update-browserslist-db@1.0.15(browserslist@4.23.0): dependencies: browserslist: 4.23.0 escalade: 3.1.2 @@ -7418,7 +7385,7 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - validator@13.11.0: {} + validator@13.12.0: {} verror@1.10.0: dependencies: @@ -7426,13 +7393,13 @@ snapshots: core-util-is: 1.0.2 extsprintf: 1.3.0 - vite-node@1.5.0(@types/node@20.12.7): + vite-node@1.6.0(@types/node@20.12.11): dependencies: cac: 6.7.14 debug: 4.3.4(supports-color@8.1.1) pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.8(@types/node@20.12.7) + vite: 5.2.11(@types/node@20.12.11) transitivePeerDependencies: - '@types/node' - less @@ -7443,32 +7410,32 @@ snapshots: - supports-color - terser - vite@5.2.8(@types/node@20.12.7): + vite@5.2.11(@types/node@20.12.11): dependencies: esbuild: 0.20.2 postcss: 8.4.38 - rollup: 4.14.3 + rollup: 4.17.2 optionalDependencies: - '@types/node': 20.12.7 + '@types/node': 20.12.11 fsevents: 2.3.3 - vitepress@1.1.0(@algolia/client-search@4.23.3)(@types/node@20.12.7)(postcss@8.4.38)(search-insights@2.13.0)(typescript@5.4.5): + vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.12.11)(postcss@8.4.38)(search-insights@2.13.0)(typescript@5.4.5): dependencies: '@docsearch/css': 3.6.0 '@docsearch/js': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0) - '@shikijs/core': 1.3.0 - '@shikijs/transformers': 1.3.0 - '@types/markdown-it': 13.0.7 - '@vitejs/plugin-vue': 5.0.4(vite@5.2.8(@types/node@20.12.7))(vue@3.4.21(typescript@5.4.5)) - '@vue/devtools-api': 7.0.27(vue@3.4.21(typescript@5.4.5)) - '@vueuse/core': 10.9.0(vue@3.4.21(typescript@5.4.5)) - '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.21(typescript@5.4.5)) + '@shikijs/core': 1.5.1 + '@shikijs/transformers': 1.5.1 + '@types/markdown-it': 14.1.1 + '@vitejs/plugin-vue': 5.0.4(vite@5.2.11(@types/node@20.12.11))(vue@3.4.27(typescript@5.4.5)) + '@vue/devtools-api': 7.1.3(vue@3.4.27(typescript@5.4.5)) + '@vueuse/core': 10.9.0(vue@3.4.27(typescript@5.4.5)) + '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.27(typescript@5.4.5)) focus-trap: 7.5.4 mark.js: 8.11.1 minisearch: 6.3.0 - shiki: 1.3.0 - vite: 5.2.8(@types/node@20.12.7) - vue: 3.4.21(typescript@5.4.5) + shiki: 1.5.1 + vite: 5.2.11(@types/node@20.12.11) + vue: 3.4.27(typescript@5.4.5) optionalDependencies: postcss: 8.4.38 transitivePeerDependencies: @@ -7498,31 +7465,32 @@ snapshots: - typescript - universal-cookie - vitest@1.5.0(@types/node@20.12.7)(@vitest/ui@1.5.0): + vitest@1.6.0(@types/node@20.12.11)(@vitest/ui@1.6.0)(jsdom@23.2.0): dependencies: - '@vitest/expect': 1.5.0 - '@vitest/runner': 1.5.0 - '@vitest/snapshot': 1.5.0 - '@vitest/spy': 1.5.0 - '@vitest/utils': 1.5.0 + '@vitest/expect': 1.6.0 + '@vitest/runner': 1.6.0 + '@vitest/snapshot': 1.6.0 + '@vitest/spy': 1.6.0 + '@vitest/utils': 1.6.0 acorn-walk: 8.3.2 chai: 4.4.1 debug: 4.3.4(supports-color@8.1.1) execa: 8.0.1 local-pkg: 0.5.0 - magic-string: 0.30.9 + magic-string: 0.30.10 pathe: 1.1.2 picocolors: 1.0.0 std-env: 3.7.0 strip-literal: 2.1.0 - tinybench: 2.7.0 + tinybench: 2.8.0 tinypool: 0.8.4 - vite: 5.2.8(@types/node@20.12.7) - vite-node: 1.5.0(@types/node@20.12.7) + vite: 5.2.11(@types/node@20.12.11) + vite-node: 1.6.0(@types/node@20.12.11) why-is-node-running: 2.2.2 optionalDependencies: - '@types/node': 20.12.7 - '@vitest/ui': 1.5.0(vitest@1.5.0) + '@types/node': 20.12.11 + '@vitest/ui': 1.6.0(vitest@1.6.0) + jsdom: 23.2.0 transitivePeerDependencies: - less - lightningcss @@ -7532,22 +7500,39 @@ snapshots: - supports-color - terser - vue-demi@0.14.7(vue@3.4.21(typescript@5.4.5)): + vue-demi@0.14.7(vue@3.4.27(typescript@5.4.5)): dependencies: - vue: 3.4.21(typescript@5.4.5) + vue: 3.4.27(typescript@5.4.5) - vue@3.4.21(typescript@5.4.5): + vue@3.4.27(typescript@5.4.5): dependencies: - '@vue/compiler-dom': 3.4.21 - '@vue/compiler-sfc': 3.4.21 - '@vue/runtime-dom': 3.4.21 - '@vue/server-renderer': 3.4.21(vue@3.4.21(typescript@5.4.5)) - '@vue/shared': 3.4.21 + '@vue/compiler-dom': 3.4.27 + '@vue/compiler-sfc': 3.4.27 + '@vue/runtime-dom': 3.4.27 + '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.4.5)) + '@vue/shared': 3.4.27 optionalDependencies: typescript: 5.4.5 + w3c-xmlserializer@5.0.0: + dependencies: + xml-name-validator: 5.0.0 + webidl-conversions@4.0.2: {} + webidl-conversions@7.0.0: {} + + whatwg-encoding@3.1.1: + dependencies: + iconv-lite: 0.6.3 + + whatwg-mimetype@4.0.0: {} + + whatwg-url@14.0.0: + dependencies: + tr46: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-url@7.1.0: dependencies: lodash.sortby: 4.7.0 @@ -7579,6 +7564,8 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 + word-wrap@1.2.5: {} + wordwrap@1.0.0: {} wrap-ansi@6.2.0: @@ -7601,16 +7588,24 @@ snapshots: wrappy@1.0.2: {} + ws@8.17.0: {} + + xml-name-validator@5.0.0: {} + + xmlchars@2.2.0: {} + xtend@4.0.2: {} y18n@5.0.8: {} yallist@4.0.0: {} - yaml@2.4.1: {} + yaml@2.4.2: {} yargs-parser@20.2.9: {} + yargs-parser@21.1.1: {} + yargs@16.2.0: dependencies: cliui: 7.0.4 @@ -7621,6 +7616,16 @@ snapshots: y18n: 5.0.8 yargs-parser: 20.2.9 + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.1.2 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 diff --git a/scripts/generate-locales.ts b/scripts/generate-locales.ts index ac50f6d11fc..1b9457eae6f 100644 --- a/scripts/generate-locales.ts +++ b/scripts/generate-locales.ts @@ -312,22 +312,15 @@ async function normalizeLocaleFile(filePath: string, definitionKey: string) { const legacyDefinitions = ['app', 'cell_phone', 'team']; const definitionsToSkip = [ - 'commerce', - 'company', - 'database', 'date', 'finance', - 'hacker', 'internet', 'location', 'lorem', 'metadata', - 'music', 'person', 'phone_number', - 'science', 'system', - 'vehicle', 'word', ...legacyDefinitions, ]; diff --git a/src/definitions/music.ts b/src/definitions/music.ts index 46c294a5cf8..9b60e2272ba 100644 --- a/src/definitions/music.ts +++ b/src/definitions/music.ts @@ -4,6 +4,16 @@ import type { LocaleEntry } from './definitions'; * The possible definitions related to music. */ export type MusicDefinition = LocaleEntry<{ + /** + * The names of some albums. + */ + album: string[]; + + /** + * The names of some artists. + */ + artist: string[]; + /** * The names of some music genres. */ diff --git a/src/locales/af_ZA/company/suffix.ts b/src/locales/af_ZA/company/suffix.ts index d1bd220258d..872faf24941 100644 --- a/src/locales/af_ZA/company/suffix.ts +++ b/src/locales/af_ZA/company/suffix.ts @@ -1 +1 @@ -export default ['Pty Ltd', 'Ltd', 'CC']; +export default ['CC', 'Ltd', 'Pty Ltd']; diff --git a/src/locales/ar/commerce/department.ts b/src/locales/ar/commerce/department.ts index f32f8b18e91..06c7cffc6e6 100644 --- a/src/locales/ar/commerce/department.ts +++ b/src/locales/ar/commerce/department.ts @@ -1,21 +1,21 @@ export default [ - 'كتب', + 'أحذية', + 'أدوات', + 'أطفال', + 'أغراض رياضية', 'ألعاب', 'إلكترونيات', - 'حواسيب', - 'بيت', - 'حديقة', - 'أدوات', + 'السيارات', 'بقالة', - 'صحة', + 'بيت', 'جمال', - 'أطفال', + 'حديقة', + 'حواسيب', 'رضع', - 'ملابس', - 'أحذية', - 'مجوهرات', - 'أغراض رياضية', - 'في الهواء الطلق', - 'السيارات', + 'صحة', 'صناعة', + 'في الهواء الطلق', + 'كتب', + 'مجوهرات', + 'ملابس', ]; diff --git a/src/locales/ar/commerce/product_name.ts b/src/locales/ar/commerce/product_name.ts index 4aa9ebbcd84..a89f502bc14 100644 --- a/src/locales/ar/commerce/product_name.ts +++ b/src/locales/ar/commerce/product_name.ts @@ -1,59 +1,59 @@ export default { adjective: [ - 'صغير', - 'مريح', - 'ريفي', + 'أملس', + 'بدون علامة', 'ذكي', 'رائع', - 'لا يصدق', - 'عملي', - 'أملس', - 'ممتاز', - 'عام', - 'يدويا', + 'ريفي', + 'صغير', 'صنع يدوي', + 'طيب المذاق', + 'عام', + 'عملي', + 'لا يصدق', 'مرخص', + 'مريح', 'مشتق', - 'بدون علامة', - 'طيب المذاق', + 'ممتاز', + 'يدويا', ], material: [ - 'فولاذ', - 'خشبي', - 'خرسانة', 'بلاستيك', - 'قطن', + 'خرسانة', + 'خشبي', 'صوان', + 'طازج', + 'فولاذ', + 'قطن', + 'مجمد', 'مطاط', 'معدن', 'ناعم', - 'طازج', - 'مجمد', ], product: [ - 'كرسي', - 'سيارة', - 'حاسوب', - 'لوحة المفاتيح', - 'فأر', - 'دراجة هوائية', - 'كرة', - 'قفازات', - 'بنطال', - 'قميص', - 'طاولة', 'أحذية', - 'قبعة', - 'مناشف', - 'صابون', + 'بنطال', + 'بيتزا', 'تونة', + 'جبن', + 'حاسوب', 'دجاج', + 'دراجة هوائية', + 'رقائق بطاطس', + 'سجق', + 'سلطة', 'سمك', - 'جبن', + 'سيارة', + 'صابون', + 'طاولة', + 'فأر', + 'قبعة', + 'قفازات', + 'قميص', + 'كرة', + 'كرسي', 'لحم خنزير مقدد', - 'بيتزا', - 'سلطة', - 'سجق', - 'رقائق بطاطس', + 'لوحة المفاتيح', + 'مناشف', ], }; diff --git a/src/locales/ar/vehicle/fuel.ts b/src/locales/ar/vehicle/fuel.ts index 2c0fe309990..345805edcec 100644 --- a/src/locales/ar/vehicle/fuel.ts +++ b/src/locales/ar/vehicle/fuel.ts @@ -1 +1 @@ -export default ['ديزل', 'كهربائي', 'بنزين', 'هجين']; +export default ['بنزين', 'ديزل', 'كهربائي', 'هجين']; diff --git a/src/locales/ar/vehicle/manufacturer.ts b/src/locales/ar/vehicle/manufacturer.ts index 4ca85b0758a..9a0b8380c73 100644 --- a/src/locales/ar/vehicle/manufacturer.ts +++ b/src/locales/ar/vehicle/manufacturer.ts @@ -1,30 +1,30 @@ export default [ - 'شيفروليه', - 'كاديلاك', - 'فورد', - 'كرايسلر', - 'دودج', - 'جيب', - 'تسلا', - 'تويوتا', - 'هوندا', - 'نيسان', 'أودي', - 'مرسيدس بنز', - 'بي إم دبليو', - 'فولكس واجن', - 'بورش', - 'جاكوار', 'استون مارتن', - 'لاند روفر', 'بنتلي', - 'ميني', + 'بوجاتي', + 'بورش', + 'بي إم دبليو', + 'تسلا', + 'تويوتا', + 'جاكوار', + 'جيب', + 'دودج', 'رولزرويس', + 'شيفروليه', + 'فورد', + 'فولكس واجن', 'فيات', - 'لامبورغيني', - 'مازيراتي', 'فيراري', - 'بوجاتي', + 'كاديلاك', + 'كرايسلر', 'كيا', + 'لامبورغيني', + 'لاند روفر', + 'مازيراتي', + 'مرسيدس بنز', + 'ميني', + 'نيسان', + 'هوندا', 'هيونداي', ]; diff --git a/src/locales/ar/vehicle/model.ts b/src/locales/ar/vehicle/model.ts index 9e398c3a1c6..fc3e57858ee 100644 --- a/src/locales/ar/vehicle/model.ts +++ b/src/locales/ar/vehicle/model.ts @@ -1,47 +1,47 @@ export default [ - 'فييستا', - 'التركيز', - 'الثور', - 'موستانج', + 'أفينتادور', + 'ألتيما', + 'إسكاليد', + 'إمبالا', + 'اتفاق', 'اكسبلورر', 'البعثة', - 'نموذج T', - 'رانتشيرو', - 'فولت', - 'كروز', - 'ماليبو', - 'إمبالا', - 'كامارو', - 'كورفيت', - 'كولورادو', - 'سيلفرادو', - 'ش كامينو', - 'إسكاليد', - 'جبال الألب', - 'شاحن', - 'لو بارون', + 'التركيز', + 'الثور', + 'القافلة الكبرى', + 'الكونتاش', + 'المدنية', + 'النموذج 3', + 'بريوس', 'بي تي كروزر', 'تشالنجر', + 'جبال الألب', + 'جراند شيروكي', + 'جزء', + 'جولف', + 'جيتا', + 'خنفساء', 'دورانجو', - 'القافلة الكبرى', + 'رانتشيرو', 'رانجلر', - 'جراند شيروكي', 'رودستر', + 'سبايدر', + 'سنترا', + 'سيلفرادو', + 'ش كامينو', + 'شاحن', 'عارضات ازياء', - 'النموذج 3', + 'فولت', + 'فييستا', + 'كامارو', 'كامري', - 'بريوس', + 'كروز', + 'كورفيت', + 'كولورادو', 'لاند كروزر', - 'اتفاق', - 'المدنية', - 'جزء', - 'سنترا', - 'ألتيما', - 'خنفساء', - 'جيتا', - 'جولف', - 'سبايدر', - 'الكونتاش', + 'لو بارون', + 'ماليبو', 'مورسيلاغو', - 'أفينتادور', + 'موستانج', + 'نموذج T', ]; diff --git a/src/locales/ar/vehicle/type.ts b/src/locales/ar/vehicle/type.ts index 655e494e25e..9e24dde36fd 100644 --- a/src/locales/ar/vehicle/type.ts +++ b/src/locales/ar/vehicle/type.ts @@ -1,13 +1,13 @@ export default [ - 'كارغو فان', - 'مكشوفة', - 'كوبيه', - 'طاقم الكابينة بيك آب', 'تمديد الكابينة بيك آب', - 'هاتشباك', - 'ميني فان', 'سيارة الركاب', 'سيارة رياضية', 'سيدان', + 'طاقم الكابينة بيك آب', 'عربة', + 'كارغو فان', + 'كوبيه', + 'مكشوفة', + 'ميني فان', + 'هاتشباك', ]; diff --git a/src/locales/az/commerce/department.ts b/src/locales/az/commerce/department.ts index ff73d603885..d02ab4f4aa7 100644 --- a/src/locales/az/commerce/department.ts +++ b/src/locales/az/commerce/department.ts @@ -1,20 +1,20 @@ export default [ - 'Kitablar', - 'Filmlər', - 'musiqi', - 'oyunlar', + 'Avtomobil', + 'Ayyaqqabı', 'Elektronika', - 'Kompyuterlər', 'Ev', - 'садинструмент', + 'Filmlər', + 'Geyim', + 'Kitablar', + 'Kompyuterlər', + 'Oyuncaqlar', 'Səhiyyə', + 'bəzək', 'gözəllik', - 'Oyuncaqlar', + 'musiqi', + 'oyunlar', + 'turizm', 'uşaq üçün', - 'Geyim', - 'Ayyaqqabı', - 'bəzək', 'İdman', - 'turizm', - 'Avtomobil', + 'садинструмент', ]; diff --git a/src/locales/az/commerce/product_name.ts b/src/locales/az/commerce/product_name.ts index 1fc141ce05f..562b9e78ffa 100644 --- a/src/locales/az/commerce/product_name.ts +++ b/src/locales/az/commerce/product_name.ts @@ -2,24 +2,24 @@ export default { adjective: [ 'Balaca', 'Ergonomik', + 'Fantastik', 'Kobud', - 'İntellektual', 'Möhtəşəm', + 'Mükəmməl', + 'Parlaq', 'İnanılmaz', - 'Fantastik', + 'İntellektual', 'Əlverişli', - 'Parlaq', - 'Mükəmməl', ], - material: ['Polad', 'Ağac', 'Beton', 'Plastik', 'Pambıq', 'Qranit', 'Rezin'], + material: ['Ağac', 'Beton', 'Pambıq', 'Plastik', 'Polad', 'Qranit', 'Rezin'], product: [ - 'Stul', 'Avtomobil', - 'Kompyuter', 'Beret', + 'Kompyuter', 'Kulon', + 'Kəmər', 'Stol', + 'Stul', 'Sviter', - 'Kəmər', ], }; diff --git a/src/locales/base/database/collation.ts b/src/locales/base/database/collation.ts index 6ace181b110..b1e0254fe15 100644 --- a/src/locales/base/database/collation.ts +++ b/src/locales/base/database/collation.ts @@ -1,9 +1,9 @@ export default [ - 'utf8_unicode_ci', - 'utf8_general_ci', - 'utf8_bin', 'ascii_bin', 'ascii_general_ci', 'cp1250_bin', 'cp1250_general_ci', + 'utf8_bin', + 'utf8_general_ci', + 'utf8_unicode_ci', ]; diff --git a/src/locales/base/database/engine.ts b/src/locales/base/database/engine.ts index 58048e94484..3b4d880cf75 100644 --- a/src/locales/base/database/engine.ts +++ b/src/locales/base/database/engine.ts @@ -1 +1 @@ -export default ['InnoDB', 'MyISAM', 'MEMORY', 'CSV', 'BLACKHOLE', 'ARCHIVE']; +export default ['ARCHIVE', 'BLACKHOLE', 'CSV', 'InnoDB', 'MEMORY', 'MyISAM']; diff --git a/src/locales/base/database/type.ts b/src/locales/base/database/type.ts index d2c75697ba6..1abfa0beee7 100644 --- a/src/locales/base/database/type.ts +++ b/src/locales/base/database/type.ts @@ -1,26 +1,26 @@ export default [ - 'int', - 'varchar', - 'text', + 'bigint', + 'binary', + 'bit', + 'blob', + 'boolean', 'date', 'datetime', - 'tinyint', - 'time', - 'timestamp', - 'smallint', - 'mediumint', - 'bigint', 'decimal', - 'float', 'double', - 'real', - 'bit', - 'boolean', - 'serial', - 'blob', - 'binary', 'enum', - 'set', + 'float', 'geometry', + 'int', + 'mediumint', 'point', + 'real', + 'serial', + 'set', + 'smallint', + 'text', + 'time', + 'timestamp', + 'tinyint', + 'varchar', ]; diff --git a/src/locales/cs_CZ/company/suffix.ts b/src/locales/cs_CZ/company/suffix.ts index 9e50cd7832f..5c5540527b6 100644 --- a/src/locales/cs_CZ/company/suffix.ts +++ b/src/locales/cs_CZ/company/suffix.ts @@ -1 +1 @@ -export default ['s.r.o.', 'a.s.', 'v.o.s.']; +export default ['a.s.', 's.r.o.', 'v.o.s.']; diff --git a/src/locales/da/company/buzz_adjective.ts b/src/locales/da/company/buzz_adjective.ts index f1e2209c463..2268275199a 100644 --- a/src/locales/da/company/buzz_adjective.ts +++ b/src/locales/da/company/buzz_adjective.ts @@ -1,9 +1,9 @@ export default [ '24/365', '24/7', - 'allestedsnærværende', 'B2B', 'B2C', + 'allestedsnærværende', 'back-end', 'bedst-i-klassen', 'brugercentrerede', diff --git a/src/locales/da/company/buzz_noun.ts b/src/locales/da/company/buzz_noun.ts index dc96f2fa316..c13dac44212 100644 --- a/src/locales/da/company/buzz_noun.ts +++ b/src/locales/da/company/buzz_noun.ts @@ -1,4 +1,5 @@ export default [ + 'ROI', 'applikationer', 'arkitektur', 'blockchains', @@ -31,7 +32,6 @@ export default [ 'platforme', 'portaler', 'relationer', - 'ROI', 'skemaer', 'synergier', 'systemer', diff --git a/src/locales/da/company/company_name.ts b/src/locales/da/company/company_name.ts index a0fdb09753d..45749c46ac8 100644 --- a/src/locales/da/company/company_name.ts +++ b/src/locales/da/company/company_name.ts @@ -1,4 +1,8 @@ export default [ + 'Aabenraa Anlæg', + 'Aabenraa Automater', + 'Aalborg Aqua', + 'Aarhus Automatik', 'Albertslund Aluminium', 'Albertslund App', 'Allerød Akustik', @@ -32,6 +36,7 @@ export default [ 'Egedal Erhverv', 'Esbjerg Elektronik', 'Esbjerg Energi', + 'Faaborg-Midtfyn Film', 'Falster Farmaceuter', 'Fanø Fartøj', 'Fanø Forsikring', @@ -53,7 +58,6 @@ export default [ 'Furesø Fisk', 'Fyn Fiskeri', 'Fynske Fødevarer', - 'Faaborg-Midtfyn Film', 'Gentofte Genbrug', 'Gladsaxe Glas', 'Glostrup Gaming', @@ -62,9 +66,9 @@ export default [ 'Gribskov Græs', 'GrønBølge Energi', 'Grønland Gourmet', + 'GuldHornet Mode', 'Guldborgsund Gas', 'Guldborgsund Guld', - 'GuldHornet Mode', 'Haderslev Haver', 'Haderslev Håndværk', 'Halsnæs Halvleder', @@ -106,9 +110,9 @@ export default [ 'Mors Møbler', 'Morsø Maling', 'NaturLinjen Kosmetik', + 'NordHavn Teknologier', 'Norddjurs Naturlig', 'Nordfyn Næringsstoffer', - 'NordHavn Teknologier', 'Nordisk NanoLab', 'Nordlys Finans', 'Nyborg Nytte', @@ -139,12 +143,12 @@ export default [ 'Sydfyn Sko', 'SynergiSport Udstyr', 'Sønderborg Sol', + 'Taastrup Transport', 'Thisted Tjenester', 'Thy Teknik', 'Trekroner Forsikring', - 'Tønder Tekstil', 'Tårnby Tekstiler', - 'Taastrup Transport', + 'Tønder Tekstil', 'Valby VandTek', 'Varde Varehandel', 'Vejen Vand', @@ -153,11 +157,7 @@ export default [ 'Viborg Video', 'VikingNetværk', 'Vordingborg Vind', + 'Århus Robotik', 'Øresund MarineTek', 'ØstVind Innovation', - 'Aabenraa Anlæg', - 'Aabenraa Automater', - 'Aalborg Aqua', - 'Aarhus Automatik', - 'Århus Robotik', ]; diff --git a/src/locales/da/company/descriptor.ts b/src/locales/da/company/descriptor.ts index 72d70a3ae72..8840c3f7ce0 100644 --- a/src/locales/da/company/descriptor.ts +++ b/src/locales/da/company/descriptor.ts @@ -38,8 +38,8 @@ export default [ 'holdningsorienteret', 'homogen', 'hybrid', - 'højniveau', 'håndgribelig', + 'højniveau', 'indholdsbaseret', 'inkremental', 'interaktiv', diff --git a/src/locales/da/company/suffix.ts b/src/locales/da/company/suffix.ts index ede1fafcd7c..63233353b96 100644 --- a/src/locales/da/company/suffix.ts +++ b/src/locales/da/company/suffix.ts @@ -1 +1 @@ -export default ['ApS', 'A/S']; +export default ['A/S', 'ApS']; diff --git a/src/locales/de/company/legal_form.ts b/src/locales/de/company/legal_form.ts index b10d9d03964..f4818190f97 100644 --- a/src/locales/de/company/legal_form.ts +++ b/src/locales/de/company/legal_form.ts @@ -1 +1 @@ -export default ['GmbH', 'AG', 'Gruppe', 'KG', 'GmbH & Co. KG', 'UG', 'OHG']; +export default ['AG', 'GmbH', 'GmbH & Co. KG', 'Gruppe', 'KG', 'OHG', 'UG']; diff --git a/src/locales/de/company/name_pattern.ts b/src/locales/de/company/name_pattern.ts index 4a77202dcf9..354ef879993 100644 --- a/src/locales/de/company/name_pattern.ts +++ b/src/locales/de/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} und {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/de/company/suffix.ts b/src/locales/de/company/suffix.ts index b10d9d03964..f4818190f97 100644 --- a/src/locales/de/company/suffix.ts +++ b/src/locales/de/company/suffix.ts @@ -1 +1 @@ -export default ['GmbH', 'AG', 'Gruppe', 'KG', 'GmbH & Co. KG', 'UG', 'OHG']; +export default ['AG', 'GmbH', 'GmbH & Co. KG', 'Gruppe', 'KG', 'OHG', 'UG']; diff --git a/src/locales/de/database/column.ts b/src/locales/de/database/column.ts index 5f8020f2c54..8d7aaa8e5e1 100644 --- a/src/locales/de/database/column.ts +++ b/src/locales/de/database/column.ts @@ -1,21 +1,21 @@ export default [ - 'id', - 'titel', - 'name', + 'aktualisiertAm', + 'artikelnummer', + 'avatar', + 'bearbeitetAm', 'email', - 'telefonnummer', - 'token', + 'erstelltAm', + 'geburtsdatum', 'gruppe', + 'id', 'kategorie', - 'passwort', 'kommentar', - 'avatar', + 'nachname', + 'name', + 'passwort', 'status', - 'erstelltAm', - 'aktualisiertAm', - 'bearbeitetAm', + 'telefonnummer', + 'titel', + 'token', 'vorname', - 'nachname', - 'geburtsdatum', - 'artikelnummer', ]; diff --git a/src/locales/de_AT/company/legal_form.ts b/src/locales/de_AT/company/legal_form.ts index b10d9d03964..f4818190f97 100644 --- a/src/locales/de_AT/company/legal_form.ts +++ b/src/locales/de_AT/company/legal_form.ts @@ -1 +1 @@ -export default ['GmbH', 'AG', 'Gruppe', 'KG', 'GmbH & Co. KG', 'UG', 'OHG']; +export default ['AG', 'GmbH', 'GmbH & Co. KG', 'Gruppe', 'KG', 'OHG', 'UG']; diff --git a/src/locales/de_AT/company/name_pattern.ts b/src/locales/de_AT/company/name_pattern.ts index 4a77202dcf9..354ef879993 100644 --- a/src/locales/de_AT/company/name_pattern.ts +++ b/src/locales/de_AT/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} und {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/de_AT/company/suffix.ts b/src/locales/de_AT/company/suffix.ts index b10d9d03964..f4818190f97 100644 --- a/src/locales/de_AT/company/suffix.ts +++ b/src/locales/de_AT/company/suffix.ts @@ -1 +1 @@ -export default ['GmbH', 'AG', 'Gruppe', 'KG', 'GmbH & Co. KG', 'UG', 'OHG']; +export default ['AG', 'GmbH', 'GmbH & Co. KG', 'Gruppe', 'KG', 'OHG', 'UG']; diff --git a/src/locales/de_CH/company/name_pattern.ts b/src/locales/de_CH/company/name_pattern.ts index 4a77202dcf9..354ef879993 100644 --- a/src/locales/de_CH/company/name_pattern.ts +++ b/src/locales/de_CH/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} und {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/de_CH/company/suffix.ts b/src/locales/de_CH/company/suffix.ts index ad23f6ed846..7c082a17bc3 100644 --- a/src/locales/de_CH/company/suffix.ts +++ b/src/locales/de_CH/company/suffix.ts @@ -1,10 +1,10 @@ export default [ + '& Co.', 'AG', 'GmbH', - 'und Söhne', - 'und Partner', - '& Co.', 'Gruppe', - 'LLC', 'Inc.', + 'LLC', + 'und Partner', + 'und Söhne', ]; diff --git a/src/locales/dv/company/adjective.ts b/src/locales/dv/company/adjective.ts index 797f2fca928..5f5d5efd59a 100644 --- a/src/locales/dv/company/adjective.ts +++ b/src/locales/dv/company/adjective.ts @@ -1,26 +1,26 @@ export default [ - 'ބޮޑު', - 'ކުޑަ', 'ހަޑި', - 'ރީތި', - 'ހޫނު', - 'ފިނި', - 'މަޖާ', - 'ފޫހި', - 'ހުތުރު', - 'އަލި', - 'އަނދިރި', 'ހިރަފުސް', - 'ސާފު', - 'މޮޅު', - 'ދަށް', 'ހުށިޔާރު', + 'ހުތުރު', + 'ހޫނު', 'ނުރައްކާ', - 'ސަމާލު', - 'ގޮތްކުޑަ', - 'ފުރިހަމަ', + 'ނުފެންނަ', + 'ރީތި', + 'ބޮޑު', + 'ކުޑަ', + 'އަނދިރި', + 'އަލި', 'އެއްވަނަ', + 'މަޖާ', + 'މޮޅު', + 'ފިނި', + 'ފުރިހަމަ', + 'ފޫހި', + 'ދަށް', 'ދެވަނަ', 'ތިންވަނަ', - 'ނުފެންނަ', + 'ގޮތްކުޑަ', + 'ސަމާލު', + 'ސާފު', ]; diff --git a/src/locales/dv/company/name_pattern.ts b/src/locales/dv/company/name_pattern.ts index 5646de5bdfa..89c99b4b47e 100644 --- a/src/locales/dv/company/name_pattern.ts +++ b/src/locales/dv/company/name_pattern.ts @@ -1,7 +1,7 @@ export default [ - '{{person.first_name}} {{company.suffix}}', - '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}} & {{person.last_name}} {{company.noun}} {{company.suffix}}', '{{company.adjective}} {{company.noun}} {{company.suffix}}', '{{company.adjective}} {{person.last_name}} {{person.last_name}} {{company.suffix}}', + '{{person.first_name}} {{company.suffix}}', + '{{person.last_name}} & {{person.last_name}} {{company.noun}} {{company.suffix}}', + '{{person.last_name}} {{company.suffix}}', ]; diff --git a/src/locales/dv/company/noun.ts b/src/locales/dv/company/noun.ts index 48e513028eb..cc29caac2ec 100644 --- a/src/locales/dv/company/noun.ts +++ b/src/locales/dv/company/noun.ts @@ -1,60 +1,60 @@ export default [ - 'ވަޑައިންގެ', + 'ހަރުފަ', 'ހަރުގެ', - 'ގުދަން', - 'ގަރާޖު', - 'ކޮންޓެއިނަރު', - 'ބޮއްކުރާ', - 'ދޯނި', - 'ބައްރެލި', - 'މަނަވަރު', - 'މަތިންދާބޯޓު', + 'ހިރުނދު', 'ހެލިކޮޕްޓަރު', - 'ރޮކެޓު', - 'ކަރުދާސް', - 'ފުޅި', - 'ބިއްލޫރި', 'ހޮޅުއަށި', - 'ޕުލާސްޓިކު', - 'ފޮތި', - 'ދަގަނޑު', - 'ލަކުޑި', - 'ގޮނޑު', - 'ގޮނޑުދޮށް', + 'ނިކަ', + 'ރަތަފަ', 'ރުއް', - 'ގަސް', - 'މޫ', + 'ރޮކެޓު', + 'ބަކަރި', + 'ބައްރެލި', + 'ބިއްލޫރި', 'ބުޅާ', + 'ބޮއްކުރާ', + 'ބޮޑުމަސް', 'ކަނބިލި', - 'މާކަނާ', - 'އިރުވާހުދު', - 'ރަތަފަ', - 'މާރަނގަ', - 'ހަރުފަ', - 'މަކުނު', + 'ކަނޑު', + 'ކަނޑުމަސް', + 'ކަރުދާސް', 'ކާޅު', 'ކުކުޅު', - 'މަސް', - 'ގެރި', - 'ބަކަރި', - 'ފަރުމަސް', - 'ކަނޑުމަސް', - 'ބޮޑުމަސް', 'ކުޑަމަސް', - 'ގޯތި', - 'މޫދު', - 'ކަނޑު', + 'ކޮންޓެއިނަރު', + 'އަތަ', + 'އިރުވާހުދު', + 'ވަޑައިންގެ', 'ވިލު', + 'މަނަވަރު', + 'މަކުނު', + 'މަތިންދާބޯޓު', + 'މަގޫ', + 'މަސް', + 'މާރަނގަ', + 'މާކަނާ', + 'މުރަނގަ', + 'މޫ', + 'މޫދު', + 'މޭވާ', + 'ފަރުމަސް', 'ފަޅު', - 'ގިރި', + 'ފުޅި', 'ފެން', - 'ގަނޑުފެން', - 'މުރަނގަ', - 'ހިރުނދު', + 'ފޮތި', + 'ދަގަނޑު', 'ދިއްގާ', - 'ނިކަ', - 'މަގޫ', - 'އަތަ', - 'މޭވާ', + 'ދޯނި', 'ތަރުކާރި', + 'ލަކުޑި', + 'ގަނޑުފެން', + 'ގަރާޖު', + 'ގަސް', + 'ގިރި', + 'ގުދަން', + 'ގެރި', + 'ގޮނޑު', + 'ގޮނޑުދޮށް', + 'ގޯތި', + 'ޕުލާސްޓިކު', ]; diff --git a/src/locales/dv/company/suffix.ts b/src/locales/dv/company/suffix.ts index 68eaea685e9..f34c7eb030c 100644 --- a/src/locales/dv/company/suffix.ts +++ b/src/locales/dv/company/suffix.ts @@ -1,8 +1,8 @@ export default [ - 'ޕުރައިވެޓް ލިމިޓެޑް', - '.ޕވޓ. ލޓޑ', - 'ޕަބްލިކް ލިމިޓެޑް', '.ޕބލކ. ލޓޑ', - 'ގުރޫޕް', + '.ޕވޓ. ލޓޑ', 'އޮފީސް', + 'ގުރޫޕް', + 'ޕަބްލިކް ލިމިޓެޑް', + 'ޕުރައިވެޓް ލިމިޓެޑް', ]; diff --git a/src/locales/el/commerce/department.ts b/src/locales/el/commerce/department.ts index 38d4939ae94..1083381f4db 100644 --- a/src/locales/el/commerce/department.ts +++ b/src/locales/el/commerce/department.ts @@ -1,23 +1,23 @@ export default [ + 'Grocery', + 'Sports', + 'Αυτοκίνητο', 'Βιβλία', - 'Ταινίες', - 'Μουσική', - 'Παιχνίδια', + 'Βιομηχανικά', + 'Εξοχή', + 'Εργαλεία', 'Ηλεκτρονικές Συσκευές', - 'Υπολογιστές', - 'Σπίτι', 'Κήπος', - 'Εργαλεία', - 'Grocery', - 'Υγεία', + 'Κοσμήματα', + 'Μουσική', + 'Μωρό', 'Ομορφιά', 'Παιδί', - 'Μωρό', - 'Ρουχισμός', + 'Παιχνίδια', 'Παπούτσια', - 'Κοσμήματα', - 'Sports', - 'Εξοχή', - 'Αυτοκίνητο', - 'Βιομηχανικά', + 'Ρουχισμός', + 'Σπίτι', + 'Ταινίες', + 'Υγεία', + 'Υπολογιστές', ]; diff --git a/src/locales/el/commerce/product_name.ts b/src/locales/el/commerce/product_name.ts index 04c6a83ec1c..9356439ba88 100644 --- a/src/locales/el/commerce/product_name.ts +++ b/src/locales/el/commerce/product_name.ts @@ -1,39 +1,39 @@ export default { adjective: [ - 'Μικρό', - 'Εργονομικό', + 'Άδεια', 'Αγροτικό', 'Απίστευτο', - 'Φανταστικό', - 'Πρακτικό', + 'Εργονομικό', 'Κομψό', + 'Μικρό', + 'Πρακτικό', + 'Φανταστικό', 'Χειροποίητα', 'Χειροποίητο', - 'Άδεια', ], - material: ['Ξύλινο', 'Πλαστικό', 'Μέταλο', 'Φρέσκο', 'Κατεψυγμένο'], + material: ['Κατεψυγμένο', 'Μέταλο', 'Ξύλινο', 'Πλαστικό', 'Φρέσκο'], product: [ - 'Καρέκλα', + 'Pizza', 'Αυτοκίνητο', - 'Υπολογιστής', - 'Πληκτρολόγιο', - 'Ποντίκι', - 'Ποδήλατο', - 'Μπάλα', 'Γάντια', + 'Καπέλο', + 'Καρέκλα', + 'Κοτόπουλο', + 'Λουκάνικα', + 'Μπάλα', 'Παντελόνι', - 'Πουκάμισο', - 'Τραπέζι', 'Παπούτσια', - 'Καπέλο', 'Πετσέτες', + 'Πληκτρολόγιο', + 'Ποδήλατο', + 'Ποντίκι', + 'Πουκάμισο', + 'Σαλάτα', 'Σαπούνι', + 'Τραπέζι', + 'Τυρί', 'Τόνος', - 'Κοτόπουλο', + 'Υπολογιστής', 'Ωάρι', - 'Τυρί', - 'Pizza', - 'Σαλάτα', - 'Λουκάνικα', ], }; diff --git a/src/locales/el/company/adjective.ts b/src/locales/el/company/adjective.ts index 1d8e246dba4..16a5ecb20c9 100644 --- a/src/locales/el/company/adjective.ts +++ b/src/locales/el/company/adjective.ts @@ -1,62 +1,62 @@ export default [ - 'Για προχωρημένους', - 'Αυτοματοποιημένη', - 'Ισορροπημένη', - 'Συγκεντρωτική', - 'Κλωνοποιημένα', - 'Συμβατές', - 'Παραμετρικές', - 'Προσαρμόσιμα', + 'Έξυπνο', + 'Αδιάλειπτη', + 'Αναβαθμίσιμα', + 'Ανθεκτική', + 'Ανοιχτή πηγή', + 'Αντίστροφης μηχανικής', + 'Αντιδραστική', + 'Αντιστροφή', 'Αποκεντρωμένη', - 'Ψηφιακές', - 'Κατανεμημένα', + 'Ασφαλής', + 'Αυτοματοποιημένη', + 'Βελτιστοποιημένη', + 'Βελτιωμένη', + 'Βιολογικά', + 'Για προχωρημένους', 'Διαφορετικές', - 'Ενισχυμένη', - 'Εργονομία', 'Διευρυμένη', - 'Επέκταση', + 'Δικτυωμένες', 'Ειδικός', - 'Πρώτης γραμμής', - 'Πλήρως παραμετροποιήσιμο', + 'Εικονική', + 'Εναλλαγή', + 'Ενισχυμένη', + 'Επέκταση', + 'Επίμονη', + 'Εργονομία', + 'Ευέλικτο', + 'Ευθυγραμμισμένο', 'Θεμελιώδη', + 'Ισορροπημένη', + 'Καινοτόμες', + 'Κατανεμημένα', + 'Κλωνοποιημένα', + 'Κοινόχρηστο', 'Λαϊκά', + 'Λειτουργικής', + 'Μένοντας', + 'Μειωμένη', + 'Οραματιστής', + 'Οργανωμένες', 'Οριζόντια', - 'Καινοτόμες', - 'ολοκληρωμένη', - 'Έξυπνο', - 'Αντιστροφή', - 'Υπεύθυνη για τη διαχείριση', - 'Υποχρεωτικά', - 'Πολυμερής', + 'Παραμετρικές', + 'Πλήρως παραμετροποιήσιμο', 'Πολυεπίπεδη', - 'Δικτυωμένες', - 'Ανοιχτή πηγή', - 'Λειτουργικής', - 'Βελτιστοποιημένη', + 'Πολυμερής', 'Προαιρετικό', - 'Βιολογικά', - 'Οργανωμένες', - 'Μένοντας', - 'Επίμονη', - 'Σταδιακή', 'Προληπτική', - 'Ριζική', 'Προοδευτική', - 'Αντιδραστική', - 'Ευθυγραμμισμένο', - 'Μειωμένη', - 'Αντίστροφης μηχανικής', - 'Ανθεκτική', - 'Αδιάλειπτη', - 'Ασφαλής', - 'Κοινόχρηστο', - 'Βελτιωμένη', - 'Εναλλαγή', + 'Προσαρμόσιμα', + 'Πρώτης γραμμής', + 'Ριζική', + 'Σταδιακή', + 'Συγκεντρωτική', + 'Συμβατές', 'Σύγχρονη', - 'Αναβαθμίσιμα', - 'Χρηστοκεντρικών', + 'Υπεύθυνη για τη διαχείριση', + 'Υποχρεωτικά', 'Φιλική προς το χρήστη', - 'Ευέλικτο', - 'Εικονική', - 'Οραματιστής', + 'Χρηστοκεντρικών', + 'Ψηφιακές', + 'ολοκληρωμένη', ]; diff --git a/src/locales/el/company/buzz_adjective.ts b/src/locales/el/company/buzz_adjective.ts index 13497d689fc..048d798af45 100644 --- a/src/locales/el/company/buzz_adjective.ts +++ b/src/locales/el/company/buzz_adjective.ts @@ -1,54 +1,54 @@ export default [ - 'Προστιθέμενη αξία', - 'Κάθετη', - 'Προληπτική', - 'Εύρωστο', - 'Επαναστατικό', - 'Κλιμακούμενες', - 'Προβάδισμα', - 'Καινοτόμες', - 'Διαισθητική', - 'Στρατηγικών', - 'E-business', - 'Κρίσιμης σημασίας', - 'Κολλάει', - 'Ένα προς ένα', + '24/365', '24/7', - 'Παγκόσμια', 'B2B', 'B2C', - 'Κοκκώδη', - 'Τριβές', + 'E-business', + 'Plug-and-play', + 'Ένα προς ένα', + 'Αιχμής', + 'Ανοιχτή πηγή', + 'Αποτελεσματικό', + 'Ασύρματο', + 'Διαδραστικό', + 'Διαισθητική', + 'Διαφανής', + 'Δολοφόνος', + 'Δυναμική', 'Εικονική', + 'Επίκεντρο τον χρήστη', + 'Επαναστατικό', + 'Επεκτάσιμο', + 'Επιχείρηση', + 'Επόμενη γενιά', + 'Εύρωστο', + 'Εύστοχος', 'Ιογενείς', - 'Δυναμική', - '24/365', - 'Δολοφόνος', - 'Μαγνητικά', - 'Διαδραστικό', - 'Σέξι', - 'Πραγματικός χρόνος', - 'Αποτελεσματικό', + 'Κάθετη', + 'Καινοτόμες', 'Κατανεμημένες', - 'Επεκτάσιμο', 'Κλειδί στο χέρι', - 'Παγκόσμιας κλάσης', - 'Ανοιχτή πηγή', - 'Συνεργιστική', - 'Επιχείρηση', + 'Κλιμακούμενες', + 'Κοκκώδη', + 'Κολλάει', + 'Κρίσιμης σημασίας', + 'Μαγνητικά', + 'Ολιστική', 'Ολοκληρωμένη', - 'Εύστοχος', - 'Ασύρματο', - 'Διαφανής', - 'Επόμενη γενιά', - 'Αιχμής', - 'Επίκεντρο τον χρήστη', 'Οραματιστής', - 'Προσαρμοσμένη', + 'Παγκόσμια', + 'Παγκόσμιας κλάσης', 'Πανταχού παρούσα', - 'Plug-and-play', - 'Συνεργατική', - 'Συναρπαστικό', - 'Ολιστική', 'Πλούσια', + 'Πραγματικός χρόνος', + 'Προβάδισμα', + 'Προληπτική', + 'Προσαρμοσμένη', + 'Προστιθέμενη αξία', + 'Σέξι', + 'Στρατηγικών', + 'Συναρπαστικό', + 'Συνεργατική', + 'Συνεργιστική', + 'Τριβές', ]; diff --git a/src/locales/el/company/buzz_noun.ts b/src/locales/el/company/buzz_noun.ts index 9604c1e767b..2a962fb7f10 100644 --- a/src/locales/el/company/buzz_noun.ts +++ b/src/locales/el/company/buzz_noun.ts @@ -1,38 +1,38 @@ export default [ - 'συνέργειες', - 'παραδείγματα', + 'e-business', + 'e-αγορές', 'αγορές', - 'συνεργασίες', - 'υποδομές', - 'πλατφόρμες', - 'πρωτοβουλίες', - 'κανάλια', - 'μάτια', - 'κοινότητες', - 'λύσεις', - 'δράση-αντικείμενα', - 'πύλες', - 'θέσεις', - 'τεχνολογίες', - 'περιεχόμενο', 'αλυσίδες προμηθειών', - 'σύγκλιση', - 'σχέσεις', 'αρχιτεκτονικές', + 'δίκτυα', + 'διαδικτυακές υπηρεσίες', 'διασυνδέσεις', - 'e-αγορές', + 'δράση-αντικείμενα', + 'εμπειρίες', + 'εφαρμογές', 'ηλεκτρονικό εμπόριο', - 'συστήματα', + 'θέσεις', + 'κανάλια', + 'κοινότητες', + 'λειτουργίες', + 'λύσεις', + 'μάτια', + 'μεθοδολογίες', + 'μετρήσεις', 'μοντέλα', + 'παραδείγματα', 'παραδοτέα', - 'χρήστες', + 'περιεχόμενο', + 'πλατφόρμες', + 'πρωτοβουλίες', + 'πύλες', + 'συνέργειες', + 'συνεργασίες', + 'συστήματα', + 'σχέσεις', 'σχήματα', - 'δίκτυα', - 'εφαρμογές', - 'μετρήσεις', - 'e-business', - 'λειτουργίες', - 'εμπειρίες', - 'διαδικτυακές υπηρεσίες', - 'μεθοδολογίες', + 'σύγκλιση', + 'τεχνολογίες', + 'υποδομές', + 'χρήστες', ]; diff --git a/src/locales/el/company/buzz_verb.ts b/src/locales/el/company/buzz_verb.ts index 27a54b6d92a..4531fb1be06 100644 --- a/src/locales/el/company/buzz_verb.ts +++ b/src/locales/el/company/buzz_verb.ts @@ -1,30 +1,30 @@ export default [ - 'χρησιμοποιούν', - 'ενσωμάτωση', - 'βελτιστοποιήσουν', - 'εξελιχθεί', - 'μεταμορφώσει', 'αγκαλιάζουν', - 'επιτρέψει', - 'ενορχηστρώσει', - 'επανεφεύρουμε', - 'ενισχύσουν', - 'διευκολύνουν', 'αδράξουν', - 'συνεργούν', - 'μεγαλώνουν', - 'συνθέσει', - 'παραδώσει', 'αναλάβουν', - 'επιταχύνει', 'απεικονίσει', - 'επαναπροσδιορίσουν', - 'καινοτομία', 'απελευθερώσουν', - 'επεκτείνει', + 'βελτιστοποιήσουν', 'δημιουργούν', + 'διευκολύνουν', 'εκμεταλλεύονται', + 'ενισχύσουν', + 'ενορχηστρώσει', + 'ενσωμάτωση', + 'εξελιχθεί', 'επαναλάβει', - 'καλλιεργούν', 'επαναπροσδιορίσει', + 'επαναπροσδιορίσουν', + 'επανεφεύρουμε', + 'επεκτείνει', + 'επιταχύνει', + 'επιτρέψει', + 'καινοτομία', + 'καλλιεργούν', + 'μεγαλώνουν', + 'μεταμορφώσει', + 'παραδώσει', + 'συνεργούν', + 'συνθέσει', + 'χρησιμοποιούν', ]; diff --git a/src/locales/el/company/descriptor.ts b/src/locales/el/company/descriptor.ts index f071941e020..8a817f2cefd 100644 --- a/src/locales/el/company/descriptor.ts +++ b/src/locales/el/company/descriptor.ts @@ -6,24 +6,24 @@ export default [ '5η γενιά', '6η γενιά', 'asymmetric', + 'αντικειμενοστραφή', 'ασύγχρονο', - 'συνεχής', 'αφιερωμένο', + 'δευτερεύων', 'διαδακτικό', 'διακριτό', - 'δυναμικό', - 'παγκόσμιο', - 'υβριδικό', - 'δριαδραστικό', - 'τοπικό', - 'πολυμεσικό', 'διεθνές', + 'δριαδραστικό', + 'δυναμικό', 'επόμενης γενιάς', - 'αντικειμενοστραφή', 'ιδανικό', + 'παγκόσμιο', + 'πολυμεσικό', 'πραγματικού χρόνου', - 'δευτερεύων', + 'προστιθέμενης αξίας', 'σταθερό', 'στατικό', - 'προστιθέμενης αξίας', + 'συνεχής', + 'τοπικό', + 'υβριδικό', ]; diff --git a/src/locales/el/company/name_pattern.ts b/src/locales/el/company/name_pattern.ts index 1108f6fc77c..30a7946bfa0 100644 --- a/src/locales/el/company/name_pattern.ts +++ b/src/locales/el/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} and {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/el/company/noun.ts b/src/locales/el/company/noun.ts index 19bd7bfdab7..d4de0feca6c 100644 --- a/src/locales/el/company/noun.ts +++ b/src/locales/el/company/noun.ts @@ -1,41 +1,41 @@ export default [ - 'ικανότητα', - 'πρόσβαση', + 'Διεπαφή Χρήστη', 'αλγόριθμος', 'αναλυτής', - 'εφαρμογή', - 'προσέγγιση', - 'αρχιτεκτονική', + 'ανοιχτή αρχιτεκτονική', 'αρχείο', - 'τεχνητή νοημοσύνη', - 'χωρητικότητα', - 'πρόκληση', - 'συνεργασία', - 'περιπλοκότητα', - 'πυρήνας', + 'αρχιτεκτονική', + 'ασφαλής γραμμή', 'βάση δεδομένων', - 'ορισμός', - 'συνάρτηση', - 'Διεπαφή Χρήστη', - 'υλικό', - 'υλοποίηση', + 'γνωσιακή βάση', + 'διεπαφή', 'εγκατάσταση', 'εγχειρίδιο χρήστη', - 'διεπαφή', - 'υπηρεσίες internet', - 'γνωσιακή βάση', - 'τοπικό δίκτυο', - 'μετρικές', + 'ενορχήστρωση', + 'επιτυχία', + 'εφαρμογή', + 'ικανότητα', + 'λογισμικό', 'μεθοδολογία', + 'μετρικές', 'μοντέλο', - 'ανοιχτή αρχιτεκτονική', - 'ενορχήστρωση', - 'προϊόν', + 'ορισμός', 'παραγωγικότητα', + 'περιπλοκότητα', + 'προσέγγιση', + 'προϊόν', 'πρωτόκολο', - 'ασφαλής γραμμή', - 'λογισμικό', + 'πρόκληση', + 'πρόσβαση', + 'πυρήνας', 'στρατηγική', - 'επιτυχία', + 'συνάρτηση', + 'συνεργασία', + 'τεχνητή νοημοσύνη', + 'τοπικό δίκτυο', + 'υλικό', + 'υλοποίηση', + 'υπηρεσίες internet', 'υποστήρυξη', + 'χωρητικότητα', ]; diff --git a/src/locales/el/company/suffix.ts b/src/locales/el/company/suffix.ts index 8e9f02b1e75..f1b2eb6bc11 100644 --- a/src/locales/el/company/suffix.ts +++ b/src/locales/el/company/suffix.ts @@ -1 +1 @@ -export default ['Ε.Π.Ε.', 'Α.Ε.', 'και Υιοί', 'Όμιλος']; +export default ['Όμιλος', 'Α.Ε.', 'Ε.Π.Ε.', 'και Υιοί']; diff --git a/src/locales/el/hacker/abbreviation.ts b/src/locales/el/hacker/abbreviation.ts index 7757987e45b..419ea2fae5f 100644 --- a/src/locales/el/hacker/abbreviation.ts +++ b/src/locales/el/hacker/abbreviation.ts @@ -1,31 +1,31 @@ export default [ - 'TCP', - 'HTTP', - 'SDD', - 'RAM', - 'GB', - 'CSS', - 'SSL', + 'ADP', 'AGP', - 'SQL', - 'FTP', - 'PCI', 'AI', - 'ADP', - 'RSS', - 'XML', - 'EXE', 'COM', + 'CSS', + 'EXE', + 'FTP', + 'GB', 'HDD', - 'THX', - 'SMTP', - 'SMS', - 'USB', + 'HTTP', + 'IB', + 'JBOD', + 'JSON', + 'PCI', 'PNG', + 'RAM', + 'RSS', 'SAS', - 'IB', 'SCSI', - 'JSON', + 'SDD', + 'SMS', + 'SMTP', + 'SQL', + 'SSL', + 'TCP', + 'THX', + 'USB', + 'XML', 'XSS', - 'JBOD', ]; diff --git a/src/locales/el/hacker/adjective.ts b/src/locales/el/hacker/adjective.ts index f09537cb82d..ff81315c917 100644 --- a/src/locales/el/hacker/adjective.ts +++ b/src/locales/el/hacker/adjective.ts @@ -1,11 +1,11 @@ export default [ - 'οδηγός', - 'πρωτογενής', - 'ψηφιακή', + '1080p', 'ανοιχτή πηγή', - 'εικονική', 'ασύρματο', - '1080p', - 'οπτική', + 'εικονική', 'κινητό', + 'οδηγός', + 'οπτική', + 'πρωτογενής', + 'ψηφιακή', ]; diff --git a/src/locales/el/hacker/noun.ts b/src/locales/el/hacker/noun.ts index 05fe0920a03..126f124eb9a 100644 --- a/src/locales/el/hacker/noun.ts +++ b/src/locales/el/hacker/noun.ts @@ -1,22 +1,22 @@ export default [ - 'οδηγός', - 'πρωτόκολο', - 'ταχύτητα', + 'feed', 'panel', + 'ασφάλεια', + 'δίαυλος', + 'διάγραμμα', + 'διεπαφή', + 'εφαρμογή', + 'κάρτα', 'μικρότσιπ', + 'οδηγός', + 'οθόνη', + 'πίνακας', + 'πρωτόκολο', 'πρόγραμμα', + 'πυκνωτής', 'πόρτα', - 'κάρτα', - 'διεπαφή', - 'σύστημα', 'σένσορας', - 'ασφάλεια', 'σκληρός δίσκος', - 'feed', - 'οθόνη', - 'εφαρμογή', - 'δίαυλος', - 'διάγραμμα', - 'πυκνωτής', - 'πίνακας', + 'σύστημα', + 'ταχύτητα', ]; diff --git a/src/locales/el/hacker/verb.ts b/src/locales/el/hacker/verb.ts index 1d7ffc272ab..47e95b21b48 100644 --- a/src/locales/el/hacker/verb.ts +++ b/src/locales/el/hacker/verb.ts @@ -2,15 +2,15 @@ export default [ 'back up', 'bypass', 'hack', - 'προσπέραση', - 'συμπίεση', 'αντιγραφή', - 'περιήγηση', - 'σύνδεση', - 'υπολογισμός', 'είσοδος', - 'μεταφορά', - 'πρόγραμμα', 'επανεκκίνηση', + 'μεταφορά', + 'περιήγηση', 'προσπέλαση', + 'προσπέραση', + 'πρόγραμμα', + 'συμπίεση', + 'σύνδεση', + 'υπολογισμός', ]; diff --git a/src/locales/en/commerce/department.ts b/src/locales/en/commerce/department.ts index 070190ad44f..044d1d710a6 100644 --- a/src/locales/en/commerce/department.ts +++ b/src/locales/en/commerce/department.ts @@ -1,24 +1,24 @@ export default [ + 'Automotive', + 'Baby', + 'Beauty', 'Books', - 'Movies', - 'Music', - 'Games', - 'Electronics', + 'Clothing', 'Computers', - 'Home', + 'Electronics', + 'Games', 'Garden', - 'Tools', 'Grocery', 'Health', - 'Beauty', - 'Toys', + 'Home', + 'Industrial', + 'Jewelry', 'Kids', - 'Baby', - 'Clothing', + 'Movies', + 'Music', + 'Outdoors', 'Shoes', - 'Jewelry', 'Sports', - 'Outdoors', - 'Automotive', - 'Industrial', + 'Tools', + 'Toys', ]; diff --git a/src/locales/en/commerce/product_description.ts b/src/locales/en/commerce/product_description.ts index 8a1e8389f1a..ddaa271eaa5 100644 --- a/src/locales/en/commerce/product_description.ts +++ b/src/locales/en/commerce/product_description.ts @@ -1,14 +1,14 @@ export default [ + 'Andy shoes are designed to keeping in mind durability as well as trends, the most stylish range of shoes & sandals', + "Boston's most advanced compression wear technology increases muscle oxygenation, stabilizes active muscles", + 'Carbonite web goalkeeper gloves are ergonomically designed to give easy fit', 'Ergonomic executive chair upholstered in bonded black leather and PVC padded seat and back for all-day comfort and support', - 'The automobile layout consists of a front-engine design, with transaxle-type transmissions mounted at the rear of the engine and four wheel drive', 'New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016', - 'The slim & simple Maple Gaming Keyboard from Dev Byte comes with a sleek body and 7- Color RGB LED Back-lighting for smart functionality', + 'New range of formal shirts are designed keeping you in mind. With fits and styling that will make you stand apart', 'The Apollotech B340 is an affordable wireless mouse with reliable connectivity, 12 months battery life and modern design', - 'The Nagasaki Lander is the trademarked name of several series of Nagasaki sport bikes, that started with the 1984 ABC800J', 'The Football Is Good For Training And Recreational Purposes', - 'Carbonite web goalkeeper gloves are ergonomically designed to give easy fit', - "Boston's most advanced compression wear technology increases muscle oxygenation, stabilizes active muscles", - 'New range of formal shirts are designed keeping you in mind. With fits and styling that will make you stand apart', + 'The Nagasaki Lander is the trademarked name of several series of Nagasaki sport bikes, that started with the 1984 ABC800J', + 'The automobile layout consists of a front-engine design, with transaxle-type transmissions mounted at the rear of the engine and four wheel drive', 'The beautiful range of Apple Naturalé that has an exciting mix of natural ingredients. With the Goodness of 100% Natural Ingredients', - 'Andy shoes are designed to keeping in mind durability as well as trends, the most stylish range of shoes & sandals', + 'The slim & simple Maple Gaming Keyboard from Dev Byte comes with a sleek body and 7- Color RGB LED Back-lighting for smart functionality', ]; diff --git a/src/locales/en/commerce/product_name.ts b/src/locales/en/commerce/product_name.ts index 8c52af68d1d..a3e8153908c 100644 --- a/src/locales/en/commerce/product_name.ts +++ b/src/locales/en/commerce/product_name.ts @@ -1,68 +1,68 @@ export default { adjective: [ - 'Small', - 'Ergonomic', + 'Awesome', + 'Bespoke', 'Electronic', - 'Rustic', - 'Intelligent', - 'Gorgeous', - 'Incredible', 'Elegant', + 'Ergonomic', 'Fantastic', - 'Practical', - 'Modern', - 'Recycled', - 'Sleek', - 'Bespoke', - 'Awesome', 'Generic', + 'Gorgeous', 'Handcrafted', 'Handmade', - 'Oriental', + 'Incredible', + 'Intelligent', 'Licensed', 'Luxurious', + 'Modern', + 'Oriental', + 'Practical', + 'Recycled', 'Refined', - 'Unbranded', + 'Rustic', + 'Sleek', + 'Small', 'Tasty', + 'Unbranded', ], material: [ - 'Steel', 'Bronze', - 'Wooden', 'Concrete', - 'Plastic', 'Cotton', + 'Fresh', + 'Frozen', 'Granite', - 'Rubber', 'Metal', + 'Plastic', + 'Rubber', 'Soft', - 'Fresh', - 'Frozen', + 'Steel', + 'Wooden', ], product: [ - 'Chair', + 'Bacon', + 'Ball', + 'Bike', 'Car', + 'Chair', + 'Cheese', + 'Chicken', + 'Chips', 'Computer', + 'Fish', + 'Gloves', + 'Hat', 'Keyboard', 'Mouse', - 'Bike', - 'Ball', - 'Gloves', 'Pants', + 'Pizza', + 'Salad', + 'Sausages', 'Shirt', - 'Table', 'Shoes', - 'Hat', - 'Towels', 'Soap', + 'Table', + 'Towels', 'Tuna', - 'Chicken', - 'Fish', - 'Cheese', - 'Bacon', - 'Pizza', - 'Salad', - 'Sausages', - 'Chips', ], }; diff --git a/src/locales/en/company/adjective.ts b/src/locales/en/company/adjective.ts index f1faf2c0ac4..7f3d140da95 100644 --- a/src/locales/en/company/adjective.ts +++ b/src/locales/en/company/adjective.ts @@ -14,8 +14,8 @@ export default [ 'Cross-platform', 'Customer-focused', 'Customizable', - 'Decentralized', 'De-engineered', + 'Decentralized', 'Devolved', 'Digitized', 'Distributed', @@ -69,10 +69,10 @@ export default [ 'Progressive', 'Public-key', 'Quality-focused', - 'Reactive', - 'Realigned', 'Re-contextualized', 'Re-engineered', + 'Reactive', + 'Realigned', 'Reduced', 'Reverse-engineered', 'Right-sized', @@ -97,6 +97,6 @@ export default [ 'User-friendly', 'Versatile', 'Virtual', - 'Visionary', 'Vision-oriented', + 'Visionary', ]; diff --git a/src/locales/en/company/buzz_adjective.ts b/src/locales/en/company/buzz_adjective.ts index 9fed1f1e73c..794c2da6823 100644 --- a/src/locales/en/company/buzz_adjective.ts +++ b/src/locales/en/company/buzz_adjective.ts @@ -1,67 +1,67 @@ export default [ - 'clicks-and-mortar', - 'value-added', - 'vertical', - 'proactive', - 'robust', - 'revolutionary', - 'scalable', - 'leading-edge', - 'innovative', - 'intuitive', - 'strategic', - 'e-business', - 'mission-critical', - 'sticky', - 'one-to-one', + '24/365', '24/7', - 'end-to-end', - 'global', 'B2B', 'B2C', - 'granular', - 'frictionless', - 'virtual', - 'viral', - 'dynamic', - '24/365', + 'back-end', 'best-of-breed', - 'killer', - 'magnetic', 'bleeding-edge', - 'web-enabled', - 'interactive', + 'bricks-and-clicks', + 'clicks-and-mortar', + 'collaborative', + 'compelling', + 'cross-media', + 'cross-platform', + 'customized', + 'cutting-edge', + 'distributed', 'dot-com', - 'sexy', - 'back-end', - 'real-time', + 'dynamic', + 'e-business', 'efficient', - 'front-end', - 'distributed', - 'seamless', + 'end-to-end', + 'enterprise', 'extensible', - 'turn-key', - 'world-class', + 'frictionless', + 'front-end', + 'global', + 'granular', + 'holistic', + 'impactful', + 'innovative', + 'integrated', + 'interactive', + 'intuitive', + 'killer', + 'leading-edge', + 'magnetic', + 'mission-critical', + 'next-generation', + 'one-to-one', 'open-source', - 'cross-platform', - 'cross-media', - 'synergistic', - 'bricks-and-clicks', 'out-of-the-box', - 'enterprise', - 'integrated', - 'impactful', - 'wireless', + 'plug-and-play', + 'proactive', + 'real-time', + 'revolutionary', + 'rich', + 'robust', + 'scalable', + 'seamless', + 'sexy', + 'sticky', + 'strategic', + 'synergistic', 'transparent', - 'next-generation', - 'cutting-edge', + 'turn-key', + 'ubiquitous', 'user-centric', + 'value-added', + 'vertical', + 'viral', + 'virtual', 'visionary', - 'customized', - 'ubiquitous', - 'plug-and-play', - 'collaborative', - 'compelling', - 'holistic', - 'rich', + 'web-enabled', + 'wireless', + 'world-class', ]; diff --git a/src/locales/en/company/buzz_noun.ts b/src/locales/en/company/buzz_noun.ts index b62bdbef218..6d10c313147 100644 --- a/src/locales/en/company/buzz_noun.ts +++ b/src/locales/en/company/buzz_noun.ts @@ -1,43 +1,43 @@ export default [ - 'synergies', - 'paradigms', - 'markets', - 'partnerships', - 'infrastructures', - 'platforms', - 'initiatives', - 'channels', - 'eyeballs', - 'communities', 'ROI', - 'solutions', 'action-items', - 'portals', - 'niches', - 'technologies', - 'content', - 'supply-chains', - 'convergence', - 'relationships', + 'applications', 'architectures', - 'interfaces', - 'e-markets', - 'e-commerce', - 'systems', 'bandwidth', - 'models', - 'mindshare', + 'blockchains', + 'channels', + 'communities', + 'content', + 'convergence', 'deliverables', - 'users', - 'schemas', - 'networks', - 'applications', - 'metrics', 'e-business', - 'functionalities', + 'e-commerce', + 'e-markets', 'experiences', - 'web services', - 'methodologies', - 'blockchains', + 'eyeballs', + 'functionalities', + 'infrastructures', + 'initiatives', + 'interfaces', 'lifetime value', + 'markets', + 'methodologies', + 'metrics', + 'mindshare', + 'models', + 'networks', + 'niches', + 'paradigms', + 'partnerships', + 'platforms', + 'portals', + 'relationships', + 'schemas', + 'solutions', + 'supply-chains', + 'synergies', + 'systems', + 'technologies', + 'users', + 'web services', ]; diff --git a/src/locales/en/company/buzz_verb.ts b/src/locales/en/company/buzz_verb.ts index 405efc3c63e..5b3bb3db3f9 100644 --- a/src/locales/en/company/buzz_verb.ts +++ b/src/locales/en/company/buzz_verb.ts @@ -1,62 +1,62 @@ export default [ - 'implement', - 'utilize', - 'integrate', - 'streamline', - 'optimize', - 'evolve', - 'transform', - 'embrace', - 'enable', - 'orchestrate', - 'leverage', - 'reinvent', 'aggregate', 'architect', - 'enhance', - 'incentivize', - 'morph', - 'empower', - 'envisioneer', - 'monetize', - 'harness', - 'facilitate', - 'seize', - 'disintermediate', - 'synergize', - 'strategize', - 'deploy', + 'benchmark', 'brand', - 'grow', - 'target', - 'syndicate', - 'synthesize', + 'cultivate', 'deliver', - 'mesh', - 'incubate', + 'deploy', + 'disintermediate', + 'drive', + 'e-enable', + 'embrace', + 'empower', + 'enable', 'engage', - 'maximize', - 'benchmark', + 'engineer', + 'enhance', + 'envisioneer', + 'evolve', 'expedite', - 'reintermediate', - 'whiteboard', - 'visualize', - 'repurpose', - 'innovate', - 'scale', - 'unleash', - 'drive', + 'exploit', 'extend', - 'engineer', - 'revolutionize', + 'facilitate', 'generate', - 'exploit', - 'transition', - 'e-enable', + 'grow', + 'harness', + 'implement', + 'incentivize', + 'incubate', + 'innovate', + 'integrate', 'iterate', - 'cultivate', + 'leverage', 'matrix', + 'maximize', + 'mesh', + 'monetize', + 'morph', + 'optimize', + 'orchestrate', 'productize', - 'redefine', 'recontextualize', + 'redefine', + 'reintermediate', + 'reinvent', + 'repurpose', + 'revolutionize', + 'scale', + 'seize', + 'strategize', + 'streamline', + 'syndicate', + 'synergize', + 'synthesize', + 'target', + 'transform', + 'transition', + 'unleash', + 'utilize', + 'visualize', + 'whiteboard', ]; diff --git a/src/locales/en/company/descriptor.ts b/src/locales/en/company/descriptor.ts index 4b3c8c92fd5..5fd028eda1e 100644 --- a/src/locales/en/company/descriptor.ts +++ b/src/locales/en/company/descriptor.ts @@ -21,9 +21,9 @@ export default [ 'coherent', 'cohesive', 'composite', + 'content-based', 'context-sensitive', 'contextually-based', - 'content-based', 'dedicated', 'demand-driven', 'didactic', @@ -64,9 +64,9 @@ export default [ 'mobile', 'modular', 'motivating', - 'multimedia', 'multi-state', 'multi-tasking', + 'multimedia', 'national', 'needs-based', 'neutral', @@ -85,9 +85,9 @@ export default [ 'solution-oriented', 'stable', 'static', + 'system-worthy', 'systematic', 'systemic', - 'system-worthy', 'tangible', 'tertiary', 'transitional', diff --git a/src/locales/en/company/name_pattern.ts b/src/locales/en/company/name_pattern.ts index d1ce07097ce..92c1503ba6f 100644 --- a/src/locales/en/company/name_pattern.ts +++ b/src/locales/en/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ - '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} - {{person.last_name}}', + '{{person.last_name}} {{company.suffix}}', '{{person.last_name}}, {{person.last_name}} and {{person.last_name}}', ]; diff --git a/src/locales/en/company/noun.ts b/src/locales/en/company/noun.ts index b289a85a2d0..00642905a8e 100644 --- a/src/locales/en/company/noun.ts +++ b/src/locales/en/company/noun.ts @@ -1,4 +1,6 @@ export default [ + 'Graphic Interface', + 'Graphical User Interface', 'ability', 'access', 'adapter', @@ -9,8 +11,8 @@ export default [ 'approach', 'architecture', 'archive', - 'artificial intelligence', 'array', + 'artificial intelligence', 'attitude', 'benchmark', 'budgetary management', @@ -25,8 +27,8 @@ export default [ 'contingency', 'core', 'customer loyalty', - 'database', 'data-warehouse', + 'database', 'definition', 'emulation', 'encoding', @@ -40,9 +42,7 @@ export default [ 'framework', 'function', 'functionalities', - 'Graphic Interface', 'groupware', - 'Graphical User Interface', 'hardware', 'help-desk', 'hierarchy', @@ -56,10 +56,10 @@ export default [ 'interface', 'internet solution', 'intranet', - 'knowledge user', 'knowledge base', - 'local area network', + 'knowledge user', 'leverage', + 'local area network', 'matrices', 'matrix', 'methodology', diff --git a/src/locales/en/company/suffix.ts b/src/locales/en/company/suffix.ts index bd6389eb253..4b2c84542aa 100644 --- a/src/locales/en/company/suffix.ts +++ b/src/locales/en/company/suffix.ts @@ -1 +1 @@ -export default ['Inc', 'and Sons', 'LLC', 'Group']; +export default ['Group', 'Inc', 'LLC', 'and Sons']; diff --git a/src/locales/en/database/column.ts b/src/locales/en/database/column.ts index f69f530cad6..2b6c541dcd0 100644 --- a/src/locales/en/database/column.ts +++ b/src/locales/en/database/column.ts @@ -1,16 +1,16 @@ export default [ - 'id', - 'title', - 'name', + 'avatar', + 'category', + 'comment', + 'createdAt', 'email', - 'phone', - 'token', 'group', - 'category', + 'id', + 'name', 'password', - 'comment', - 'avatar', + 'phone', 'status', - 'createdAt', + 'title', + 'token', 'updatedAt', ]; diff --git a/src/locales/en/hacker/adjective.ts b/src/locales/en/hacker/adjective.ts index f12366232bf..632815ce6c3 100644 --- a/src/locales/en/hacker/adjective.ts +++ b/src/locales/en/hacker/adjective.ts @@ -1,20 +1,20 @@ export default [ + '1080p', 'auxiliary', - 'primary', 'back-end', - 'digital', - 'open-source', - 'virtual', + 'bluetooth', 'cross-platform', - 'redundant', - 'online', + 'digital', 'haptic', + 'mobile', 'multi-byte', - 'bluetooth', - 'wireless', - '1080p', 'neural', + 'online', + 'open-source', 'optical', + 'primary', + 'redundant', 'solid state', - 'mobile', + 'virtual', + 'wireless', ]; diff --git a/src/locales/en/hacker/ingverb.ts b/src/locales/en/hacker/ingverb.ts index 5f75b7df0f8..0b4816533e4 100644 --- a/src/locales/en/hacker/ingverb.ts +++ b/src/locales/en/hacker/ingverb.ts @@ -1,18 +1,18 @@ export default [ 'backing up', 'bypassing', - 'hacking', - 'overriding', + 'calculating', 'compressing', - 'copying', - 'navigating', - 'indexing', 'connecting', + 'copying', 'generating', + 'hacking', + 'indexing', + 'navigating', + 'overriding', + 'parsing', + 'programming', 'quantifying', - 'calculating', 'synthesizing', 'transmitting', - 'programming', - 'parsing', ]; diff --git a/src/locales/en/hacker/noun.ts b/src/locales/en/hacker/noun.ts index 60a03d68de7..f20fd37a63b 100644 --- a/src/locales/en/hacker/noun.ts +++ b/src/locales/en/hacker/noun.ts @@ -1,26 +1,26 @@ export default [ - 'driver', - 'protocol', + 'alarm', + 'application', + 'array', 'bandwidth', - 'panel', - 'microchip', - 'program', - 'port', + 'bus', + 'capacitor', 'card', - 'array', - 'interface', - 'system', - 'sensor', + 'circuit', + 'driver', + 'feed', 'firewall', 'hard drive', - 'pixel', - 'alarm', - 'feed', + 'interface', + 'matrix', + 'microchip', 'monitor', - 'application', + 'panel', + 'pixel', + 'port', + 'program', + 'protocol', + 'sensor', + 'system', 'transmitter', - 'bus', - 'circuit', - 'capacitor', - 'matrix', ]; diff --git a/src/locales/en/hacker/phrase.ts b/src/locales/en/hacker/phrase.ts index 07a97c40e87..b9776841931 100644 --- a/src/locales/en/hacker/phrase.ts +++ b/src/locales/en/hacker/phrase.ts @@ -1,10 +1,10 @@ export default [ + "I'll {{verb}} the {{adjective}} {{abbreviation}} {{noun}}, that should {{noun}} the {{abbreviation}} {{noun}}!", 'If we {{verb}} the {{noun}}, we can get to the {{abbreviation}} {{noun}} through the {{adjective}} {{abbreviation}} {{noun}}!', - 'We need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!', + 'The {{abbreviation}} {{noun}} is down, {{verb}} the {{adjective}} {{noun}} so we can {{verb}} the {{abbreviation}} {{noun}}!', 'Try to {{verb}} the {{abbreviation}} {{noun}}, maybe it will {{verb}} the {{adjective}} {{noun}}!', - "You can't {{verb}} the {{noun}} without {{ingverb}} the {{adjective}} {{abbreviation}} {{noun}}!", 'Use the {{adjective}} {{abbreviation}} {{noun}}, then you can {{verb}} the {{adjective}} {{noun}}!', - 'The {{abbreviation}} {{noun}} is down, {{verb}} the {{adjective}} {{noun}} so we can {{verb}} the {{abbreviation}} {{noun}}!', + 'We need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!', + "You can't {{verb}} the {{noun}} without {{ingverb}} the {{adjective}} {{abbreviation}} {{noun}}!", "{{ingverb}} the {{noun}} won't do anything, we need to {{verb}} the {{adjective}} {{abbreviation}} {{noun}}!", - "I'll {{verb}} the {{adjective}} {{abbreviation}} {{noun}}, that should {{noun}} the {{abbreviation}} {{noun}}!", ]; diff --git a/src/locales/en/hacker/verb.ts b/src/locales/en/hacker/verb.ts index 343a32c3a6d..c24a2da04a9 100644 --- a/src/locales/en/hacker/verb.ts +++ b/src/locales/en/hacker/verb.ts @@ -1,20 +1,20 @@ export default [ 'back up', 'bypass', - 'hack', - 'override', + 'calculate', 'compress', - 'copy', - 'navigate', - 'index', 'connect', + 'copy', 'generate', - 'quantify', - 'calculate', - 'synthesize', + 'hack', + 'index', 'input', - 'transmit', + 'navigate', + 'override', + 'parse', 'program', + 'quantify', 'reboot', - 'parse', + 'synthesize', + 'transmit', ]; diff --git a/src/locales/en/music/album.ts b/src/locales/en/music/album.ts new file mode 100644 index 00000000000..b85caba6907 --- /dev/null +++ b/src/locales/en/music/album.ts @@ -0,0 +1,926 @@ +export default [ + '"Awaken, My Love!"', + "(What's The Story) Morning Glory?", + '- Tragedy +', + '13 Reasons Why (Season 3)', + '21st Century Breakdown', + '30 De Febrero', + '432 Hz Deep Healing', + '5-Star', + '528 Hz Meditation Music', + '54+1', + '8 Mile', + '808s & Heartbreak', + '9 To 5 And Odd Jobs', + 'A Beautiful Lie', + 'A Day At The Races', + 'A Day Without Rain', + "A Fever You Can't Sweat Out", + "A Gangsta's Pain", + 'A Gift & A Curse', + "A Hard Day's Night", + 'A Head Full Of Dreams', + 'A Kind Of Magic', + 'A Million Ways To Murder', + 'A Moment Apart', + 'A Song For Every Moon', + 'A Thousand Suns', + 'A Winter Romance', + 'ABBA', + 'AI YoungBoy', + 'AJ Tracey', + 'Act One', + 'After Hours', + 'Agent Provocateur', + 'All About You', + 'All I Know So Far: Setlist', + 'All Or Nothing', + 'All Out', + 'All Over The Place', + 'All Stand Together', + 'All The Lost Souls', + 'All The Things I Never Said', + 'All Things Must Pass', + 'Alleen', + 'Alright, Still', + 'Alta Suciedad', + 'America', + 'American Heartbreak', + 'American Teen', + 'And Justice For None', + 'Animal Songs', + 'Another Friday Night', + 'Anything Goes', + 'Ao Vivo Em São Paulo', + 'Ao Vivo No Ibirapuera', + 'Apricot Princess', + 'Aqui E Agora (Ao Vivo)', + 'Arcane League Of Legends', + 'Ardipithecus', + 'Aretha Now', + 'Around The Fur', + 'Arrival', + 'Artist 2.0', + 'As She Pleases', + 'Ascend', + 'Ashlyn', + 'Astro Lounge', + 'At Night, Alone.', + 'At. Long. Last. ASAP', + 'Atlas', + 'Audioslave', + 'Aura', + 'Austin', + 'Awake', + 'Away From The Sun', + 'Ayayay!', + 'Baby On Baby', + 'Back For Everything', + 'Back From The Edge', + 'Back In Black', + 'Back To Black', + 'Back To The Game', + 'Bad', + 'Bahía Ducati', + 'Baila', + 'Barbie The Album', + 'Battleground', + 'Bayou Country', + 'Bcos U Will Never B Free', + 'Be', + 'Be Here Now', + 'Beautiful Mind', + 'Beautiful Thugger Girls', + 'Beautiful Trauma', + 'Beauty And The Beast', + 'Beggars Banquet', + 'Being Funny In A Foreign Language', + 'Berlin Lebt', + 'Berry Is On Top', + 'Best White Noise For Baby Sleep - Loopable With No Fade', + 'Big Baby DRAM', + 'Bigger, Better, Faster, More!', + 'Billy Talent II', + 'Black Star Elephant', + 'Blackout', + 'Blank Face LP', + 'Bleach', + 'Blizzard Of Ozz', + 'Blonde', + 'Blood Sugar Sex Magik', + 'Bloom', + "Blowin' Your Mind!", + 'Blu Celeste', + 'Blue', + 'Blue Banisters', + 'Blue Hawaii', + 'Blue Neighbourhood', + 'Bluebird Days', + 'Bobby Tarantino', + 'Bobby Tarantino II', + 'Bon Iver', + 'Born Pink', + 'Born To Run', + 'Brand New Eyes', + 'Break The Cycle', + 'Breakfast In America', + 'Breakthrough', + 'Brett Young', + 'Bridge Over Troubled Water', + 'Bright: The Album', + 'Brol', + 'Buds', + 'Buena Vista Social Club', + 'Built On Glass', + 'Bury Me At Makeout Creek', + 'Busyhead', + 'By The Way', + 'CB6', + 'CNCO', + 'California Sunrise', + 'Californication', + 'Call Me Irresponsible', + 'Calm', + 'Camino Palmero', + 'Camp', + 'Caracal', + 'Carbon Fiber Hits', + 'Carnival', + 'Carry On', + 'Cartel De Santa', + 'Certified Lover Boy', + 'Chaaama', + 'Chama Meu Nome', + 'Chapter 1: Snake Oil', + 'Chapter 2: Swamp Savant', + 'Chapter One', + "Charlie's Angels", + 'Cherry Bomb', + 'Chief', + 'Chocolate Factory', + 'Chosen', + 'Chris Brown', + 'Christina Aguilera', + 'Chromatica', + 'Church', + 'City Of Evil', + 'Clandestino', + 'Clouds', + 'Coco', + 'Collision Course', + 'Colour Vision', + 'Combat Rock', + 'Come Around Sundown', + 'Come Away With Me', + 'Come Home The Kids Miss You', + 'Come What(ever) May', + 'Commando', + 'Common Sense', + 'Communion', + 'Conditions', + 'Confident', + 'Confrontation', + 'Control The Streets, Volume 2', + 'Corinne Bailey Rae', + 'Costello Music', + 'Cottonwood', + 'Covers, Vol. 2', + 'Cozy Tapes Vol. 2: Too Cozy', + 'Crash Talk', + 'Crazy Love', + 'Crazysexycool', + 'Crowded House', + "Cruisin' With Junior H", + 'Culture', + 'Current Mood', + 'DS2', + 'Dale', + 'Danger Days: The True Lives Of The Fabulous Killjoys', + 'Dangerous Woman', + 'Dangerous: The Double Album', + 'Dark Horse', + 'Day69', + 'Daydream', + 'De Fiesta', + 'De Viaje', + 'DeAnn', + 'Death Race For Love', + 'Delirium', + 'Delta', + 'Demidevil', + 'Depression Cherry', + 'Descendants', + 'Desgenerados Mixtape', + 'Destin', + 'Destiny Fulfilled', + 'Desvelado', + 'Detroit 2', + 'Dex Meets Dexter', + 'Dharma', + 'Die A Legend', + 'Different World', + 'Dig Your Roots', + 'Digital Druglord', + 'Dirt', + 'Disclaimer I / II', + 'Discovery', + 'Disraeli Gears', + 'Disumano', + 'Dizzy Up The Girl', + "Don't Play That Song", + 'Donda', + 'Donde Quiero Estar', + 'Doo-Wops & Hooligans', + 'Down The Way', + 'Dr. Feelgood', + 'Dream Your Life Away', + 'Dreaming Out Loud', + 'Drip Harder', + 'Drive', + 'Drones', + 'Dropped Outta College', + 'Drowning', + 'Dua Warna Cinta', + 'Dulce Beat', + 'Dusty In Memphis', + 'Dutty Rock', + 'Dying To Live', + 'ENR', + 'East Atlanta Love Letter', + 'Editorial', + 'Edna', + 'El Abayarde', + 'El Amor En Los Tiempos Del Perreo', + 'El Camino', + 'El Comienzo', + 'El Dorado', + 'El Karma', + 'El Mal Querer', + 'El Malo', + 'El Trabajo Es La Suerte', + 'El Viaje De Copperpot', + 'Electric Ladyland', + 'Emotion', + 'En Tus Planes', + 'Endless Summer Vacation', + 'Enter The Wu-Tang (36 Chambers)', + 'Equals (=)', + 'Estrella', + 'Euphoria', + 'Europop', + 'Evermore', + 'Every Kingdom', + 'Everyday Life', + 'Evolve', + 'Expectations', + 'Face Yourself', + 'Facelift', + "Fallin'", + 'Fancy You', + 'Fantasía', + 'Favourite Worst Nightmare', + 'Fear Of The Dark', + 'Fearless', + 'Feel Something', + 'Feels Like Home', + 'Femme Fatale', + 'Ferxxocalipsis', + 'Fifty Shades Darker', + 'Fifty Shades Freed', + 'Fifty Shades Of Grey', + 'Final (Vol.1)', + 'Finding Beauty In Negative Spaces', + 'Fine Line', + 'First Impressions Of Earth', + 'First Steps', + 'Five Seconds Flat', + 'Folklore', + 'For Emma, Forever Ago', + 'Forajido EP 1', + 'Forever', + 'Forever Young', + 'Formula Of Love: O+T=<3', + 'Free 6lack', + 'Freudian', + 'Frozen II', + 'Full Moon Fever', + 'Funhouse', + 'Funk Wav Bounces Vol.1', + 'Future History', + 'FutureSex/LoveSounds', + 'Fuzzybrain', + 'Gallery', + "Gangsta's Paradise", + 'Gemini', + 'Gemini Rights', + 'Generationwhy', + 'Get A Grip', + 'Get Up', + "Gettin' Old", + 'Girl', + 'Gladiator', + 'Glisten', + 'Globalization', + 'Gloria', + 'Glory Days', + "God's Project", + 'Gold Skies', + 'Golden', + 'Good Evening', + 'Good Thing', + 'Goodbye Yellow Brick Road', + 'Gossip Columns', + 'Got Your Six', + 'Graceland', + 'Graduation', + 'Grand Champ', + 'Grandson, Vol. 1', + 'Green River', + 'Guerra', + 'Ha*Ash Primera Fila - Hecho Realidad', + 'Haiz', + 'Hamilton', + 'Happy Endings', + 'Harry Styles', + 'Hasta La Raíz', + 'Hatful Of Hollow', + 'Head In The Clouds', + 'Heard It In A Past Life', + 'Heart Shaped World', + 'Heartbeat City', + 'Heartbreak On A Full Moon / Cuffing Season - 12 Days Of Christmas', + 'Heaven Or Hell', + 'Heaven knows', + 'Hellbilly Deluxe', + 'Hellboy', + 'Help!', + 'Her Loss', + 'Here Comes The Cowboy', + 'Hey World', + 'High School Musical', + "High Tide In The Snake's Nest", + 'Historias De Un Capricornio', + 'Hndrxx', + 'Hombres G (Devuélveme A Mi Chica)', + 'Homerun', + 'Homework', + 'Hot Fuss', + 'Hot Pink', + 'Hot Sauce / Hello Future', + 'Hot Space', + 'Hotel Diablo', + 'Houses Of The Holy', + 'How Big, How Blue, How Beautiful', + "How I'm Feeling", + 'How To Be Human', + 'How To Save A Life', + 'How To: Friend, Love, Freefall', + 'Hozier', + 'Human', + 'Huncho Jack, Jack Huncho', + 'Hunter Hayes', + 'Hysteria', + 'I Am...Sasha Fierce', + "I Can't Handle Change", + 'I Met You When I Was 18. (The Playlist)', + 'I Never Liked You', + 'I Never Loved A Man The Way I Love You', + 'I See You', + 'I Think You Think Too Much Of Me', + 'I Used To Know Her', + 'I Used To Think I Could Fly', + "I'm Comin' Over", + 'Ich & Keine Maske', + 'If You Can Believe Your Eyes & Ears', + 'Il Ballo Della Vita', + 'Ill Communication', + 'Imagination & The Misfit Kid', + 'Imagine', + 'Immortalized', + 'In A Perfect World...', + 'In Colour', + 'In My Own Words', + 'In Rainbows', + 'In Return', + 'In The Lonely Hour', + 'Infest', + 'Innuendo', + 'Inter Shibuya - La Mafia', + 'Interstellar', + 'Is This It', + 'It Was Written', + "It's Not Me, It's You", + "It's Only Me", + 'Ivory', + 'JackBoys', + 'Jamie', + 'Jazz', + 'Jibrail & Iblis', + 'Jordi', + 'Jordin Sparks', + 'Jose', + 'Just As I Am', + "Just Cause Y'all Waited 2", + 'Just Like You', + 'Justified', + 'K-12 / After School', + 'K.I.D.S.', + 'K.O.', + 'K.O.B. Live', + 'KG0516', + 'KOD', + 'Kane Brown', + 'Kid A', + 'Kid Krow', + 'Kids See Ghosts', + 'Kids in Love', + 'Kinks (You Really Got Me)', + 'Know-It-All', + 'Konvicted', + 'Kring', + 'LANY', + 'LM5', + 'La Criatura', + 'La Flaca', + 'La Melodia De La Calle', + 'La Revolucion', + 'Lady Lady', + 'Lady Wood', + 'Langit Mong Bughaw', + 'Las Que No Iban A Salir', + 'Last Day Of Summer', + 'Last Year Was Complicated', + 'Layers', + 'Layover', + 'Lazarus', + 'Led Zeppelin', + 'Left Of The Middle', + 'Leftoverture', + 'Legends Never Die', + "Let's Skip To The Wedding", + "Let's Talk About Love", + 'Licensed To Ill', + 'Life In Cartoon Motion', + 'Life Thru A Lens', + 'Lifelines', + 'Like..?', + 'Lil Big Pac', + 'Lil Boat', + 'Lil Boat 2', + 'Lil Boat 3.5', + 'Lil Kiwi', + 'Lil Pump', + 'Limon Y Sal', + 'Listen Without Prejudice', + 'Little Voice', + 'Live On Red Barn Radio I & II', + 'Lo Que Andábamos Buscando', + 'Lofi Fruits Music 2021', + 'London Calling', + 'Los Campeones Del Pueblo', + 'Los Extraterrestres', + 'Los Favoritos 2', + 'Lost', + 'Lost In Love', + 'Loud', + 'Love Sick', + 'Love Story', + 'Love Stuff', + 'Love Yourself: Tear', + 'Lover', + 'Luca Brasi 2: Gangsta Grillz', + 'Lust For Life', + 'Luv Is Rage', + 'M!ssundaztood', + 'Ma Fleur', + 'Made In Lagos', + 'Mafia Bidness', + 'Magazines Or Novels', + 'Mainstream Sellout', + 'Majestic', + 'Make It Big', + 'Make Yourself', + 'Making Mirrors', + 'Mamma Mia! Here We Go Again', + 'Man Of The Woods', + 'Manic', + 'Me And My Gang', + 'Meduza', + 'Meet The Orphans', + 'Meet The Woo', + 'Melim', + 'Mellon Collie And The Infinite Sadness', + 'Melly vs. Melvin', + 'Memories...Do Not Open', + 'Menagerie', + 'Midnights', + 'Minecraft - Volume Alpha', + 'Minutes To Midnight', + 'Mix Pa Llorar En Tu Cuarto', + 'Modo Avión', + 'Monkey Business', + 'Mono.', + 'Montana', + 'Montevallo', + 'Moosetape', + 'Morning View', + 'Motivan2', + 'Moving Pictures', + 'Mr. Davis', + 'Mr. Misunderstood', + 'Mulan', + 'Mura Masa', + 'Music From The Edge Of Heaven', + 'Music Of The Sun', + 'My House', + 'My Kinda Party', + 'My Krazy Life', + "My Liver Will Handle What My Heart Can't", + 'My Moment', + 'My Own Lane', + 'My Turn', + 'My Worlds', + 'Na Praia (Ao Vivo)', + 'Nakamura', + 'Nation Of Two', + 'Navegando', + 'Need You Now', + 'Neon Future III', + 'Neotheater', + 'Never Trust A Happy Song', + 'New English', + 'News Of The World', + 'Nicole', + 'Night & Day', + 'Nimmerland', + 'Nimrod', + 'Nine Track Mind', + 'No Angel', + 'No Me Pidas Perdón', + 'No More Drama', + 'No Protection', + 'No Strings Attached', + 'No Time To Die', + 'Nobody Is Listening', + 'Non Stop Erotic Cabaret', + 'Non-Fiction', + 'Northsbest', + 'Nostalgia', + 'Nostalgia, Ultra', + 'Notes On A Conditional Form', + 'Now Or Never', + 'O Embaixador (Ao Vivo)', + 'O My Heart', + 'OK Computer', + 'Ocean', + 'Ocean Avenue', + 'Ocean Eyes', + 'Odisea', + 'Oh My My', + 'Oh, What A Life', + 'On The 6', + 'One In A Million', + 'One More Light', + 'One Of These Nights', + 'Open Up And Say...Ahh!', + 'Ordinary Man', + 'Origins', + 'Out Of The Blue', + 'Over It', + 'OzuTochi', + 'PTSD', + "Pa Las Baby's Y Belikeada", + 'Pa Que Hablen', + "Pa' Luego Es Tarde", + "Pa' Otro La 'O", + 'Pablo Honey', + 'Pain Is Love', + 'Pain Is Temporary', + 'Painting Pictures', + 'Palmen Aus Plastik 2', + 'Para Mi Ex', + 'Para Siempre', + 'Partners In Crime', + 'Pawn Shop', + 'Pegasus / Neon Shark VS Pegasus', + 'Pet Sounds', + 'Piece By Piece', + 'Pier Pressure', + 'Pineapple Sunrise', + 'Piseiro 2020 Ao Vivo', + 'Planet Pit', + 'Plans', + 'Play Deep', + 'Playa Saturno', + 'Por Primera Vez', + 'Por Vida', + 'Positions', + 'Post Human: Survival Horror', + 'Poster Girl', + 'Prazer, Eu Sou Ferrugem (Ao Vivo)', + 'Pretty Girls Like Trap Music', + 'Pretty. Odd.', + 'Prince Royce', + 'Prisma', + 'Prometo', + 'Providence', + 'Puberty 2', + 'Punisher', + 'Purgatory', + 'Purple Rain', + 'Que Bendición', + 'Queen Of The Clouds', + 'Quiero Volver', + 'R&G (Rhythm & Gangsta): The Masterpiece', + 'Raise!', + 'Ransom 2', + 'Rapunzel', + 'Rare', + 'Re Mida', + 'Ready To Die', + 'Realer', + 'Rebelde', + 'Reclassified', + 'Recovery', + 'Recuerden Mi Estilo', + 'Reggatta De Blanc', + 'Regulate… G Funk Era', + 'Reik', + 'Reise, Reise', + 'Relapse', + 'Relaxing Piano Lullabies And Natural Sleep Aid For Baby Sleep Music', + 'Religiously. The Album.', + 'Replay', + 'Results May Vary', + 'Revenge', + 'Revolve', + 'Revolver', + 'Ricky Martin', + 'Rien 100 Rien', + 'Ripcord', + 'Rise And Fall, Rage And Grace', + 'Rise Of An Empire', + 'Robin Hood: Prince Of Thieves', + 'Rock N Roll Jesus', + 'Romance', + 'Romances', + 'Ronan', + 'Royal Blood', + 'Rumours', + 'Sad Boyz 4 Life II', + 'San Lucas', + 'Santana World', + 'Saturation III', + 'Sauce Boyz', + 'Savage Mode', + 'Saxobeats', + 'Scarlet', + 'Schwarzes Herz', + "Seal The Deal & Let's Boogie", + 'Section.80', + 'Segundo Romance', + 'Sehnsucht', + 'Shake The Snow Globe', + 'Shang-Chi And The Legend Of The Ten Rings: The Album', + 'Sheer Heart Attack', + 'Shiesty Season', + 'Shock Value', + 'Shoot For The Stars, Aim For The Moon', + 'Signed Sealed And Delivered', + 'Signos', + 'Silent Alarm', + 'Simplemente Gracias', + 'Sin Bandera', + 'Sing Me A Lullaby, My Sweet Temptation', + 'Sinner', + 'Sirio', + 'Sit Still, Look Pretty', + 'Skin', + 'Slowhand', + 'Smash', + 'Smithereens', + 'Snow Cougar', + 'Social Cues', + 'Some Girls', + 'Song Hits From Holiday Inn', + 'Songs For Dads', + 'Songs For The Deaf', + 'Songs For You, Truths For Me', + 'Songs In The Key Of Life', + 'Souled Out', + 'Sounds Of Silence', + 'Soy Como Quiero Ser', + 'Speak Now', + 'Speak Your Mind', + 'Speakerboxxx/The Love Below', + 'Spider-Man: Into The Spider-Verse', + 'Split Decision', + 'Square Up', + 'SremmLife', + 'Starboy', + 'Stay +', + 'Stay Dangerous', + "Staying At Tamara's", + 'Steppenwolf', + 'Stick Season', + 'Still Bill', + 'Straight Outta Compton', + 'Strange Trails', + 'Stronger', + 'Suavemente', + 'Sublime', + 'Suck It and See', + 'Sucker', + 'Sueños', + 'Sugar', + 'Summer Forever', + 'Summer,', + 'Sunset Season', + 'Sunshine On Leith', + 'Surfer Rosa', + 'Sweet Talker', + 'SweetSexySavage', + 'System Of A Down', + 'TA13OO', + 'Talk That Talk', + 'Talking Heads: 77', + 'Tangled Up', + 'Tango In The Night', + 'Taxi Driver', + 'Taylor Swift', + "Tell Me It's Real", + 'Ten', + "Ten Summoner's Tales", + 'Terra Sem Cep (Ao Vivo)', + 'Terral', + 'Testing', + 'Tha Carter III', + 'Thank Me Later', + "That's Christmas To Me", + 'The Academy', + 'The Adventures Of Bobby Ray', + 'The Album', + 'The Andy Williams Christmas Album', + 'The Aviary', + 'The Balcony', + 'The Battle Of Los Angeles', + 'The Beatles (White Album)', + 'The Beginning', + 'The Better Life', + 'The Big Day', + 'The Book', + 'The Breakfast Club', + 'The Cars', + 'The Colour And The Shape', + 'The Death Of Peace Of Mind', + 'The Diary Of Alicia Keys', + 'The Documentary', + 'The Emancipation Of Mimi', + 'The Eminem Show', + 'The End Of Everything', + 'The Final Countdown', + 'The Forever Story', + 'The Foundation', + 'The Goat', + 'The Golden Child', + 'The Good Parts', + 'The Greatest Showman: Reimagined', + 'The Green Trip', + 'The Hardest Love', + 'The Head And The Heart', + 'The Human Condition', + 'The Infamous', + 'The Lady Killer', + 'The Last Don II', + 'The Lion King', + 'The Lockdown Sessions', + 'The London Sessions', + 'The Lord Of The Rings: The Fellowship Of The Ring', + 'The Lost Boy', + 'The Magic Of Christmas / The Christmas Song', + 'The Marshall Mathers LP', + 'The Martin Garrix Collection', + 'The Melodic Blue', + 'The Mockingbird & The Crow', + 'The Pains Of Growing', + 'The Papercut Chronicles', + 'The Perfect Luv Tape', + 'The Pinkprint', + 'The Predator', + 'The Queen Is Dead', + 'The ReVe Festival: Finale', + 'The Rise And Fall Of Ziggy Stardust And The Spiders From Mars', + 'The Rising Tied', + 'The River', + 'The Stone Roses', + 'The Story Of Us', + 'The Stranger', + 'The Sufferer & The Witness', + "The Sun's Tirade", + 'The Temptations Sing Smokey', + 'The Time Of Our Lives', + 'The Way It Is', + 'The Wonderful World Of Sam Cooke', + "The Writing's On The Wall", + 'The Young And The Hopeless', + 'Therapy', + 'Therapy Session', + 'There Is More (Live)', + 'There Is Nothing Left To Lose', + 'These Things Happen', + 'Third Eye Blind', + 'This Is Me...Then', + "This Unruly Mess I've Made", + 'Threat to Survival', + 'Thrill Of The Chase', + 'Time', + 'Timelezz', + 'To Let A Good Thing Die', + 'To Pimp A Butterfly', + 'Toast To Our Differences', + 'Todos Os Cantos, Vol. 1 (Ao Vivo)', + 'Too Hard', + 'Torches X', + 'Total Xanarchy', + 'Toto IV', + 'Toulouse Street', + 'Tourist History', + 'Toxicity', + 'Tragic Kingdom', + 'Tranquility Base Hotel & Casino', + 'Traumazine', + 'Traveler', + 'Tres Hombres', + 'Trip At Knight', + 'Tron: Legacy', + 'True Blue', + 'True Colors', + 'Trustfall', + 'Tu Veneno Mortal', + 'Tudo Em Paz', + 'Ubuntu', + 'Ugly Is Beautiful', + 'Ultra 2021', + 'Una Mattina', + 'Unbroken', + 'Uncovered', + 'Under Pressure', + 'Unsponsored Content', + 'Unstoppable', + 'Unwritten', + 'Urban Flora', + 'Urban Hymns', + 'Use Your Illusion I', + 'Veneer', + 'Versions Of Me', + 'Vibes', + 'Vice Versa', + 'Vices & Virtues', + 'Victory', + 'Vida', + 'Viejo Marihuano', + 'Visualízate', + 'Walk Away', + 'Walk Me Home...', + 'Watch The Throne', + 'Wave', + 'We Broke The Rules', + 'We Love You Tecca', + 'We Love You Tecca 2', + 'Weezer (Green Album)', + 'Welcome To The Madhouse', + 'Westlife', + 'What A Time To Be Alive', + 'What Do You Think About The Car?', + 'What Is Love?', + 'What Makes You Country', + 'What Separates Me From You', + "What You See Is What You Get / What You See Ain't Always What You Get", + "When It's Dark Out", + 'When We All Fall Asleep, Where Do We Go?', + 'Where The Light Is', + 'While The World Was Burning', + 'White Pony', + 'Whitney', + 'Who Really Cares', + 'Who You Are', + "Who's Next", + 'Wide Open', + 'Wilder Mind', + 'Wildfire', + 'Willy And The Poor Boys', + 'Wings / You Never Walk Alone', + 'Wish', + 'Wish You Were Here', + 'Without Warning', + 'Wonder', + 'X&Y', + 'XOXO', + 'Y Que Quede Claro', + 'YBN: The Mixtape', + 'Yo Creo', + 'You Will Regret', + 'Youngblood', + 'Younger Now', + 'Youth', +]; diff --git a/src/locales/en/music/artist.ts b/src/locales/en/music/artist.ts new file mode 100644 index 00000000000..41fc84e5d5c --- /dev/null +++ b/src/locales/en/music/artist.ts @@ -0,0 +1,986 @@ +export default [ + '$NOT', + '$uicideboy$', + '(G)I-DLE', + '*NSYNC', + '2 Chainz', + '21 Savage', + '6LACK', + '? & The Mysterians', + 'A Boogie Wit da Hoodie', + 'A Taste of Honey', + 'A Tribe Called Quest', + 'A-Ha', + 'ABBA', + 'AC/DC', + 'AJ Tracey', + 'ATEEZ', + 'Ace of Base', + 'Adele', + 'Ado', + 'Aerosmith', + 'Agust D', + 'Aitana', + 'Al Dexter & his Troopers', + 'Al Green', + 'Al Jolson', + 'Al Martino', + 'Alan Jackson', + 'Alannah Myles', + 'Alec Benjamin', + 'Alejandro Sanz', + 'Alesso', + 'Alfredo Olivas', + 'Ali Gatie', + 'Alice In Chains', + 'Alina Baraz', + 'All Time Low', + 'All-4-One', + 'All-American Rejects', + 'Alok', + 'America', + 'American Quartet', + 'Amii Stewart', + 'Amitabh Bhattacharya', + 'Ana Castela', + 'Anderson .Paak', + 'Andy Grammer', + 'Angus & Julia Stone', + 'Anirudh Ravichander', + 'Anita Ward', + 'Anitta', + 'Anton Karas', + 'Anuel AA', + 'Arcade Fire', + 'Archie Bell & The Drells', + 'Archies', + 'Aretha Franklin', + 'Arizona Zervas', + 'Armin van Buuren', + 'Arthur Conley', + 'Artie Shaw', + 'Asake', + 'Asees Kaur', + 'Association', + 'Atif Aslam', + 'Audioslave', + 'Aventura', + 'Avril Lavigne', + 'Aya Nakamura', + 'B J Thomas', + 'B.o.B', + 'BLACKPINK', + 'BONES', + 'BROCKHAMPTON', + 'BTS', + 'Baby Keem', + 'Bachman-Turner Overdrive', + 'Backstreet Boys', + 'Bad Bunny', + 'Badshah', + 'Bailey Zimmerman', + 'Banda El Recodo', + 'Barbra Streisand', + 'Barry White', + 'Bazzi', + 'Bebe Rexha', + 'Becky G', + 'Becky Hill', + 'Bee Gees', + 'Ben Bernie', + 'Ben Howard', + 'Ben Selvin', + 'Berlin', + 'Bessie Smith', + 'Bethel Music', + 'Bette Midler', + 'Beyonce', + 'Bibi Blocksberg', + 'Bibi und Tina', + 'BigXthaPlug', + 'Bill Doggett', + 'Bill Haley & his Comets', + 'Bill Withers', + 'Billy Davis Jr', + 'Billy Joel', + 'Billy Paul', + 'Billy Preston', + 'Billy Swan', + 'Birdy', + 'Bizarrap', + 'Blake Shelton', + 'Blur', + 'Bob Marley & The Wailers', + 'Bob Seger', + 'Bobby Darin', + 'Bobby Lewis', + 'Bobby McFerrin', + 'Bobby Vinton', + 'Boney M.', + 'Bonez MC', + 'Bonnie Tyler', + 'Booba', + 'Boston', + 'BoyWithUke', + 'Boyce Avenue', + 'Bradley Cooper', + 'Bread', + 'Brent Faiyaz', + 'Brett Young', + 'Bring Me The Horizon', + 'Britney Spears', + 'Brooks & Dunn', + 'Bruce Channel', + 'Bruno & Marrone', + 'Bryan Adams', + 'Bryce Vine', + 'Buddy Holly', + 'Burna Boy', + 'C. Tangana', + 'CKay', + 'CRO', + 'Camilo', + 'Capital Bra', + 'Captain & Tennille', + 'Cardi B', + 'Carin Leon', + 'Carlos Vives', + 'Carly Simon', + 'Carpenters', + 'Cavetown', + 'Celine Dion', + 'Central Cee', + 'Chaka Khan', + 'Champs', + 'Charlie Rich', + 'Chayanne', + 'Cheat Codes', + 'Cher', + 'Chic', + 'Chicago', + 'Chris Brown', + 'Chris Isaak', + 'Chris Young', + 'Christina Aguilera', + 'Christina Perri', + 'Christopher Cross', + 'Chuck Berry', + 'Ciara', + 'Cigarettes After Sex', + 'Cliff Edwards (Ukelele Ike)', + 'Cody Johnson', + 'Colbie Caillat', + "Colby O'Donis", + 'Cole Swindell', + 'Coleman Hawkins', + 'Contours', + 'Coolio', + 'Count Basie', + 'Cris Mj', + 'Culture Club', + 'Cyndi Lauper', + 'D-Block Europe', + 'DAY6', + 'DJ Khaled', + 'DJ Luian', + 'DJ Nelson', + 'DMX', + 'DNCE', + 'DaVido', + 'Dadju', + 'Daft Punk', + 'Dan + Shay', + 'Daniel Powter', + 'Danny Ocean', + 'Darius Rucker', + 'Dave', + 'David Bowie', + 'David Guetta', + 'Daya', + 'Dean Martin', + 'Deee-Lite', + 'Deep Purple', + 'Deftones', + 'Demi Lovato', + 'Dennis Lloyd', + 'Denzel Curry', + 'Dermot Kennedy', + 'Desiigner', + 'Devo', + 'Dewa 19', + 'Dexys Midnight Runners', + 'Diddy', + 'Dido', + 'Die drei !!!', + 'Diego & Victor Hugo', + 'Diljit Dosanjh', + 'Dimitri Vegas & Like Mike', + 'Dinah Shore', + 'Dionne Warwick', + 'Dire Straits', + 'Disclosure', + 'Dixie Cups', + 'Doja Cat', + 'Dolly Parton', + 'Don Diablo', + 'Don Henley', + 'Don McLean', + 'Don Omar', + 'Donna Summer', + 'Donovan', + 'Dr. Dre', + 'Drake', + 'Dreamville', + 'Dua Lipa', + 'EMF', + 'ENHYPEN', + 'Earth, Wind & Fire', + 'Ed Sheeran', + 'Eddie Cantor', + 'Eddie Cochran', + 'Eddy Howard', + 'Edgar Winter Group', + 'Edwin Hawkins Singers', + 'Edwin Starr', + 'El Alfa', + 'Eladio Carrion', + 'Electric Light Orchestra', + 'Elevation Worship', + 'Ella Henderson', + 'Ellie Goulding', + 'Elton John', + 'Elvis Presley', + 'Empire of the Sun', + 'En Vogue', + 'Enrique Iglesias', + 'Eslabon Armado', + 'Ethel Waters', + 'Etta James', + 'Evanescence', + 'Exile', + 'Extreme', + 'Faith Hill', + 'Fall Out Boy', + 'Fanny Brice', + 'Farruko', + 'Fats Domino', + 'Fats Waller', + 'Feid', + 'Felix Jaehn', + 'Fergie', + 'Fetty Wap', + 'Fiersa Besari', + 'Fifth Harmony', + 'Fine Young Cannibals', + 'Five Finger Death Punch', + 'Fleetwood Mac', + 'Flo-Rida', + 'Florence + The Machine', + 'Flume', + 'Foo Fighters', + 'Foreigner', + 'Foster The People', + 'Four Aces', + 'Frank Ocean', + 'Frank Sinatra', + 'Frankie Avalon', + 'Frankie Valli', + 'Fred Astaire', + 'Freda Payne', + 'Freddie Dredd', + 'Freddy Fender', + 'French Montana', + 'Fuerza Regida', + 'Fujii Kaze', + 'Future', + 'G-Eazy', + 'Garfunkel and Oates', + 'Gary Lewis & The Playboys', + 'Gary Numan', + 'Gene Autry', + 'Gene Chandler', + 'Gene Vincent', + 'George Michael', + 'George Strait', + 'Gera MX', + 'Ghost', + 'Ghostemane', + "Gigi D'Agostino", + 'Gladys Knight & The Pips', + 'Glass Animals', + 'Glee Cast', + 'Gloria Gaynor', + 'Godsmack', + 'Gorillaz', + 'Gotye', + 'Grand Funk Railroad', + 'Green Day', + 'Grouplove', + 'Grupo Firme', + 'Grupo Marca Registrada', + 'Gryffin', + 'Gucci Mane', + 'Guess Who', + 'Gunna', + 'Gusttavo Lima', + 'Guy Mitchell', + 'Gwen Stefani', + 'Gzuz', + 'H.E.R.', + 'HARDY', + 'Hailee Steinfeld', + 'Halsey', + 'Hans Zimmer', + 'Harris Jayaraj', + 'Harry Chapin', + 'Harry James', + 'Harry Nilsson', + 'Harry Styles', + 'Hayley Williams', + 'Herb Alpert', + "Herman's Hermits", + 'Hillsong UNITED', + 'Hillsong Worship', + 'Hollywood Undead', + 'Honey Cone', + 'Hoobastank', + 'Hues Corporation', + 'I Prevail', + 'ITZY', + 'IVE', + 'Ice Cube', + 'Ice Spice', + 'Iggy Azalea', + 'Imagine Dragons', + 'Incubus', + 'Internet Money', + 'Isaac Hayes', + 'J Geils Band', + 'J. Cole', + 'JAY-Z', + 'JJ Lin', + 'JP Saxe', + 'JVKE', + 'Jack Harlow', + 'Jack Johnson', + 'Jackie Wilson', + 'Jacquees', + 'James Arthur', + 'James Brown', + 'James TW', + 'James Taylor', + 'Jamie Foxx', + 'Janet Jackson', + 'Janis Joplin', + 'Jason Aldean', + 'Jason Mraz', + 'Jay Chou', + 'Jay Sean', + 'Jay Wheeler', + 'Jaymes Young', + 'Jean Knight', + 'Jeezy', + 'Jennifer Lopez', + 'Jennifer Warnes', + 'Jeremih', + 'Jeremy Zucker', + 'Jerry Lee Lewis', + "Jerry Murad's Harmonicats", + 'Jess Glynne', + 'Jessie J', + 'Jewel', + 'Jimi Hendrix', + 'Jimin', + 'Jimmie Rodgers', + 'Jimmy Dean', + 'Jo Stafford', + 'Joan Jett & The Blackhearts', + 'Joao Gilberto', + 'Joel Corry', + 'John Fred & The Playboy Band', + 'John Legend', + 'John Mayer', + 'John Williams', + 'Johnnie Ray', + 'Johnnie Taylor', + 'Johnny Cash', + 'Johnny Horton', + 'Johnny Mathis', + 'Johnny Mercer', + 'Johnny Nash', + 'Joji', + 'Jon Bellion', + 'Jonas Blue', + 'Jonas Brothers', + 'Joni James', + 'Jorja Smith', + 'Juan Gabriel', + 'Juan Luis Guerra 4.40', + 'Juanes', + 'Juice Newton', + 'Julia Michaels', + 'Justin Bieber', + 'Justin Quiles', + 'KALEO', + 'KAROL G', + 'KAYTRANADA', + 'KK', + 'KSI', + 'KYLE', + 'Kacey Musgraves', + 'Kane Brown', + 'Kanye West', + 'Karan Aujla', + 'Kate Smith', + 'Katy Perry', + 'Kay Kyser', + 'Ke$ha', + 'Kehlani', + 'Kelly Clarkson', + 'Kenny Chesney', + 'Kenny Loggins', + 'Kenny Rogers', + 'Kenshi Yonezu', + 'Kenya Grace', + 'Kevin Gates', + 'Key Glock', + 'Khalid', + 'Kim Carnes', + 'Kim Petras', + 'Kimbra', + 'Kina', + 'King Gnu', + 'Kings of Leon', + 'Kingsmen', + 'Kitty Kallen', + 'Kodak Black', + 'Kodaline', + 'Kollegah', + 'Kool & The Gang', + 'Kungs', + 'Kygo', + 'Kylie Minogue', + 'LE SSERAFIM', + 'LISA', + 'LMFAO', + 'LUDMILLA', + 'La Adictiva Banda San José de Mesillas', + 'La Oreja de Van Gogh', + 'Labrinth', + 'Lady Antebellum', + 'Lady GaGa', + 'Lainey Wilson', + 'Lana Del Rey', + 'Latto', + 'Lauryn Hill', + 'Lauv', + 'League of Legends', + 'Lee Brice', + 'Leon Bridges', + 'Leona Lewis', + 'Lesley Gore', + 'Leslie Odom Jr.', + 'Liam Payne', + 'Lifehouse', + 'Lil Baby', + 'Lil Dicky', + 'Lil Durk', + 'Lil Mosey', + 'Lil Nas X', + 'Lil Pump', + 'Lil Skies', + 'Lil Tjay', + 'Lil Uzi Vert', + 'Lil Yachty', + "Lil' Kim", + "Lil' Wayne", + 'Lin-Manuel Miranda', + 'Linkin Park', + 'Lionel Richie', + 'Lipps Inc', + 'Lisa Loeb', + 'Little Peggy March', + 'Little Richard', + 'Lofi Fruits Music', + 'Lord Huron', + 'Los Del Rio', + 'Los Dos Carnales', + 'Los Lobos', + 'Los Temerarios', + 'Los Tigres Del Norte', + 'Los Tucanes De Tijuana', + 'Lou Reed', + 'Loud Luxury', + 'Louis Jordan', + 'Louis Tomlinson', + 'Love Unlimited', + "Lovin' Spoonful", + 'Luan Santana', + 'Luciano', + 'Luis Miguel', + 'Luis R Conriquez', + 'Lulu', + 'Lunay', + 'Lupe Fiasco', + 'M', + 'MAX', + 'MC Hammer', + 'MC Ryan SP', + 'MKTO', + 'Mabel', + 'Machine Gun Kelly', + 'Madison Beer', + 'Madonna', + 'Mahalini', + 'Major Lazer', + 'Mambo Kingz', + 'Maneskin', + 'Marco Antonio Solís', + 'Margaret Whiting', + 'Maria Becerra', + 'Mario', + 'Mario Lanza', + 'Mark Ronson', + 'Maroon 5', + 'Marshmello', + 'Martin Garrix', + 'Mary Ford', + 'Mary J Blige', + 'Mary J. Blige', + 'Mary Wells', + 'Matoma', + 'Mau y Ricky', + 'Meek Mill', + 'Megadeth', + 'Melanie', + 'Melanie Martinez', + 'Melendi', + 'Men At Work', + 'Metro Boomin', + 'Michael Bublé', + 'Michael Jackson', + 'Michael McDonald', + 'Michael Sembello', + 'Miguel', + 'Mike Posner', + 'Miley Cyrus', + 'Milky Chance', + 'Minnie Riperton', + 'Miracle Tones', + 'Miranda Lambert', + 'Mohit Chauhan', + 'Mon Laferte', + 'Moneybagg Yo', + 'Monsta X', + 'Mora', + 'Morad', + 'Morat', + 'Mother Mother', + 'Motley Crue', + 'Ms. Lauryn Hill', + 'Mumford & Sons', + 'Muse', + 'Mya', + 'Myke Towers', + 'NCT 127', + 'NCT DREAM', + 'NEFFEX', + 'Nadin Amizah', + 'Nancy Sinatra', + 'Nat King Cole', + 'Nate Smith', + 'Natti Natasha', + 'Nayer', + 'Neil Diamond', + 'Neil Sedaka', + 'Nekfeu', + 'Nelly', + 'New Vaudeville Band', + 'Next', + 'Nickelback', + 'Nicki Minaj', + 'Nicki Nicole', + 'Nicky Jam', + 'Nina Simone', + 'Ninho', + 'Nipsey Hussle', + 'Nirvana', + 'Niska', + 'No Doubt', + 'Norah Jones', + 'Normani', + 'OMI', + 'ONE OK ROCK', + 'Oasis', + 'Official HIGE DANdism', + 'Offset', + 'Old Dominion', + 'Oliver Heldens', + 'Olivia Rodrigo', + 'Omah Lay', + 'One Direction', + 'Otis Redding', + 'OutKast', + 'Owl City', + 'P Diddy', + 'P!nk', + 'PLK', + 'PNL', + 'Pamungkas', + 'Passenger', + 'Pat Boone', + 'Patsy Cline', + 'Patti LaBelle', + 'Patti Page', + 'Paul & Paula', + 'Paul Revere & the Raiders', + 'Paul Robeson', + 'Paul Russell', + 'Paul Whiteman', + 'Paula Abdul', + 'Peaches & Herb', + 'Pearl Jam', + 'Pee Wee Hunt', + 'Pee Wee King', + 'Pentatonix', + 'Percy Faith', + 'Percy Sledge', + 'Peso Pluma', + 'Peter Cetera', + 'Peter Gabriel', + 'Peter, Paul & Mary', + 'Pharrell Williams', + 'Pierce The Veil', + 'Pineapple StormTv', + 'Pink Floyd', + 'Pink Sweat$', + 'Piso 21', + 'Pitbull', + 'Plan B', + 'Player', + 'Polo G', + 'Pop Smoke', + 'Portugal. The Man', + 'Pouya', + 'Prince', + 'Prince Royce', + 'Pusha T', + 'Quality Control', + 'Queen', + 'Quinn XCII', + 'R. Kelly', + 'RAF Camora', + 'RAYE', + 'REM', + 'REO Speedwagon', + 'Radiohead', + "Rag'n'Bone Man", + 'Rage Against The Machine', + 'Rahat Fateh Ali Khan', + 'Rainbow Kitten Surprise', + 'Rammstein', + 'Rauw Alejandro', + 'Ray Charles', + 'Ray Parker Jr', + 'Ray Stevens', + 'Red Foley', + 'Red Hot Chili Peppers', + 'Red Velvet', + 'Regard', + 'Regina Belle', + 'Reik', + 'Rels B', + 'Rema', + 'Ricardo Arjona', + 'Rich The Kid', + 'Rick Astley', + 'Rick Dees & his Cast of Idiots', + 'Rick Ross', + 'Rick Springfield', + 'Ricky Martin', + 'Ricky Nelson', + 'Rihanna', + 'Rita Ora', + 'Ritchie Valens', + 'Rizky Febian', + 'Rob Thomas', + 'Roberta Flack', + 'Robin Schulz', + 'Robin Thicke', + 'Rod Stewart', + 'Rod Wave', + 'Roddy Ricch', + 'Roger Miller', + 'Romeo Santos', + 'Rosemary Clooney', + 'Roxette', + 'Roy Acuff', + 'Roy Orbison', + 'Rudimental', + 'Ruel', + 'Ruth B.', + 'Ryan Lewis', + 'SCH', + 'SEVENTEEN', + 'SWV', + 'Sabaton', + 'Sabrina Carpenter', + 'Sachet Tandon', + 'Sachin-Jigar', + 'Sade', + 'Sam Cooke', + 'Sam Feldt', + 'Sam Hunt', + 'Sam Smith', + 'Sam The Sham & The Pharaohs', + 'Sammy Davis Jr', + 'Sammy Kaye', + 'Santana', + 'Sasha Alex Sloan', + 'Savage Garden', + 'Saweetie', + 'Scorpions', + 'Sean Kingston', + 'Sean Paul', + 'Sebastian Yatra', + 'Sech', + 'Seeb', + 'Sezen Aksu', + 'Sfera Ebbasta', + 'Shaggy', + 'Shania Twain', + 'Shawn Mendes', + 'Sheena Easton', + 'Shinedown', + 'Shubh', + 'Sia', + 'Sid Sriram', + 'Sidhu Moose Wala', + 'Silk', + 'Silver Convention', + 'Simon & Garfunkel', + "Sinead O'Connor", + 'Sir Mix-a-Lot', + 'Sister Sledge', + 'Ski Mask The Slump God', + 'Skillet', + 'Skrillex', + 'Sleeping At Last', + 'Smokey Robinson', + 'Snoop Dogg', + 'Snow Patrol', + 'Soda Stereo', + 'Sonu Nigam', + 'Sophie Ellis-Bextor', + 'Spencer Davis Group', + 'Spice Girls', + 'Stan Getz', + 'Starland Vocal Band', + 'Stephen Sanchez', + 'Steve Aoki', + 'Steve Lacy', + 'Steve Winwood', + 'Stevie B', + 'Sting', + 'Stormzy', + 'Strawberry Alarm Clock', + 'Stray Kids', + 'Stromae', + 'Sublime', + 'Sum 41', + 'Summer Walker', + 'Supertramp', + 'Survivor', + 'Swedish House Mafia', + 'System Of A Down', + 'T-Pain', + 'T.I.', + 'TAEYEON', + 'TKKG', + 'TLC', + 'TOMORROW X TOGETHER', + 'TOTO', + 'TWICE', + 'Tag Team', + 'Tainy', + 'Tammi Terrell', + 'Tanishk Bagchi', + 'Tate McRae', + 'Taylor Swift', + 'Tears For Fears', + 'Tems', + 'Tennessee Ernie Ford', + "Terence Trent D'Arby", + 'Teresa Brewer', + 'Terry Jacks', + 'The Ames Brothers', + 'The Animals', + 'The B52s', + 'The Bangles', + 'The Beatles', + 'The Black Eyed Peas', + 'The Black Keys', + 'The Box Tops', + 'The Chainsmokers', + 'The Chiffons', + 'The Chordettes', + 'The Clash', + 'The Coasters', + 'The Commodores', + 'The Cowsills', + 'The Cranberries', + 'The Crew-Cuts', + 'The Cure', + 'The Detroit Spinners', + 'The Diamonds', + 'The Doobie Brothers', + 'The Doors', + 'The Drifters', + 'The Emotions', + 'The Eurythmics', + 'The Fireballs', + 'The Flamingos', + 'The Foundations', + 'The Four Seasons', + 'The Fray', + 'The Game', + 'The Go Gos', + 'The Goo Goo Dolls', + 'The Head And The Heart', + 'The Hollies', + 'The Ink Spots', + 'The Isley Brothers', + 'The Jackson 5', + 'The Kid LAROI', + 'The Killers', + 'The Kingston Trio', + 'The Kooks', + 'The Lemon Pipers', + 'The Living Tombstone', + 'The Lumineers', + 'The Mamas & The Papas', + 'The Marvelettes', + 'The McCoys', + 'The Mills Brothers', + 'The Miracles', + 'The Monkees', + 'The Moody Blues', + 'The National', + 'The Neighbourhood', + 'The Notorious B.I.G.', + "The O'Jays", + 'The Offspring', + 'The Osmonds', + 'The Partridge Family', + 'The Penguins', + 'The Pet Shop Boys', + 'The Platters', + 'The Righteous Brothers', + 'The Rolling Stones', + 'The Ronettes', + 'The Score', + 'The Script', + 'The Seekers', + 'The Shangri-Las', + 'The Smashing Pumpkins', + 'The Staple Singers', + 'The Strokes', + 'The Supremes', + 'The Temptations', + 'The Turtles', + 'The Vamps', + 'The Verve', + 'The Village People', + 'The Weavers', + 'The White Stripes', + 'The Young Rascals', + 'The Zombies', + 'Thelma Houston', + 'Thomas Rhett', + 'Three Days Grace', + 'Three Dog Night', + 'Three Man Down', + 'Timbaland', + 'Timmy Trumpet', + 'Toby Keith', + 'Tom Jones', + 'Tom Petty and the Heartbreakers', + 'Tommy Dorsey', + 'Tommy Edwards', + 'Tommy James & the Shondells', + 'Tone Loc', + 'Toni Braxton', + 'Topic', + 'Tory Lanez', + 'Tove Lo', + 'Trevor Daniel', + 'Trey Songz', + 'Trippie Redd', + 'Trueno', + 'Tulsi Kumar', + 'Tulus', + 'Twenty One Pilots', + 'Two Feet', + 'Ty Dolla $ign', + 'Tyga', + 'Tyler Hubbard', + 'U2', + 'UB40', + 'UZI', + 'Ufo361', + 'Upchurch', + 'V', + 'Vampire Weekend', + 'Van McCoy', + 'Van Morrison', + 'Vance Joy', + 'Vanessa Carlton', + 'Vanessa Williams', + 'Vera Lynn', + 'Vernon Dalhart', + 'Vicente Fernandez', + 'Vishal-Shekhar', + 'Volbeat', + 'WILLOW', + 'Wale', + 'Wallows', + 'Weezer', + 'Wham!', + 'Whitney Houston', + "Why Don't We", + 'Wilbert Harrison', + 'Wilson Phillips', + 'Wiz Khalifa', + 'Woody Guthrie', + 'Wyclef Jean', + 'XXXTENTACION', + 'Xavi', + 'YG', + 'YNW Melly', + 'YOASOBI', + 'Yandel', + 'Years & Years', + 'Yeat', + 'Yo Gotti', + 'Young Dolph', + 'Young Miko', + 'Young Thug', + 'YoungBoy Never Broke Again', + 'Yung Gravy', + 'Yuuri', + 'Yuvan Shankar Raja', + 'ZAYN', + 'ZZ Top', + 'Zac Brown Band', + 'Zach Bryan', + 'Zara Larsson', + 'aespa', + 'benny blanco', + 'blink-182', + 'd4vd', + 'deadmau5', + 'girl in red', + 'gnash', + 'iann dior', + 'will.i.am', +]; diff --git a/src/locales/en/music/genre.ts b/src/locales/en/music/genre.ts index 59d4c452109..bfd4dfadf99 100644 --- a/src/locales/en/music/genre.ts +++ b/src/locales/en/music/genre.ts @@ -2,8 +2,8 @@ export default [ 'Acid House', 'Acid Jazz', 'Acid Rock', - 'Acoustic Blues', 'Acoustic', + 'Acoustic Blues', 'Afro-Pop', 'Afrobeat', 'Alt-Rock', @@ -32,11 +32,11 @@ export default [ 'Brazilian Funk', 'Breakbeat', 'Britpop', + 'CCM', 'Cajun', 'Cantopop', - 'CCM', - 'Celtic Folk', 'Celtic', + 'Celtic Folk', 'Chamber Music', 'Chant', 'Chanukah', @@ -74,12 +74,12 @@ export default [ "Drum'n'bass", 'Dub', 'Dubstep', + 'EDM', 'Early Music', 'East Coast Rap', 'Easter', 'Easy Listening', 'Eclectic', - 'EDM', 'Electric Blues', 'Electro', 'Electronic', @@ -88,8 +88,8 @@ export default [ 'Enka', 'Environmental', 'Ethio-jazz', - 'Experimental Rock', 'Experimental', + 'Experimental Rock', 'Flamenco', 'Folk', 'Folk-Rock', @@ -114,9 +114,9 @@ export default [ 'Hard Bop', 'Hard Dance', 'Hard Rock', + 'Hardcore', 'Hardcore Punk', 'Hardcore Rap', - 'Hardcore', 'Hardstyle', 'Healing', 'Heavy Metal', @@ -149,12 +149,13 @@ export default [ 'Kitsch', 'Klezmer', 'Krautrock', + 'Latin', 'Latin Jazz', 'Latin Rap', - 'Latin', 'Local', 'Lounge', 'Lullabies', + 'MPB', 'Mainstream Jazz', 'Malay', 'Mandopop', @@ -169,7 +170,6 @@ export default [ 'Minimalism', 'Modern', 'Motown', - 'MPB', 'Mugham', 'Musicals', 'Musique Concrète', @@ -184,10 +184,10 @@ export default [ 'Noise', 'Nordic', 'Novelty', + 'OPM', 'Oi!', 'Old School Rap', 'Opera', - 'OPM', 'Orchestral', 'Original Score', 'Outlaw Country', @@ -195,9 +195,9 @@ export default [ 'Party', 'Piano', 'Polka', + 'Pop', 'Pop Film', 'Pop Latino', - 'Pop', 'Post Dubstep', 'Power Pop', 'Praise & Worship', @@ -206,8 +206,8 @@ export default [ 'Proto-punk', 'Psych Rock', 'Psychedelic', - 'Punk Rock', 'Punk', + 'Punk Rock', 'Qawwali', 'Quiet Storm', 'R&B', @@ -227,6 +227,7 @@ export default [ 'Romantic', 'Roots Reggae', 'Roots Rock', + 'SKA', 'Sad', 'Salsa', 'Samba', @@ -234,7 +235,6 @@ export default [ 'Sertanejo', 'Shaabi', 'Shoegaze', - 'SKA', 'Sleep', 'Smooth Jazz', 'Soft Rock', @@ -261,8 +261,8 @@ export default [ 'Trip Hop', 'Tropical', 'Underground Rap', - 'Urban Cowboy', 'Urban', + 'Urban Cowboy', 'West Coast Rap', 'Western Swing', 'World', diff --git a/src/locales/en/music/index.ts b/src/locales/en/music/index.ts index 53971764ef6..161a24902f0 100644 --- a/src/locales/en/music/index.ts +++ b/src/locales/en/music/index.ts @@ -3,10 +3,14 @@ * Run 'pnpm run generate:locales' to update. */ import type { MusicDefinition } from '../../..'; +import album from './album'; +import artist from './artist'; import genre from './genre'; import song_name from './song_name'; const music: MusicDefinition = { + album, + artist, genre, song_name, }; diff --git a/src/locales/en/music/song_name.ts b/src/locales/en/music/song_name.ts index 04d060c5fb4..ae161d925d8 100644 --- a/src/locales/en/music/song_name.ts +++ b/src/locales/en/music/song_name.ts @@ -1,985 +1,985 @@ export default [ - 'White Christmas', - 'Hey Jude', - 'Every Breath You Take', - 'Mack the Knife', - 'Rock Around the Clock', - 'I Want to Hold Your Hand', - "(I Can't Get No) Satisfaction", - 'The Twist', '(Everything I Do) I Do it For You', - 'Bridge Over Troubled Water', - 'When Doves Cry', - 'Call Me', - 'Bette Davis Eyes', - 'I Will Always Love You', - 'Over the Rainbow', - 'American Pie', - 'Flashdance. What a Feeling', - 'The Way We Were', - 'I Heard it Through the Grapevine', - "You've Lost That Lovin' Feelin'", - 'Nothing Compares 2 U', - 'Endless Love', - 'Yeah!', - "Let's Get it On", - "That's What Friends Are For", - 'You Light Up My Life', - "(Sittin' On) the Dock of the Bay", - 'Joy to the World', - 'Heartbreak Hotel', - "Theme From 'A Summer Place'", - 'Aquarius/Let The Sunshine In', - 'I Will Survive', - "It's Too Late", - 'Respect', - 'Sugar Sugar', - "Stayin' Alive", - 'Maggie May', - 'My Heart Will Go On', - 'Eye of the Tiger', - 'End of the Road', - 'Another One Bites the Dust', - 'Billie Jean', - "Let's Stay Together", - 'Battle of New Orleans', - 'Oh', - 'Hound Dog', - "I Love Rock 'n' Roll", - 'Smooth', - 'Good Vibrations', - 'Physical', - 'Light My Fire', - 'Low', - 'Hey Ya!', - 'Let it Be', - "Don't Be Cruel", - 'Hotel California', - 'We Belong Together', - 'Le Freak', - 'Raindrops Keep Falling On My Head', - 'How High the Moon', - 'My Girl', - "I Can't Stop Loving You", - 'Killing Me Softly With His Song', - 'Mona Lisa', - 'In the Mood', - 'She Loves You', - 'The Letter', - 'Mister Sandman', - 'Careless Whisper', - "What's Love Got to Do With It?", - "I'm a Believer", - 'Wooly Bully', - "Theme From 'Shaft'", - 'Hot Stuff', - 'Centerfold', - 'Honky Tonk Woman', - "I'll Be There", - "Gangsta's Paradise", - 'Yesterday', - 'My Sharona', - 'Tennessee Waltz', - "Reach Out (I'll Be There)", - "California Dreamin'", - 'Jailhouse Rock', - 'Irreplaceable', - 'Dancing in the Street', - 'Rolling In The Deep', - "Tie a Yellow Ribbon 'round the Old Oak Tree", - 'Stand By Me', - 'Sentimental Journey', - 'The First Time Ever I Saw Your Face', - 'Louie Louie', - 'Another Brick in the Wall (part 2)', + '(Ghost) Riders in the Sky', + "(I Can't Get No) Satisfaction", + "(I've Got a Gal In) Kalamazoo", + "(I've Had) the Time of My Life", + "(It's No) Sin", '(Just Like) Starting Over', - 'Night Fever', - 'To Sir', - "You're So Vain", - 'Be My Baby', - 'Celebration', + '(Let Me Be Your) Teddy Bear', + '(Put Another Nickel In) Music! Music! Music!', + '(Sexual) Healing', + "(Sittin' On) the Dock of the Bay", '(They Long to Be) Close to You', - 'Begin the Beguine', - "I Still Haven't Found What I'm Looking For", - 'I Want You Back', - "Arthur's Theme (Best That You Can Do)", - 'Boulevard of Broken Dreams', - 'With Or Without You', - "Tonight's the Night (Gonna Be Alright)", - 'Are You Lonesome Tonight?', - 'Upside Down', - 'Dancing Queen', - "Sweet Child O' Mine", - 'Where Did Our Love Go', - 'Unchained Melody', - 'Rudolph', - 'Take My Breath Away', - "I'll Make Love to You", - 'Love Will Keep Us Together', - 'When a Man Loves a Woman', - 'Walk Like an Egyptian', - 'Crazy in Love', - 'Strangers in the Night', - 'You Belong to Me', - 'In Da Club', - 'Say You', - 'We Are the World', - 'Johnny B Goode', - "Love Theme From 'A Star is Born' (Evergreen)", - 'Shadow Dancing', - 'Superstition', - 'Beat It', - 'Night & Day', - 'Waterfalls', - 'House of the Rising Sun', - 'Paper Doll', - 'Downtown', - "I Can't Help Myself (Sugar Pie", - 'Kiss From a Rose', - 'Believe', - 'Ballad of the Green Berets', - 'Proud Mary', - 'Too Young', - 'Umbrella', - 'Swanee', - 'Need You Tonight', - 'Like a Rolling Stone', - 'Lady', - 'One Sweet Day', - 'Lean On Me', - 'Tik-Toc', - 'Monday Monday', - "What'd I Say", - 'How You Remind Me', - 'Silly Love Songs', - 'My Guy', - 'Macarena', - 'Goodnight', - 'Just My Imagination (Running Away With Me)', - 'The Sounds of Silence', - 'Imagine', - 'Me & Bobby McGee', - 'Near You', - "What's Going On?", - 'Suspicious Minds', - 'Ode To Billie Joe', - 'Wind Beneath My Wings', - 'The Boy is Mine', - 'Mr Tambourine Man', - 'Faith', - 'Green Onions', - 'Mrs Robinson', - 'How Deep is Your Love?', - 'Hey There', - 'Heart of Glass', - 'Pennies From Heaven', - 'Like a Virgin', - 'Midnight Train to Georgia', - 'Help!', - 'Tossing & Turning', - 'The Sign', - 'Born to Be Wild', - 'Layla', - 'I Just Wanna Be Your Everything', - 'War', - '96 Tears', - 'I Get Around', - 'Because You Loved Me', - 'Summer in the City', - 'Get Back', - 'Secret Love', + "(You Keep Me) Hangin' On", + "(You're My) Soul & Inspiration", + '(Your Love Keeps Lifting Me) Higher & Higher', + '12th Street Rag', + '1999', + '19th Nervous Breakdown', + '50 Ways to Leave Your Lover', '9 to 5', - '(Ghost) Riders in the Sky', - 'The Loco-Motion', - 'Play That Funky Music', - 'Bohemian Rhapsody', - 'Little Things Mean a Lot', - 'Cry', - 'All Shook Up', - 'Up Where We Belong', - 'Sledgehammer', - 'Fire & Rain', - 'Stop! in the Name of Love', - 'Sweet Home Alabama', - 'Another Day in Paradise', - 'Bleeding Love', - 'Lady Marmalade (Voulez-Vous Coucher Aver Moi Ce Soir?)', - 'Whispering', - 'Vogue', - 'Under the Bridge', - 'Sixteen Tons', - 'Sugar Shack', - 'Baby Love', - 'What a Fool Believes', - 'Lose Yourself', - 'Hello Dolly', - 'Brown Eyed Girl', - 'Without You', - 'Build Me Up Buttercup', - 'We Found Love', - 'Tears in Heaven', - 'Family Affair', - 'All I Wanna Do', - 'Soul Man', - 'Tequila', - 'Rock With You', - "Livin' La Vida Loca", - 'Best of My Love', - 'Runaway', - 'Alone Again (Naturally)', - "Can't Help Falling in Love", - 'My Sweet Lord', - 'Runaround Sue', - 'Swinging On a Star', - 'Gold Digger', - 'Happy Together', - 'Losing My Religion', - 'Heart of Gold', - 'Stardust', - 'Will You Love Me Tomorrow', - 'You Are the Sunshine of My Life', - 'You Were Meant for Me', - 'Take On Me', - 'Hollaback Girl', - 'God Bless America', - 'I Swear', - 'Sunshine of Your Love', - 'Firework', - "Groovin'", - 'Smells Like Teen Spirit', - "Big Girls Don't Cry", - 'Jack & Diane', - 'Addicted to Love', - 'The Last Dance', - 'Georgia On My Mind', - 'Money For Nothing', - 'Jump', - 'Vaya Con Dios (may God Be With You)', - "You'll Never Know", - "That'll Be the Day", - 'Girls Just Wanna Have Fun', - 'Wheel of Fortune', - 'When You Wish Upon a Star', - "Don't Fence Me In", - 'Turn! Turn! Turn! (To Everything There is a Season)', - 'Volare', - 'Sweet Dreams (Are Made of This)', - 'Whole Lotta Love', - "You've Got a Friend", - 'Penny Lane', - 'People Got to Be Free', - 'Nature Boy', - 'Sexyback', - 'Crying', - 'Single Ladies (Put A Ring On It)', - 'Bad Girls', - 'Too Close', - 'I Got You Babe', - "We've Only Just Begun", - 'Sh-Boom (Life Could Be a Dream)', - 'Shining Star', - 'Kansas City', - 'Like a Prayer', - 'Cheek to Cheek', - 'Papa Was a Rolling Stone', - 'Promiscuous', - 'Love Shack', - 'Funkytown', - 'Crazy', - 'Philadelphia Freedom', - 'Temperature', - 'Somebody That I Used to Know', - 'All I Have to Do is Dream', - "Jessie's Girl", - 'Rhinestone Cowboy', - 'Blue Suede Shoes', - 'Ebony & Ivory', - "I'll Never Smile Again", - 'Keep On Loving You', - 'Since U Been Gone', - 'The Way You Look Tonight', - 'Crazy Little Thing Called Love', - 'The Great Pretender', - 'Brown Sugar', - 'Que sera sera (Whatever will be will be)', - 'No One', - 'Bad Day', - 'Boom Boom Pow', - 'Party Rock Anthem', - 'Because of You', - 'Chattanooga Choo Choo', + '96 Tears', + 'A Boy Named Sue', + "A Hard Day's Night", + 'A String of Pearls', + 'A Thousand Miles', + 'A Tree in the Meadow', 'A Whiter Shade of Pale', - 'Love Me Tender', - 'Higher Love', - 'Footloose', - 'Blurred Lines', - 'I Just Called to Say I Love You', - 'Come Together', - "It's Now Or Never", - 'Under the Boardwalk', - "Don't You Want Me", - "You Can't Hurry Love", - 'Fame', - "Fallin'", - 'Poker Face', - 'Bad Romance', - 'Ruby Tuesday', + "A Whole New World (Aladdin's Theme)", + 'A Woman in Love', + 'A-Tisket A-Tasket', + 'ABC', + 'Abracadabra', + 'Ac-cent-tchu-ate the Positive', + 'Addicted to Love', + "After You've Gone", + 'Afternoon Delight', + 'Again', + 'Against All Odds (Take a Look At Me Now)', + "Ain't Misbehavin'", + "Ain't No Mountain High Enough", + "Ain't No Sunshine", + "Ain't That a Shame", + 'Airplanes', + 'All Along the Watchtower', + 'All I Have to Do is Dream', + 'All I Wanna Do', + "All My Lovin' (You're Never Gonna Get It)", 'All Night Long (All Night)', + 'All Out of Love', + 'All Shook Up', + 'All You Need is Love', + 'Alone', + 'Alone Again (Naturally)', + 'Always On My Mind', + 'American Pie', + 'American Woman', + 'Angie', + 'Another Brick in the Wall (part 2)', + 'Another Day in Paradise', + 'Another Night', + 'Another One Bites the Dust', + 'Apologize', + 'April Showers', + 'Aquarius/Let The Sunshine In', + 'Are You Lonesome Tonight?', + "Arthur's Theme (Best That You Can Do)", + 'As Time Goes By', + 'At Last', + 'At the Hop', + "Auf Wiederseh'n Sweetheart", + 'Baby Baby', + 'Baby Come Back', 'Baby Got Back', - "Whole Lotta Shakin' Goin' On", - 'Frenesi', - 'December 1963 (Oh What a Night)', + 'Baby Love', + 'Baby One More Time', + 'Bad', + 'Bad Day', + 'Bad Girls', 'Bad Moon Rising', - 'Abracadabra', - 'I Gotta Feeling', - 'The Song From Moulin Rouge (Where Is Your Heart)', - 'Waiting For a Girl Like You', - 'Everybody Loves Somebody', - "I Can't Go For That (No Can Do)", - 'Buttons & Bows', - "It's All in the Game", - 'Love Train', - 'Dance to the Music', - "Candle in the Wind '97", - 'Honey', - 'Kiss', - "I'll Take You There", - 'Paint it Black', + 'Bad Romance', + 'Baker Street', + "Ball of Confusion (That's What the World is Today)", + 'Ballad of the Green Berets', + 'Ballerina', + 'Band On the Run', 'Band of Gold', - 'Just the Way You Are', - 'Spirit in the Sky', - 'Vision of Love', - "Hips don't lie", - 'Till The End of Time', - 'Duke of Earl', - 'YMCA', - 'Oh My Papa (O Mein Papa)', - "Pistol Packin' Mama", - 'Gonna Make You Sweat (Everybody Dance Now)', - 'Dilemma', - 'I Need You Now', - 'Wanted', - "Jumpin' Jack Flash", - 'Against All Odds (Take a Look At Me Now)', - 'Tom Dooley', - 'Goodbye Yellow Brick Road', - 'Rhapsody in Blue', + 'Battle of New Orleans', + 'Be Bop a Lula', + 'Be My Baby', + 'Be My Love', + 'Beat It', + 'Beautiful Day', + 'Beauty & the Beast', + 'Because I Love You (The Postman Song)', + 'Because You Loved Me', + 'Because of You', + 'Before The Next Teardrop Falls', + 'Begin the Beguine', + 'Behind Closed Doors', + 'Being With You', + 'Believe', + 'Ben', 'Bennie & the Jets', - 'Call Me Maybe', - 'You Really Got Me', - 'God Bless the Child', - "I'm Sorry", - 'Bad', - "I Can't Get Next to You", - 'The Power of Love', - 'Dreamlover', - 'Only The Lonely (Know The Way I Feel)', - 'We Are Family', - 'At Last', - 'Brand New Key', - "I've Heard That Song Before", - 'Stay (I Missed You)', - "Do Ya Think I'm Sexy?", - 'Tutti Frutti', - 'This Ole House', - 'Please Mr Postman', - 'Good Times', - 'Something', - "(I've Had) the Time of My Life", - "I Don't Want to Miss a Thing", - 'Down Hearted Blues', - 'Rag Doll', - 'Blueberry Hill', - "Ain't No Sunshine", - 'Wild Thing', + 'Besame Mucho', + 'Best of My Love', + 'Bette Davis Eyes', + 'Big Bad John', + "Big Girls Don't Cry", + 'Billie Jean', + 'Bitter Sweet Symphony', + 'Black Or White', + 'Black Velvet', 'Blaze of Glory', - 'Ray of Light', - 'The Hustle', - 'Grenade', - "Cathy's Clown", - 'Minnie the Moocher', - "Love Is Blue (L'Amour Est Bleu)", - 'Iris', - 'The Boys of Summer', - 'The Tide is High', - 'She Drives Me Crazy', - 'Save the Best For Last', - 'These Boots Are Made For Walking', - 'I Feel Love', - 'A Woman in Love', - 'We Can Work it Out', - 'The Reason', - 'Locked Out Of Heaven', - 'Do That to Me One More Time', - "That's the Way Love Goes", - "A Hard Day's Night", - 'I Believe I Can Fly', - 'Karma Chameleon', - "One O'Clock Jump", - 'Mule Train', - 'Car Wash', - 'Rapture', - 'Creep', - 'Streets of Philadelphia', - 'West End Girls', - 'Leader of the Pack', - 'T For Texas (Blue Yodel No 1)', - 'Mama Told Me Not to Come', - 'Just Dance', - 'Mercy Mercy Me (The Ecology)', - "Livin' On a Prayer", - "Good Lovin'", - '50 Ways to Leave Your Lover', - 'Stronger', - 'I Can See Clearly Now', - 'We Are the Champions', - "(I've Got a Gal In) Kalamazoo", - 'No Scrubs', - 'How Do You Mend a Broken Heart', - 'I Got You (I Feel Good)', - "Don't Let the Stars Get in Your Eyes", - 'The Girl From Ipanema', - '(Sexual) Healing', - 'Tears of a Clown', - 'We Will Rock You', - 'Hold On', + 'Bleeding Love', + 'Blue Suede Shoes', + 'Blue Tango', + 'Blueberry Hill', + 'Blurred Lines', + 'Body & Soul', + 'Bohemian Rhapsody', + 'Boogie Oogie Oogie', + 'Boogie Woogie Bugle Boy', + 'Boom Boom Pow', + 'Born in the USA', + 'Born to Be Wild', + 'Born to Run', + 'Boulevard of Broken Dreams', + 'Brand New Key', + "Brandy (You're A Fine Girl)", + 'Breaking Up is Hard to Do', + 'Breathe', + 'Bridge Over Troubled Water', + 'Brother', + 'Brother Louie', + 'Brown Eyed Girl', + 'Brown Sugar', + 'Build Me Up Buttercup', + 'Burn', + 'Buttons & Bows', + 'Bye', + 'Bye Bye', 'Bye Bye Love', + 'Caldonia Boogie (What Makes Your Big Head So Hard)', + "California Dreamin'", + 'California Girls', + 'Call Me', + 'Call Me Maybe', + 'Can You Feel the Love Tonight', + "Can't Buy Me Love", + "Can't Get Enough of Your Love", + "Can't Help Falling in Love", + "Candle in the Wind '97", + 'Candy Man', + 'Car Wash', + 'Careless Whisper', + 'Cars', + "Cat's in the Cradle", + "Cathy's Clown", + 'Celebration', + 'Centerfold', + 'Chain of Fools', + 'Chances Are', + 'Change the World', 'Chapel of Love', - 'White Rabbit', - 'Rock the Boat', - 'The Gypsy', - "Take The 'A' Train", + 'Chattanooga Choo Choo', + 'Chattanoogie Shoe-Shine Boy', + 'Check On It', + 'Cheek to Cheek', + 'Cherish', + 'Cherry Pink & Apple Blossom White', + 'Cold', + 'Colors of the Wind', + 'Come On Eileen', + 'Come On-a My House', + 'Come Together', + 'Coming Up', + "Cracklin' Rosie", + 'Crazy', + 'Crazy For You', + 'Crazy Little Thing Called Love', + 'Crazy in Love', + 'Creep', 'Crimson & Clover', 'Crocodile Rock', - 'Make Love to Me', - "Nothing's Gonna Stop Us Now", - 'Say Say Say', - 'The Christmas Song (Chestnuts Roasting On An Open Fire)', - 'Un-Break My Heart', - 'Cherish', - "I'll Be Missing You", - 'Drops of Jupiter (Tell Me)', - 'There goes my baby', - 'You Send Me', - 'If (They Made Me a King)', - "The Prisoner's Song", - 'ABC', + 'Cry', + 'Cry Like a Baby', + 'Crying', + 'Da Doo Ron Ron (When He Walked Me Home)', + 'Dance to the Music', + 'Dancing Queen', + 'Dancing in the Dark', + 'Dancing in the Street', + 'Dardanella', + 'Daydream Believer', + 'December 1963 (Oh What a Night)', + 'Delicado', + 'Dilemma', + 'Disco Duck', + 'Disco Lady', + 'Disturbia', + 'Dizzy', + 'Do That to Me One More Time', 'Do Wah Diddy Diddy', - "He's So Fine", - 'A Boy Named Sue', - 'Roll Over Beethoven', - 'Sweet Georgia Brown', - 'Earth Angel', - 'Rehab', - "(You Keep Me) Hangin' On", - 'This Diamond Ring', - 'Be My Love', - 'Rush Rush', - "You're Beautiful", - 'Roll With It', - 'Moonlight Serenade', - 'Unbelievable', - "Peg o' My Heart", - 'This Land is Your Land', - 'Stranger On the Shore', - 'Rum & Coca-Cola', - 'Hit the Road', - 'Without Me', - 'Crazy For You', - 'I Want to Know What Love Is', - 'Bye Bye', - 'Down Under', - 'At the Hop', - 'One Bad Apple', - 'Kiss & Say Goodbye', - "For What It's Worth (Stop", - 'The Long & Winding Road', - 'Baby One More Time', - 'Stairway to Heaven', - 'How Do I Live?', - 'Hello', - 'Truly Madly Deeply', - 'Great Balls of Fire', - 'King of the Road', - 'I Wanna Dance With Somebody (Who Loves Me)', - 'Reunited', - 'Help Me', - 'Rags to Riches', - "(It's No) Sin", - 'Say My Name', - 'Nobody Does it Better', - 'Paperback Writer', - "Don't Worry Be Happy", - 'I Fall to Pieces', - 'Body & Soul', - "You're Still the One", - "Stormy Weather (Keeps Rainin' All the Time)", - 'Horse With No Name', - 'American Woman', - 'Chattanoogie Shoe-Shine Boy', - 'Pick Up the Pieces', - 'Everybody Wants to Rule the World', - 'Blue Tango', - 'Hurt So Good', - 'Apologize', - "Let's Dance", - "(You're My) Soul & Inspiration", - 'I Only Have Eyes For You', - 'Wichita Lineman', - 'Hanging by a Moment', - 'Spinning Wheel', - 'Look Away', - 'Ironic', - "Don't Stop 'Til You Get Enough", - 'Empire State Of Mind', + "Do Ya Think I'm Sexy?", 'Do You Love Me?', - "Jive Talkin'", - "You're the One That I Want", - 'Sweet Soul Music', - 'Hey There Delilah', - "A Whole New World (Aladdin's Theme)", - "Somethin' Stupid", - 'Knock Three Times', - 'Mickey', - 'The Wanderer', - 'Dancing in the Dark', - "It's Still Rock 'n' Roll to Me", - 'Boogie Oogie Oogie', - 'Can You Feel the Love Tonight', - 'Harper Valley PTA', - 'Seasons in the Sun', - 'Come On-a My House', - 'Viva La Vida', - 'Walk On By', - "Drop it Like It's Hot", - 'Private Eyes', - 'Maniac', - "All My Lovin' (You're Never Gonna Get It)", - 'Take a Bow', - 'Ring of Fire', - 'Save the Last Dance For Me', - 'Make it With You', + "Don't Be Cruel", + "Don't Fence Me In", + "Don't Go Breaking My Heart", + "Don't Leave Me This Way", + "Don't Let the Stars Get in Your Eyes", + "Don't Let the Sun Go Down On Me", "Don't Speak", - 'I Shot the Sheriff', - 'Say It Right', - 'Sing', - 'Twist & Shout', - 'Walk This Way', - 'A-Tisket A-Tasket', - 'Let Me Love You', - 'I Can Dream', - 'Toxic', - 'The Joker', - 'Hero', - 'In the Year 2525 (Exordium & Terminus)', - 'Your Song', - 'Oh Happy Day', - 'Grease', - 'Love In This Club', - 'Angie', - 'How Much is That Doggy in the Window?', - 'Daydream Believer', - 'Whip It', - 'Boogie Woogie Bugle Boy', + "Don't Stop 'Til You Get Enough", + "Don't Worry Be Happy", + "Don't You (Forget About Me)", + "Don't You Want Me", + 'Doo Wop (That Thing)', 'Down', - 'Hanky Panky', - 'Total Eclipse of the Heart', - "Cat's in the Cradle", - 'Strange Fruit', - 'Breathe', - 'On My Own', - 'Dizzy', - 'Ticket to Ride', - 'We Got The Beat', - 'On the Atchison', - 'Always On My Mind', - 'Unforgettable', - 'In the End', - 'Music', - "Can't Buy Me Love", - 'Chain of Fools', - "Won't Get Fooled Again", - 'Happy Days Are Here Again', - 'Third Man Theme', - "Your Cheatin' Heart", - 'Thriller', - 'Venus', - 'Time After Time', - 'That Lucky Old Sun (Just Rolls Around Heaven All Day)', + 'Down Hearted Blues', + 'Down Under', + 'Downtown', + 'Dreamlover', + 'Dreams', + "Drop it Like It's Hot", + 'Drops of Jupiter (Tell Me)', + 'Duke of Earl', 'E.T.', - 'Three Coins in the Fountain', - 'Touch Me', - "You Ain't Seen Nothin' Yet", - 'Gives You Hell', - 'Knock On Wood', - 'One of These Nights', - 'Again', - 'Doo Wop (That Thing)', - 'Whoomp! (There it Is)', - 'Magic', - "I'm Walking Behind You", - "We Didn't Start the Fire", - 'Lola', + 'Earth Angel', + 'Ebony & Ivory', + 'Eight Days a Week', + 'Empire State Of Mind', + 'End of the Road', + 'Endless Love', + 'Escape (The Pina Colada Song)', + 'Eve of Destruction', + 'Every Breath You Take', + 'Every Little Thing She Does is Magic', + 'Everybody Loves Somebody', + 'Everybody Wants to Rule the World', + 'Everyday People', + 'Eye of the Tiger', + 'Faith', + "Fallin'", + 'Fame', + 'Family Affair', + 'Fantasy', + 'Fast Car', + 'Feel Good Inc', + 'Feel Like Making Love', + 'Fire & Rain', + 'Firework', + 'Flashdance. What a Feeling', + 'Fly Robin Fly', + 'Foolish Games', + 'Footloose', + "For What It's Worth (Stop", + 'Fortunate Son', + 'Frankenstein', + 'Freak Me', + 'Freebird', + 'Frenesi', + 'Funkytown', + "Gangsta's Paradise", + 'Georgia On My Mind', + 'Georgy Girl', + 'Get Back', + 'Get Down Tonight', + 'Get Off of My Cloud', 'Ghostbusters', - 'Winchester Cathedral', + "Gimme Some Lovin'", + 'Girls Just Wanna Have Fun', + 'Give Me Everything', + 'Gives You Hell', + 'Glamorous', + 'Glory of Love', + 'Go Your Own Way', + 'God Bless America', + 'God Bless the Child', + 'Gold Digger', + 'Gonna Make You Sweat (Everybody Dance Now)', + "Good Lovin'", + 'Good Times', + 'Good Vibrations', + 'Goodbye Yellow Brick Road', + 'Goodnight', + 'Got to Give it Up', + 'Grease', + 'Great Balls of Fire', 'Greatest Love of All', - 'My Love', - 'Wannabe', - 'Miss You', + 'Green Onions', + 'Green River', + 'Green Tambourine', + 'Grenade', + 'Groove is in the Heart', + "Groovin'", + 'Gypsies', + 'Hair', + 'Hang On Sloopy', + 'Hanging by a Moment', + 'Hanky Panky', + 'Happy Days Are Here Again', + 'Happy Together', + 'Harbour Lights', + "Hard to Say I'm Sorry", + 'Harper Valley PTA', + 'Have You Ever Really Loved a Woman?', + "He'll Have to Go", + "He's So Fine", + "He's a Rebel", + 'Heart of Glass', + 'Heart of Gold', + 'Heartbreak Hotel', + 'Hello', + 'Hello Dolly', + 'Help Me', + 'Help!', + 'Here Without You', + 'Here in My Heart', + 'Hero', + 'Hey Baby', + 'Hey Jude', + 'Hey Paula', + 'Hey There', + 'Hey There Delilah', + 'Hey Ya!', + 'Higher Love', + "Hips don't lie", + 'Hit the Road', + 'Hold On', + 'Hollaback Girl', + 'Honey', + 'Honky Tonk', + 'Honky Tonk Woman', + 'Horse With No Name', + 'Hot Child In The City', + 'Hot Stuff', + 'Hotel California', + 'Hound Dog', + 'House of the Rising Sun', + 'How Deep is Your Love?', + 'How Do I Live?', + 'How Do You Mend a Broken Heart', + 'How High the Moon', + 'How Much is That Doggy in the Window?', + 'How Will I Know', + 'How You Remind Me', + 'How to Save a Life', + 'Hungry Heart', + 'Hurt So Good', + 'I Believe I Can Fly', + 'I Can Dream', + 'I Can Help', + 'I Can See Clearly Now', + "I Can't Get Next to You", + "I Can't Get Started", + "I Can't Go For That (No Can Do)", + "I Can't Help Myself (Sugar Pie", + "I Can't Stop Loving You", + "I Don't Want to Miss a Thing", + 'I Fall to Pieces', 'I Feel Fine', - 'Baby Baby', - 'TSOP (The Sound of Philadelphia)', - 'Loving You', - "This Guy's in Love With You", - 'Till I Waltz Again With You', - 'Why Do Fools Fall in Love?', - 'Nights in White Satin', - "That's the Way (I Like It)", - 'My Prayer', - '(Put Another Nickel In) Music! Music! Music!', - 'Colors of the Wind', - 'Morning Train (Nine to Five)', + 'I Feel For You', + 'I Feel Love', + 'I Get Around', + 'I Got You (I Feel Good)', + 'I Got You Babe', + 'I Gotta Feeling', + 'I Heard it Through the Grapevine', + 'I Honestly Love You', + 'I Just Called to Say I Love You', + 'I Just Wanna Be Your Everything', + 'I Kissed A Girl', + "I Love Rock 'n' Roll", + 'I Need You Now', + 'I Only Have Eyes For You', + 'I Shot the Sheriff', + "I Still Haven't Found What I'm Looking For", + 'I Swear', + 'I Think I Love You', + 'I Walk the Line', + 'I Wanna Dance With Somebody (Who Loves Me)', + 'I Wanna Love You', + 'I Want You Back', + 'I Want to Hold Your Hand', + 'I Want to Know What Love Is', 'I Went to Your Wedding', + 'I Will Always Love You', + 'I Will Follow Him', + 'I Will Survive', + 'I Write the Songs', + "I'll Be Missing You", + "I'll Be There", + "I'll Make Love to You", + "I'll Never Smile Again", + "I'll Take You There", + "I'll Walk Alone", + "I'll be seeing you", + "I'm Looking Over a Four Leaf Clover", + "I'm So Lonesome I Could Cry", + "I'm Sorry", + "I'm Walking Behind You", + "I'm Your Boogie Man", + "I'm Yours", + "I'm a Believer", + "I've Heard That Song Before", + 'If (They Made Me a King)', + "If I Didn't Care", + "If You Don't Know Me By Now", + 'If You Leave Me Now', + 'Imagine', + 'In Da Club', + 'In the End', + 'In the Ghetto', + 'In the Mood', + 'In the Summertime', + 'In the Year 2525 (Exordium & Terminus)', + 'Incense & Peppermints', + 'Indian Reservation (The Lament Of The Cherokee Reservation Indian)', + 'Instant Karma', + 'Iris', + 'Ironic', + 'Irreplaceable', + 'It Had to Be You', + "It's All in the Game", + "It's My Party", + "It's Now Or Never", + "It's Still Rock 'n' Roll to Me", + "It's Too Late", + 'Jack & Diane', + 'Jailhouse Rock', + "Jessie's Girl", + "Jive Talkin'", + 'Johnny B Goode', + 'Joy to the World', + 'Judy in Disguise (With Glasses)', + 'Jump', + "Jumpin' Jack Flash", + 'Just Dance', + 'Just My Imagination (Running Away With Me)', + 'Just the Way You Are', + 'Kansas City', + 'Karma Chameleon', + 'Keep On Loving You', + 'Killing Me Softly With His Song', + 'King of the Road', + 'Kiss', + 'Kiss & Say Goodbye', + 'Kiss From a Rose', 'Kiss Me', - 'Gypsies', - "Cracklin' Rosie", - 'Maybellene', - 'Born in the USA', - 'Here Without You', - 'Mony Mony', - 'Mmmbop', - 'You Always Hurt the One You Love', - 'Eight Days a Week', - 'What Goes Around Comes Around', + 'Kiss On My List', + 'Kiss You All Over', + 'Knock On Wood', + 'Knock Three Times', + 'Kokomo', + 'Kryptonite', 'Kung Fu Fighting', - 'Fantasy', - 'Sir Duke', - "Ain't Misbehavin'", - 'Need You Now', + 'La Bamba', + 'Lady', + 'Lady Marmalade (Voulez-Vous Coucher Aver Moi Ce Soir?)', 'Last Train to Clarksville', - 'Yakety Yak', - "I'll be seeing you", - "Hard to Say I'm Sorry", - "It's My Party", + 'Layla', + 'Le Freak', + 'Leader of the Pack', + 'Lean On Me', + 'Leaving', + 'Let Me Call You Sweetheart', + 'Let Me Love You', + 'Let it Be', + 'Let it Snow! Let it Snow! Let it Snow!', + "Let's Dance", + "Let's Get it On", + "Let's Groove", + "Let's Hear it For the Boy", + "Let's Stay Together", + 'Light My Fire', + 'Lights', + 'Like a Prayer', + 'Like a Rolling Stone', + 'Like a Virgin', + "Little Darlin'", + 'Little Things Mean a Lot', + 'Live & Let Die', + "Livin' La Vida Loca", + "Livin' On a Prayer", + 'Living For the City', + 'Locked Out Of Heaven', + 'Lola', + 'Lonely Boy', + 'Long Cool Woman in a Black Dress', + 'Long Tall Sally', + 'Look Away', + "Lookin' Out My Back Door", + 'Lose Yourself', + 'Losing My Religion', + 'Louie Louie', + 'Love Child', + 'Love Hangover', + 'Love In This Club', + "Love Is Blue (L'Amour Est Bleu)", + 'Love Letters in the Sand', + 'Love Me Do', + 'Love Me Tender', + 'Love Shack', + "Love Theme From 'A Star is Born' (Evergreen)", + 'Love Train', + 'Love Will Keep Us Together', + 'Love is a Many Splendoured Thing', 'Love to Love You Baby', - 'Miss You Much', - 'Born to Run', - 'Instant Karma', - 'The Rose', - 'Purple Rain', - 'One', - 'Groove is in the Heart', - "Gimme Some Lovin'", - 'Beautiful Day', - 'Escape (The Pina Colada Song)', - 'Use Somebody', - 'Fortunate Son', - 'Afternoon Delight', "Love's Theme", - 'Sailing', - 'Cherry Pink & Apple Blossom White', - 'Georgy Girl', - 'How to Save a Life', - 'I Walk the Line', - 'All You Need is Love', - "U Can't Touch This", - 'All Out of Love', - 'Where is the Love?', - 'Revolution', - 'The Love You Save', - 'Black Or White', - 'This Used to Be My Playground', - 'Living For the City', - "School's Out", - 'Disturbia', - 'Riders On the Storm', - 'Some Enchanted Evening', - 'Weak', + 'Loving You', + 'Low', + 'Macarena', + 'Mack the Knife', + 'Maggie May', + 'Magic', + 'Magic Carpet Ride', + 'Make Love to Me', + 'Make it With You', + "Makin' Whoopee", + 'Mama Told Me Not to Come', + 'Man in the Mirror', + 'Manana (Is Soon Enough For Me)', 'Maneater', + 'Maniac', + 'Maybellene', + 'Me & Bobby McGee', + 'Me & Mrs Jones', + 'Memories Are Made of This', + 'Mercy Mercy Me (The Ecology)', + 'Mickey', + 'Midnight Train to Georgia', + 'Minnie the Moocher', + 'Miss You', + 'Miss You Much', + 'Mister Sandman', + 'Mmmbop', + 'Mona Lisa', + 'Monday Monday', + 'Money For Nothing', + 'Mony Mony', + 'Mood Indigo', + 'Moonlight Cocktail', + 'Moonlight Serenade', 'More Than Words', - 'Time of the Season', - "Mrs Brown You've Got a Lovely Daughter", - 'If You Leave Me Now', - "Can't Get Enough of Your Love", - 'Na Na Hey Hey (Kiss Him Goodbye)', + 'More Than a Feeling', + 'Morning Train (Nine to Five)', + 'Mr Big Stuff', 'Mr Brightside', - 'Black Velvet', - "I'm Yours", + 'Mr Tambourine Man', + "Mrs Brown You've Got a Lovely Daughter", + 'Mrs Robinson', + 'Mule Train', + 'Music', 'My Blue Heaven', - 'It Had to Be You', - 'Tha Crossroads', - 'Ac-cent-tchu-ate the Positive', - 'Everyday People', - 'We Are Young', - 'Take Me Home', - 'Smoke! Smoke! Smoke! (That Cigarette)', - 'In the Summertime', - 'The Tracks of My Tears', - 'Fly Robin Fly', - 'Love is a Many Splendoured Thing', - 'Another Night', - 'Long Tall Sally', - 'You Sexy Thing', - 'The Morning After', - 'Get Off of My Cloud', - 'Roses Are Red', - 'Thank You (Falettinme be Mice Elf Again)', - 'Slow Poke', - 'You Belong With Me', - "Ain't No Mountain High Enough", - "Auf Wiederseh'n Sweetheart", - 'Beauty & the Beast', - 'St Louis Blues', - 'Peggy Sue', - 'U Got it Bad', - 'Sweet Caroline (Good Times Never Seemed So Good)', - 'Wedding Bell Blues', - 'Freebird', - 'Wipe Out', - 'California Girls', - 'Being With You', - "Makin' Whoopee", - 'Shop Around', - 'Smoke On the Water', - 'Hungry Heart', - "That's Amore", + "My Boyfriend's Back", + 'My Eyes Adored You', + 'My Girl', + 'My Guy', + 'My Heart Will Go On', 'My Life', - "Brandy (You're A Fine Girl)", - "Walk Don't Run", - "Surfin' USA", - "Ball of Confusion (That's What the World is Today)", - 'Sunshine Superman', - 'Frankenstein', - 'Kiss You All Over', - 'Wishing Well', + 'My Love', + 'My Man', + 'My Prayer', + 'My Sharona', + 'My Sweet Lord', + 'Na Na Hey Hey (Kiss Him Goodbye)', + 'Nature Boy', + 'Near You', + 'Need You Now', + 'Need You Tonight', + 'Never Gonna Give You Up', + 'Night & Day', + 'Night Fever', + 'Nights in White Satin', + 'No One', + 'No Scrubs', + 'Nobody Does it Better', + "Nothin' on You", + 'Nothing Compares 2 U', + "Nothing's Gonna Stop Us Now", + 'Ode To Billie Joe', + 'Oh', + 'Oh Happy Day', + 'Oh My Papa (O Mein Papa)', + "Ol' Man River", + 'Ole Buttermilk Sky', + 'On Bended Knee', + 'On My Own', + 'On the Atchison', + 'One', + 'One Bad Apple', + 'One More Try', + "One O'Clock Jump", + 'One Sweet Day', + 'One of These Nights', + 'One of Us', + 'Only The Lonely (Know The Way I Feel)', + 'Only You (And You Alone)', + 'Open Arms', + 'Over There', + 'Over the Rainbow', + 'Paint it Black', + "Papa Don't Preach", + 'Papa Was a Rolling Stone', + "Papa's Got a Brand New Bag", + 'Paper Doll', + 'Paper Planes', + 'Paperback Writer', + 'Party Rock Anthem', + "Peg o' My Heart", + 'Peggy Sue', + 'Pennies From Heaven', + 'Penny Lane', + 'People', + 'People Got to Be Free', + 'Personality', + 'Philadelphia Freedom', + 'Physical', 'Piano Man', - 'Ben', - 'In the Ghetto', - 'Hang On Sloopy', - 'Singing The Blues', - 'Cry Like a Baby', - 'I Honestly Love You', - 'Brother', - "Lookin' Out My Back Door", - 'Candy Man', - 'Burn', - 'Stagger Lee', - 'Moonlight Cocktail', - 'Coming Up', + 'Pick Up the Pieces', + "Pistol Packin' Mama", + 'Play That Funky Music', + 'Please Mr Postman', + 'Poker Face', + 'Pon De Replay', + 'Pony Time', 'Pop Muzik', - 'As Time Goes By', - 'My Eyes Adored You', - 'Strawberry Fields Forever', - 'Some of These Days', - 'I Think I Love You', - 'Judy in Disguise (With Glasses)', - 'All Along the Watchtower', - 'A Thousand Miles', - 'Fast Car', + 'Prisoner of Love', + 'Private Eyes', + 'Promiscuous', + 'Proud Mary', + 'Purple Haze', + 'Purple Rain', + "Puttin' on the Ritz", + 'Que sera sera (Whatever will be will be)', + 'Queen of Hearts', + 'Rag Doll', + 'Rag Mop', + 'Rags to Riches', + 'Raindrops Keep Falling On My Head', + 'Rapture', + 'Ray of Light', + "Reach Out (I'll Be There)", 'Red Red Wine', - 'Live & Let Die', - 'Come On Eileen', - 'Right Back Where We Started From', - 'Brother Louie', - "Ol' Man River", - 'Band On the Run', + 'Rehab', + 'Respect', + 'Return to Sender', + 'Reunited', + 'Revolution', + 'Rhapsody in Blue', + 'Rhinestone Cowboy', 'Rich Girl', - 'Green River', - 'Got to Give it Up', - 'Behind Closed Doors', - "Don't Go Breaking My Heart", - "I'm Looking Over a Four Leaf Clover", - 'Mr Big Stuff', - 'Tiger Rag', - 'Kryptonite', - 'Hey Paula', - 'Go Your Own Way', - 'Big Bad John', - 'Wake Me Up Before You Go Go', - 'Tangerine', - 'Wayward Wind', - 'Disco Lady', - 'Spanish Harlem', - 'Wicked Game', + 'Riders On the Storm', + 'Right Back Where We Started From', + 'Ring My Bell', + 'Ring of Fire', + 'Rock Around the Clock', + 'Rock With You', + 'Rock Your Baby', + 'Rock the Boat', + 'Rock the Casbah', + 'Roll Over Beethoven', + 'Roll With It', + 'Rolling In The Deep', 'Rosanna', - "Papa Don't Preach", - 'Somebody to Love', - 'Kokomo', - 'Manana (Is Soon Enough For Me)', - "Puttin' on the Ritz", - 'One More Try', - "I'll Walk Alone", + 'Roses Are Red', + 'Royals', + 'Ruby Tuesday', + 'Rudolph', + 'Rum & Coca-Cola', + 'Runaround Sue', + 'Runaway', + 'Running Scared', + 'Rush Rush', + 'Sailing', + 'Save the Best For Last', + 'Save the Last Dance For Me', + 'Say It Right', + 'Say My Name', + 'Say Say Say', + 'Say You', + "School's Out", + 'Seasons in the Sun', + 'Secret Love', + 'Sentimental Journey', + 'Sexyback', + 'Sh-Boom (Life Could Be a Dream)', + 'Shadow Dancing', + 'Shake Down', + 'Shake You Down', + 'She Drives Me Crazy', + 'She Loves You', + "She's a Lady", + 'Shining Star', + 'Shop Around', 'Shout', - 'Woman', - 'Ballerina', - 'We Built This City', - '19th Nervous Breakdown', - 'Working My Way Back to You', - 'Superstar', - 'Foolish Games', - 'Get Down Tonight', - 'On Bended Knee', - 'Magic Carpet Ride', - 'Only You (And You Alone)', - 'A String of Pearls', - 'A Tree in the Meadow', + 'Silly Love Songs', + 'Since U Been Gone', + 'Sing', + 'Singing The Blues', + 'Single Ladies (Put A Ring On It)', + 'Sir Duke', + 'Sixteen Tons', + 'Sledgehammer', + 'Sleep Walk', + 'Sleepy Lagoon', + 'Slow Poke', + 'Smells Like Teen Spirit', + 'Smoke Gets in Your Eyes', + 'Smoke On the Water', + 'Smoke! Smoke! Smoke! (That Cigarette)', + 'Smooth', 'So Much in Love', - 'Every Little Thing She Does is Magic', - 'La Bamba', - 'Tighten Up', - 'Three Times a Lady', - 'Airplanes', - "Don't Leave Me This Way", - 'Rock the Casbah', - 'Feel Good Inc', - 'Love Me Do', - 'Kiss On My List', - 'Give Me Everything', - 'Have You Ever Really Loved a Woman?', - 'Love Letters in the Sand', - 'Ring My Bell', - 'Love Child', - 'I Feel For You', - 'Bye', - '(Let Me Be Your) Teddy Bear', 'Soldier Boy', - "Papa's Got a Brand New Bag", - 'Love Hangover', + 'Some Enchanted Evening', + 'Some of These Days', + 'Somebody That I Used to Know', + 'Somebody to Love', + 'Someday', + "Somethin' Stupid", + 'Something', + 'Soul Man', + 'Spanish Harlem', 'Spill the Wine', - 'Royals', - 'April Showers', - "Don't You (Forget About Me)", - "Travellin' Man", - 'The Thing', - 'You Make Me Feel Brand New', - 'The Glow-Worm', - "You Don't Bring Me Flowers", - 'Summertime Blues', - 'Straight Up', - 'Sunday', - 'Wake Up Little Susie', - "She's a Lady", - 'Over There', - "Little Darlin'", - 'Rag Mop', - 'Shake Down', - 'Up Around the Bend', - 'Harbour Lights', - 'Chances Are', - 'Mood Indigo', - 'Pony Time', - "After You've Gone", - 'I Wanna Love You', - 'Da Doo Ron Ron (When He Walked Me Home)', - "If You Don't Know Me By Now", - 'Green Tambourine', - 'My Man', - "If I Didn't Care", + 'Spinning Wheel', + 'Spirit in the Sky', 'St George & the Dragonette', - "Why Don't You Believe Me?", - 'How Will I Know', - 'Disco Duck', - 'Lonely Boy', - 'Never Gonna Give You Up', - 'Before The Next Teardrop Falls', - 'Running Scared', - "Let's Hear it For the Boy", - 'Sleep Walk', - 'Walk On the Wild Side', - 'Memories Are Made of This', - 'Open Arms', - 'Stuck On You', - 'Personality', - 'Feel Like Making Love', + 'St Louis Blues', + 'Stagger Lee', + 'Stairway to Heaven', + 'Stand By Me', + 'Stardust', 'Stars & Stripes Forever', - 'Besame Mucho', - 'Let Me Call You Sweetheart', - 'Indian Reservation (The Lament Of The Cherokee Reservation Indian)', - 'Cars', - 'You Make Me Feel Like Dancing', - 'Whatcha Say', - 'Me & Mrs Jones', - 'Bitter Sweet Symphony', - 'Uncle Albert (Admiral Halsey)', - 'More Than a Feeling', - "My Boyfriend's Back", - 'People', - "He'll Have to Go", - 'I Can Help', - 'The Streak', - 'Dreams', - 'Hair', - 'Cold', - "Nothin' on You", + 'Stay (I Missed You)', + "Stayin' Alive", + 'Stop! in the Name of Love', + "Stormy Weather (Keeps Rainin' All the Time)", + 'Straight Up', + 'Strange Fruit', + 'Stranger On the Shore', + 'Strangers in the Night', + 'Strawberry Fields Forever', + 'Streets of Philadelphia', + 'Stronger', + 'Stuck On You', + 'Sugar Shack', + 'Sugar Sugar', + 'Summer in the City', + 'Summertime Blues', + 'Sunday', + 'Sunshine Superman', + 'Sunshine of Your Love', + 'Superstar', + 'Superstition', + "Surfin' USA", + 'Suspicious Minds', + 'Swanee', + 'Sweet Caroline (Good Times Never Seemed So Good)', + "Sweet Child O' Mine", + 'Sweet Dreams (Are Made of This)', + 'Sweet Georgia Brown', + 'Sweet Home Alabama', + 'Sweet Soul Music', + 'Swinging On a Star', + 'T For Texas (Blue Yodel No 1)', + 'TSOP (The Sound of Philadelphia)', + 'Take Me Home', + 'Take My Breath Away', + 'Take On Me', + "Take The 'A' Train", + 'Take a Bow', + 'Tammy', + 'Tangerine', + 'Tears in Heaven', + 'Tears of a Clown', + 'Temperature', + 'Tennessee Waltz', + 'Tequila', + 'Tha Crossroads', + 'Thank You (Falettinme be Mice Elf Again)', + 'That Lucky Old Sun (Just Rolls Around Heaven All Day)', + 'That Old Black Magic', + "That'll Be the Day", + "That's Amore", + "That's What Friends Are For", + "That's the Way (I Like It)", + "That's the Way Love Goes", + 'The Boy is Mine', + 'The Boys of Summer', + 'The Christmas Song (Chestnuts Roasting On An Open Fire)', 'The End of the World', - 'Caldonia Boogie (What Makes Your Big Head So Hard)', - 'I Kissed A Girl', - 'Incense & Peppermints', - '12th Street Rag', - 'West End Blues', + 'The First Time Ever I Saw Your Face', + 'The Girl From Ipanema', + 'The Glow-Worm', + 'The Great Pretender', + 'The Gypsy', + 'The Hustle', + 'The Joker', + 'The Last Dance', + 'The Letter', + 'The Loco-Motion', + 'The Long & Winding Road', + 'The Love You Save', + 'The Morning After', + 'The Power of Love', + "The Prisoner's Song", + 'The Reason', + 'The Rose', + 'The Sign', + 'The Song From Moulin Rouge (Where Is Your Heart)', + 'The Sounds of Silence', + 'The Streak', + 'The Sweet Escape', + 'The Thing', + 'The Tide is High', + 'The Tracks of My Tears', + 'The Twist', + 'The Wanderer', + 'The Way We Were', + 'The Way You Look Tonight', 'The Way You Move', - 'Smoke Gets in Your Eyes', - 'Want Ads', - 'Long Cool Woman in a Black Dress', - 'Hey Baby', - '(Your Love Keeps Lifting Me) Higher & Higher', - "He's a Rebel", - 'Alone', + "Theme From 'A Summer Place'", + "Theme From 'Greatest American Hero' (Believe It Or Not)", + "Theme From 'Shaft'", + 'There goes my baby', + 'These Boots Are Made For Walking', + 'Third Man Theme', + 'This Diamond Ring', + "This Guy's in Love With You", + 'This Land is Your Land', + 'This Love', + 'This Ole House', + 'This Used to Be My Playground', + 'Three Coins in the Fountain', + 'Three Times a Lady', 'Thrift Shop', - "Don't Let the Sun Go Down On Me", - 'The Sweet Escape', - 'Return to Sender', - 'Here in My Heart', - 'Wabash Cannonball', - "Ain't That a Shame", + 'Thriller', + 'Ticket to Ride', + "Tie a Yellow Ribbon 'round the Old Oak Tree", + 'Tiger Rag', + 'Tighten Up', + 'Tik-Toc', + 'Till I Waltz Again With You', + 'Till The End of Time', + 'Time After Time', + 'Time of the Season', + 'To Sir', + 'Tom Dooley', + "Tonight's the Night (Gonna Be Alright)", + 'Too Close', + 'Too Young', + 'Tossing & Turning', + 'Total Eclipse of the Heart', + 'Touch Me', + 'Toxic', "Travellin' Band", - "I'm Your Boogie Man", - 'I Write the Songs', - 'This Love', - 'Lights', - 'Will It Go Round In Circles', - 'Purple Haze', - 'Rock Your Baby', - 'Delicado', - 'Tammy', - 'Check On It', - 'Breaking Up is Hard to Do', - '1999', - 'Prisoner of Love', - 'Wild Wild West', + "Travellin' Man", + 'Truly Madly Deeply', + 'Turn! Turn! Turn! (To Everything There is a Season)', + 'Tutti Frutti', + 'Twist & Shout', + 'Two Hearts', + "U Can't Touch This", + 'U Got it Bad', + 'Umbrella', + 'Un-Break My Heart', + 'Unbelievable', + 'Unchained Melody', + 'Uncle Albert (Admiral Halsey)', + 'Under the Boardwalk', + 'Under the Bridge', + 'Unforgettable', + 'Up Around the Bend', + 'Up Up & Away', + 'Up Where We Belong', + 'Upside Down', + 'Use Somebody', + 'Vaya Con Dios (may God Be With You)', + 'Venus', + 'Vision of Love', + 'Viva La Vida', + 'Vogue', + 'Volare', + 'Wabash Cannonball', + 'Waiting For a Girl Like You', + 'Wake Me Up Before You Go Go', + 'Wake Up Little Susie', + "Walk Don't Run", 'Walk Like a Man', - 'I Will Follow Him', - 'Glamorous', + 'Walk Like an Egyptian', + 'Walk On By', + 'Walk On the Wild Side', + 'Walk This Way', + 'Wannabe', + 'Want Ads', + 'Wanted', + 'War', + 'Waterfalls', + 'Wayward Wind', + 'We Are Family', + 'We Are Young', + 'We Are the Champions', + 'We Are the World', + 'We Belong Together', + 'We Built This City', + 'We Can Work it Out', + "We Didn't Start the Fire", + 'We Found Love', + 'We Got The Beat', + 'We Will Rock You', + "We've Only Just Begun", + 'Weak', + 'Wedding Bell Blues', + 'West End Blues', + 'West End Girls', + 'What Goes Around Comes Around', + 'What a Fool Believes', + "What'd I Say", + "What's Going On?", + "What's Love Got to Do With It?", + 'Whatcha Say', + 'Wheel of Fortune', + 'When Doves Cry', + 'When You Wish Upon a Star', + 'When a Man Loves a Woman', + 'Where Did Our Love Go', + 'Where is the Love?', + 'Whip It', + 'Whispering', + 'White Christmas', + 'White Rabbit', + 'Whole Lotta Love', + "Whole Lotta Shakin' Goin' On", + 'Whoomp! (There it Is)', + 'Why Do Fools Fall in Love?', + "Why Don't You Believe Me?", + 'Wichita Lineman', + 'Wicked Game', + 'Wild Thing', + 'Wild Wild West', + 'Will It Go Round In Circles', + 'Will You Love Me Tomorrow', + 'Winchester Cathedral', + 'Wind Beneath My Wings', + 'Wipe Out', + 'Wishing Well', + 'With Or Without You', + 'Without Me', + 'Without You', + 'Woman', + "Won't Get Fooled Again", + 'Wooly Bully', + 'Working My Way Back to You', + 'YMCA', + 'Yakety Yak', + 'Yeah!', 'Yellow Rose of Texas', - 'That Old Black Magic', - "I'm So Lonesome I Could Cry", - 'Up Up & Away', - 'Baby Come Back', - 'Let it Snow! Let it Snow! Let it Snow!', - 'Pon De Replay', - 'Because I Love You (The Postman Song)', - 'Sleepy Lagoon', - 'Baker Street', - 'Dardanella', + 'Yesterday', + "You Ain't Seen Nothin' Yet", + 'You Always Hurt the One You Love', + 'You Are the Sunshine of My Life', + 'You Belong With Me', + 'You Belong to Me', + "You Can't Hurry Love", + "You Don't Bring Me Flowers", "You Don't Have to Be a Star (To Be in My Show)", - 'Leaving', - 'Glory of Love', - "Theme From 'Greatest American Hero' (Believe It Or Not)", - 'Shake You Down', - 'Ole Buttermilk Sky', - "I Can't Get Started", - 'Freak Me', - 'Hot Child In The City', - 'Man in the Mirror', - 'Queen of Hearts', - "Let's Groove", - 'Change the World', + 'You Light Up My Life', + 'You Make Me Feel Brand New', + 'You Make Me Feel Like Dancing', + 'You Really Got Me', + 'You Send Me', + 'You Sexy Thing', + 'You Were Meant for Me', 'You make Me Wanna', - 'Someday', - 'Eve of Destruction', - 'One of Us', - 'Honky Tonk', - 'Be Bop a Lula', - 'Two Hearts', - 'Paper Planes', + "You'll Never Know", + "You're Beautiful", + "You're So Vain", + "You're Still the One", + "You're the One That I Want", + "You've Got a Friend", + "You've Lost That Lovin' Feelin'", + "Your Cheatin' Heart", + 'Your Song', ]; diff --git a/src/locales/en/vehicle/manufacturer.ts b/src/locales/en/vehicle/manufacturer.ts index 817775fce61..9de1e9c934b 100644 --- a/src/locales/en/vehicle/manufacturer.ts +++ b/src/locales/en/vehicle/manufacturer.ts @@ -1,8 +1,8 @@ export default [ 'Aston Martin', 'Audi', - 'Bentley', 'BMW', + 'Bentley', 'Bugatti', 'Cadillac', 'Chevrolet', diff --git a/src/locales/en/vehicle/model.ts b/src/locales/en/vehicle/model.ts index c83dd966cdb..341e8cd0bbc 100644 --- a/src/locales/en/vehicle/model.ts +++ b/src/locales/en/vehicle/model.ts @@ -1,62 +1,62 @@ export default [ - 'Fiesta', - 'Focus', - 'Taurus', - 'Mustang', - 'Explorer', - 'Expedition', - 'F-150', - 'Model T', - 'Ranchero', - 'Volt', - 'Cruze', - 'Malibu', - 'Impala', - 'Camaro', - 'Corvette', - 'Colorado', - 'Silverado', - 'El Camino', - 'CTS', - 'XTS', + '1', + '2', + '911', + 'A4', + 'A8', 'ATS', - 'Escalade', + 'Accord', 'Alpine', - 'Charger', - 'LeBaron', - 'PT Cruiser', + 'Altima', + 'Aventador', + 'Beetle', + 'CTS', + 'CX-9', + 'Camaro', + 'Camry', 'Challenger', + 'Charger', + 'Civic', + 'Colorado', + 'Corvette', + 'Countach', + 'Cruze', 'Durango', + 'El Camino', + 'Element', + 'Escalade', + 'Expedition', + 'Explorer', + 'F-150', + 'Fiesta', + 'Focus', + 'Fortwo', + 'Golf', 'Grand Caravan', - 'Wrangler', 'Grand Cherokee', - 'Roadster', - 'Model S', + 'Impala', + 'Jetta', + 'Land Cruiser', + 'LeBaron', + 'Malibu', + 'Mercielago', 'Model 3', + 'Model S', + 'Model T', 'Model X', 'Model Y', - 'Camry', + 'Mustang', + 'PT Cruiser', 'Prius', - 'Land Cruiser', - 'Accord', - 'Civic', - 'Element', + 'Ranchero', + 'Roadster', 'Sentra', - 'Altima', - 'A8', - 'A4', - 'Beetle', - 'Jetta', - 'Golf', - '911', + 'Silverado', 'Spyder', - 'Countach', - 'Mercielago', - 'Aventador', - '1', - '2', - 'Fortwo', + 'Taurus', 'V90', + 'Volt', + 'Wrangler', 'XC90', - 'CX-9', + 'XTS', ]; diff --git a/src/locales/en_AU/company/suffix.ts b/src/locales/en_AU/company/suffix.ts index 7ad5bb2def7..dd13c3c5180 100644 --- a/src/locales/en_AU/company/suffix.ts +++ b/src/locales/en_AU/company/suffix.ts @@ -1 +1 @@ -export default ['Pty Ltd', 'and Sons', 'Corp', 'Group', 'Brothers', 'Partners']; +export default ['Brothers', 'Corp', 'Group', 'Partners', 'Pty Ltd', 'and Sons']; diff --git a/src/locales/en_AU_ocker/company/suffix.ts b/src/locales/en_AU_ocker/company/suffix.ts index 7ad5bb2def7..dd13c3c5180 100644 --- a/src/locales/en_AU_ocker/company/suffix.ts +++ b/src/locales/en_AU_ocker/company/suffix.ts @@ -1 +1 @@ -export default ['Pty Ltd', 'and Sons', 'Corp', 'Group', 'Brothers', 'Partners']; +export default ['Brothers', 'Corp', 'Group', 'Partners', 'Pty Ltd', 'and Sons']; diff --git a/src/locales/en_GH/company/name_pattern.ts b/src/locales/en_GH/company/name_pattern.ts index 0d6bbac88a0..a14fdda514a 100644 --- a/src/locales/en_GH/company/name_pattern.ts +++ b/src/locales/en_GH/company/name_pattern.ts @@ -1,4 +1,4 @@ export default [ - '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} and {{person.last_name}}', + '{{person.last_name}} {{company.suffix}}', ]; diff --git a/src/locales/en_GH/company/suffix.ts b/src/locales/en_GH/company/suffix.ts index c09727985aa..84921056e10 100644 --- a/src/locales/en_GH/company/suffix.ts +++ b/src/locales/en_GH/company/suffix.ts @@ -1 +1 @@ -export default ['Venture', 'Ltd']; +export default ['Ltd', 'Venture']; diff --git a/src/locales/en_HK/company/suffix.ts b/src/locales/en_HK/company/suffix.ts index 88602e407a6..eb5764ba5b7 100644 --- a/src/locales/en_HK/company/suffix.ts +++ b/src/locales/en_HK/company/suffix.ts @@ -1 +1 @@ -export default ['Ltd.', 'Co. Ltd.']; +export default ['Co. Ltd.', 'Ltd.']; diff --git a/src/locales/en_IN/company/suffix.ts b/src/locales/en_IN/company/suffix.ts index 22aa15c09b2..b029129d3c1 100644 --- a/src/locales/en_IN/company/suffix.ts +++ b/src/locales/en_IN/company/suffix.ts @@ -1,9 +1,9 @@ export default [ - 'Pvt Ltd', + 'Brothers', + 'Corp', + 'Group', 'Limited', 'Ltd', + 'Pvt Ltd', 'and Sons', - 'Corp', - 'Group', - 'Brothers', ]; diff --git a/src/locales/en_NG/company/suffix.ts b/src/locales/en_NG/company/suffix.ts index cbd4917f307..20a1dc721aa 100644 --- a/src/locales/en_NG/company/suffix.ts +++ b/src/locales/en_NG/company/suffix.ts @@ -1 +1 @@ -export default ['Venture', 'Ltd', 'Plc']; +export default ['Ltd', 'Plc', 'Venture']; diff --git a/src/locales/en_ZA/company/suffix.ts b/src/locales/en_ZA/company/suffix.ts index d1bd220258d..872faf24941 100644 --- a/src/locales/en_ZA/company/suffix.ts +++ b/src/locales/en_ZA/company/suffix.ts @@ -1 +1 @@ -export default ['Pty Ltd', 'Ltd', 'CC']; +export default ['CC', 'Ltd', 'Pty Ltd']; diff --git a/src/locales/eo/commerce/product_name.ts b/src/locales/eo/commerce/product_name.ts index 644bb0646d4..ef8b36f9563 100644 --- a/src/locales/eo/commerce/product_name.ts +++ b/src/locales/eo/commerce/product_name.ts @@ -39,15 +39,13 @@ export default { 'ligna', 'metala', 'plasta', - 'ŝtala', 'trikita', 'vitra', + 'ŝtala', ], product: [ 'aŭto', 'biciklo', - 'ĉapelo', - 'ĉemizo', 'ekrano', 'flago', 'ganto', @@ -61,8 +59,10 @@ export default { 'sako', 'sapo', 'seĝo', - 'ŝuo', 'tablo', 'valizo', + 'ĉapelo', + 'ĉemizo', + 'ŝuo', ], }; diff --git a/src/locales/eo/database/column.ts b/src/locales/eo/database/column.ts index 084ff296d07..35a655af80a 100644 --- a/src/locales/eo/database/column.ts +++ b/src/locales/eo/database/column.ts @@ -1,12 +1,12 @@ export default [ - 'identigilo', - 'titolo', - 'nomo', - 'telefonnumero', 'grupo', + 'identigilo', 'kategorio', - 'pasvorto', 'komento', + 'nomo', + 'pasvorto', 'profilbildo', 'stato', + 'telefonnumero', + 'titolo', ]; diff --git a/src/locales/eo/hacker/adjective.ts b/src/locales/eo/hacker/adjective.ts index 706284104f0..4945ad81695 100644 --- a/src/locales/eo/hacker/adjective.ts +++ b/src/locales/eo/hacker/adjective.ts @@ -3,7 +3,6 @@ export default [ 'aŭtomata', 'bludenta', 'cifereca', - 'ĉefa', 'defaŭlta', 'enreta', 'helpa', @@ -24,4 +23,5 @@ export default [ 'solidstata', 'universala', 'virtuala', + 'ĉefa', ]; diff --git a/src/locales/eo/hacker/phrase.ts b/src/locales/eo/hacker/phrase.ts index 4d3a8b35a6c..a9800e03c92 100644 --- a/src/locales/eo/hacker/phrase.ts +++ b/src/locales/eo/hacker/phrase.ts @@ -1,11 +1,11 @@ export default [ - 'Se ni povus {{verb}} la {{noun}}n, ni povus aliri la {{abbreviation}}-{{noun}}n per la {{adjective}} {{abbreviation}}-{{noun}}!', - 'Ni devas {{verb}} la {{adjective}}n {{abbreviation}}-{{noun}}n!', - 'Provu {{verb}} la {{abbreviation}}-{{noun}}n, eble ni sukcesos {{verb}} la {{adjective}}n {{noun}}n!', - 'Vi ne povas {{verb}} la {{noun}}n sen {{ingverb}} de la {{adjective}} {{abbreviation}}-{{noun}}!', - 'Uzu la {{adjective}}n {{abbreviation}}-{{noun}}n, poste vi povos {{verb}} la {{adjective}}n {{noun}}n!', 'La {{abbreviation}}-{{noun}} ne funkcias, provu {{verb}} la {{adjective}}n {{noun}}n, por ke ni povu {{verb}} la {{abbreviation}}-{{noun}}n!', - 'Ne funkcios {{ingverb}} de la {{noun}}, ni devas {{verb}} la {{adjective}}n {{abbreviation}}-{{noun}}n!', 'Mi provos {{verb}} la {{adjective}}n {{abbreviation}}-{{noun}}n, tio devus {{verb}} la {{abbreviation}}-{{noun}}n!', + 'Ne funkcios {{ingverb}} de la {{noun}}, ni devas {{verb}} la {{adjective}}n {{abbreviation}}-{{noun}}n!', 'Ne gravas, se ni ne povus {{verb}} la {{noun}}n, ni devas nur {{verb}} la {{adjective}}n {{abbreviation}}-{{noun}}!', + 'Ni devas {{verb}} la {{adjective}}n {{abbreviation}}-{{noun}}n!', + 'Provu {{verb}} la {{abbreviation}}-{{noun}}n, eble ni sukcesos {{verb}} la {{adjective}}n {{noun}}n!', + 'Se ni povus {{verb}} la {{noun}}n, ni povus aliri la {{abbreviation}}-{{noun}}n per la {{adjective}} {{abbreviation}}-{{noun}}!', + 'Uzu la {{adjective}}n {{abbreviation}}-{{noun}}n, poste vi povos {{verb}} la {{adjective}}n {{noun}}n!', + 'Vi ne povas {{verb}} la {{noun}}n sen {{ingverb}} de la {{adjective}} {{abbreviation}}-{{noun}}!', ]; diff --git a/src/locales/es/commerce/department.ts b/src/locales/es/commerce/department.ts index a8b30b18c1e..12f1e86adb1 100644 --- a/src/locales/es/commerce/department.ts +++ b/src/locales/es/commerce/department.ts @@ -1,21 +1,21 @@ export default [ - 'Librería', + 'Bebes', + 'Bricolaje', + 'Cine', + 'Decoración', 'Deportes', - 'Videojuegos', 'Electrónica', - 'Moda', + 'Hogar', + 'Informática', 'Joyería', - 'Marroquinería', 'Juguetería', + 'Librería', + 'Marroquinería', 'Mascotas', - 'Bebes', - 'Bricolaje', - 'Informática', - 'Salud', - 'Parafarmacia', - 'Papelería', - 'Cine', + 'Moda', 'Música', - 'Hogar', - 'Decoración', + 'Papelería', + 'Parafarmacia', + 'Salud', + 'Videojuegos', ]; diff --git a/src/locales/es/commerce/product_name.ts b/src/locales/es/commerce/product_name.ts index dc1dae6e6ad..1607614e377 100644 --- a/src/locales/es/commerce/product_name.ts +++ b/src/locales/es/commerce/product_name.ts @@ -1,55 +1,55 @@ export default { adjective: [ - 'Pequeño', + 'Artesanal', 'Ergonómico', - 'Rústico', - 'Inteligente', - 'Increible', 'Fantástico', - 'Práctico', - 'Sorprendente', 'Genérico', - 'Artesanal', - 'Hecho a mano', - 'Guapo', 'Guapa', + 'Guapo', + 'Hecho a mano', + 'Increible', + 'Inteligente', + 'Pequeño', + 'Práctico', 'Refinado', + 'Rústico', 'Sabroso', + 'Sorprendente', ], material: [ 'Acero', - 'Madera', - 'Plástico', 'Algodón', 'Granito', - 'Metal', - 'Ladrillo', 'Hormigon', + 'Ladrillo', + 'Madera', + 'Metal', + 'Plástico', ], product: [ - 'Silla', - 'Coche', - 'Ordenador', - 'Teclado', - 'Raton', + 'Atún', + 'Bacon', 'Bicicleta', - 'Pelota', - 'Guantes', - 'Pantalones', 'Camiseta', - 'Mesa', - 'Zapatos', + 'Coche', + 'Ensalada', 'Gorro', - 'Toallas', - 'Sopa', - 'Atún', - 'Pollo', + 'Guantes', + 'Mesa', + 'Ordenador', + 'Pantalones', + 'Patatas fritas', + 'Pelota', 'Pescado', - 'Queso', - 'Bacon', 'Pizza', - 'Ensalada', + 'Pollo', + 'Queso', + 'Raton', 'Salchichas', - 'Patatas fritas', + 'Silla', + 'Sopa', + 'Teclado', + 'Toallas', + 'Zapatos', ], }; diff --git a/src/locales/es/company/adjective.ts b/src/locales/es/company/adjective.ts index f7b66c1b57a..bf97ba59aa0 100644 --- a/src/locales/es/company/adjective.ts +++ b/src/locales/es/company/adjective.ts @@ -1,83 +1,83 @@ export default [ + 'Actualizable', 'Adaptativo', - 'Avanzado', + 'Amigable', 'Asimilado', + 'Auto proporciona', 'Automatizado', - 'Equilibrado', + 'Avanzado', + 'Cara a cara', 'Centrado en el negocio', + 'Centrado en el usuario', 'Centralizado', 'Clonado', + 'Compartible', 'Compatible', 'Configurable', - 'Multi grupo', - 'Multi plataforma', - 'Centrado en el usuario', 'Descentralizado', 'Digitalizado', 'Distribuido', 'Diverso', - 'Reducido', - 'Mejorado', - 'Para toda la empresa', + 'En red', + 'Enfocado', + 'Enfocado a benficios', + 'Enfocado en la calidad', + 'Equilibrado', 'Ergonómico', 'Exclusivo', 'Expandido', 'Extendido', - 'Cara a cara', - 'Enfocado', - 'Totalmente configurable', 'Fundamental', - 'Orígenes', + 'Fácil', + 'Gestionado', 'Horizontal', 'Implementado', + 'Ingeniería inversa', 'Innovador', 'Integrado', + 'Intercambiable', 'Intuitivo', 'Inverso', - 'Gestionado', - 'Obligatorio', + 'Mejorado', 'Monitorizado', 'Multi canal', - 'Multi lateral', 'Multi capa', - 'En red', - 'Orientado a objetos', + 'Multi grupo', + 'Multi lateral', + 'Multi plataforma', + 'Obligatorio', + 'Opcional', 'Open-source', 'Operativo', 'Optimizado', - 'Opcional', - 'Orgánico', 'Organizado', + 'Orgánico', + 'Orientado a equipos', + 'Orientado a objetos', + 'Orígenes', + 'Para toda la empresa', 'Perseverando', 'Persistente', - 'en fases', 'Polarizado', 'Pre-emptivo', 'Proactivo', - 'Enfocado a benficios', 'Profundo', 'Programable', 'Progresivo', 'Public-key', - 'Enfocado en la calidad', - 'Reactivo', - 'Realineado', 'Re-contextualizado', 'Re-implementado', - 'Ingeniería inversa', + 'Reactivo', + 'Realineado', + 'Reducido', 'Robusto', - 'Fácil', 'Seguro', - 'Auto proporciona', - 'Compartible', - 'Intercambiable', 'Sincronizado', - 'Orientado a equipos', 'Total', + 'Totalmente configurable', 'Universal', - 'Actualizable', - 'Amigable', 'Versatil', 'Virtual', 'Visionario', + 'en fases', ]; diff --git a/src/locales/es/company/descriptor.ts b/src/locales/es/company/descriptor.ts index 6e3835a066d..af59a30ef3b 100644 --- a/src/locales/es/company/descriptor.ts +++ b/src/locales/es/company/descriptor.ts @@ -5,40 +5,41 @@ export default [ '4th generación', '5th generación', '6th generación', + 'acompasada', + 'alto nivel', + 'amplio ábanico', 'analizada', 'asimétrica', 'asíncrona', - 'monitorizada por red', + 'basado en contenido', + 'basado en el contexto', + 'basado en necesidades', 'bidireccional', 'bifurcada', - 'generada por el cliente', 'cliente servidor', 'coherente', 'cohesiva', 'compuesto', - 'sensible al contexto', - 'basado en el contexto', - 'basado en contenido', 'dedicada', - 'generado por la demanda', + 'defectos cero', 'didactica', + 'dinámica', 'direccional', 'discreta', - 'dinámica', - 'potenciada', - 'acompasada', 'ejecutiva', + 'escalable', + 'estable', + 'estatica', 'explícita', - 'tolerante a fallos', - 'innovadora', - 'amplio ábanico', + 'generada por el cliente', + 'generado por la demanda', 'global', 'heurística', - 'alto nivel', + 'hibrida', 'holística', 'homogénea', - 'hibrida', 'incremental', + 'innovadora', 'intangible', 'interactiva', 'intermedia', @@ -47,37 +48,36 @@ export default [ 'maximizada', 'metódica', 'misión crítica', - 'móbil', 'modular', + 'monitorizada por red', 'motivadora', - 'multimedia', 'multiestado', + 'multimedia', 'multitarea', + 'móbil', 'nacional', - 'basado en necesidades', 'neutral', - 'nueva generación', 'no-volátil', - 'orientado a objetos', - 'óptima', + 'nueva generación', 'optimizada', + 'orientada a soluciones', + 'orientado a objetos', + 'potenciada', 'radical', - 'tiempo real', 'recíproca', 'regional', - 'escalable', 'secundaria', - 'orientada a soluciones', - 'estable', - 'estatica', + 'sensible al contexto', 'sistemática', 'sistémica', 'tangible', 'terciaria', + 'tiempo real', + 'tolerancia cero', + 'tolerante a fallos', 'transicional', 'uniforme', 'valor añadido', 'vía web', - 'defectos cero', - 'tolerancia cero', + 'óptima', ]; diff --git a/src/locales/es/company/name_pattern.ts b/src/locales/es/company/name_pattern.ts index 9fd80f8a610..5abf8cba76f 100644 --- a/src/locales/es/company/name_pattern.ts +++ b/src/locales/es/company/name_pattern.ts @@ -1,6 +1,6 @@ export default [ - '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} y {{person.last_name}}', + '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} {{person.last_name}} {{company.suffix}}', '{{person.last_name}}, {{person.last_name}} y {{person.last_name}} Asociados', ]; diff --git a/src/locales/es/company/noun.ts b/src/locales/es/company/noun.ts index 48d284e0a76..85b8a603131 100644 --- a/src/locales/es/company/noun.ts +++ b/src/locales/es/company/noun.ts @@ -1,95 +1,95 @@ export default [ - 'habilidad', + 'Interfaz Gráfica', + 'Interfaz gráfico de usuario', + 'Soporte', 'acceso', + 'actitud', 'adaptador', 'algoritmo', 'alianza', 'analista', 'aplicación', - 'enfoque', - 'arquitectura', + 'aprovechar', 'archivo', - 'inteligencia artificial', + 'arquitectura', + 'arquitectura abierta', 'array', - 'actitud', - 'medición', - 'gestión presupuestaria', + 'base de datos', + 'base de trabajo', + 'base del conocimiento', + 'caja de herramientas', 'capacidad', - 'desafío', 'circuito', + 'codificar', 'colaboración', 'complejidad', 'concepto', 'conglomeración', + 'conjunto', + 'conjunto de instrucciones', 'contingencia', - 'núcleo', - 'fidelidad', - 'base de datos', 'data-warehouse', 'definición', + 'desafío', 'emulación', - 'codificar', 'encriptar', + 'enfoque', + 'estandardización', + 'estrategia', + 'estructura', + 'estructura de precios', 'extranet', + 'fidelidad', 'firmware', 'flexibilidad', 'focus group', - 'previsión', - 'base de trabajo', - 'función', + 'fuerza de trabajo', 'funcionalidad', - 'Interfaz Gráfica', + 'función', + 'gestión presupuestaria', 'groupware', - 'Interfaz gráfico de usuario', + 'habilidad', 'hardware', - 'Soporte', - 'jerarquía', - 'conjunto', 'implementación', 'infraestructura', 'iniciativa', 'instalación', - 'conjunto de instrucciones', + 'inteligencia artificial', 'interfaz', 'intranet', - 'base del conocimiento', - 'red de area local', - 'aprovechar', + 'jerarquía', + 'línea segura', + 'marco de tiempo', 'matrices', + 'mediante', + 'medición', 'metodologías', 'middleware', 'migración', 'modelo', 'moderador', 'monitorizar', - 'arquitectura abierta', - 'sistema abierto', + 'núcleo', 'orquestar', 'paradigma', 'paralelismo', 'política', 'portal', - 'estructura de precios', + 'previsión', 'proceso de mejora', - 'producto', 'productividad', - 'proyecto', - 'proyección', + 'producto', 'protocolo', - 'línea segura', + 'proyección', + 'proyecto', + 'red de area local', + 'sinergia', + 'sistema abierto', 'software', 'solución', - 'estandardización', - 'estrategia', - 'estructura', - 'éxito', - 'superestructura', 'soporte', - 'sinergia', - 'mediante', - 'marco de tiempo', - 'caja de herramientas', + 'superestructura', 'utilización', 'website', - 'fuerza de trabajo', + 'éxito', ]; diff --git a/src/locales/es/company/suffix.ts b/src/locales/es/company/suffix.ts index dd16d6a2c9d..db2b33c307b 100644 --- a/src/locales/es/company/suffix.ts +++ b/src/locales/es/company/suffix.ts @@ -1 +1 @@ -export default ['S.L.', 'e Hijos', 'S.A.', 'Hermanos']; +export default ['Hermanos', 'S.A.', 'S.L.', 'e Hijos']; diff --git a/src/locales/es_MX/commerce/department.ts b/src/locales/es_MX/commerce/department.ts index 91b4817c47c..3413f6c15b9 100644 --- a/src/locales/es_MX/commerce/department.ts +++ b/src/locales/es_MX/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'Libros', - 'Películas', - 'Música', - 'Juegos', + 'Aire libre', + 'Automoción', + 'Baby', + 'Belleza', + 'Deportes', 'Electrónica', - 'Ordenadores', + 'Herramientas', 'Hogar', + 'Industrial', 'Jardín', - 'Herramientas', - 'Ultramarinos', - 'Salud', - 'Belleza', + 'Joyería', + 'Juegos', 'Juguetes', 'Kids', - 'Baby', + 'Libros', + 'Música', + 'Ordenadores', + 'Películas', 'Ropa', + 'Salud', + 'Ultramarinos', 'Zapatos', - 'Joyería', - 'Deportes', - 'Aire libre', - 'Automoción', - 'Industrial', ]; diff --git a/src/locales/es_MX/commerce/product_name.ts b/src/locales/es_MX/commerce/product_name.ts index 6b020284c84..22a088e2e73 100644 --- a/src/locales/es_MX/commerce/product_name.ts +++ b/src/locales/es_MX/commerce/product_name.ts @@ -1,58 +1,58 @@ export default { adjective: [ - 'Pequeño', + 'Artesanal', + 'Elegante', 'Ergonómico', - 'Rústico', - 'Inteligente', - 'Gorgeous', - 'Increíble', 'Fantástico', - 'Práctica', - 'Elegante', 'Genérica', - 'Artesanal', + 'Gorgeous', 'Hecho a mano', + 'Increíble', + 'Inteligente', 'Licencia', + 'Pequeño', + 'Práctica', 'Refinado', - 'Sin marca', + 'Rústico', 'Sabrosa', + 'Sin marca', ], material: [ 'Acero', - 'Madera', - 'Hormigón', - 'Plástico', + 'Caucho', 'Cotton', + 'Fresco', + 'Frozen', 'Granito', - 'Caucho', + 'Hormigón', + 'Madera', 'Metal', + 'Plástico', 'Soft', - 'Fresco', - 'Frozen', ], product: [ - 'Presidente', 'Auto', - 'Computadora', - 'Teclado', - 'Ratón', 'Bike', - 'Pelota', - 'Guantes', - 'Pantalones', 'Camisa', - 'Mesa', - 'Zapatos', - 'Sombrero', - 'Toallas', + 'Computadora', + 'Embutidos', + 'Ensalada', + 'Guantes', 'Jabón', - 'Tuna', - 'Pollo', + 'Mesa', + 'Pantalones', + 'Pelota', 'Pescado', + 'Pizza', + 'Pollo', + 'Presidente', 'Queso', + 'Ratón', + 'Sombrero', + 'Teclado', + 'Toallas', 'Tocino', - 'Pizza', - 'Ensalada', - 'Embutidos', + 'Tuna', + 'Zapatos', ], }; diff --git a/src/locales/es_MX/company/adjective.ts b/src/locales/es_MX/company/adjective.ts index 405b809ee37..e3c6b1df914 100644 --- a/src/locales/es_MX/company/adjective.ts +++ b/src/locales/es_MX/company/adjective.ts @@ -1,83 +1,83 @@ export default [ + 'Actualizable', 'Adaptativo', - 'Avanzado', + 'Amigable', 'Asimilado', + 'Auto proporciona', 'Automatizado', - 'Equilibrado', + 'Avanzado', + 'Cara a cara', 'Centrado en el negocio', + 'Centrado en el usuario', 'Centralizado', 'Clonado', + 'Compartible', 'Compatible', 'Configurable', - 'Multi grupo', - 'Multi plataforma', - 'Centrado en el usuario', 'Descentralizado', 'Digitalizado', 'Distribuido', 'Diverso', - 'Reducido', - 'Mejorado', - 'Para toda la empresa', + 'En red', + 'Enfocado', + 'Enfocado a benficios', + 'Enfocado en la calidad', + 'Equilibrado', 'Ergonomico', 'Exclusivo', 'Expandido', 'Extendido', - 'Cara a cara', - 'Enfocado', - 'Totalmente configurable', 'Fundamental', - 'Orígenes', + 'Fácil', + 'Gestionado', 'Horizontal', 'Implementado', + 'Ingenieria inversa', 'Innovador', 'Integrado', + 'Intercambiable', 'Intuitivo', 'Inverso', - 'Gestionado', - 'Obligatorio', + 'Mejorado', 'Monitorizado', 'Multi canal', - 'Multi lateral', 'Multi capa', - 'En red', - 'Orientado a objetos', + 'Multi grupo', + 'Multi lateral', + 'Multi plataforma', + 'Obligatorio', + 'Opcional', 'Open-source', 'Operativo', 'Optimizado', - 'Opcional', 'Organico', 'Organizado', + 'Orientado a equipos', + 'Orientado a objetos', + 'Orígenes', + 'Para toda la empresa', 'Perseverando', 'Persistente', - 'en fases', 'Polarizado', 'Pre-emptivo', 'Proactivo', - 'Enfocado a benficios', 'Profundo', 'Programable', 'Progresivo', 'Public-key', - 'Enfocado en la calidad', - 'Reactivo', - 'Realineado', 'Re-contextualizado', 'Re-implementado', - 'Ingenieria inversa', + 'Reactivo', + 'Realineado', + 'Reducido', 'Robusto', - 'Fácil', 'Seguro', - 'Auto proporciona', - 'Compartible', - 'Intercambiable', 'Sincronizado', - 'Orientado a equipos', 'Total', + 'Totalmente configurable', 'Universal', - 'Actualizable', - 'Amigable', 'Versatil', 'Virtual', 'Visionario', + 'en fases', ]; diff --git a/src/locales/es_MX/company/buzz_adjective.ts b/src/locales/es_MX/company/buzz_adjective.ts index 11ff2a9da9f..5bd0313924e 100644 --- a/src/locales/es_MX/company/buzz_adjective.ts +++ b/src/locales/es_MX/company/buzz_adjective.ts @@ -1,66 +1,66 @@ export default [ - 'Clics y mortero', - 'Valor añadido', - 'Vertical', - 'Proactivo', - 'Robusto', - 'Revolucionario', - 'Escalable', - 'De vanguardia', - 'Innovador', - 'Intuitivo', - 'Estratégico', - 'E-business', - 'Misión crítica', - 'Pegajosa', - 'Doce y cincuenta y nueve de la noche', + '24/365', '24/7', - 'De extremo a extremo', - 'Global', + 'A medida', + 'Asesino', 'B2B', 'B2C', - 'Granular', - 'Fricción', - 'Virtual', - 'Viral', + 'Back-end', + 'Clase mundial', + 'Clics y mortero', + 'Colaboración', + 'Convincente', + 'Cross-media', + 'Código abierto', + 'De extremo a extremo', + 'De vanguardia', 'Dinámico', - '24/365', - 'Mejor de su clase', - 'Asesino', - 'Magnética', + 'Distribuida', + 'Doce y cincuenta y nueve de la noche', + 'E-business', + 'Eficiente', + 'Empresa', + 'Enchufa y juega', + 'Escalable', + 'Estratégico', + 'Extensible', 'Filo sangriento', + 'Fricción', + 'Frontal', + 'Fuera de la caja', + 'Global', + 'Granular', 'Habilitado web', + 'Holístico', + 'Impactante', + 'Inalámbrico', + 'Innovador', + 'Integrado', 'Interactiva', + 'Intuitivo', + 'Llave en mano', + 'Magnética', + 'Mejor de su clase', + 'Misión crítica', + 'Multiplataforma', + 'Pegajosa', + 'Proactivo', + 'Próxima generación', 'Punto com', + 'Revolucionario', + 'Ricos', + 'Robusto', 'Sexy', - 'Back-end', - 'Tiempo real', - 'Eficiente', - 'Frontal', - 'Distribuida', 'Sin costura', - 'Extensible', - 'Llave en mano', - 'Clase mundial', - 'Código abierto', - 'Multiplataforma', - 'Cross-media', 'Sinérgico', - 'ladrillos y clics', - 'Fuera de la caja', - 'Empresa', - 'Integrado', - 'Impactante', - 'Inalámbrico', + 'Tiempo real', 'Transparente', - 'Próxima generación', + 'Ubicua', 'User-centric', + 'Valor añadido', + 'Vertical', + 'Viral', + 'Virtual', 'Visionario', - 'A medida', - 'Ubicua', - 'Enchufa y juega', - 'Colaboración', - 'Convincente', - 'Holístico', - 'Ricos', + 'ladrillos y clics', ]; diff --git a/src/locales/es_MX/company/buzz_noun.ts b/src/locales/es_MX/company/buzz_noun.ts index 2abf0f066e6..b8f7e8e604f 100644 --- a/src/locales/es_MX/company/buzz_noun.ts +++ b/src/locales/es_MX/company/buzz_noun.ts @@ -1,46 +1,46 @@ export default [ - 'sinergias', - 'web-readiness', - 'paradigmas', - 'mercados', + 'Mindshare', + 'ROI', + 'ancho de banda', + 'aplicaciones', + 'arquitecturas', 'asociaciones', - 'infraestructuras', - 'plataformas', - 'iniciativas', + 'cadenas de suministro', 'canales', - 'ojos', 'comunidades', - 'ROI', - 'soluciones', - 'minoristas electrónicos', - 'e-servicios', - 'elementos de acción', - 'portales', - 'nichos', - 'tecnologías', 'contenido', - 'vortales', - 'cadenas de suministro', 'convergencia', - 'relaciones', - 'arquitecturas', - 'interfaces', - 'mercados electrónicos', + 'e-business', 'e-commerce', - 'sistemas', - 'ancho de banda', - 'infomediarios', - 'modelos', - 'Mindshare', + 'e-servicios', + 'elementos de acción', 'entregables', - 'usuarios', 'esquemas', - 'redes', - 'aplicaciones', - 'métricas', - 'e-business', - 'funcionalidades', 'experiencias', - 'servicios web', + 'funcionalidades', + 'infomediarios', + 'infraestructuras', + 'iniciativas', + 'interfaces', + 'mercados', + 'mercados electrónicos', 'metodologías', + 'minoristas electrónicos', + 'modelos', + 'métricas', + 'nichos', + 'ojos', + 'paradigmas', + 'plataformas', + 'portales', + 'redes', + 'relaciones', + 'servicios web', + 'sinergias', + 'sistemas', + 'soluciones', + 'tecnologías', + 'usuarios', + 'vortales', + 'web-readiness', ]; diff --git a/src/locales/es_MX/company/buzz_verb.ts b/src/locales/es_MX/company/buzz_verb.ts index 30a19214fb7..4aa3fd59326 100644 --- a/src/locales/es_MX/company/buzz_verb.ts +++ b/src/locales/es_MX/company/buzz_verb.ts @@ -1,62 +1,62 @@ export default [ - 'poner en práctica', - 'utilizar', - 'integrar', - 'racionalizar', - 'optimizar', - 'evolucionar', - 'transformar', + 'Envisioneer', 'abrazar', - 'habilitar', - 'orquestar', - 'apalancamiento', - 'reinventar', + 'acelerar', 'agregado', - 'arquitecto', - 'mejorar', - 'incentivar', - 'transformarse', - 'empoderar', - 'Envisioneer', - 'monetizar', - 'arnés', - 'facilitar', + 'apalancamiento', 'aprovechar', + 'arnés', + 'arquitecto', + 'conducir', + 'crecer', + 'cultivar', + 'desatar', 'desintermediar', - 'sinergia', - 'estrategias', 'desplegar', - 'marca', - 'crecer', - 'objetivo', - 'sindicato', - 'sintetizar', + 'e-enable', + 'empoderar', + 'enganchar', 'entregue', - 'malla', + 'escala', + 'estrategias', + 'evolucionar', + 'explotar', + 'extender', + 'facilitar', + 'generar', + 'habilitar', + 'incentivar', 'incubar', - 'enganchar', + 'ingeniero', + 'innovar', + 'integrar', + 'malla', + 'marca', + 'matriz', 'maximizar', + 'mejorar', + 'monetizar', + 'objetivo', + 'optimizar', + 'orquestar', + 'pizarra', + 'poner en práctica', + 'productize', 'punto de referencia', - 'acelerar', + 'racionalizar', + 'recontextualizar', + 'redefinir', 'reintermediate', - 'pizarra', - 'visualizar', + 'reinventar', + 'repetir', 'reutilizar', - 'innovar', - 'escala', - 'desatar', - 'conducir', - 'extender', - 'ingeniero', 'revolucionar', - 'generar', - 'explotar', + 'sindicato', + 'sinergia', + 'sintetizar', + 'transformar', + 'transformarse', 'transición', - 'e-enable', - 'repetir', - 'cultivar', - 'matriz', - 'productize', - 'redefinir', - 'recontextualizar', + 'utilizar', + 'visualizar', ]; diff --git a/src/locales/es_MX/company/descriptor.ts b/src/locales/es_MX/company/descriptor.ts index 6e3835a066d..af59a30ef3b 100644 --- a/src/locales/es_MX/company/descriptor.ts +++ b/src/locales/es_MX/company/descriptor.ts @@ -5,40 +5,41 @@ export default [ '4th generación', '5th generación', '6th generación', + 'acompasada', + 'alto nivel', + 'amplio ábanico', 'analizada', 'asimétrica', 'asíncrona', - 'monitorizada por red', + 'basado en contenido', + 'basado en el contexto', + 'basado en necesidades', 'bidireccional', 'bifurcada', - 'generada por el cliente', 'cliente servidor', 'coherente', 'cohesiva', 'compuesto', - 'sensible al contexto', - 'basado en el contexto', - 'basado en contenido', 'dedicada', - 'generado por la demanda', + 'defectos cero', 'didactica', + 'dinámica', 'direccional', 'discreta', - 'dinámica', - 'potenciada', - 'acompasada', 'ejecutiva', + 'escalable', + 'estable', + 'estatica', 'explícita', - 'tolerante a fallos', - 'innovadora', - 'amplio ábanico', + 'generada por el cliente', + 'generado por la demanda', 'global', 'heurística', - 'alto nivel', + 'hibrida', 'holística', 'homogénea', - 'hibrida', 'incremental', + 'innovadora', 'intangible', 'interactiva', 'intermedia', @@ -47,37 +48,36 @@ export default [ 'maximizada', 'metódica', 'misión crítica', - 'móbil', 'modular', + 'monitorizada por red', 'motivadora', - 'multimedia', 'multiestado', + 'multimedia', 'multitarea', + 'móbil', 'nacional', - 'basado en necesidades', 'neutral', - 'nueva generación', 'no-volátil', - 'orientado a objetos', - 'óptima', + 'nueva generación', 'optimizada', + 'orientada a soluciones', + 'orientado a objetos', + 'potenciada', 'radical', - 'tiempo real', 'recíproca', 'regional', - 'escalable', 'secundaria', - 'orientada a soluciones', - 'estable', - 'estatica', + 'sensible al contexto', 'sistemática', 'sistémica', 'tangible', 'terciaria', + 'tiempo real', + 'tolerancia cero', + 'tolerante a fallos', 'transicional', 'uniforme', 'valor añadido', 'vía web', - 'defectos cero', - 'tolerancia cero', + 'óptima', ]; diff --git a/src/locales/es_MX/company/name_pattern.ts b/src/locales/es_MX/company/name_pattern.ts index 9fd80f8a610..5abf8cba76f 100644 --- a/src/locales/es_MX/company/name_pattern.ts +++ b/src/locales/es_MX/company/name_pattern.ts @@ -1,6 +1,6 @@ export default [ - '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} y {{person.last_name}}', + '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} {{person.last_name}} {{company.suffix}}', '{{person.last_name}}, {{person.last_name}} y {{person.last_name}} Asociados', ]; diff --git a/src/locales/es_MX/company/noun.ts b/src/locales/es_MX/company/noun.ts index 48d284e0a76..85b8a603131 100644 --- a/src/locales/es_MX/company/noun.ts +++ b/src/locales/es_MX/company/noun.ts @@ -1,95 +1,95 @@ export default [ - 'habilidad', + 'Interfaz Gráfica', + 'Interfaz gráfico de usuario', + 'Soporte', 'acceso', + 'actitud', 'adaptador', 'algoritmo', 'alianza', 'analista', 'aplicación', - 'enfoque', - 'arquitectura', + 'aprovechar', 'archivo', - 'inteligencia artificial', + 'arquitectura', + 'arquitectura abierta', 'array', - 'actitud', - 'medición', - 'gestión presupuestaria', + 'base de datos', + 'base de trabajo', + 'base del conocimiento', + 'caja de herramientas', 'capacidad', - 'desafío', 'circuito', + 'codificar', 'colaboración', 'complejidad', 'concepto', 'conglomeración', + 'conjunto', + 'conjunto de instrucciones', 'contingencia', - 'núcleo', - 'fidelidad', - 'base de datos', 'data-warehouse', 'definición', + 'desafío', 'emulación', - 'codificar', 'encriptar', + 'enfoque', + 'estandardización', + 'estrategia', + 'estructura', + 'estructura de precios', 'extranet', + 'fidelidad', 'firmware', 'flexibilidad', 'focus group', - 'previsión', - 'base de trabajo', - 'función', + 'fuerza de trabajo', 'funcionalidad', - 'Interfaz Gráfica', + 'función', + 'gestión presupuestaria', 'groupware', - 'Interfaz gráfico de usuario', + 'habilidad', 'hardware', - 'Soporte', - 'jerarquía', - 'conjunto', 'implementación', 'infraestructura', 'iniciativa', 'instalación', - 'conjunto de instrucciones', + 'inteligencia artificial', 'interfaz', 'intranet', - 'base del conocimiento', - 'red de area local', - 'aprovechar', + 'jerarquía', + 'línea segura', + 'marco de tiempo', 'matrices', + 'mediante', + 'medición', 'metodologías', 'middleware', 'migración', 'modelo', 'moderador', 'monitorizar', - 'arquitectura abierta', - 'sistema abierto', + 'núcleo', 'orquestar', 'paradigma', 'paralelismo', 'política', 'portal', - 'estructura de precios', + 'previsión', 'proceso de mejora', - 'producto', 'productividad', - 'proyecto', - 'proyección', + 'producto', 'protocolo', - 'línea segura', + 'proyección', + 'proyecto', + 'red de area local', + 'sinergia', + 'sistema abierto', 'software', 'solución', - 'estandardización', - 'estrategia', - 'estructura', - 'éxito', - 'superestructura', 'soporte', - 'sinergia', - 'mediante', - 'marco de tiempo', - 'caja de herramientas', + 'superestructura', 'utilización', 'website', - 'fuerza de trabajo', + 'éxito', ]; diff --git a/src/locales/es_MX/company/suffix.ts b/src/locales/es_MX/company/suffix.ts index dd16d6a2c9d..db2b33c307b 100644 --- a/src/locales/es_MX/company/suffix.ts +++ b/src/locales/es_MX/company/suffix.ts @@ -1 +1 @@ -export default ['S.L.', 'e Hijos', 'S.A.', 'Hermanos']; +export default ['Hermanos', 'S.A.', 'S.L.', 'e Hijos']; diff --git a/src/locales/fa/commerce/department.ts b/src/locales/fa/commerce/department.ts index 92efd4a4346..1bc5af19e39 100644 --- a/src/locales/fa/commerce/department.ts +++ b/src/locales/fa/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'کتاب ها', - 'فیلم ها', - 'موزیک', - 'بازی ها', - 'الکترونیک', - 'رایانه', - 'خانه', - 'باغ', 'ابزار', - 'خواربار', - 'سلامتی', - 'زیبایی', + 'اتومبیل', 'اسباب بازی', - 'بچه ها', + 'الکترونیک', + 'بازی ها', + 'باغ', 'بچه', + 'بچه ها', + 'بیرون از خانه', 'تن پوش', - 'کفش', + 'خانه', + 'خواربار', + 'رایانه', + 'زیبایی', 'زیور آلات', - 'ورزش ها', - 'بیرون از خانه', - 'اتومبیل', + 'سلامتی', 'صنعتی', + 'فیلم ها', + 'موزیک', + 'ورزش ها', + 'کتاب ها', + 'کفش', ]; diff --git a/src/locales/fa/commerce/product_name.ts b/src/locales/fa/commerce/product_name.ts index a483d4654f6..d01ead853d0 100644 --- a/src/locales/fa/commerce/product_name.ts +++ b/src/locales/fa/commerce/product_name.ts @@ -1,56 +1,56 @@ export default { adjective: [ - 'کوچک', 'ارگونومیک', 'باهوش', - 'جذاب', 'باور نکردنی', - 'خارق العاده', - 'کاربردی', + 'بدون محدودیت', 'براق', - 'عالی', - 'معمولی', + 'جذاب', + 'خارق العاده', + 'خوش طعم', 'دست ساز', + 'عالی', 'لطیف', - 'بدون محدودیت', - 'خوش طعم', + 'معمولی', + 'کاربردی', + 'کوچک', ], material: [ 'استیل', - 'چوبی', 'بتنی', + 'تازه', + 'فلزی', + 'نرم', 'پلاستیکی', + 'چوبی', 'کتان', 'گرانیتی', - 'فلزی', - 'نرم', - 'تازه', 'یخ زده', ], product: [ - 'صندلی', - 'ماشین', - 'کامپیوتر', - 'کیبورد', - 'ماوس', - 'دوچرخه', + 'بیکن', + 'تن ماهی', 'توپ', + 'حوله', 'دستکش', + 'دوچرخه', + 'سالاد', + 'سوسیس', 'شلوار', - 'پیراهن', - 'میز', - 'کفش', - 'کلاه', - 'حوله', 'صابون', - 'تن ماهی', - 'مرغ', + 'صندلی', + 'ماشین', 'ماهی', + 'ماوس', + 'مرغ', + 'میز', 'پنیر', - 'بیکن', 'پیتزا', - 'سالاد', - 'سوسیس', + 'پیراهن', 'چیپس', + 'کامپیوتر', + 'کفش', + 'کلاه', + 'کیبورد', ], }; diff --git a/src/locales/fa/company/adjective.ts b/src/locales/fa/company/adjective.ts index cb693754023..bf7427d8fd3 100644 --- a/src/locales/fa/company/adjective.ts +++ b/src/locales/fa/company/adjective.ts @@ -1,69 +1,69 @@ export default [ + 'اجباری', + 'اختیاری', + 'ارگانیک', + 'ارگونومیک', + 'اساسی', + 'افقی', + 'امن', + 'انحصاری', 'انطباقی', - 'پیشرفته', + 'بدون درز', 'بهبود یافته', + 'بهینه شده', + 'بینایی', + 'ترقی خواه', + 'تصحیح شده', + 'تمدید شده', + 'توزیع شده', 'جذب شده', + 'خط مقدم', + 'خلاقانه', + 'خود توانمندی', 'خودکار', - 'متعادل', - 'متمرکز بر تجارت', - 'متمرکز', - 'کلون شده', - 'سازگار', - 'قابل تنظیم', - 'گروه متقابل', - 'متمرکز بر مشتری', - 'غیر متمرکز', - 'مهندسی شده', + 'درجه', 'دیجیتالی شده', - 'توزیع شده', - 'گوناگون', - 'کوچک شده', - 'ارگونومیک', - 'انحصاری', - 'منبسط', - 'تمدید شده', 'رو در رو', - 'متمرکز شده', - 'خط مقدم', - 'کاملاً قابل تنظیم', - 'مبتنی بر عملکرد', - 'اساسی', - 'ضد آینده', - 'افقی', - 'پیاده سازی شده', - 'خلاقانه', - 'یکپارچه', + 'رکود', + 'سازمان یافته', + 'سازگار', 'شهودی', - 'معکوس', - 'اجباری', - 'نظارت شده', - 'چند کاناله', - 'چند جانبی', - 'متن باز', + 'ضد آینده', 'عملیاتی', - 'بهینه شده', - 'اختیاری', - 'ارگانیک', - 'سازمان یافته', - 'پشتکار', - 'مداوم', - 'درجه', - 'قطبی', + 'غیر متمرکز', 'فعال', - 'متمرکز بر سود', - 'ژرف', 'قابل برنامه ریزی', - 'ترقی خواه', + 'قابل تنظیم', + 'قدرتمند', + 'قطبی', + 'مبتنی بر عملکرد', + 'متعادل', + 'متمرکز', + 'متمرکز بر تجارت', + 'متمرکز بر سود', + 'متمرکز بر مشتری', 'متمرکز بر کیفیت', - 'واکنش گرا', - 'تصحیح شده', - 'رکود', + 'متمرکز شده', + 'متن باز', + 'مجازی', + 'مداوم', + 'معکوس', + 'منبسط', + 'مهندسی شده', 'مهندسی معکوس', - 'قدرتمند', - 'بدون درز', - 'امن', - 'خود توانمندی', + 'نظارت شده', 'همه کاره', - 'مجازی', - 'بینایی', + 'واکنش گرا', + 'پشتکار', + 'پیاده سازی شده', + 'پیشرفته', + 'چند جانبی', + 'چند کاناله', + 'ژرف', + 'کاملاً قابل تنظیم', + 'کلون شده', + 'کوچک شده', + 'گروه متقابل', + 'گوناگون', + 'یکپارچه', ]; diff --git a/src/locales/fa/company/buzz_adjective.ts b/src/locales/fa/company/buzz_adjective.ts index ed28c7f38f1..d65225b375c 100644 --- a/src/locales/fa/company/buzz_adjective.ts +++ b/src/locales/fa/company/buzz_adjective.ts @@ -1,39 +1,39 @@ export default [ + '24/365', + '24/7', 'ارزش افزوده', - 'عمودی', - 'فعال', - 'قدرتمند', 'انقلابی', - 'مقیاس پذیر', - 'پیشرو', - 'خلاقانه', - 'شهودی', - 'راهبردی', + 'بدون اصطکاک', + 'بدون درز', + 'بینایی', 'تجارت الکترونیکی', - 'ماموریت بحرانی', - 'چسبنده', - 'یک به یک', - '24/7', + 'توزیع شده', + 'جامع', 'جهانی', + 'خلاقانه', 'دانه ای', - 'بدون اصطکاک', - 'مجازی', - 'ویروسی', - 'پویا', - '24/365', - 'مغناطیسی', + 'راهبردی', + 'سفارشی', + 'شهودی', 'عقب', - 'موثر', - 'توزیع شده', - 'بدون درز', + 'عمودی', + 'فعال', 'قابل توسعه', - 'کلاس جهانی', - 'متن باز', - 'هم افزایی', - 'بینایی', - 'سفارشی', + 'قدرتمند', + 'ماموریت بحرانی', 'مبتنی بر همکاری', 'متقاعد کننده', - 'جامع', + 'متن باز', + 'مجازی', + 'مغناطیسی', + 'مقیاس پذیر', + 'موثر', + 'هم افزایی', + 'ویروسی', 'پولدار', + 'پویا', + 'پیشرو', + 'چسبنده', + 'کلاس جهانی', + 'یک به یک', ]; diff --git a/src/locales/fa/company/buzz_noun.ts b/src/locales/fa/company/buzz_noun.ts index d68a71d7267..a65b3afd8bb 100644 --- a/src/locales/fa/company/buzz_noun.ts +++ b/src/locales/fa/company/buzz_noun.ts @@ -1,37 +1,37 @@ export default [ - 'هم افزایی', - 'بازارها', - 'شراکت', - 'زیرساخت ها', - 'پلتفرم', 'ابتکار عمل', - 'کانال ها', 'اجتماعات', - 'راه حل ها', + 'بازارها', + 'بازارهای الکترونیکی', + 'برنامه های کاربردی', + 'بلاکچین', + 'تجارت الکترونیک', + 'تجارت الکترونیکی', + 'تجربیات', + 'تحویل دادنی ها', 'خدمات الکترونیکی', - 'موارد عملی', - 'پورتال ها', + 'ذهنیت', + 'رابط ها', + 'راه حل ها', + 'روابط', + 'روش شناسی', + 'زنجیره تامین', + 'زیرساخت ها', 'سوله', + 'سیستم ها', + 'شبکه ها', + 'شراکت', 'فن آوری ها', 'محتوا', - 'زنجیره تامین', - 'همگرایی', - 'روابط', + 'مدل ها', 'معماری', - 'رابط ها', - 'بازارهای الکترونیکی', - 'تجارت الکترونیک', - 'سیستم ها', + 'موارد عملی', + 'هم افزایی', + 'همگرایی', + 'ویژگی ها', + 'پلتفرم', 'پهنای باند', - 'مدل ها', - 'ذهنیت', - 'تحویل دادنی ها', + 'پورتال ها', 'کاربران', - 'شبکه ها', - 'برنامه های کاربردی', - 'تجارت الکترونیکی', - 'ویژگی ها', - 'تجربیات', - 'روش شناسی', - 'بلاکچین', + 'کانال ها', ]; diff --git a/src/locales/fa/company/buzz_verb.ts b/src/locales/fa/company/buzz_verb.ts index aff6eaf9ec6..32c812c9f09 100644 --- a/src/locales/fa/company/buzz_verb.ts +++ b/src/locales/fa/company/buzz_verb.ts @@ -1,29 +1,29 @@ export default [ - 'پیاده سازی', - 'استفاده', + 'اختراع دوباره', 'ادغام', - 'ساده سازی', + 'استراتژی کردن', + 'استفاده', + 'استقرار', 'بهینه سازی', + 'بی تفاوت', 'تبدیل', - 'پذیرفتن', - 'فعال کردن', - 'نفوذ کردن', - 'اختراع دوباره', 'تجمیع', - 'معماری', 'تحریک کردن', - 'مورف', - 'قدرت دادن', - 'پیش بینی کننده', - 'کسب درآمد', - 'مهار', 'تسهیل کردن', 'تصاحب کردن', - 'بی تفاوت', - 'هم افزایی', - 'استراتژی کردن', - 'استقرار', - 'نام تجاری', 'رشد کردن', + 'ساده سازی', + 'فعال کردن', + 'قدرت دادن', + 'معماری', + 'مهار', + 'مورف', + 'نام تجاری', + 'نفوذ کردن', 'هدف', + 'هم افزایی', + 'پذیرفتن', + 'پیاده سازی', + 'پیش بینی کننده', + 'کسب درآمد', ]; diff --git a/src/locales/fa/company/descriptor.ts b/src/locales/fa/company/descriptor.ts index 7380e379d2b..53ff11dbdd6 100644 --- a/src/locales/fa/company/descriptor.ts +++ b/src/locales/fa/company/descriptor.ts @@ -1,46 +1,46 @@ export default [ '24 ساعت', '24/7', - 'نسل سوم', - 'نسل چهارم', - 'نسل پنجم', - 'نسل ششم', + 'اجرایی', + 'اختصاصی', + 'اموزشی', + 'انتقالی', + 'بی تفاوت', 'تجزیه و تحلیل', - 'نامتقارن', - 'ناهمگام', - 'نگرش محور', - 'پس زمینه', - 'پهنای باند پایش', + 'تحمل صفر', + 'تقاضا محور', + 'توانمند سازی', + 'ثابت', + 'جهت دار', + 'حساس به متن', + 'خطاپذيری', 'دو جهته', 'دوتایی', 'روشن اندیشی', - 'مشتری محور', + 'روند رو به بالا', 'سرویس دهنده مشتری', - 'منسجم', - 'مرکب', - 'حساس به متن', + 'سیستمی', + 'شایسته سیستم', + 'صریح', 'مبتنی بر متن', 'مبتنی بر محتوا', - 'اختصاصی', - 'تقاضا محور', - 'اموزشی', - 'جهت دار', - 'گسسته', - 'بی تفاوت', - 'پویا', + 'محسوس', 'محیط زیست', - 'توانمند سازی', - 'اجرایی', - 'صریح', - 'خطاپذيری', - 'پیش زمینه', + 'مرکب', + 'مشتری محور', + 'منسجم', + 'نامتقارن', + 'ناهمگام', + 'نسل سوم', + 'نسل ششم', + 'نسل پنجم', + 'نسل چهارم', + 'نگرش محور', 'پایدار', - 'ثابت', - 'سیستمی', - 'شایسته سیستم', - 'محسوس', - 'انتقالی', + 'پس زمینه', + 'پهنای باند پایش', + 'پویا', + 'پیش زمینه', + 'گسسته', 'یکسان', - 'روند رو به بالا', - 'تحمل صفر', ]; diff --git a/src/locales/fa/company/name_pattern.ts b/src/locales/fa/company/name_pattern.ts index e6da7479c40..5e53b5bdf75 100644 --- a/src/locales/fa/company/name_pattern.ts +++ b/src/locales/fa/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} و {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/fa/company/noun.ts b/src/locales/fa/company/noun.ts index fe81c51663d..dc8ea246651 100644 --- a/src/locales/fa/company/noun.ts +++ b/src/locales/fa/company/noun.ts @@ -1,36 +1,36 @@ export default [ - 'توانایی', - 'دسترسی', 'آداپتور', - 'الگوریتم', - 'اتحاد', - 'تحلیلگر', - 'کاربرد', - 'رویکرد', - 'معماری', - 'بایگانی', - 'هوش مصنوعی', 'آرایه', - 'نگرش', - 'معیار', - 'مدیریت بودجه', - 'قابلیت', - 'ظرفیت', - 'چالش', - 'جریان', - 'همکاری', - 'پیچیدگی', - 'مفهوم', + 'اتحاد', 'اجتماع', 'احتمالی', - 'هسته', + 'الگوریتم', + 'انعطاف پذیری', + 'اکسترانت', 'بانک اطلاعاتی', - 'پایگاه داده تحلیلی', + 'بایگانی', + 'تحلیلگر', 'تعریف', - 'شبیه سازی', + 'توانایی', + 'جریان', + 'دسترسی', 'رمزگذاری', - 'اکسترانت', + 'رویکرد', 'سیستم عامل', - 'انعطاف پذیری', + 'شبیه سازی', + 'ظرفیت', + 'قابلیت', + 'مدیریت بودجه', + 'معماری', + 'معیار', + 'مفهوم', + 'نگرش', 'نیروی کار', + 'هسته', + 'همکاری', + 'هوش مصنوعی', + 'پایگاه داده تحلیلی', + 'پیچیدگی', + 'چالش', + 'کاربرد', ]; diff --git a/src/locales/fa/company/suffix.ts b/src/locales/fa/company/suffix.ts index 0f1bb44b986..487bf0c7803 100644 --- a/src/locales/fa/company/suffix.ts +++ b/src/locales/fa/company/suffix.ts @@ -1 +1 @@ -export default ['کارخانه', 'و پسران', 'شرکت با مسئولیت محدود', 'گروه']; +export default ['شرکت با مسئولیت محدود', 'و پسران', 'کارخانه', 'گروه']; diff --git a/src/locales/fa/date/weekday.ts b/src/locales/fa/date/weekday.ts index a8427b52642..9a574a8dbcb 100644 --- a/src/locales/fa/date/weekday.ts +++ b/src/locales/fa/date/weekday.ts @@ -1,5 +1,5 @@ export default { - wide: ['شنبه', 'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پتچشنبه', 'جمعه'], + wide: ['شنبه', 'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه'], abbr: ['ش', 'ی', 'د', 'س', 'چ', 'پ', 'ج'], }; diff --git a/src/locales/fa/music/genre.ts b/src/locales/fa/music/genre.ts index 0d80c874feb..1738c9f5d1d 100644 --- a/src/locales/fa/music/genre.ts +++ b/src/locales/fa/music/genre.ts @@ -1,19 +1,19 @@ export default [ - 'راک', - 'متال', - 'پاپ', 'الکترونیک', - 'محلی', - 'جهانی', - 'کانتری', + 'بلوز', 'جاز', - 'فانک', + 'جهانی', + 'راک', + 'رپ', + 'رگه', 'سول', + 'غیرموسیقی', + 'فانک', + 'لاتین', + 'متال', + 'محلی', 'هیپ هاپ', + 'پاپ', + 'کانتری', 'کلاسیک', - 'لاتین', - 'رگه', - 'بلوز', - 'غیرموسیقی', - 'رپ', ]; diff --git a/src/locales/fa/vehicle/fuel.ts b/src/locales/fa/vehicle/fuel.ts index 64aef2df1be..1873cb51095 100644 --- a/src/locales/fa/vehicle/fuel.ts +++ b/src/locales/fa/vehicle/fuel.ts @@ -1 +1 @@ -export default ['دیزل', 'الکتریکی', 'بنزین', 'هیبرید']; +export default ['الکتریکی', 'بنزین', 'دیزل', 'هیبرید']; diff --git a/src/locales/fa/vehicle/manufacturer.ts b/src/locales/fa/vehicle/manufacturer.ts index 9d13a53058b..c8d2b07bfee 100644 --- a/src/locales/fa/vehicle/manufacturer.ts +++ b/src/locales/fa/vehicle/manufacturer.ts @@ -1,30 +1,30 @@ export default [ - 'شورولت', - 'کادیلاک', - 'فورد', - 'کرایسلر', - 'دوج', - 'جیپ', - 'تسلا', - 'تویوتا', - 'هوندا', - 'نیسان', 'آٔ‌ئودی', - 'مرسدس بنز', - 'بی ام و', - 'ولکس واگن', - 'پورشه', - 'جگوار', 'استون مارتین', - 'لندرور', 'بنتلی', - 'مینی', + 'بوگاتی', + 'بی ام و', + 'تسلا', + 'تویوتا', + 'جگوار', + 'جیپ', + 'دوج', 'رولز رویس', + 'شورولت', + 'فراری', + 'فورد', 'فیات', 'لامبورگینی', + 'لندرور', 'مازراتی', - 'فراری', - 'بوگاتی', - 'کیا', + 'مرسدس بنز', + 'مینی', + 'نیسان', + 'هوندا', 'هیوندای', + 'ولکس واگن', + 'پورشه', + 'کادیلاک', + 'کرایسلر', + 'کیا', ]; diff --git a/src/locales/fa/vehicle/model.ts b/src/locales/fa/vehicle/model.ts index f1f8f370a15..a2738bbb1ef 100644 --- a/src/locales/fa/vehicle/model.ts +++ b/src/locales/fa/vehicle/model.ts @@ -1,37 +1,37 @@ export default [ - 'فیستا', - 'فوکوس', - 'تاروس', - 'موستانگ', + '911', + 'آلتیما', + 'آلپاین', + 'آکورد', + 'اسپایدر', + 'اسکالید', + 'المنت', + 'اونتادور', 'اکسپلورر', - 'کروز', - 'مالیبو', 'ایمپالا', - 'کامارو', - 'کروت', - 'کولورادو', + 'تاروس', + 'جتا', + 'رانگلر', + 'رودستر', + 'سنترا', 'سیلورادو', - 'اسکالید', - 'آلپاین', + 'سیویک', + 'فوکوس', + 'فیستا', + 'لندکروزر', + 'مالیبو', + 'مورسیه لاگو', + 'موستانگ', + 'پریوس', 'چارجر', 'چلنجر', - 'رانگلر', - 'گرند چروکی', - 'رودستر', + 'کامارو', + 'کروت', + 'کروز', 'کمری', - 'پریوس', - 'لندکروزر', - 'آکورد', - 'سیویک', - 'المنت', - 'سنترا', - 'آلتیما', - 'یبتل', - 'جتا', - 'گلف', - '911', - 'اسپایدر', + 'کولورادو', 'کونتاچ', - 'مورسیه لاگو', - 'اونتادور', + 'گرند چروکی', + 'گلف', + 'یبتل', ]; diff --git a/src/locales/fa/vehicle/type.ts b/src/locales/fa/vehicle/type.ts index a0c3718cc15..1bbff022d04 100644 --- a/src/locales/fa/vehicle/type.ts +++ b/src/locales/fa/vehicle/type.ts @@ -1,10 +1,10 @@ export default [ - 'ون', - 'کوپه', - 'پیکاپ', + 'استیشن', + 'سدان', + 'شاسی بلند', 'مینی ون', + 'ون', 'ون مسافرتی', - 'شاسی بلند', - 'سدان', - 'استیشن', + 'پیکاپ', + 'کوپه', ]; diff --git a/src/locales/fr/commerce/department.ts b/src/locales/fr/commerce/department.ts index 4e1e2a4a539..2eba868e777 100644 --- a/src/locales/fr/commerce/department.ts +++ b/src/locales/fr/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'Livres', + 'Automobile', + 'Beauté', + 'Bijoux', + 'Bébé', + 'Chaussures', + 'Electronique', + 'Enfants', 'Films', - 'Musique', + 'Industrie', + 'Jardin', 'Jeux', - 'Electronique', - 'Ordinateurs', + 'Jouets', + 'Livres', 'Maison', - 'Jardin', + 'Musique', + 'Ordinateurs', 'Outils', - 'Épicerie', + 'Plein air', 'Santé', - 'Beauté', - 'Jouets', - 'Enfants', - 'Bébé', - 'Vêtements', - 'Chaussures', - 'Bijoux', 'Sports', - 'Plein air', - 'Automobile', - 'Industrie', + 'Vêtements', + 'Épicerie', ]; diff --git a/src/locales/fr/commerce/product_description.ts b/src/locales/fr/commerce/product_description.ts index aeb2a71b249..be5ec7ba297 100644 --- a/src/locales/fr/commerce/product_description.ts +++ b/src/locales/fr/commerce/product_description.ts @@ -1,16 +1,16 @@ export default [ - "Ces médailles et épingles sont en argent avec patine artistique. Elles ont été composées et frappées spécialement dans les ateliers de l'État pour la Société l'Hirondelle.", + 'Bicyclette à 1 vitesse, pneus 1/2 ballon. Cadre de 52cm. Jantes chromées. Roue Hore. Moyeux indéréglables. 2 freins sur jantes. Guidon trials. Garde-boue et couvre chaine en acier émaillé. Porte-bagages. Gardejupes. Pédales à blocs caoutchouc. Émail couleur. Selle route cuir. Sacoche avec outillage. Pompe de cadre. Timbre avertisseur.', 'Cadre raccord brasé de 53 ou 58 %. Jantes en acier émaillées. Pneus “Hiron” 700 x 35, garantis 12 mois. Pignon roue libre à emboitement hexagonal. Frein “Hirondelle” sur jante arrière. Garde-boue métal.', - "Montre-bracelet, dite “d'Aviateur”, métal inaltérable, diam. 435ym. Mouvement de précision chronographe, cadran avec grande aiguille trotteuse, permettant la lecture 1/25de seconde.", + "Carrosserie en tôle d'acier laqué blanc montée sur roues pour faciliter le déplacement, couvercle laqué blanc, dessus et cuve en métal émaille marron, inaltérable a l'eau de lessive et a la chaleur,", + "Ce magnifique radio-phono comprend un excellent récepteur radioL'ensemble, dans une belle ébénisterie teintée palissandre, forme un très phonique 6 lampes et un tourne-disque de vitesses placé sous le couvercle. Beau meuble. Ce modèle, dont le montage particulièrement soigne assure un très bon rendement aussi bien en radio qu'en phono, est garanti mn an.", + "Ces médailles et épingles sont en argent avec patine artistique. Elles ont été composées et frappées spécialement dans les ateliers de l'État pour la Société l'Hirondelle.", "Lanterne cuivre fort, finement nickelé, chute d'eau réglable, suspension antivibratrice, projecteur diamètre cm2, avec verre bombé. Durée d'éclairage 3 heures. Poids 395 grammes.", 'Lunettes étanches, monture caoutchouc moulé de 1re qual. glaces rondes de 55 mm de diam. en verre clair. Les lunettes protègent les yeux contre les poussières, fumées et gaz industriels et se portent av. nos masques 5862-5864. Pds 60 gr.', - "Carrosserie en tôle d'acier laqué blanc montée sur roues pour faciliter le déplacement, couvercle laqué blanc, dessus et cuve en métal émaille marron, inaltérable a l'eau de lessive et a la chaleur,", - 'Bicyclette à 1 vitesse, pneus 1/2 ballon. Cadre de 52cm. Jantes chromées. Roue Hore. Moyeux indéréglables. 2 freins sur jantes. Guidon trials. Garde-boue et couvre chaine en acier émaillé. Porte-bagages. Gardejupes. Pédales à blocs caoutchouc. Émail couleur. Selle route cuir. Sacoche avec outillage. Pompe de cadre. Timbre avertisseur.', - 'Petite griffe à sarcler. 5 dents en acier, largeur 8 cm. poignée estampée, longueur 26 cm. poids 150 gr. Pour ameublir le sol, arracher les herbes entre les plantes ou fleurs cultivées en lignes rapprochées.', - 'Moteur Villiers. Puissance au frein : 7 HP, 3 vitesses, lancement au pied, éclairage électrique, carrosserie 2 places, coffre à outils, outillage complet, capote et pare-brise.', 'Maillot en coton fin à rayures se boutonnant devant pour enfants.', + "Montre-bracelet, dite “d'Aviateur”, métal inaltérable, diam. 435ym. Mouvement de précision chronographe, cadran avec grande aiguille trotteuse, permettant la lecture 1/25de seconde.", + 'Moteur Villiers. Puissance au frein : 7 HP, 3 vitesses, lancement au pied, éclairage électrique, carrosserie 2 places, coffre à outils, outillage complet, capote et pare-brise.', + 'Petite griffe à sarcler. 5 dents en acier, largeur 8 cm. poignée estampée, longueur 26 cm. poids 150 gr. Pour ameublir le sol, arracher les herbes entre les plantes ou fleurs cultivées en lignes rapprochées.', "Rasoir de sûreté “Prima” tout en laiton massif nickelé chromé, manche moleté bien en main. Peigne et contre-peigne galbés tenant tout d'une pièce, fermeture à charnière, blocage instantané de la lame.", - "Ce magnifique radio-phono comprend un excellent récepteur radioL'ensemble, dans une belle ébénisterie teintée palissandre, forme un très phonique 6 lampes et un tourne-disque de vitesses placé sous le couvercle. Beau meuble. Ce modèle, dont le montage particulièrement soigne assure un très bon rendement aussi bien en radio qu'en phono, est garanti mn an.", "Récepteurs de télévision à haute définition 819 lignes, donnant une image très nette et d'un contraste agréable ne fatiguant pas la vue, le montage de la partie radio donne un son absolument remarquable.", 'Tous nos appareils sont blindés pour que leur rayonnement ne trouble pas les récepteurs radiophoniques, et ils fonctionnent sur courant alternatif 50 riodes 110 et 220 volts. Ils sont garantis pendant 1 an; toutefois, suivant la règle, le tube cathodique est garanti pour 6 mois seulement.', ]; diff --git a/src/locales/fr/commerce/product_name.ts b/src/locales/fr/commerce/product_name.ts index c8af2bb4696..d5bed088f77 100644 --- a/src/locales/fr/commerce/product_name.ts +++ b/src/locales/fr/commerce/product_name.ts @@ -1,67 +1,67 @@ export default { adjective: [ - 'Petit', + 'Artisanal', 'Ergonomique', - 'Électronique', - 'Rustique', - 'Intelligent', - 'Magnifique', - 'Incroyable', - 'Élégant', + 'Fait main', 'Fantastique', - 'Pratique', - 'Moderne', - 'Recyclé', - 'Sur mesure', 'Génial', 'Générique', - 'Artisanal', - 'Fait main', - 'Oriental', + 'Incroyable', + 'Intelligent', 'Licencié', 'Luxueux', + 'Magnifique', + 'Moderne', + 'Oriental', + 'Petit', + 'Pratique', 'Raffiné', + 'Recyclé', + 'Rustique', 'Sans marque', 'Savoureux', + 'Sur mesure', + 'Électronique', + 'Élégant', ], material: [ 'Acier', - 'Bronze', 'Bois', + 'Bronze', 'Béton', - 'Plastique', - 'Coton', - 'Granit', 'Caoutchouc', - 'Métal', + 'Congelé', + 'Coton', 'Doux', 'Frais', - 'Congelé', + 'Granit', + 'Métal', + 'Plastique', ], product: [ - 'Chaise', - 'Voiture', - 'Ordinateur', - 'Clavier', - 'Souris', - 'Vélo', 'Boule', - 'Gants', - 'Pantalon', - 'Chemise', - 'Table', - 'Chaussures', + 'Chaise', 'Chapeau', - 'Serviettes', - 'Savon', - 'Thon', - 'Poulet', - 'Poisson', + 'Chaussures', + 'Chemise', + 'Clavier', + 'Frites', 'Fromage', + 'Gants', 'Lard', + 'Ordinateur', + 'Pantalon', 'Pizza', + 'Poisson', + 'Poulet', 'Salade', 'Saucisses', - 'Frites', + 'Savon', + 'Serviettes', + 'Souris', + 'Table', + 'Thon', + 'Voiture', + 'Vélo', ], }; diff --git a/src/locales/fr/company/name_pattern.ts b/src/locales/fr/company/name_pattern.ts index f55055258ba..75ae6b7d3f7 100644 --- a/src/locales/fr/company/name_pattern.ts +++ b/src/locales/fr/company/name_pattern.ts @@ -1,4 +1,4 @@ export default [ - '{{person.last_name}} {{company.suffix}}', '{{person.last_name}} et {{person.last_name}}', + '{{person.last_name}} {{company.suffix}}', ]; diff --git a/src/locales/fr/company/suffix.ts b/src/locales/fr/company/suffix.ts index 0d83cebefda..924f8fa7c19 100644 --- a/src/locales/fr/company/suffix.ts +++ b/src/locales/fr/company/suffix.ts @@ -1 +1 @@ -export default ['SARL', 'SA', 'EURL', 'SAS', 'SEM', 'SCOP', 'GIE', 'EI']; +export default ['EI', 'EURL', 'GIE', 'SA', 'SARL', 'SAS', 'SCOP', 'SEM']; diff --git a/src/locales/fr/music/genre.ts b/src/locales/fr/music/genre.ts index 21fac42b065..db156a61d58 100644 --- a/src/locales/fr/music/genre.ts +++ b/src/locales/fr/music/genre.ts @@ -1,20 +1,20 @@ export default [ - 'Rock', - 'Metal', - 'Pop', - 'Électronique', - 'Folk', - 'World', + 'Blues', + 'Classique', 'Country', - 'Jazz', + 'Folk', 'Funk', - 'Soul', 'Hip Hop', - 'Classique', + 'Jazz', 'Latine', - 'Reggae', - 'Blues', + 'Lofi', + 'Metal', + 'Pop', 'Rap', + 'Reggae', + 'Rock', + 'Soul', 'Variété', - 'Lofi', + 'World', + 'Électronique', ]; diff --git a/src/locales/fr/vehicle/bicycle_type.ts b/src/locales/fr/vehicle/bicycle_type.ts index b4f2b9adc94..eb7ac8119c5 100644 --- a/src/locales/fr/vehicle/bicycle_type.ts +++ b/src/locales/fr/vehicle/bicycle_type.ts @@ -19,13 +19,10 @@ export default [ 'Tricycle couché', 'Triplette', 'Triporteur', - 'Vélo à assistance électrique', - 'Vélo à voile', 'Vélo cargo', 'Vélo couché', 'Vélo de piste', 'Vélo de route', - 'Vélo électrique', 'Vélo en bambou', 'Vélo fantôme', 'Vélo festif', @@ -33,10 +30,13 @@ export default [ 'Vélo pliant', 'Vélo tout chemin', 'Vélo tout-terrain', + 'Vélo à assistance électrique', + 'Vélo à voile', + 'Vélo électrique', + 'Vélo-taxi', 'Vélocar', 'Vélocipède', 'Vélocipèdraisiavaporianna', 'Vélomobile', - 'Vélo-taxi', 'Whike', ]; diff --git a/src/locales/fr/vehicle/fuel.ts b/src/locales/fr/vehicle/fuel.ts index 5950a4eee74..df1f40916f8 100644 --- a/src/locales/fr/vehicle/fuel.ts +++ b/src/locales/fr/vehicle/fuel.ts @@ -1 +1 @@ -export default ['Diesel', 'Électrique', 'Essence', 'Hybride']; +export default ['Diesel', 'Essence', 'Hybride', 'Électrique']; diff --git a/src/locales/fr/vehicle/type.ts b/src/locales/fr/vehicle/type.ts index 1930bb42529..db79d2f129d 100644 --- a/src/locales/fr/vehicle/type.ts +++ b/src/locales/fr/vehicle/type.ts @@ -1,13 +1,13 @@ export default [ + 'Berlines', + 'Berlines compactes', + 'Citadines polyvalentes', + 'Grands monospaces', 'Micro-urbaines', 'Mini-citadines', - 'Citadines polyvalentes', - 'Berlines compactes', - 'Berlines', - 'SUV', - 'Tout-terrains', - 'Pick-up', 'Minispaces', 'Monospaces compacts', - 'Grands monospaces', + 'Pick-up', + 'SUV', + 'Tout-terrains', ]; diff --git a/src/locales/he/commerce/department.ts b/src/locales/he/commerce/department.ts index 4a254fe8290..8bf1ffbe294 100644 --- a/src/locales/he/commerce/department.ts +++ b/src/locales/he/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'ספרים', - 'סרטים', - 'מוסיקה', - 'משחקים', - 'מכשירי חשמל', - 'מחשבים', + 'ביגוד', 'בית', - 'גן', - 'כלים', - 'מכולת', 'בריאות', + 'גן', 'יופי', - 'צעצועים', 'ילדים', - 'תִינוֹק', - 'ביגוד', + 'כלים', + 'מוסיקה', + 'מחוץ לבית', + 'מחשבים', + 'מכולת', + 'מכשירי חשמל', + 'משחקים', 'נעליים', - 'תכשיטים', 'ספורט', - 'מחוץ לבית', + 'ספרים', + 'סרטים', + 'צעצועים', 'רכב', + 'תִינוֹק', + 'תכשיטים', 'תעשייתי', ]; diff --git a/src/locales/he/commerce/product_description.ts b/src/locales/he/commerce/product_description.ts index 39ae917e526..366ff59dd09 100644 --- a/src/locales/he/commerce/product_description.ts +++ b/src/locales/he/commerce/product_description.ts @@ -1,14 +1,14 @@ export default [ - 'כסא מנהלים ארגונומי מרופד בעור שחור מלוכדות ובמושב ובגב מרופד PVC לנוחות ותמיכה לאורך כל היום', - 'מערך הרכב מורכב מעיצוב מנוע קדמי, עם תיבות הילוכים מסוג ציר טרנסוולר המותקנות בחלק האחורי של המנוע והנעה עם ארבעה גלגלים', - 'חדש ABC 13 9370, 13.3, דור 5 CoreA5-8250U, 8GB RAM, 256GB SSD, כוח UHD גרפיקה, OS 10 Home, OS Office A & J 2016', - 'מקלדת מייפל גיימינג דקה ופשוטה מבית Dev Byte מגיעה עם גוף אלגנטי ותאורת RGB LED בגוון 7 צבעים לפונקציונליות חכמה', 'אפולוטק B340 הוא עכבר אלחוטי במחיר סביר עם קישוריות אמינה, חיי סוללה של 12 חודשים ועיצוב מודרני', - 'נאגסאקי לנדר הוא השם המסחרי המסחרי של מספר סדרות של אופני ספורט נגסאקי, שהחלו ב- ABC800J משנת 1984', 'הכדורגל טוב לאימונים ולמטרות פנאי', - 'כפפות שוער רשת קרבוניט מעוצבות באופן ארגונומי בכדי להעניק התאמה קלה', + 'המגוון היפה של תפוח נטורל שיש בו שילוב מרגש של מרכיבים טבעיים. עם הטוב של 100% מרכיבים טבעיים', + 'חדש ABC 13 9370, 13.3, דור 5 CoreA5-8250U, 8GB RAM, 256GB SSD, כוח UHD גרפיקה, OS 10 Home, OS Office A & J 2016', 'טכנולוגיית שחיקת הדחיסה המתקדמת ביותר של בוסטון מגבירה את החמצון בשרירים, מייצבת שרירים פעילים', + 'כסא מנהלים ארגונומי מרופד בעור שחור מלוכדות ובמושב ובגב מרופד PVC לנוחות ותמיכה לאורך כל היום', + 'כפפות שוער רשת קרבוניט מעוצבות באופן ארגונומי בכדי להעניק התאמה קלה', 'מגוון חדש של חולצות רשמיות מעוצבות תוך התחשבות בך. עם התאמות ועיצוב שיגרמו לך להתבלט', - 'המגוון היפה של תפוח נטורל שיש בו שילוב מרגש של מרכיבים טבעיים. עם הטוב של 100% מרכיבים טבעיים', + 'מערך הרכב מורכב מעיצוב מנוע קדמי, עם תיבות הילוכים מסוג ציר טרנסוולר המותקנות בחלק האחורי של המנוע והנעה עם ארבעה גלגלים', + 'מקלדת מייפל גיימינג דקה ופשוטה מבית Dev Byte מגיעה עם גוף אלגנטי ותאורת RGB LED בגוון 7 צבעים לפונקציונליות חכמה', + 'נאגסאקי לנדר הוא השם המסחרי המסחרי של מספר סדרות של אופני ספורט נגסאקי, שהחלו ב- ABC800J משנת 1984', 'נעלי אנדי נועדו לזכור עמידות כמו גם טרנדים, מגוון הנעליים והסנדלים המסוגננים ביותר', ]; diff --git a/src/locales/he/commerce/product_name.ts b/src/locales/he/commerce/product_name.ts index 69ee21f6dc7..d4f6a15d287 100644 --- a/src/locales/he/commerce/product_name.ts +++ b/src/locales/he/commerce/product_name.ts @@ -1,58 +1,58 @@ export default { adjective: [ - 'קטן', + 'אינטליגנטי', 'ארגונומי', + 'גנרית', + 'טעים', 'כפרי', - 'אינטליגנטי', + 'לא ממותג', + 'מְזוּקָק', 'מאוד יפה', 'מדהים', - 'פנטסטי', - 'מעשי', + 'מורשה', 'מלוטש', - 'גנרית', + 'מעשי', 'עבודת יד', - 'מורשה', - 'מְזוּקָק', - 'לא ממותג', - 'טעים', + 'פנטסטי', + 'קטן', ], material: [ - 'פלדה', - 'עץ', 'בטון', - 'פלסטי', - 'כותנה', - 'גרניט', 'גומי', + 'גרניט', + 'כותנה', 'מתכת', - 'רך', + 'עץ', + 'פלדה', + 'פלסטי', 'צַח', 'קפוא', + 'רך', ], product: [ - 'כיסא', 'אוטו', - 'מחשב', - 'מקלדת', - 'עכבר', 'אופניים', + 'בייקון', + 'גבינה', + 'דג', + 'חולצה', + 'טונה', 'כדור', + 'כובע', + 'כיסא', 'כפפות', + 'מגבות', + 'מחשב', 'מכנסיים', - 'חולצה', - 'שולחן', + 'מקלדת', 'נעליים', - 'כובע', - 'מגבות', + 'נקניקיות', 'סבון', - 'טונה', + 'סלט', 'עוף', - 'דג', - 'גבינה', - 'בייקון', + 'עכבר', 'פיצה', - 'סלט', - 'נקניקיות', "צ'יפס", + 'שולחן', ], }; diff --git a/src/locales/he/music/genre.ts b/src/locales/he/music/genre.ts index e9ee9076cf6..8c822af28c3 100644 --- a/src/locales/he/music/genre.ts +++ b/src/locales/he/music/genre.ts @@ -1,22 +1,22 @@ export default [ - 'רוק', - 'רוק מטאלי', - 'פופ', 'אלקטרוני', - 'מוזיקת עם', - 'מוזיקת עולם', - 'קאנטרי', + 'בלוז', + 'במה ומסך', "ג'אז", - 'פאנק', - 'נשמה', + 'האוס', 'היפ הופ', - 'קלאסית', - 'לטינית', - 'רגאיי', - 'במה ומסך', - 'בלוז', + 'טראנס', 'לא מוסיקה', + 'לטינית', + 'מוזיקת עולם', + 'מוזיקת עם', + 'נשמה', + 'פאנק', + 'פופ', + 'קאנטרי', + 'קלאסית', 'ראפ', - 'טראנס', - 'האוס', + 'רגאיי', + 'רוק', + 'רוק מטאלי', ]; diff --git a/src/locales/hu/commerce/department.ts b/src/locales/hu/commerce/department.ts index 3ccf1a4ee5b..92ae8f62a9a 100644 --- a/src/locales/hu/commerce/department.ts +++ b/src/locales/hu/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'Könyv', + 'Autó', + 'Baba', + 'Cipő', + 'Egészség', + 'Elektronika', 'Film', - 'Zene', + 'Gyermek', + 'Ipari', 'Játék', - 'Elektronika', - 'Számítógép', - 'Otthon', - 'Kert', - 'Szerszám', - 'Élelmiszer', - 'Egészség', - 'Szépség', 'Játékszer', - 'Gyermek', - 'Baba', + 'Kert', + 'Könyv', + 'Otthon', 'Ruházat', - 'Cipő', - 'Ékszer', 'Sport', 'Szabadban', - 'Autó', - 'Ipari', + 'Szerszám', + 'Számítógép', + 'Szépség', + 'Zene', + 'Ékszer', + 'Élelmiszer', ]; diff --git a/src/locales/hu/commerce/product_description.ts b/src/locales/hu/commerce/product_description.ts index 6604c76bc95..5833c53ddcb 100644 --- a/src/locales/hu/commerce/product_description.ts +++ b/src/locales/hu/commerce/product_description.ts @@ -1,14 +1,14 @@ export default [ - 'Ergonomikus főnöki szék ragasztott fekete bőrrel és PVC párnázott üléssel és háttámlával az egész napos kényelemért és támogatásért', - 'Az autó elrendezése az első motorból áll, a motor hátuljára szerelt áthelyezett kardántengelyű típusú sebességváltókkal és négykerék-hajtással', - 'Új ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Grafika, OS 10 Home, OS Office A & J 2016', 'A Dev Byte vékony és egyszerű Maple Gaming billentyűzete elegáns testtel és 7 színű RGB LED-es háttérvilágítással rendelkezik az intelligens funkcionalitás érdekében', - 'Az Apollotech B340 egy megfizethető vezetékmentes egér, megbízható kapcsolattal, 12 hónapos akkumulátoridővel és modern dizájnnal', 'A Nagasaki Lander több Nagasaki sportkerékpár-sorozat védjegyzett neve, amelyek az 1984-es ABC800J-vel indultak', + 'A formális ingek új sorozatát Önt szem előtt tartva terveztük. Illeszkedéssel és stílussal, amellyel kitűnik a tömegből', 'A futball edzésre és szabadidős célokra is jó', 'A karbonithálós kapuskesztyűk ergonomikus kialakításúak, hogy könnyen illeszkedjenek', - 'Boston legfejlettebb kompressziós-viselet technológiája növeli az izmok oxigénellátását, stabilizálja az aktív izmokat', - 'A formális ingek új sorozatát Önt szem előtt tartva terveztük. Illeszkedéssel és stílussal, amellyel kitűnik a tömegből', - 'Az Apple Naturalé termékcsaládja, amely természetes összetevők izgalmas keverékét tartalmazza. 100%-ban természetes összetevőkkel', 'Az Andy cipőket a tartósságot és a trendeket szem előtt tartva tervezték, a cipők és szandálok legstílusosabb választéka', + 'Az Apollotech B340 egy megfizethető vezetékmentes egér, megbízható kapcsolattal, 12 hónapos akkumulátoridővel és modern dizájnnal', + 'Az Apple Naturalé termékcsaládja, amely természetes összetevők izgalmas keverékét tartalmazza. 100%-ban természetes összetevőkkel', + 'Az autó elrendezése az első motorból áll, a motor hátuljára szerelt áthelyezett kardántengelyű típusú sebességváltókkal és négykerék-hajtással', + 'Boston legfejlettebb kompressziós-viselet technológiája növeli az izmok oxigénellátását, stabilizálja az aktív izmokat', + 'Ergonomikus főnöki szék ragasztott fekete bőrrel és PVC párnázott üléssel és háttámlával az egész napos kényelemért és támogatásért', + 'Új ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Grafika, OS 10 Home, OS Office A & J 2016', ]; diff --git a/src/locales/hu/commerce/product_name.ts b/src/locales/hu/commerce/product_name.ts index 5da9784bbee..95d64b720f8 100644 --- a/src/locales/hu/commerce/product_name.ts +++ b/src/locales/hu/commerce/product_name.ts @@ -1,60 +1,60 @@ export default { adjective: [ - 'Kicsi', + 'Csodás', + 'Engedélyezett', 'Ergonomikus', - 'Rusztikus', - 'Intelligens', + 'Fantasztikus', + 'Finom', 'Gyönyörű', 'Hihetetlen', - 'Fantasztikus', - 'Praktikus', - 'Sima', - 'Csodás', - 'Általános', + 'Intelligens', + 'Kicsi', + 'Kifinomult', 'Kézműves', 'Kézzel készített', - 'Engedélyezett', - 'Kifinomult', 'Márka nélküli', - 'Finom', + 'Praktikus', + 'Rusztikus', + 'Sima', + 'Általános', ], material: [ 'Acél', - 'Fa', 'Beton', - 'Műanyag', - 'Pamut', + 'Fa', + 'Fagyott', + 'Friss', + 'Fém', 'Gránit', 'Gumi', - 'Fém', + 'Műanyag', + 'Pamut', 'Puha', - 'Friss', - 'Fagyott', ], product: [ - 'Szék', + 'Asztal', 'Autó', - 'Számítógép', - 'Billentyűzet', - 'Egér', 'Bicikli', - 'Labda', - 'Kesztyű', - 'Nadrág', - 'Ing', - 'Asztal', + 'Billentyűzet', 'Cipő', - 'Kalap', - 'Törölköző', - 'Szappan', - 'Tonhal', + 'Csipsz', 'Csirke', + 'Egér', 'Hal', - 'Sajt', - 'Szalonna', + 'Ing', + 'Kalap', + 'Kesztyű', + 'Labda', + 'Nadrág', 'Pizza', + 'Sajt', 'Saláta', + 'Szalonna', + 'Szappan', + 'Számítógép', + 'Szék', + 'Tonhal', + 'Törölköző', 'Virsli', - 'Csipsz', ], }; diff --git a/src/locales/hu/company/name_pattern.ts b/src/locales/hu/company/name_pattern.ts index 1bf8edbc6af..20a485a8335 100644 --- a/src/locales/hu/company/name_pattern.ts +++ b/src/locales/hu/company/name_pattern.ts @@ -1,6 +1,6 @@ export default [ + '{{person.last_name}} 2000 {{company.suffix}}', '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}} és {{person.last_name}} {{company.suffix}}', '{{person.last_name}} és Tsa. {{company.suffix}}', - '{{person.last_name}} 2000 {{company.suffix}}', + '{{person.last_name}} és {{person.last_name}} {{company.suffix}}', ]; diff --git a/src/locales/hu/company/suffix.ts b/src/locales/hu/company/suffix.ts index 584776b5861..a6a07131e74 100644 --- a/src/locales/hu/company/suffix.ts +++ b/src/locales/hu/company/suffix.ts @@ -1 +1 @@ -export default ['Kft.', 'Bt.', 'Zrt.', 'Nyrt.', 'Kv.', 'Kkt.']; +export default ['Bt.', 'Kft.', 'Kkt.', 'Kv.', 'Nyrt.', 'Zrt.']; diff --git a/src/locales/hu/word/adjective.ts b/src/locales/hu/word/adjective.ts index 7fb3ffb7e5e..be5ea5002f2 100644 --- a/src/locales/hu/word/adjective.ts +++ b/src/locales/hu/word/adjective.ts @@ -1,7 +1,4 @@ export default [ - 'Bayes-féle', - 'Costa-Rica-i', - 'New York-i', 'abház', 'abidjani', 'ablakmosó', @@ -22,7 +19,6 @@ export default [ 'akadálymentesített', 'akadályozatlan', 'akadémikus', - 'alacsonyrendű', 'alakítható', 'alakító', 'alapvető', @@ -30,13 +26,10 @@ export default [ 'alkalmazási', 'alkirályi', 'alkoholos', - 'alkotmánysértő', 'alkotómunka', 'almaszerű', 'almatermésű', 'alulírott', - 'amcsi', - 'analeptikus', 'analitikai', 'andalító', 'angolai', @@ -54,18 +47,13 @@ export default [ 'apróbirtok', 'aprófejű', 'aprószén', - 'apátlan', 'aranyfényű', 'aranysarkantyús', 'argentin', - 'ari', 'arisztokrata', - 'ariánus', - 'arminiánus', 'aromán', 'aránytalan', 'asszámi', - 'aszfaltbetyár', 'aszimptotikus', 'asztronómiai', 'atomhajtású', @@ -86,21 +74,17 @@ export default [ 'barátkozós', 'baszk', 'bazaltkeménységű', - 'beavatott', 'becses', 'becsületes', 'behízelgő', - 'belenyugvó', 'beláthatatlan', 'belátó', 'bemenő', - 'benga', 'beszámíthatatlan', 'besúgó', 'betintázott', 'betűrendi', 'bevakolt', - 'bibircsókos', 'bikonvex', 'bilabiális', 'biológiai', @@ -125,7 +109,6 @@ export default [ 'brüsszeli', 'budapesti', 'bukó', - 'burjánzó', 'bábjátékos', 'bécsi', 'béna', @@ -142,7 +125,6 @@ export default [ 'bűntudatos', 'centripetális', 'cirmos', - 'csalafinta', 'csapadékdús', 'csapzott', 'csattanós', @@ -184,7 +166,6 @@ export default [ 'derült', 'derűs', 'desztillált', - 'dicstelen', 'diófaszín', 'diószín', 'dolgos', @@ -211,22 +192,18 @@ export default [ 'egyszemű', 'egyszerű', 'egyszerűsített', - 'eladatlan', 'elasztikus', 'elektronikus', 'elengedhetetlen', 'elfogadó', 'elfogyasztható', - 'elgázosított', 'elismert', 'elit', 'elkerülhetetlen', 'elképesztő', - 'elkínzott', 'elleni', 'elmenő', 'elmerengő', - 'elnőiesedett', 'elsejei', 'elsőrendű', 'eltévedt', @@ -236,52 +213,35 @@ export default [ 'elvégezhető', 'elérhetetlen', 'elérésű', - 'elítélendő', - 'elítélő', 'előrelátó', 'elősegítő', - 'emberevő', 'emberfölötti', - 'embertelen', - 'embrionális', 'emlős', 'emocionális', 'emészthető', 'engesztelhetetlen', 'erdélyi', 'erezett', - 'erőszakolt', 'esetlen', - 'esküszegő', - 'eszeveszett', 'eszméletlen', 'esőcsináló', 'európai', 'exponenciális', - 'extrémista', 'ezüstszürke', 'fagyott', 'fakózöld', 'farizeusi', - 'fasé', - 'fatális', 'fecsegő', - 'fedett', - 'fedezetlen', 'fegyelmi', 'fejedelmi', 'fejlett', 'fejnehéz', 'felelősségteljes', - 'felfordult', - 'felfújható', 'felhasználó', - 'felháborító', 'felkészületlen', 'fellebbező', 'felszabadult', 'felszarvazott', - 'felszívó', 'feltételes', 'feltételezhető', 'feltűnő', @@ -291,7 +251,6 @@ export default [ 'fennkölt', 'ferde', 'fertőtlenítő', - 'feszes', 'fidzsi', 'filippínó', 'firenzei', @@ -308,7 +267,6 @@ export default [ 'furmányos', 'futtatható', 'fáradságos', - 'fárszi', 'fás', 'fás szárú', 'féllábú', @@ -322,22 +280,13 @@ export default [ 'galambtermészetű', 'galambősz', 'galiciai', - 'gazos', - 'gerinctelen', 'gigantikus', 'girnyó', 'gondolkodó', 'gondterhelt', - 'gubancos', 'gutturális', 'gyakorító', 'gyantás', - 'gyarmati', - 'gyarmatosító', - 'gyengeelméjű', - 'gyermekbarát', - 'gyermekkori', - 'gyermekágyi', 'gyári', 'gyógyszerészi', 'gyökeres', @@ -352,7 +301,6 @@ export default [ 'gőzerejű', 'hadifontosságú', 'hajhász', - 'hajléktalan', 'hajlíthatatlan', 'halandó', 'hallucinogén', @@ -372,13 +320,11 @@ export default [ 'határtalan', 'havas', 'hawaii', - 'hazafiatlan', 'hegyes', 'hegyi', 'helyiérdekű', 'hengeres', 'heraldikai', - 'heruszk', 'hetes', 'hetyke', 'higgadt', @@ -405,7 +351,6 @@ export default [ 'ibolyakék', 'ibolyaszínű', 'idegen', - 'idegengyűlölő', 'idegroncs', 'idevonatkozó', 'ifjúsági', @@ -455,13 +400,10 @@ export default [ 'keleties', 'keményfejű', 'kenyérkereső', - 'keresetlen', 'keresztény', - 'kerge', 'kezdő', 'kibírhatatlan', 'kicsapongó', - 'kietlen', 'kilences', 'kimeríthetetlen', 'kimért', @@ -474,7 +416,6 @@ export default [ 'kivehető', 'klarinétos', 'klasszisjátékos', - 'klimaxos', 'kockás', 'kockázatmentes', 'kolumbiai', @@ -491,11 +432,8 @@ export default [ 'kozmopolita', 'kukás', 'kulcsrakész', - 'kulturálatlan', 'kumulatív', - 'kutyafejű', 'kutyaütő', - 'káros', 'kék', 'kényeskedő', 'képzelő', @@ -504,9 +442,7 @@ export default [ 'kérdő', 'kéregető', 'kérészéletű', - 'kérődző', 'későbbi', - 'kételkedő', 'kéthónapos', 'kétirányú', 'kétkötetes', @@ -539,15 +475,12 @@ export default [ 'lebilincselő', 'legelső', 'legendás', - 'legyengített', - 'legyengült immunrendszerű', 'legyőzött', 'lehangolt', 'lehetetlen', 'lekerekített', 'leleményes', 'lelki', - 'leprás', 'lepusztult', 'letehetetlen', 'levegős', @@ -555,11 +488,9 @@ export default [ 'leveses', 'leírhatatlan', 'leírt', - 'locska', 'lovagi', 'lármás', 'látogató', - 'lázas', 'légibeteg', 'légkondicionált', 'légmentes', @@ -580,11 +511,7 @@ export default [ 'mechanikus', 'megadó', 'megalapozatlan', - 'megalázott', - 'megalázó', - 'megbízhatatlan', 'megegyező', - 'megelégedett', 'megengedett', 'megerőltető', 'megfeszített', @@ -601,22 +528,17 @@ export default [ 'megvénült', 'megátalkodott', 'meleg', - 'mellkasi', 'mellső', 'mennyei', 'mesés', 'mesüge', - 'meztelen', 'mezőgazdasági', - 'migrénellenes', 'mikrobás', 'mikroszkopikus', 'mindennemű', 'mindkét', 'minősíthetetlen', 'mocsaras', - 'mocskos', - 'modortalan', 'mokány', 'moldáv', 'mozgalmas', @@ -679,7 +601,6 @@ export default [ 'orosz', 'osztható', 'osztrák–magyar', - 'otthontalan', 'palatális', 'pandzsábi', 'parancsoló', @@ -701,10 +622,8 @@ export default [ 'pszichoaktív', 'páratlan', 'pártatlan', - 'pénztelen', 'pépes', 'pókhálószerű', - 'radikális', 'ragyogó', 'raszta', 'reakciós', @@ -716,10 +635,8 @@ export default [ 'revideált', 'robbanékony', 'rojtos', - 'ronda', 'rostgazdag', 'ruhátlan', - 'ruszki', 'rusznyák', 'rátarti', 'rázós', @@ -742,7 +659,6 @@ export default [ 'sugárzásmérő', 'szabad szájú', 'szabályszerű', - 'szagló', 'szaglósejt', 'szakértői', 'szalonképes', @@ -775,7 +691,6 @@ export default [ 'szvázi', 'szálkás', 'számszerű', - 'szánalmas', 'származó', 'százszázalékos', 'szénsavas', @@ -862,7 +777,6 @@ export default [ 'túrós', 'tükröző', 'türkiz', - 'tőkeszegény', 'udvari', 'ultraibolya', 'ultraliberális', @@ -925,7 +839,6 @@ export default [ 'ábécés', 'ágas', 'államalkotó', - 'államfogoly', 'államférfiúi', 'állatövi', 'állhatatlan', diff --git a/src/locales/hu/word/adverb.ts b/src/locales/hu/word/adverb.ts index 7c05b7398b1..d41e78b4ff0 100644 --- a/src/locales/hu/word/adverb.ts +++ b/src/locales/hu/word/adverb.ts @@ -1,5 +1,4 @@ export default [ - 'Európa-szerte', 'abbizony', 'abszolúte', 'ad esempio', @@ -129,7 +128,6 @@ export default [ 'balra', 'balról', 'barátságosan', - 'bazi', 'be', 'befele', 'befelé', @@ -188,7 +186,6 @@ export default [ 'dafke', 'darabokra', 'de', - 'derekasan', 'doszt', 'drámaian', 'durván', @@ -315,7 +312,6 @@ export default [ 'futólagosan', 'fájdalommentesen', 'fásultan', - 'féktelenül', 'félelmetesen', 'félig', 'félig-meddig', @@ -369,7 +365,6 @@ export default [ 'hazafelé', 'helyet', 'helyette', - 'hetedíziglen', 'hetente', 'hevesen', 'hibásan', @@ -429,7 +424,6 @@ export default [ 'istenigazában', 'istentelenül', 'itten', - 'ivarosan', 'izromban', 'jelenleg', 'jelentősen', diff --git a/src/locales/hu/word/noun.ts b/src/locales/hu/word/noun.ts index d0d0ae2f786..97ffc609275 100644 --- a/src/locales/hu/word/noun.ts +++ b/src/locales/hu/word/noun.ts @@ -1,5 +1,4 @@ export default [ - 'AIDS-fertőzés', 'Boudan-Fourier-tétel', 'Duna-menti berkenye', 'Fibonacci-sorozat', @@ -24,7 +23,6 @@ export default [ 'adószedő', 'agyagművesség', 'agyalapi mirigy', - 'agyonlövetés', 'agytörzs', 'ahimsza', 'ajakrúzs', @@ -124,8 +122,6 @@ export default [ 'bizsu', 'bojkottálás', 'bolondéria', - 'bolsevizmus', - 'bombázás', 'bonbonmeggy', 'bonszai', 'borostyán', @@ -163,7 +159,6 @@ export default [ 'cifra lemezestapló', 'cikászfélék', 'cimpa', - 'cionizmus', 'csaplárné', 'csatangolás', 'csavargás', @@ -232,7 +227,6 @@ export default [ 'ellensúly', 'ellentűz', 'ellenáramlat', - 'elmebeteg', 'elmegyógyászat', 'elmeorvos', 'elosztó', @@ -240,9 +234,7 @@ export default [ 'előboltosulás', 'előidény', 'emancipáció', - 'emberrabló', 'embervér', - 'emberölés', 'embriológia', 'endometriózis', 'endotoxin', @@ -640,7 +632,6 @@ export default [ 'négyszög', 'névházasság', 'növekedés', - 'nőgyűlölet', 'nőszirom', 'ocsmányság', 'olajbarna pókhálósgomba', diff --git a/src/locales/hu/word/verb.ts b/src/locales/hu/word/verb.ts index 292fcaaf7c1..8e22df87eb9 100644 --- a/src/locales/hu/word/verb.ts +++ b/src/locales/hu/word/verb.ts @@ -1,5 +1,4 @@ export default [ - 'Sablon:hunige2', 'acélosít', 'adomázgat', 'aduttoz', @@ -10,7 +9,6 @@ export default [ 'agyonsújt', 'agyonsül', 'agyonázik', - 'akadályoztat', 'akkumulál', 'alkoholizál', 'alulexponál', @@ -22,7 +20,6 @@ export default [ 'asszisztál', 'asszociál', 'barcog', - 'baszakszik', 'beborul', 'bebútorozkodik', 'becsekkol', @@ -100,7 +97,6 @@ export default [ 'böffent', 'bújik', 'bőszül', - 'bűvészkedik', 'cedál', 'cigánykerekezik', 'cikiz', @@ -121,7 +117,6 @@ export default [ 'csomósodik', 'csordogál', 'csurdít', - 'csápol', 'csévél', 'csíp', 'csörgedezik', @@ -354,7 +349,6 @@ export default [ 'gondoskodik', 'gyakorlatozik', 'gyarapodik', - 'gyilkol', 'gyújtogat', 'gyülekezik', 'gyűr', @@ -646,7 +640,6 @@ export default [ 'meghagy', 'meghajlik', 'meghiúsít', - 'meghág', 'megháromszoroz', 'megháromszorozódik', 'meghülyül', @@ -820,7 +813,6 @@ export default [ 'szerel', 'szerelmesedik', 'szeretkezik', - 'szexel', 'szigetel', 'szilárdul', 'szilárdít', @@ -953,7 +945,6 @@ export default [ 'áhítatoskodik', 'álmosít', 'áraszt', - 'átbasz', 'átfagy', 'átharap', 'áthat', @@ -976,7 +967,6 @@ export default [ 'ível', 'ízlel', 'óv', - 'öldös', 'öntöz', 'összebarátkozik', 'összedől', diff --git a/src/locales/id_ID/company/name_pattern.ts b/src/locales/id_ID/company/name_pattern.ts index ac47d1823c3..369545b9aa1 100644 --- a/src/locales/id_ID/company/name_pattern.ts +++ b/src/locales/id_ID/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{company.prefix}} {{person.last_name}}', - '{{person.last_name}} {{company.suffix}}', '{{company.prefix}} {{person.last_name}} {{company.suffix}}', + '{{person.last_name}} {{company.suffix}}', ]; diff --git a/src/locales/id_ID/company/prefix.ts b/src/locales/id_ID/company/prefix.ts index 4f1c50c41c3..99298c841e3 100644 --- a/src/locales/id_ID/company/prefix.ts +++ b/src/locales/id_ID/company/prefix.ts @@ -1 +1 @@ -export default ['PT', 'CV', 'UD', 'PD', 'Perum', 'Fa', 'Yayasan', 'KKB']; +export default ['CV', 'Fa', 'KKB', 'PD', 'PT', 'Perum', 'UD', 'Yayasan']; diff --git a/src/locales/it/company/adjective.ts b/src/locales/it/company/adjective.ts index 2cbd588bcb1..a27ecc6cf71 100644 --- a/src/locales/it/company/adjective.ts +++ b/src/locales/it/company/adjective.ts @@ -1,36 +1,29 @@ export default [ '24 ore', '24/7', - 'terza generazione', - 'quarta generazione', - 'quinta generazione', - 'sesta generazione', + 'alto livello', 'asimmetrica', 'asincrona', 'background', + 'basata sul contenuto', + 'basta sul contesto', 'bi-direzionale', 'biforcata', 'bottom-line', 'coerente', 'coesiva', 'composita', - 'sensibile al contesto', - 'basta sul contesto', - 'basata sul contenuto', 'dedicata', 'didattica', + 'dinamica', 'direzionale', 'discreta', - 'dinamica', 'eco-centrica', 'esecutiva', 'esplicita', + 'euristica', 'full-range', 'globale', - 'euristica', - 'alto livello', - 'olistica', - 'omogenea', 'ibrida', 'impattante', 'incrementale', @@ -45,15 +38,19 @@ export default [ 'mobile', 'modulare', 'motivazionale', - 'multimedia', 'multi-tasking', + 'multimedia', 'nazionale', 'neutrale', 'nextgeneration', 'non-volatile', 'object-oriented', + 'olistica', + 'omogenea', 'ottima', 'ottimizzante', + 'quarta generazione', + 'quinta generazione', 'radicale', 'real-time', 'reciproca', @@ -61,11 +58,14 @@ export default [ 'responsiva', 'scalabile', 'secondaria', - 'stabile', - 'statica', + 'sensibile al contesto', + 'sesta generazione', 'sistematica', 'sistemica', + 'stabile', + 'statica', 'tangibile', + 'terza generazione', 'terziaria', 'uniforme', 'valore aggiunto', diff --git a/src/locales/it/company/buzz_adjective.ts b/src/locales/it/company/buzz_adjective.ts index 058482923b6..d71f9468933 100644 --- a/src/locales/it/company/buzz_adjective.ts +++ b/src/locales/it/company/buzz_adjective.ts @@ -1,48 +1,48 @@ export default [ - 'valore aggiunto', - 'verticalizzate', - 'proattive', - 'forti', - 'rivoluzionari', - 'scalabili', - 'innovativi', - 'intuitivi', - 'strategici', - 'e-business', - 'mission-critical', '24/7', - 'globali', 'B2B', 'B2C', - 'granulari', - 'virtuali', - 'virali', - 'dinamiche', - 'magnetiche', - 'web', - 'interattive', - 'sexy', 'back-end', - 'real-time', - 'efficienti', - 'front-end', + 'collaborative', + 'cross-platform', + 'cutting-edge', + 'di impatto', + 'dinamiche', 'distributivi', + 'e-business', + 'efficienti', + 'enterprise', 'estensibili', + 'forti', + 'front-end', + 'globali', + 'granulari', + 'innovativi', + 'integrate', + 'interattive', + 'intuitivi', + 'magnetiche', + 'mission-critical', 'mondiali', + 'next-generation', + 'olistiche', 'open-source', - 'cross-platform', - 'sinergiche', 'out-of-the-box', - 'enterprise', - 'integrate', - 'di impatto', - 'wireless', - 'trasparenti', - 'next-generation', - 'cutting-edge', - 'visionari', 'plug-and-play', - 'collaborative', - 'olistiche', + 'proattive', + 'real-time', 'ricche', + 'rivoluzionari', + 'scalabili', + 'sexy', + 'sinergiche', + 'strategici', + 'trasparenti', + 'valore aggiunto', + 'verticalizzate', + 'virali', + 'virtuali', + 'visionari', + 'web', + 'wireless', ]; diff --git a/src/locales/it/company/buzz_noun.ts b/src/locales/it/company/buzz_noun.ts index 80898f42c41..dcbd60fa465 100644 --- a/src/locales/it/company/buzz_noun.ts +++ b/src/locales/it/company/buzz_noun.ts @@ -1,28 +1,28 @@ export default [ - 'partnerships', - 'comunità', 'ROI', - 'soluzioni', - 'e-services', - 'nicchie', - 'tecnologie', + 'applicazioni', + 'architetture', + 'comunità', 'contenuti', - 'supply-chains', 'convergenze', - 'relazioni', - 'architetture', + 'e-business', + 'e-commerce', + 'e-services', + 'esperienze', + 'funzionalità', 'interfacce', 'mercati', - 'e-commerce', - 'sistemi', + 'metodologie', + 'metriche', 'modelli', - 'schemi', + 'nicchie', + 'partnerships', + 'relazioni', 'reti', - 'applicazioni', - 'metriche', - 'e-business', - 'funzionalità', - 'esperienze', + 'schemi', + 'sistemi', + 'soluzioni', + 'supply-chains', + 'tecnologie', 'webservices', - 'metodologie', ]; diff --git a/src/locales/it/company/buzz_verb.ts b/src/locales/it/company/buzz_verb.ts index 8766ff1ed8f..14983022c88 100644 --- a/src/locales/it/company/buzz_verb.ts +++ b/src/locales/it/company/buzz_verb.ts @@ -1,30 +1,30 @@ export default [ - 'implementate', - 'utilizzo', - 'integrate', - 'ottimali', - 'evolutive', 'abilitate', - 'reinventate', + 'accrescitive', 'aggregate', - 'migliorate', + 'deploy', + 'estensioni', + 'evolutive', + 'exploit', + 'generate', + 'guida', + 'implementate', 'incentivate', + 'innovazione', + 'integrate', + 'marchi', + 'massimizzate', + 'matrici', + 'migliorate', 'monetizzate', + 'ottimali', + 'reinventate', + 'ricontestualizzate', 'sinergizzate', - 'strategiche', - 'deploy', - 'marchi', - 'accrescitive', - 'target', 'sintetizzate', 'spedizioni', - 'massimizzate', - 'innovazione', - 'guida', - 'estensioni', - 'generate', - 'exploit', + 'strategiche', + 'target', 'transizionali', - 'matrici', - 'ricontestualizzate', + 'utilizzo', ]; diff --git a/src/locales/it/company/descriptor.ts b/src/locales/it/company/descriptor.ts index a88e87e5d55..598e7cc3d9f 100644 --- a/src/locales/it/company/descriptor.ts +++ b/src/locales/it/company/descriptor.ts @@ -1,39 +1,40 @@ export default [ 'adattiva', - 'avanzata', - 'migliorata', 'assimilata', 'automatizzata', + 'avanzata', 'bilanciata', 'centralizzata', 'compatibile', + 'condivisibile', 'configurabile', 'cross-platform', 'decentralizzata', 'digitalizzata', 'distribuita', - 'piccola', 'ergonomica', 'esclusiva', 'espansa', 'estesa', 'fondamentale', - 'orizzontale', + 'gestita', 'implementata', 'innovativa', 'integrata', 'intuitiva', 'inversa', - 'gestita', - 'obbligatoria', + 'migliorata', 'monitorata', 'multi-canale', 'multi-laterale', + 'obbligatoria', 'open-source', 'operativa', - 'ottimizzata', 'organica', + 'orizzontale', + 'ottimizzata', 'persistente', + 'piccola', 'polarizzata', 'proattiva', 'programmabile', @@ -44,11 +45,10 @@ export default [ 'ridotta', 'robusta', 'sicura', - 'condivisibile', - 'stand-alone', - 'switchabile', 'sincronizzata', 'sinergica', + 'stand-alone', + 'switchabile', 'totale', 'universale', 'user-friendly', diff --git a/src/locales/it/company/name_pattern.ts b/src/locales/it/company/name_pattern.ts index a413c532b9d..091a6ebeef3 100644 --- a/src/locales/it/company/name_pattern.ts +++ b/src/locales/it/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}} {{company.suffix}}', '{{person.last_name}}, {{person.last_name}} e {{person.last_name}} {{company.suffix}}', + '{{person.last_name}}-{{person.last_name}} {{company.suffix}}', ]; diff --git a/src/locales/it/company/noun.ts b/src/locales/it/company/noun.ts index 78dc1ccf722..c3824f4fd23 100644 --- a/src/locales/it/company/noun.ts +++ b/src/locales/it/company/noun.ts @@ -8,49 +8,47 @@ export default [ 'Applicazione', 'Approccio', 'Architettura', + 'Architettura aperta', 'Archivio', - 'Intelligenza artificiale', 'Array', 'Attitudine', 'Benchmark', 'Capacità', - 'Sfida', 'Circuito', + 'Codifica', 'Collaborazione', 'Complessità', 'Concetto', 'Conglomerato', + 'Conoscenza base', 'Contingenza', 'Core', - 'Database', + 'Criptazione', 'Data-warehouse', + 'Database', 'Definizione', 'Emulazione', - 'Codifica', - 'Criptazione', + 'Finestra temporale', 'Firmware', 'Flessibilità', - 'Previsione', + 'Forza lavoro', 'Frame', - 'framework', - 'Funzione', 'Funzionalità', - 'Interfaccia grafica', + 'Funzione', + 'Gerarchia', 'Hardware', 'Help-desk', - 'Gerarchia', 'Hub', 'Implementazione', 'Infrastruttura', 'Iniziativa', 'Installazione', - 'Set di istruzioni', + 'Intelligenza artificiale', 'Interfaccia', - 'Soluzione internet', + 'Interfaccia grafica', 'Intranet', - 'Conoscenza base', - 'Matrici', 'Matrice', + 'Matrici', 'Metodologia', 'Middleware', 'Migrazione', @@ -58,34 +56,36 @@ export default [ 'Moderazione', 'Monitoraggio', 'Moratoria', - 'Rete', - 'Architettura aperta', - 'Sistema aperto', 'Orchestrazione', 'Paradigma', 'Parallelismo', 'Policy', 'Portale', - 'Struttura di prezzo', + 'Previsione', 'Prodotto', 'Produttività', 'Progetto', 'Proiezione', 'Protocollo', + 'Rete', 'Servizio clienti', + 'Set di istruzioni', + 'Sfida', + 'Sinergia', + 'Sistema aperto', + 'Sito web', 'Software', 'Soluzione', + 'Soluzione internet', + 'Sovrastruttura', 'Standardizzazione', 'Strategia', + 'Strumenti', 'Struttura', + 'Struttura di prezzo', 'Successo', - 'Sovrastruttura', 'Supporto', - 'Sinergia', 'Task-force', - 'Finestra temporale', - 'Strumenti', 'Utilizzazione', - 'Sito web', - 'Forza lavoro', + 'framework', ]; diff --git a/src/locales/it/company/suffix.ts b/src/locales/it/company/suffix.ts index 894bb6a5ec5..94ec942eebd 100644 --- a/src/locales/it/company/suffix.ts +++ b/src/locales/it/company/suffix.ts @@ -1 +1 @@ -export default ['SPA', 'e figli', 'Group', 's.r.l.']; +export default ['Group', 'SPA', 'e figli', 's.r.l.']; diff --git a/src/locales/ja/company/category.ts b/src/locales/ja/company/category.ts index fa12000875c..e675a9a79d3 100644 --- a/src/locales/ja/company/category.ts +++ b/src/locales/ja/company/category.ts @@ -1,15 +1,15 @@ export default [ - '水産', - '農林', - '鉱業', - '建設', - '食品', - '印刷', - '電気', 'ガス', + '保険', + '印刷', + '建設', '情報', + '水産', + '農林', '通信', '運輸', + '鉱業', '銀行', - '保険', + '電気', + '食品', ]; diff --git a/src/locales/ja/company/type.ts b/src/locales/ja/company/type.ts index f3ff4c7f5f5..71250e42fff 100644 --- a/src/locales/ja/company/type.ts +++ b/src/locales/ja/company/type.ts @@ -1 +1 @@ -export default ['株式会社', '有限会社', '合名会社', '合資会社', '合同会社']; +export default ['合同会社', '合名会社', '合資会社', '有限会社', '株式会社']; diff --git a/src/locales/ka_GE/company/name_pattern.ts b/src/locales/ka_GE/company/name_pattern.ts index 51e9f464c6a..bfbf1f1f983 100644 --- a/src/locales/ka_GE/company/name_pattern.ts +++ b/src/locales/ka_GE/company/name_pattern.ts @@ -1,7 +1,7 @@ export default [ '{{company.prefix}} {{person.first_name}}', + '{{company.prefix}} {{person.first_name}} {{company.suffix}}', '{{company.prefix}} {{person.last_name}}', '{{company.prefix}} {{person.last_name}} {{company.suffix}}', - '{{company.prefix}} {{person.first_name}} {{company.suffix}}', '{{company.prefix}} {{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/ka_GE/company/prefix.ts b/src/locales/ka_GE/company/prefix.ts index fa00c0d5f29..bc4226dec3e 100644 --- a/src/locales/ka_GE/company/prefix.ts +++ b/src/locales/ka_GE/company/prefix.ts @@ -1 +1 @@ -export default ['შპს', 'სს', 'ააიპ', 'სსიპ']; +export default ['ააიპ', 'სს', 'სსიპ', 'შპს']; diff --git a/src/locales/ka_GE/company/suffix.ts b/src/locales/ka_GE/company/suffix.ts index eb74fff311b..b917f22d8e5 100644 --- a/src/locales/ka_GE/company/suffix.ts +++ b/src/locales/ka_GE/company/suffix.ts @@ -1 +1 @@ -export default ['ჯგუფი', 'და კომპანია', 'სტუდია', 'გრუპი']; +export default ['გრუპი', 'და კომპანია', 'სტუდია', 'ჯგუფი']; diff --git a/src/locales/ko/company/suffix.ts b/src/locales/ko/company/suffix.ts index c7523d1df67..6c1ad012ec0 100644 --- a/src/locales/ko/company/suffix.ts +++ b/src/locales/ko/company/suffix.ts @@ -1,12 +1,12 @@ export default [ - '연구소', '게임즈', + '공사', '그룹', - '전자', '물산', - '코리아', - '공사', - '증권', + '연구소', '은행', + '전자', '중공업', + '증권', + '코리아', ]; diff --git a/src/locales/lv/commerce/department.ts b/src/locales/lv/commerce/department.ts index 57fc3815f85..dc9e9064c58 100644 --- a/src/locales/lv/commerce/department.ts +++ b/src/locales/lv/commerce/department.ts @@ -1,23 +1,23 @@ export default [ - 'Grāmatu', - 'Filmu', - 'Mūzikas', - 'Spēļu', - 'Elektronikas', - 'Datoru', - 'Mājas', - 'Dārzkopības', + 'Apavu', + 'Apģerba', + 'Auto', 'Bakaleja', - 'Veselības', - 'Skaistuma', - 'Rotaļlietu', 'Bērnu', - 'Zīdaiņu', - 'Apģerba', - 'Apavu', + 'Datoru', 'Dārglietu', + 'Dārzkopības', + 'Elektronikas', + 'Filmu', + 'Grāmatu', + 'Mājas', + 'Mūzikas', + 'Rotaļlietu', + 'Rūpniecības', + 'Skaistuma', 'Sporta', + 'Spēļu', 'Tūrisma', - 'Auto', - 'Rūpniecības', + 'Veselības', + 'Zīdaiņu', ]; diff --git a/src/locales/lv/commerce/product_name.ts b/src/locales/lv/commerce/product_name.ts index df19c7715de..e98f79be62f 100644 --- a/src/locales/lv/commerce/product_name.ts +++ b/src/locales/lv/commerce/product_name.ts @@ -1,48 +1,48 @@ export default { adjective: [ - 'Mazs', + 'Ciets', 'Ergonomisks', - 'Raupjš', - 'Vieds', + 'Fantastisks', 'Lielisks', + 'Mazs', + 'Mīksts', 'Neticams', - 'Fantastisks', 'Praktisks', - 'Spalvains', - 'Ciets', - 'Mīksts', + 'Raupjš', 'Rūgts', + 'Spalvains', + 'Vieds', ], material: [ - 'dzelzs', - 'koka', 'betona', - 'plastmasas', - 'kokvilnas', + 'dzelzs', 'granīta', 'gumijas', + 'koka', + 'kokvilnas', + 'plastmasas', ], product: [ - 'krēsls', 'auto', + 'ceļarullis', 'dators', - 'siksna', - 'gredzens', - 'galds', 'džemperis', - 'zābaks', + 'galds', + 'gredzens', 'kažoks', - 'radio', - 'skaļrunis', + 'krēsls', 'monitors', - 'televizors', - 'skapis', - 'ritenis', - 'plakāts', - 'ceļarullis', 'nazis', + 'plakāts', 'plāksteris', - 'telefons', 'pončiks', + 'radio', + 'ritenis', + 'siksna', + 'skapis', + 'skaļrunis', + 'telefons', + 'televizors', + 'zābaks', ], }; diff --git a/src/locales/lv/company/name_pattern.ts b/src/locales/lv/company/name_pattern.ts index d963ca20c6f..b705e782dcd 100644 --- a/src/locales/lv/company/name_pattern.ts +++ b/src/locales/lv/company/name_pattern.ts @@ -1,7 +1,7 @@ export default [ + '{{company.prefix}} {{person.female_last_name}} {{company.suffix}}', '{{company.prefix}} {{person.male_last_name}}', '{{company.prefix}} {{person.male_last_name}} {{company.suffix}}', - '{{company.prefix}} {{person.female_last_name}} {{company.suffix}}', '{{person.male_last_name}} un {{person.male_last_name}}', '{{person.male_last_name}}, {{person.male_last_name}} un {{person.male_last_name}}', ]; diff --git a/src/locales/lv/company/prefix.ts b/src/locales/lv/company/prefix.ts index 5a7d96f9cfd..0fdfda5a2c7 100644 --- a/src/locales/lv/company/prefix.ts +++ b/src/locales/lv/company/prefix.ts @@ -1 +1 @@ -export default ['SIA', 'AS', 'IU', 'Bezp.Org.', 'Firma', 'Biedrība']; +export default ['AS', 'Bezp.Org.', 'Biedrība', 'Firma', 'IU', 'SIA']; diff --git a/src/locales/lv/company/suffix.ts b/src/locales/lv/company/suffix.ts index 233c2f308ef..6b2e35fe2c3 100644 --- a/src/locales/lv/company/suffix.ts +++ b/src/locales/lv/company/suffix.ts @@ -1 +1 @@ -export default ['un partneri', 'holdings', 'grupa', 'aģentūra']; +export default ['aģentūra', 'grupa', 'holdings', 'un partneri']; diff --git a/src/locales/mk/company/name_pattern.ts b/src/locales/mk/company/name_pattern.ts index edd34a66d4b..077b00ba1fc 100644 --- a/src/locales/mk/company/name_pattern.ts +++ b/src/locales/mk/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ - '{{person.last_name}} {{company.suffix}}', '{{location.city_name}} {{company.suffix}}', + '{{person.last_name}} {{company.suffix}}', '{{person.last_name}}, {{person.last_name}} и {{person.last_name}}', ]; diff --git a/src/locales/mk/company/suffix.ts b/src/locales/mk/company/suffix.ts index 8edbb813b29..73cfb294214 100644 --- a/src/locales/mk/company/suffix.ts +++ b/src/locales/mk/company/suffix.ts @@ -1 +1 @@ -export default ['ДОО', 'ДООЕЛ', 'АД', 'ТП']; +export default ['АД', 'ДОО', 'ДООЕЛ', 'ТП']; diff --git a/src/locales/nb_NO/commerce/department.ts b/src/locales/nb_NO/commerce/department.ts index 6c134bcdcc6..6161370b4c9 100644 --- a/src/locales/nb_NO/commerce/department.ts +++ b/src/locales/nb_NO/commerce/department.ts @@ -11,10 +11,10 @@ export default [ 'Klær', 'Leker', 'Musikk', - 'Sko', 'Skjønnhet', - 'Spill', + 'Sko', 'Smykker', + 'Spill', 'Sport', 'Verktøy', ]; diff --git a/src/locales/nb_NO/company/name_pattern.ts b/src/locales/nb_NO/company/name_pattern.ts index 0e33c6fed95..6c6368999a8 100644 --- a/src/locales/nb_NO/company/name_pattern.ts +++ b/src/locales/nb_NO/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} og {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/nb_NO/company/suffix.ts b/src/locales/nb_NO/company/suffix.ts index 83bcb70e321..b49c76ae3d2 100644 --- a/src/locales/nb_NO/company/suffix.ts +++ b/src/locales/nb_NO/company/suffix.ts @@ -1 +1 @@ -export default ['Gruppen', 'AS', 'ASA', 'BA', 'RFH', 'og Sønner']; +export default ['AS', 'ASA', 'BA', 'Gruppen', 'RFH', 'og Sønner']; diff --git a/src/locales/ne/company/suffix.ts b/src/locales/ne/company/suffix.ts index 522b6ee2caf..3c326565977 100644 --- a/src/locales/ne/company/suffix.ts +++ b/src/locales/ne/company/suffix.ts @@ -1 +1 @@ -export default ['Pvt Ltd', 'Group', 'Ltd', 'Limited']; +export default ['Group', 'Limited', 'Ltd', 'Pvt Ltd']; diff --git a/src/locales/nl/commerce/department.ts b/src/locales/nl/commerce/department.ts index 1b0c4f93147..a7e785be226 100644 --- a/src/locales/nl/commerce/department.ts +++ b/src/locales/nl/commerce/department.ts @@ -1,24 +1,24 @@ export default [ + 'Auto', + 'Baby', + 'Beauty', 'Boeken', - 'Films', - 'Muziek', - 'Spelletjes', - 'Elektronica', 'Computers', - 'Huis', - 'Tuin', + 'Elektronica', + 'Films', 'Gereedschap', - 'Kruiden', 'Gezondheid', - 'Beauty', - 'Speelgoed', + 'Huis', + 'Industrieel', 'Kinderen', - 'Baby', 'Kleding', + 'Kruiden', + 'Muziek', 'Schoenen', 'Sieraden', + 'Speelgoed', + 'Spelletjes', 'Sport', + 'Tuin', 'Verzorging', - 'Auto', - 'Industrieel', ]; diff --git a/src/locales/nl/commerce/product_description.ts b/src/locales/nl/commerce/product_description.ts index 49cd4b05705..ac706cfd09e 100644 --- a/src/locales/nl/commerce/product_description.ts +++ b/src/locales/nl/commerce/product_description.ts @@ -1,14 +1,14 @@ export default [ - 'Ergonomische directiestoel bekleed met zwart leer en een met pvc gevoerde zitting en rugleuning voor comfort en ondersteuning de hele dag door', - 'De indeling van de auto bestaat uit een ontwerp met voorin geplaatste motor, met transmissies van het transaxle-type achter de motor en vierwielaandrijving', - 'Nieuwe ABC 13 9370, 13.3, 5e Gen CoreA5-8250U, 8GB RAM, 256GB SSD, krachtige UHD Graphics, OS 10 Home, OS Office A & J 2016', - 'Het slanke en eenvoudige Maple Gaming-toetsenbord van Dev Byte wordt geleverd met een gestroomlijnde behuizing en 7-kleuren RGB LED-achtergrondverlichting met slimme functionaliteit', + 'Andy-schoenen zijn ontworpen om zowel duurzaamheid als trends in gedachten te houden, het meest stijlvolle assortiment schoenen en sandalen', 'De Apollotech B340 is een betaalbare draadloze muis met betrouwbare connectiviteit, een batterijlevensduur van 12 maanden en een modern ontwerp', 'De Nagasaki Lander is de merknaam van verschillende series Nagasaki-sportmotoren, die begon met de ABC800J uit 1984', - 'De voetbal is goed voor trainings- en recreatiedoeleinden', + 'De indeling van de auto bestaat uit een ontwerp met voorin geplaatste motor, met transmissies van het transaxle-type achter de motor en vierwielaandrijving', 'De keepershandschoenen van Carbonite Web zijn ergonomisch ontworpen voor een goede pasvorm', 'De meest geavanceerde compressietechnologie van Boston verhoogt de zuurstoftoevoer naar de spieren en stabiliseert actieve spieren', + 'De voetbal is goed voor trainings- en recreatiedoeleinden', + 'Ergonomische directiestoel bekleed met zwart leer en een met pvc gevoerde zitting en rugleuning voor comfort en ondersteuning de hele dag door', 'Het nieuwe assortiment formele overhemden is ontworpen met u in gedachten. Met pasvormen en stijlen waarmee u opvalt', 'Het prachtige assortiment van Apple Naturalé met een spannende mix van natuurlijke ingrediënten. Met het goede van 100% natuurlijke ingrediënten', - 'Andy-schoenen zijn ontworpen om zowel duurzaamheid als trends in gedachten te houden, het meest stijlvolle assortiment schoenen en sandalen', + 'Het slanke en eenvoudige Maple Gaming-toetsenbord van Dev Byte wordt geleverd met een gestroomlijnde behuizing en 7-kleuren RGB LED-achtergrondverlichting met slimme functionaliteit', + 'Nieuwe ABC 13 9370, 13.3, 5e Gen CoreA5-8250U, 8GB RAM, 256GB SSD, krachtige UHD Graphics, OS 10 Home, OS Office A & J 2016', ]; diff --git a/src/locales/nl/company/suffix.ts b/src/locales/nl/company/suffix.ts index 78610912a5b..3d997f30d06 100644 --- a/src/locales/nl/company/suffix.ts +++ b/src/locales/nl/company/suffix.ts @@ -1,9 +1,9 @@ export default [ 'BV', - 'V.O.F.', + 'Bedrijf', + 'Combinatie', 'Groep', 'NV', - 'Bedrijf', + 'V.O.F.', 'en Zonen', - 'Combinatie', ]; diff --git a/src/locales/nl/hacker/adjective.ts b/src/locales/nl/hacker/adjective.ts index f49ce90ed9e..35ad4380655 100644 --- a/src/locales/nl/hacker/adjective.ts +++ b/src/locales/nl/hacker/adjective.ts @@ -1,24 +1,24 @@ export default [ - 'ondersteunende', - 'primaire', - 'onderliggende', - 'digitale', - 'open source', - 'virtuele', - 'cross-platform', - 'overtollige', - 'online', - 'haptische', - 'multi-byte', 'Bluetooth', + 'cross-platform', + 'cruciale', + 'digitale', 'draadloze', + 'haptische', + 'kostbare', 'minuscule', + 'mobiele', + 'multi-byte', 'neurale', + 'onderliggende', + 'ondersteunende', + 'online', + 'open source', 'optische', + 'overtollige', + 'primaire', + 'smakelijke', 'solid state', - 'mobiele', - 'cruciale', - 'kostbare', 'verwaarloosde', - 'smakelijke', + 'virtuele', ]; diff --git a/src/locales/nl/hacker/noun.ts b/src/locales/nl/hacker/noun.ts index 16b9db595f4..1d5ffba387d 100644 --- a/src/locales/nl/hacker/noun.ts +++ b/src/locales/nl/hacker/noun.ts @@ -1,28 +1,28 @@ export default [ - 'driver', - 'protocol', - 'bandbreedte', - 'paneel', - 'microchip', - 'programma', - 'port', - 'kaart', + 'alarm', 'array', - 'verbinding', + 'bandbreedte', + 'bus', + 'condensator', 'draad', - 'stekker', - 'systeem', - 'sensor', + 'driver', 'firewall', 'harde schijf', - 'pixel', - 'alarm', - 'voeding', + 'kaart', + 'matrix', + 'microchip', 'monitor', + 'paneel', + 'pixel', + 'port', + 'programma', + 'protocol', + 'sensor', + 'stekker', + 'stroomkring', + 'systeem', 'toepassing', + 'verbinding', + 'voeding', 'zender', - 'bus', - 'stroomkring', - 'condensator', - 'matrix', ]; diff --git a/src/locales/nl/hacker/phrase.ts b/src/locales/nl/hacker/phrase.ts index a0f6c603d12..f7ffef28efa 100644 --- a/src/locales/nl/hacker/phrase.ts +++ b/src/locales/nl/hacker/phrase.ts @@ -1,10 +1,10 @@ export default [ 'Als we de {{noun}} {{verb}}, dan kunnen we naar de {{abbreviation}} {{noun}} via de {{adjective}} {{abbreviation}} {{noun}}!', - 'We moeten de {{adjective}} {{abbreviation}} {{noun}} {{verb}}!', - 'Probeer om de {{abbreviation}} {{noun}} te {{verb}}, misschien gaat dat de {{adjective}} {{noun}} {{verb}}!', - 'Je kan de {{noun}} niet {{verb}} zonder de {{adjective}} {{abbreviation}} {{noun}} te {{verb}}!', - 'Gebruik de {{adjective}} {{abbreviation}} {{noun}}, dan kan je de {{adjective}} {{noun}} {{verb}}!', 'De {{abbreviation}} {{noun}} ligt eruit, jullie moeten de {{adjective}} {{noun}} {{verb}} zodat we de {{abbreviation}} {{noun}} kunnen {{verb}}!', + 'Gebruik de {{adjective}} {{abbreviation}} {{noun}}, dan kan je de {{adjective}} {{noun}} {{verb}}!', 'Het maakt niet uit of we de {{noun}} {{verb}}, we moeten de {{adjective}} {{abbreviation}} {{noun}} {{verb}}!', 'Ik ga de {{adjective}} {{abbreviation}} {{noun}} {{verb}}, dat zou de {{noun}} moeten {{verb}}!', + 'Je kan de {{noun}} niet {{verb}} zonder de {{adjective}} {{abbreviation}} {{noun}} te {{verb}}!', + 'Probeer om de {{abbreviation}} {{noun}} te {{verb}}, misschien gaat dat de {{adjective}} {{noun}} {{verb}}!', + 'We moeten de {{adjective}} {{abbreviation}} {{noun}} {{verb}}!', ]; diff --git a/src/locales/nl/hacker/verb.ts b/src/locales/nl/hacker/verb.ts index 7a80a511075..67462fd9ee8 100644 --- a/src/locales/nl/hacker/verb.ts +++ b/src/locales/nl/hacker/verb.ts @@ -1,22 +1,22 @@ export default [ + 'aansluiten', + 'analyseren', 'back-uppen', - 'omzeilen', + 'berekenen', + 'genereren', 'hacken', - 'overschrijven', - 'samenpersen', - 'kopiëren', - 'navigeren', + 'herstarten', + 'in stukjes snijden', 'indexeren', - 'aansluiten', - 'genereren', + 'invoeren', + 'kopiëren', 'kwantificeren', - 'berekenen', + 'navigeren', + 'omzeilen', + 'ontleden', + 'overschrijven', + 'programmeren', + 'samenpersen', 'samenstellen', - 'invoeren', 'verzenden', - 'programmeren', - 'herstarten', - 'ontleden', - 'in stukjes snijden', - 'analyseren', ]; diff --git a/src/locales/nl_BE/company/suffix.ts b/src/locales/nl_BE/company/suffix.ts index b97f3a77df8..ceead4ecf9c 100644 --- a/src/locales/nl_BE/company/suffix.ts +++ b/src/locales/nl_BE/company/suffix.ts @@ -1 +1 @@ -export default ['NV', 'BVBA', 'CVBA', 'VZW']; +export default ['BVBA', 'CVBA', 'NV', 'VZW']; diff --git a/src/locales/pl/company/name_pattern.ts b/src/locales/pl/company/name_pattern.ts index 1108f6fc77c..30a7946bfa0 100644 --- a/src/locales/pl/company/name_pattern.ts +++ b/src/locales/pl/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} and {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/pl/company/suffix.ts b/src/locales/pl/company/suffix.ts index a60bb130e95..50c39953e26 100644 --- a/src/locales/pl/company/suffix.ts +++ b/src/locales/pl/company/suffix.ts @@ -1 +1 @@ -export default ['S.A.', 'z o.o', 'Sp. j.', 'Sp. p.', 'Sp. k.', 'SKA', 's.c.']; +export default ['S.A.', 'SKA', 'Sp. j.', 'Sp. k.', 'Sp. p.', 's.c.', 'z o.o']; diff --git a/src/locales/pt_BR/commerce/department.ts b/src/locales/pt_BR/commerce/department.ts index 25df0480928..7f69e2464bf 100644 --- a/src/locales/pt_BR/commerce/department.ts +++ b/src/locales/pt_BR/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'Livros', - 'Filmes', - 'Música', - 'Jogos', - 'Eletrônicos', - 'Computadores', - 'Casa', - 'Jardim', - 'Ferramentas', - 'Mercearia', - 'Saúde', + 'Automotivo', + 'Bebê', 'Beleza', 'Brinquedos', + 'Casa', + 'Computadores', 'Crianças', - 'Bebê', + 'Eletrônicos', + 'Esportes', + 'Ferramentas', + 'Filmes', + 'Industrial', + 'Jardim', + 'Jogos', + 'Jóias', + 'Livros', + 'Mercearia', + 'Música', 'Roupas', 'Sapatos', - 'Jóias', - 'Esportes', + 'Saúde', 'Turismo', - 'Automotivo', - 'Industrial', ]; diff --git a/src/locales/pt_BR/commerce/product_name.ts b/src/locales/pt_BR/commerce/product_name.ts index 6a5071ce897..493b4d861e7 100644 --- a/src/locales/pt_BR/commerce/product_name.ts +++ b/src/locales/pt_BR/commerce/product_name.ts @@ -1,59 +1,59 @@ export default { adjective: [ - 'Pequeno', 'Ergonômico', - 'Rústico', - 'Inteligente', - 'Lindo', - 'Incrível', 'Fantástico', - 'Prático', - 'Lustroso', - 'Impressionante', - 'Genérico', 'Feito à mão', + 'Genérico', + 'Gostoso', + 'Impressionante', + 'Incrível', + 'Inteligente', 'Licenciado', + 'Lindo', + 'Lustroso', + 'Pequeno', + 'Prático', 'Refinado', + 'Rústico', 'Sem marca', - 'Gostoso', ], material: [ + 'Algodão', 'Aço', - 'Madeira', + 'Borracha', 'Concreto', - 'Plástico', - 'Algodão', + 'Congelado', + 'Fresco', 'Granito', - 'Borracha', - 'Metal', 'Macio', - 'Fresco', - 'Congelado', + 'Madeira', + 'Metal', + 'Plástico', ], product: [ - 'Cadeira', - 'Carro', - 'Computador', - 'Teclado', - 'Mouse', + 'Atum', + 'Bacon', 'Bicicleta', 'Bola', - 'Luvas', + 'Cadeira', 'Calças', 'Camiseta', - 'Mesa', - 'Sapatos', + 'Carro', 'Chapéu', - 'Toalhas', - 'Sabonete', - 'Atum', + 'Computador', 'Frango', + 'Luvas', + 'Mesa', + 'Mouse', 'Peixe', - 'Queijo', - 'Bacon', 'Pizza', + 'Queijo', + 'Sabonete', 'Salada', - 'Salsicha', 'Salgadinhos', + 'Salsicha', + 'Sapatos', + 'Teclado', + 'Toalhas', ], }; diff --git a/src/locales/pt_BR/company/name_pattern.ts b/src/locales/pt_BR/company/name_pattern.ts index 66184e18d67..6599004e652 100644 --- a/src/locales/pt_BR/company/name_pattern.ts +++ b/src/locales/pt_BR/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} e {{person.last_name}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/pt_BR/company/suffix.ts b/src/locales/pt_BR/company/suffix.ts index 2f7561450a9..ada8b9fb34e 100644 --- a/src/locales/pt_BR/company/suffix.ts +++ b/src/locales/pt_BR/company/suffix.ts @@ -1 +1 @@ -export default ['S.A.', 'LTDA', 'EIRELI', 'e Associados', 'Comércio']; +export default ['Comércio', 'EIRELI', 'LTDA', 'S.A.', 'e Associados']; diff --git a/src/locales/pt_PT/commerce/department.ts b/src/locales/pt_PT/commerce/department.ts index cc43b79d49b..68a81fa2f07 100644 --- a/src/locales/pt_PT/commerce/department.ts +++ b/src/locales/pt_PT/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'Livros', - 'Filmes', - 'Música', - 'Jogos', - 'Electrónica', - 'Computadores', - 'Casa', - 'Jardim', - 'Ferramentas', - 'Mercearia', - 'Saúde', + 'Ar Livre', + 'Automóveis', + 'Bebé', 'Beleza', 'Brinquedos', + 'Casa', + 'Computadores', 'Crianças', - 'Bebé', - 'Roupas', - 'Sapatos', - 'Jóias', 'Desporto', - 'Ar Livre', - 'Automóveis', + 'Electrónica', + 'Ferramentas', + 'Filmes', 'Industrial', + 'Jardim', + 'Jogos', + 'Jóias', + 'Livros', + 'Mercearia', + 'Música', + 'Roupas', + 'Sapatos', + 'Saúde', ]; diff --git a/src/locales/pt_PT/commerce/product_name.ts b/src/locales/pt_PT/commerce/product_name.ts index 97935aaa6ee..a1501116052 100644 --- a/src/locales/pt_PT/commerce/product_name.ts +++ b/src/locales/pt_PT/commerce/product_name.ts @@ -1,60 +1,60 @@ export default { adjective: [ - 'Pequeno', + 'Artesanal', 'Ergonómico', - 'Rústico', - 'Inteligente', - 'Linda', - 'Incrível', 'Fantástico', - 'Prático', - 'Lustroso', - 'Impressionante', - 'Genérico', - 'Artesanal', 'Feito à Mão', + 'Genérico', + 'Impressionante', + 'Incrível', + 'Inteligente', 'Licenciado', + 'Linda', + 'Lustroso', + 'Pequeno', + 'Prático', 'Refinado', - 'Sem Marca', + 'Rústico', 'Saboroso', + 'Sem Marca', ], material: [ + 'Algodão', 'Aço', - 'Madeira', 'Betão', - 'Plástico', - 'Algodão', - 'Granito', 'Borracha', + 'Congelado', + 'Fresco', + 'Granito', + 'Madeira', 'Metal', + 'Plástico', 'Suave', - 'Fresco', - 'Congelado', ], product: [ - 'Cadeira', - 'Carro', - 'Computador', - 'Teclado', - 'Rato', + 'Atum', + 'Bacon', + 'Batatas Fritas', 'Bicicleta', 'Bola', - 'Luvas', + 'Cadeira', 'Calças', 'Camisa', - 'Mesa', - 'Sapatos', + 'Carro', 'Chapéu', - 'Toalhas', - 'Sabonete', - 'Atum', + 'Computador', 'Frango', + 'Luvas', + 'Mesa', 'Peixe', - 'Queijo', - 'Bacon', 'Pizza', + 'Queijo', + 'Rato', + 'Sabonete', 'Salada', 'Salsichas', - 'Batatas Fritas', + 'Sapatos', + 'Teclado', + 'Toalhas', ], }; diff --git a/src/locales/ru/commerce/department.ts b/src/locales/ru/commerce/department.ts index 4adf7d4267e..b4d243b24b5 100644 --- a/src/locales/ru/commerce/department.ts +++ b/src/locales/ru/commerce/department.ts @@ -1,26 +1,26 @@ export default [ + 'Автомобильное', + 'Бакалея', + 'Галантерея', + 'Дом', + 'Игрушки', 'Книги', + 'Меха', + 'Одежда', + 'Пряжа', + 'Спорт', 'Фильмы', - 'музыка', - 'игры', 'Электроника', - 'компьютеры', - 'Дом', - 'садинструмент', - 'Бакалея', - 'здоровье', - 'красота', - 'Игрушки', 'детское', 'для малышей', - 'Одежда', + 'здоровье', + 'игры', + 'компьютеры', + 'красота', + 'музыка', 'обувь', - 'украшения', - 'Спорт', - 'туризм', - 'Автомобильное', - 'Галантерея', - 'Меха', - 'Пряжа', 'промышленное', + 'садинструмент', + 'туризм', + 'украшения', ]; diff --git a/src/locales/ru/commerce/product_name.ts b/src/locales/ru/commerce/product_name.ts index 0211ad63afe..c0191540471 100644 --- a/src/locales/ru/commerce/product_name.ts +++ b/src/locales/ru/commerce/product_name.ts @@ -1,51 +1,51 @@ export default { adjective: [ - 'Маленький', - 'Эргономичный', + 'Большой', + 'Великолепный', 'Грубый', 'Интеллектуальный', - 'Великолепный', + 'Лоснящийся', + 'Маленький', 'Невероятный', + 'Потрясающий', + 'Практичный', 'Свободный', - 'Большой', 'Фантастический', - 'Практичный', - 'Лоснящийся', - 'Потрясающий', + 'Эргономичный', ], material: [ - 'Стальной', - 'Деревянный', 'Бетонный', - 'Пластиковый', - 'Хлопковый', 'Гранитный', + 'Деревянный', 'Кожанный', - 'Неодимовый', 'Меховой', 'Натуральный', + 'Неодимовый', + 'Пластиковый', 'Резиновый', + 'Стальной', + 'Хлопковый', ], product: [ - 'Стул', 'Автомобиль', - 'Компьютер', 'Берет', + 'Ботинок', + 'Кепка', + 'Клатч', + 'Компьютер', + 'Кошелек', 'Кулон', - 'Стол', - 'Свитер', - 'Ремень', + 'Куртка', + 'Майка', 'Ножницы', 'Носки', - 'Майка', - 'Кепка', - 'Куртка', 'Плащ', + 'Портмоне', + 'Ремень', 'Сабо', + 'Свитер', + 'Стол', + 'Стул', 'Шарф', - 'Клатч', - 'Кошелек', - 'Портмоне', - 'Ботинок', ], }; diff --git a/src/locales/ru/company/name_pattern.ts b/src/locales/ru/company/name_pattern.ts index b9374d22299..39403380440 100644 --- a/src/locales/ru/company/name_pattern.ts +++ b/src/locales/ru/company/name_pattern.ts @@ -1,10 +1,10 @@ export default [ - '{{company.prefix}} {{person.female_first_name}}', - '{{company.prefix}} {{person.male_first_name}}', - '{{company.prefix}} {{person.male_last_name}}', '{{company.prefix}} {{company.suffix}}{{company.suffix}}', '{{company.prefix}} {{company.suffix}}{{company.suffix}}{{company.suffix}}', '{{company.prefix}} {{location.city_name}}{{company.suffix}}', '{{company.prefix}} {{location.city_name}}{{company.suffix}}{{company.suffix}}', '{{company.prefix}} {{location.city_name}}{{company.suffix}}{{company.suffix}}{{company.suffix}}', + '{{company.prefix}} {{person.female_first_name}}', + '{{company.prefix}} {{person.male_first_name}}', + '{{company.prefix}} {{person.male_last_name}}', ]; diff --git a/src/locales/ru/company/prefix.ts b/src/locales/ru/company/prefix.ts index 9a2a88cddc1..90b703be22d 100644 --- a/src/locales/ru/company/prefix.ts +++ b/src/locales/ru/company/prefix.ts @@ -5,9 +5,9 @@ export default [ 'ИП', 'МУП', 'НКО', - 'ОП', - 'ООО', 'ОАО', + 'ООО', + 'ОП', 'ПАО', 'ТСЖ', 'ФГУП', diff --git a/src/locales/ru/company/suffix.ts b/src/locales/ru/company/suffix.ts index 35a88f3e588..2bd94e3c73c 100644 --- a/src/locales/ru/company/suffix.ts +++ b/src/locales/ru/company/suffix.ts @@ -4,8 +4,8 @@ export default [ 'Лимитед', 'Пром', 'Рус', - 'Системс', 'Сбыт', + 'Системс', 'Снаб', 'Торг', 'Трейд', diff --git a/src/locales/ru/hacker/abbreviation.ts b/src/locales/ru/hacker/abbreviation.ts index 84b1a171a7d..7122c38b72e 100644 --- a/src/locales/ru/hacker/abbreviation.ts +++ b/src/locales/ru/hacker/abbreviation.ts @@ -1,32 +1,32 @@ export default [ + 'ADP', + 'AGP', + 'COM', + 'CSS', + 'EXE', + 'FTP', + 'HTTP', + 'JSON', + 'PCI', + 'PNG', + 'RSS', + 'SAS', + 'SDD', + 'SMS', + 'SMTP', + 'SSL', + 'USB', + 'XML', + 'XSS', 'БИОС', 'Гб', 'ИИ', - 'ОС', + 'НМЖД', 'ОЗУ', + 'ОС', + 'ПЗУ', 'ПО', 'СУБД', 'ХЗ', 'ЭВМ', - 'HTTP', - 'SDD', - 'CSS', - 'SSL', - 'AGP', - 'FTP', - 'PCI', - 'ADP', - 'RSS', - 'XML', - 'EXE', - 'COM', - 'НМЖД', - 'ПЗУ', - 'SMTP', - 'SMS', - 'USB', - 'PNG', - 'SAS', - 'JSON', - 'XSS', ]; diff --git a/src/locales/ru/hacker/adjective.ts b/src/locales/ru/hacker/adjective.ts index 513e140bdc4..ef241721ce0 100644 --- a/src/locales/ru/hacker/adjective.ts +++ b/src/locales/ru/hacker/adjective.ts @@ -1,19 +1,19 @@ export default [ - 'вспомогательный', - 'основной', - 'внутренний', - 'цифровой', - 'свободно-распростроняемый', + '1080-пиксельный', + 'беспроводной', 'виртуальный', - 'кросс-платформенный', + 'внутренний', + 'вспомогательный', 'излишний', - 'онлайн', - 'сенсорный', + 'кросс-платформенный', 'многобайтный', - 'беспроводной', - '1080-пиксельный', + 'мобильный', 'нейронный', + 'онлайн', 'оптический', + 'основной', + 'свободно-распростроняемый', + 'сенсорный', 'твердотельный', - 'мобильный', + 'цифровой', ]; diff --git a/src/locales/ru/hacker/ingverb.ts b/src/locales/ru/hacker/ingverb.ts index 415ffdac3fe..2b3ce6fe577 100644 --- a/src/locales/ru/hacker/ingverb.ts +++ b/src/locales/ru/hacker/ingverb.ts @@ -1,21 +1,21 @@ export default [ - 'резервное копирование', - 'обход', 'архивирование', 'взлом', - 'шифрование', - 'переопределение', - 'сжатие', - 'скачивание', + 'вычисление', + 'генерация', + 'индексирование', 'копирование', 'навигация', - 'индексирование', - 'соединение', - 'генерация', + 'обход', 'определение количества', - 'вычисление', - 'синтез', 'передача', + 'переопределение', 'программирование', 'разбор', + 'резервное копирование', + 'сжатие', + 'синтез', + 'скачивание', + 'соединение', + 'шифрование', ]; diff --git a/src/locales/ru/hacker/noun.ts b/src/locales/ru/hacker/noun.ts index 59d7bd4d250..dafad093fb8 100644 --- a/src/locales/ru/hacker/noun.ts +++ b/src/locales/ru/hacker/noun.ts @@ -1,28 +1,28 @@ export default [ + 'блок разведения', + 'брандмауэр', + 'винчестер', 'драйвер', - 'протокол', - 'ограничитель', 'интерфейс', - 'микрочип', + 'канал', + 'ключ', 'код', - 'парсер', - 'сокет', + 'конденсатор', 'кортеж', - 'порт', - 'ключ', 'массив', + 'механизм сигнализации', + 'микрочип', + 'монитор', 'объект', - 'сенсор', - 'брандмауэр', - 'винчестер', + 'ограничитель', + 'оператор', + 'парсер', + 'передатчик', 'пиксель', - 'механизм сигнализации', 'поглотитель', - 'монитор', + 'порт', 'продукт', - 'передатчик', - 'блок разведения', - 'канал', - 'конденсатор', - 'оператор', + 'протокол', + 'сенсор', + 'сокет', ]; diff --git a/src/locales/ru/hacker/phrase.ts b/src/locales/ru/hacker/phrase.ts index 344c49928c3..4687f660e0b 100644 --- a/src/locales/ru/hacker/phrase.ts +++ b/src/locales/ru/hacker/phrase.ts @@ -1,10 +1,10 @@ export default [ - 'Чтобы {{verb}} {{noun}}, мы можем получить {{abbreviation}} {{noun}} через {{adjective}} {{abbreviation}} {{noun}}!', - 'Необходимо {{verb}} {{adjective}} {{abbreviation}} {{noun}}!', - 'Попробуйте {{verb}} {{abbreviation}} {{noun}}, возможно это позволит {{verb}} {{adjective}} {{noun}}!', - 'Вы не можете {{verb}} {{noun}}, требуется {{ingverb}} или {{ingverb}}!', - 'Используйте {{adjective}} {{abbreviation}} {{noun}}, для того чтобы {{verb}} {{adjective}} {{noun}}!', '{{abbreviation}} {{noun}} недоступен, требуется {{verb}} {{adjective}} {{noun}}, чтобы мы могли {{verb}} {{abbreviation}} {{noun}}!', '{{ingverb}} не работает, попробуйте {{verb}} {{adjective}} {{abbreviation}} {{noun}}!', + 'Вы не можете {{verb}} {{noun}}, требуется {{ingverb}} или {{ingverb}}!', + 'Используйте {{adjective}} {{abbreviation}} {{noun}}, для того чтобы {{verb}} {{adjective}} {{noun}}!', + 'Необходимо {{verb}} {{adjective}} {{abbreviation}} {{noun}}!', + 'Попробуйте {{verb}} {{abbreviation}} {{noun}}, возможно это позволит {{verb}} {{adjective}} {{noun}}!', + 'Чтобы {{verb}} {{noun}}, мы можем получить {{abbreviation}} {{noun}} через {{adjective}} {{abbreviation}} {{noun}}!', 'Я планирую {{verb}} {{adjective}} {{abbreviation}} {{noun}}, это должно помочь {{verb}} {{abbreviation}} {{noun}}!', ]; diff --git a/src/locales/ru/hacker/verb.ts b/src/locales/ru/hacker/verb.ts index 5205b21dfa2..e42c7ada379 100644 --- a/src/locales/ru/hacker/verb.ts +++ b/src/locales/ru/hacker/verb.ts @@ -1,24 +1,24 @@ export default [ - 'сохранить', - 'обойти', + 'ввести', 'взломать', - 'переопределить', - 'сжать', + 'вычислить', + 'генерировать', + 'запрограммировать', 'зашифровать', 'импортировать', - 'экспортировать', - 'копировать', - 'навигировать', 'индексировать', - 'соединить', - 'генерировать', - 'распарсить', 'квантифицировать', - 'вычислить', - 'синтезировать', - 'ввести', + 'копировать', + 'навигировать', + 'обойти', 'передать', - 'запрограммировать', 'перезагрузить', + 'переопределить', 'разобрать', + 'распарсить', + 'сжать', + 'синтезировать', + 'соединить', + 'сохранить', + 'экспортировать', ]; diff --git a/src/locales/sk/company/suffix.ts b/src/locales/sk/company/suffix.ts index 9e50cd7832f..5c5540527b6 100644 --- a/src/locales/sk/company/suffix.ts +++ b/src/locales/sk/company/suffix.ts @@ -1 +1 @@ -export default ['s.r.o.', 'a.s.', 'v.o.s.']; +export default ['a.s.', 's.r.o.', 'v.o.s.']; diff --git a/src/locales/sv/commerce/department.ts b/src/locales/sv/commerce/department.ts index 255625c7162..c731211c97b 100644 --- a/src/locales/sv/commerce/department.ts +++ b/src/locales/sv/commerce/department.ts @@ -1,19 +1,19 @@ export default [ 'Böcker', - 'Filmer', - 'Musik', - 'Spel', - 'Elektronik', 'Datorer', + 'Elektronik', + 'Filmer', 'Hem', - 'Trädgård', - 'Verktyg', - 'Livsmedel', 'Hälsa', - 'Skönhet', - 'Leksaker', 'Klädsel', + 'Leksaker', + 'Livsmedel', + 'Musik', 'Skor', + 'Skönhet', 'Smycken', + 'Spel', 'Sport', + 'Trädgård', + 'Verktyg', ]; diff --git a/src/locales/sv/commerce/product_name.ts b/src/locales/sv/commerce/product_name.ts index cfb6c2910ca..270dc1f8ac0 100644 --- a/src/locales/sv/commerce/product_name.ts +++ b/src/locales/sv/commerce/product_name.ts @@ -1,36 +1,36 @@ export default { adjective: [ - 'Liten', 'Ergonomisk', - 'Robust', + 'Fantastisk', + 'Grym', 'Intelligent', - 'Söt', + 'Liten', 'Otrolig', - 'Fantastisk', 'Praktisk', + 'Robust', 'Slimmad', - 'Grym', + 'Söt', ], material: [ - 'Stål', - 'Metall', - 'Trä', 'Betong', - 'Plast', 'Bomull', 'Granit', 'Gummi', 'Latex', + 'Metall', + 'Plast', + 'Stål', + 'Trä', ], product: [ - 'Stol', 'Bil', + 'Bord', + 'Byxor', 'Dator', 'Handskar', - 'Byxor', + 'Hatt', 'Skjorta', - 'Bord', 'Skor', - 'Hatt', + 'Stol', ], }; diff --git a/src/locales/sv/company/name_pattern.ts b/src/locales/sv/company/name_pattern.ts index 3d0aee24373..debdd4c55d0 100644 --- a/src/locales/sv/company/name_pattern.ts +++ b/src/locales/sv/company/name_pattern.ts @@ -1,5 +1,5 @@ export default [ '{{person.last_name}} {{company.suffix}}', - '{{person.last_name}}-{{person.last_name}}', '{{person.last_name}}, {{person.last_name}} {{company.suffix}}', + '{{person.last_name}}-{{person.last_name}}', ]; diff --git a/src/locales/sv/company/suffix.ts b/src/locales/sv/company/suffix.ts index 0a591c4a574..6cf912703e4 100644 --- a/src/locales/sv/company/suffix.ts +++ b/src/locales/sv/company/suffix.ts @@ -1,9 +1,9 @@ export default [ - 'Gruppen', 'AB', - 'HB', + 'Aktiebolag', 'Group', + 'Gruppen', + 'HB', 'Investment', 'Kommanditbolag', - 'Aktiebolag', ]; diff --git a/src/locales/tr/commerce/department.ts b/src/locales/tr/commerce/department.ts index a2a5bc13c3e..d13da014d72 100644 --- a/src/locales/tr/commerce/department.ts +++ b/src/locales/tr/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - 'Kitaplar', - 'Filmler', - 'Müzikler', - 'Oyunlar', - 'Elektronik', - 'Bilgisayarlar', - 'Ev', - 'Bahçe', 'Aletler', + 'Ayakkabı', + 'Açık Hava', + 'Bahçe', 'Bakkal', - 'Sağlık', - 'Güzellik', - 'Oyuncaklar', - 'Çocuklar', 'Bebek', + 'Bilgisayarlar', + 'Elektronik', + 'Ev', + 'Filmler', 'Giyim', - 'Ayakkabı', + 'Güzellik', + 'Kitaplar', 'Mücevher', - 'Spor Dalları', - 'Açık Hava', + 'Müzikler', 'Otomotiv', + 'Oyuncaklar', + 'Oyunlar', 'Sanayi', + 'Sağlık', + 'Spor Dalları', + 'Çocuklar', ]; diff --git a/src/locales/tr/commerce/product_description.ts b/src/locales/tr/commerce/product_description.ts index cb33cb5622e..fec8fce8d0e 100644 --- a/src/locales/tr/commerce/product_description.ts +++ b/src/locales/tr/commerce/product_description.ts @@ -1,14 +1,14 @@ export default [ - 'Gün boyu konfor ve destek için yapıştırılmış siyah deri ve PVC dolgulu koltuk ve sırt ile kaplanmış ergonomik yönetici koltuğu', - 'Otomobil düzeni, motorun arkasına monte edilmiş transaks tipi şanzımanlar ve dört tekerlekten çekiş ile bir ön motor tasarımından oluşur', - 'Yeni ABC 13 9370, 13.3, 5. Nesil CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016', - "Dev Byte'ın ince ve basit Maple Oyun Klavyesi, şık bir gövde ve akıllı işlevsellik için 7 Renkli RGB LED Arka Aydınlatma ile birlikte gelir", + 'Andy ayakkabılar, trendlerin yanı sıra dayanıklılığı da göz önünde bulundurarak tasarlandı, en şık ayakkabı ve sandalet yelpazesi', 'Apollotech B340, güvenilir bağlantıya, 12 aylık pil ömrüne ve modern tasarıma sahip uygun fiyatlı bir kablosuz faredir', - 'Nagasaki Lander, 1984 ABC800J ile başlayan birkaç Nagasaki spor bisiklet serisinin ticari markasıdır', + "Boston'un en gelişmiş kompresyon aşınması teknolojisi, kas oksijenlenmesini artırır, aktif kasları stabilize eder", + "Dev Byte'ın ince ve basit Maple Oyun Klavyesi, şık bir gövde ve akıllı işlevsellik için 7 Renkli RGB LED Arka Aydınlatma ile birlikte gelir", + 'Doğal bileşenlerin heyecan verici bir karışımına sahip güzel Apple Naturalé serisi. %100 Doğal İçeriğin İyiliği ile', 'Futbol Antrenman Ve Rekreasyon Amaçlı İyidir', + 'Gün boyu konfor ve destek için yapıştırılmış siyah deri ve PVC dolgulu koltuk ve sırt ile kaplanmış ergonomik yönetici koltuğu', 'Karbonit ağ kaleci eldivenleri ergonomik olarak kolay oturacak şekilde tasarlanmıştır', - "Boston'un en gelişmiş kompresyon aşınması teknolojisi, kas oksijenlenmesini artırır, aktif kasları stabilize eder", + 'Nagasaki Lander, 1984 ABC800J ile başlayan birkaç Nagasaki spor bisiklet serisinin ticari markasıdır', + 'Otomobil düzeni, motorun arkasına monte edilmiş transaks tipi şanzımanlar ve dört tekerlekten çekiş ile bir ön motor tasarımından oluşur', + 'Yeni ABC 13 9370, 13.3, 5. Nesil CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016', 'Yeni forma gömlek çeşitleri sizi göz önünde bulundurarak tasarlandı. Sizi farklı kılacak kesimler ve stiller ile', - 'Doğal bileşenlerin heyecan verici bir karışımına sahip güzel Apple Naturalé serisi. %100 Doğal İçeriğin İyiliği ile', - 'Andy ayakkabılar, trendlerin yanı sıra dayanıklılığı da göz önünde bulundurarak tasarlandı, en şık ayakkabı ve sandalet yelpazesi', ]; diff --git a/src/locales/tr/commerce/product_name.ts b/src/locales/tr/commerce/product_name.ts index fab9d5ad9b2..bc6748fcb12 100644 --- a/src/locales/tr/commerce/product_name.ts +++ b/src/locales/tr/commerce/product_name.ts @@ -1,60 +1,60 @@ export default { adjective: [ - 'Küçük', + 'El Yapımı', + 'El Üretimi', 'Ergonomik', + 'Genel', + 'Harika', + 'Küçük', 'Kırsal', - 'Zeki', + 'Lezzetli', + 'Lisanslı', + 'Markalanmamış', 'Muhteşem', - 'İnanılmaz', - 'Harika', - 'Pratik', - 'Şık', 'Mükemmel', - 'Genel', - 'El Üretimi', - 'El Yapımı', - 'Lisanslı', + 'Pratik', 'Rafine', - 'Markalanmamış', - 'Lezzetli', + 'Zeki', + 'İnanılmaz', + 'Şık', ], material: [ - 'Çelik', 'Ahşap', 'Beton', - 'Plastik', - 'Pamuk', + 'Dondurulmuş', 'Granit', 'Kauçuk', 'Metal', - 'Yumuşak', + 'Pamuk', + 'Plastik', 'Taze', - 'Dondurulmuş', + 'Yumuşak', + 'Çelik', ], product: [ - 'Sandalye', 'Araba', + 'Ayakkabı', + 'Balık', 'Bilgisayar', - 'Tuş Takımı', - 'Fare', 'Bisiklet', - 'Top', + 'Cips', 'Eldiven', - 'Pantolon', + 'Fare', 'Gömlek', - 'Tablo', - 'Ayakkabı', - 'Şapka', 'Havlu', - 'Sabun', - 'Tuna', - 'Tavuk', - 'Balık', - 'Peynir', 'Kayseri Pastırması', + 'Pantolon', + 'Peynir', 'Pizza', + 'Sabun', 'Salata', + 'Sandalye', 'Sosis', - 'Cips', + 'Tablo', + 'Tavuk', + 'Top', + 'Tuna', + 'Tuş Takımı', + 'Şapka', ], }; diff --git a/src/locales/uk/company/name_pattern.ts b/src/locales/uk/company/name_pattern.ts index b9374d22299..39403380440 100644 --- a/src/locales/uk/company/name_pattern.ts +++ b/src/locales/uk/company/name_pattern.ts @@ -1,10 +1,10 @@ export default [ - '{{company.prefix}} {{person.female_first_name}}', - '{{company.prefix}} {{person.male_first_name}}', - '{{company.prefix}} {{person.male_last_name}}', '{{company.prefix}} {{company.suffix}}{{company.suffix}}', '{{company.prefix}} {{company.suffix}}{{company.suffix}}{{company.suffix}}', '{{company.prefix}} {{location.city_name}}{{company.suffix}}', '{{company.prefix}} {{location.city_name}}{{company.suffix}}{{company.suffix}}', '{{company.prefix}} {{location.city_name}}{{company.suffix}}{{company.suffix}}{{company.suffix}}', + '{{company.prefix}} {{person.female_first_name}}', + '{{company.prefix}} {{person.male_first_name}}', + '{{company.prefix}} {{person.male_last_name}}', ]; diff --git a/src/locales/uk/company/prefix.ts b/src/locales/uk/company/prefix.ts index f41d9ec7ca7..c828f2c0077 100644 --- a/src/locales/uk/company/prefix.ts +++ b/src/locales/uk/company/prefix.ts @@ -1 +1 @@ -export default ['ТОВ', 'ПАТ', 'ПрАТ', 'ТДВ', 'КТ', 'ПТ', 'ДП', 'ФОП']; +export default ['ДП', 'КТ', 'ПАТ', 'ПТ', 'ПрАТ', 'ТДВ', 'ТОВ', 'ФОП']; diff --git a/src/locales/uk/company/suffix.ts b/src/locales/uk/company/suffix.ts index f3e996a39e2..a1da3fff96b 100644 --- a/src/locales/uk/company/suffix.ts +++ b/src/locales/uk/company/suffix.ts @@ -1 +1 @@ -export default ['Постач', 'Торг', 'Пром', 'Трейд', 'Збут']; +export default ['Збут', 'Постач', 'Пром', 'Торг', 'Трейд']; diff --git a/src/locales/ur/commerce/department.ts b/src/locales/ur/commerce/department.ts index 674cd06f843..b146f476f5d 100644 --- a/src/locales/ur/commerce/department.ts +++ b/src/locales/ur/commerce/department.ts @@ -1,20 +1,20 @@ export default [ - 'کتابیہ', - 'فلم', - 'گانی', - 'کھیل', - 'بجلی', - 'کمپیوٹر', - 'گھر', - 'باغ', - 'اوزار', 'اشیاء', - 'صحر', - 'خوبصورتی', - 'کھلونہ', + 'اوزار', + 'باغ', + 'بجلی', 'بچے', - 'کپڑے', 'جوتے', - 'گاڑیاں', + 'خوبصورتی', + 'صحر', + 'فلم', 'کارغانے', + 'کتابیہ', + 'کمپیوٹر', + 'کپڑے', + 'کھلونہ', + 'کھیل', + 'گانی', + 'گاڑیاں', + 'گھر', ]; diff --git a/src/locales/ur/commerce/product_name.ts b/src/locales/ur/commerce/product_name.ts index 038b876aa21..3f12567fb3f 100644 --- a/src/locales/ur/commerce/product_name.ts +++ b/src/locales/ur/commerce/product_name.ts @@ -1,39 +1,39 @@ export default { - adjective: ['چھوٹا', 'آرامدہ', 'ہوشیار', 'خوبصورت', 'بیترین'], + adjective: ['آرامدہ', 'بیترین', 'خوبصورت', 'چھوٹا', 'ہوشیار'], material: [ + 'تازہ', + 'جم شدہ', + 'دھات', + 'ربڑ', + 'رویٰ', 'لوہا', 'لکڑہ', - 'کنکریٹ', + 'نرم', 'پلاسٹک', - 'رویٰ', + 'کنکریٹ', 'گرانایٹ', - 'ربڑ', - 'دھات', - 'نرم', - 'تازہ', - 'جم شدہ', ], product: [ - 'کرسہ', - 'گاڑی', - 'کمپیوٹر', - 'کی بورڈ', - 'ماوٰس', - 'بایٰک', 'بال', + 'بایٰک', + 'تولیہ', + 'جوتے', 'دستانے', - 'پتلون', + 'سلاد', + 'سیخ کباب', + 'صابن', 'قمیص', + 'ماوٰس', + 'مرغ', + 'مچھلی', 'میز', - 'جوتے', 'ٹوپی', - 'تولیہ', - 'صابن', - 'مچھلی', - 'مرغ', - 'پنیر', - 'سلاد', - 'سیخ کباب', 'پاپڑ', + 'پتلون', + 'پنیر', + 'کرسہ', + 'کمپیوٹر', + 'کی بورڈ', + 'گاڑی', ], }; diff --git a/src/locales/ur/music/genre.ts b/src/locales/ur/music/genre.ts index 24565e3c68f..aa20745921a 100644 --- a/src/locales/ur/music/genre.ts +++ b/src/locales/ur/music/genre.ts @@ -1,11 +1,11 @@ export default [ - 'پاپ', - 'فلک', - 'دنیایٰ', 'جاز', + 'دنیایٰ', + 'ریپ', + 'فلک', 'فنک', - 'کلاسکی', 'لاطینی', + 'پاپ', 'پرانی', - 'ریپ', + 'کلاسکی', ]; diff --git a/src/locales/ur/vehicle/fuel.ts b/src/locales/ur/vehicle/fuel.ts index 585c16dbba9..11dd29b688d 100644 --- a/src/locales/ur/vehicle/fuel.ts +++ b/src/locales/ur/vehicle/fuel.ts @@ -1 +1 @@ -export default ['ڈیزل', 'بجلی', 'پیٹرول', 'شمسی']; +export default ['بجلی', 'شمسی', 'پیٹرول', 'ڈیزل']; diff --git a/src/locales/ur/vehicle/manufacturer.ts b/src/locales/ur/vehicle/manufacturer.ts index c9a55f62ffc..c9b09ec8c32 100644 --- a/src/locales/ur/vehicle/manufacturer.ts +++ b/src/locales/ur/vehicle/manufacturer.ts @@ -1,10 +1,10 @@ export default [ 'آستن مارٹن', - 'بینٹلے', 'بی ایم ڈبلیو', - 'فراری', - 'ہنڈا', + 'بینٹلے', 'جیپ', - 'مزدا', + 'فراری', 'مرسیڈیز', + 'مزدا', + 'ہنڈا', ]; diff --git a/src/locales/ur/vehicle/model.ts b/src/locales/ur/vehicle/model.ts index 7a4207bd46c..c334150fd57 100644 --- a/src/locales/ur/vehicle/model.ts +++ b/src/locales/ur/vehicle/model.ts @@ -1 +1 @@ -export default ['کرولا', 'اکورڈ', 'سوک']; +export default ['اکورڈ', 'سوک', 'کرولا']; diff --git a/src/locales/ur/vehicle/type.ts b/src/locales/ur/vehicle/type.ts index ebcd558de33..1462cb46785 100644 --- a/src/locales/ur/vehicle/type.ts +++ b/src/locales/ur/vehicle/type.ts @@ -1 +1 @@ -export default ['ہیچ بیک', 'سواری']; +export default ['سواری', 'ہیچ بیک']; diff --git a/src/locales/uz_UZ_latin/commerce/department.ts b/src/locales/uz_UZ_latin/commerce/department.ts index 9d231b1d9fb..b5862e3a14a 100644 --- a/src/locales/uz_UZ_latin/commerce/department.ts +++ b/src/locales/uz_UZ_latin/commerce/department.ts @@ -5,6 +5,7 @@ export default [ "Bog'", 'Bolalar tovarlari', 'Elektronika', + "Go'zallik va parvarish", 'Hayvonlar uchun tovarlar', 'Hobbi va ijod', 'Kanselyariya tovarlari', @@ -13,15 +14,14 @@ export default [ 'Kiyim', "Komp'yuterlar", 'Musiqa', - 'Oziq-ovqat', "O'yinchoqlar", "O'yinlar", + 'Oziq-ovqat', 'Poyabzallar', "Qurilish va ta'mirlash", 'Sanoat', - 'Sport', "Sog'liqni saqlash", - "Go'zallik va parvarish", + 'Sport', 'Uy', 'Zargarlik buyumlari', ]; diff --git a/src/locales/uz_UZ_latin/commerce/product_description.ts b/src/locales/uz_UZ_latin/commerce/product_description.ts index 85ae4c3ca42..8c426da5c05 100644 --- a/src/locales/uz_UZ_latin/commerce/product_description.ts +++ b/src/locales/uz_UZ_latin/commerce/product_description.ts @@ -1,23 +1,23 @@ export default [ - "Ushbu telefon yuqori sifatli ekran va quvvatli batareyaga ega. Ishlab chiqarish materiallari bo'yicha yuqori sifat va qattiqlikka ega. Kameralarining sifati yaxshi bo'lib, surat va video jalb qilishda ajoyib natijalarni taqdim etadi.", + "Boston's most advanced compression wear technology increases muscle oxygenation, stabilizes active muscles", "Bu oshxona stoli yopiq joylar uchun idealdir. Uni osonlik bilan haroratga chiqarish mumkin. Yopilgan holatda xavfsiz va ishonchli saqlanadi. Mebel stolning yuzi o'ziga xos shakl va rangga ega.", - "Yuqori darajadagi grafika va kuchli protsessori bilan, bu noutbuk yuqori sifatli o'yinlar va kuchli dasturlar uchun idealdir. Uni qulaylik bilan o'zida yuritish va yuklash oson. Katta xotirasi va qulay klaviaturasiga ega.", - "Ushbu mashina eng yaxshi sifat va natijalar bilan to'qimachilik ishlarini bajaradi. Ishlab chiqarish materiallari yuqori sifat va sifatli. Uning katta yuklash qobiliyati va innovatsion funktsiyalari bor.", + "Bu to'plam bolalar uchun ta'lim va rivojlanishga mo'ljallangan o'yinlar majmuasi. Uni ichiga o'ziga xos rangli o'yinlar, elektron dasturlar va boshqa o'yinlar mavjud.", + "Bu to'plam bolalarning sport faoliyatlarida qulaylik bilan qo'llash uchun mo'ljallangan. Uni ichiga futbol, basketbol va boshqa sport buyumlari mavjud. Ushbu buyumlar yosh bolalar uchun mo'ljallangan va uni ishlatish oson.", "Bu to'plam maktab o'quvchilari uchun elektron darsliklar majmuasi. Ular matematika, ona tili, ingliz tili va boshqa fanlardagi ma'lumotlarni osonlik bilan o'rgatishga yordam beradi. Hozir o'rganishga qiziqmoqchi bo'lgan barcha darsliklar mavjud.", + "Bu to'plam ovqatlanish va pishirish uchun kerak bo'lgan barcha texnika va qo'shimcha mahsulotlar majmuasi. Uni ichiga elektrli pishirgichlar, qaynatgichlar, mikrovolnovka va boshqa asboblar bor.", "Bu to'plam sportga qiziqishli insonlar uchun mo'ljallangan. Uni ichiga sport qilish, masofaviy tashqarida faol bo'lish va ko'p vaqt o'tkazish uchun zarur asboblar kiritilgan. Barchasi yuqori sifat va ishonchli.", - "Ushbu to'qima ustasi o'zgartirilgan dizayni va qulayliklari bilan ajralmas ma'muriyati bilan narsani ishlab chiqarishda yordam beradi. Uni oson qo'llash mumkin va uni joylashtirish oson.", "Bu tuzilma ovqatlanish uchun idealdir. Ushbu tuzilma sifatli materiallardan ishlab chiqarilgan va hajmi kichik bo'lgan. Uni xonadon yoki do'konlarda qulaylik bilan joylashtirish mumkin.", - "Boston's most advanced compression wear technology increases muscle oxygenation, stabilizes active muscles", - "Ushbu to'plam kichik korxonalar uchun mo'ljallangan va ularning dastlabki yutuqlarini bajarish uchun kerak bo'lgan asboblar bilan to'la. Uning ichida kompyuterlar, printerlar, telefaks mashinalari va boshqa asboblar mavjud.", - "Bu to'plam bolalarning sport faoliyatlarida qulaylik bilan qo'llash uchun mo'ljallangan. Uni ichiga futbol, basketbol va boshqa sport buyumlari mavjud. Ushbu buyumlar yosh bolalar uchun mo'ljallangan va uni ishlatish oson.", + "Ushbu mashina eng yaxshi sifat va natijalar bilan to'qimachilik ishlarini bajaradi. Ishlab chiqarish materiallari yuqori sifat va sifatli. Uning katta yuklash qobiliyati va innovatsion funktsiyalari bor.", "Ushbu smart soqol sizga yanada oson va qulayligini ta'minlash uchun mo'ljallangan. Uni ichiga bir necha funksiyalar mavjud, shuningdek qadam to'lash, qadam soni, oyoqning harakati va uyqu holati. Ushbu asbobning qulay dizayni va yuqori sifati bor.", + "Ushbu telefon yuqori sifatli ekran va quvvatli batareyaga ega. Ishlab chiqarish materiallari bo'yicha yuqori sifat va qattiqlikka ega. Kameralarining sifati yaxshi bo'lib, surat va video jalb qilishda ajoyib natijalarni taqdim etadi.", + "Ushbu tizim kichik bizneslar uchun xarajat va daromadlar hisobotlashda yordam beradi. Uni qo'llash oson va uni ishlatish oson. Bu tizim biznesning moliyaviy holatini yaxshilaydi va ma'lumotlarni to'plab yig'ishga yordam beradi.", "Ushbu tizim taomlarni qayta ishlab chiqarish uchun mo'ljallangan va eng yaxshi sifat va natijalar bilan taomlarni qayta ishlab chiqaradi. Uni qo'llash oson va uni tozalash ham oson.", - "Ushbu to'plam ovqatlanish uchun muhim mahsulotlar majmuasi. Uni ichiga ovqatlanishni yaxshi tuzish uchun kerak bo'lgan barcha narsalar kiritilgan. Uni oson yig'ish va saqlash mumkin.", + "Ushbu to'plam dizayn va dekoratsiyalar bo'yicha kerak bo'lgan barcha materiallarni o'z ichiga oladi. Uni ichiga rangli ranglar, qadamlar, panel va boshqa materiallar bor.", + "Ushbu to'plam kichik korxonalar uchun mo'ljallangan va ularning dastlabki yutuqlarini bajarish uchun kerak bo'lgan asboblar bilan to'la. Uning ichida kompyuterlar, printerlar, telefaks mashinalari va boshqa asboblar mavjud.", "Ushbu to'plam o'zingizning ishingizni asanlashtirish uchun mo'ljallangan. Uni ichiga yengil masxarabozlar va qo'shimcha qo'llanmalar mavjud. Ushbu qo'llanmalar o'zingizning ishingizni qulaylashtiradi va osonlashtiradi.", + "Ushbu to'plam ovqatlanish uchun muhim mahsulotlar majmuasi. Uni ichiga ovqatlanishni yaxshi tuzish uchun kerak bo'lgan barcha narsalar kiritilgan. Uni oson yig'ish va saqlash mumkin.", "Ushbu to'plam yengil va sog'lom hayotni ta'minlash uchun mo'ljallangan. Uni ichiga muzlatilgan ichimliklar bor, shu bilan birga vitaminlar va naytrientlar ham. Bu ichimliklar sizni energiya bilan to'ldiradi va sog'lomlikni ta'minlaydi.", - "Bu to'plam ovqatlanish va pishirish uchun kerak bo'lgan barcha texnika va qo'shimcha mahsulotlar majmuasi. Uni ichiga elektrli pishirgichlar, qaynatgichlar, mikrovolnovka va boshqa asboblar bor.", - "Ushbu to'plam dizayn va dekoratsiyalar bo'yicha kerak bo'lgan barcha materiallarni o'z ichiga oladi. Uni ichiga rangli ranglar, qadamlar, panel va boshqa materiallar bor.", - "Bu to'plam bolalar uchun ta'lim va rivojlanishga mo'ljallangan o'yinlar majmuasi. Uni ichiga o'ziga xos rangli o'yinlar, elektron dasturlar va boshqa o'yinlar mavjud.", - "Ushbu tizim kichik bizneslar uchun xarajat va daromadlar hisobotlashda yordam beradi. Uni qo'llash oson va uni ishlatish oson. Bu tizim biznesning moliyaviy holatini yaxshilaydi va ma'lumotlarni to'plab yig'ishga yordam beradi.", "Ushbu to'plam yoshlar va bolalar uchun ta'lim va rivojlanishga mo'ljallangan o'yinlar majmuasi. Uni ichiga ta'limli o'yinlar, so'rovnoma va boshqa rivojlanish o'yinlari mavjud. Bu o'yinlar yoshlar va bolalar uchun foydali va o'zgaruvchan bo'lib xizmat qiladi.", + "Ushbu to'qima ustasi o'zgartirilgan dizayni va qulayliklari bilan ajralmas ma'muriyati bilan narsani ishlab chiqarishda yordam beradi. Uni oson qo'llash mumkin va uni joylashtirish oson.", + "Yuqori darajadagi grafika va kuchli protsessori bilan, bu noutbuk yuqori sifatli o'yinlar va kuchli dasturlar uchun idealdir. Uni qulaylik bilan o'zida yuritish va yuklash oson. Katta xotirasi va qulay klaviaturasiga ega.", ]; diff --git a/src/locales/uz_UZ_latin/commerce/product_name.ts b/src/locales/uz_UZ_latin/commerce/product_name.ts index 386eda7c823..1e685e8b55c 100644 --- a/src/locales/uz_UZ_latin/commerce/product_name.ts +++ b/src/locales/uz_UZ_latin/commerce/product_name.ts @@ -14,11 +14,11 @@ export default { 'Litsenziyalangan', 'Lyuks', 'Mayin', + 'Qattiq', 'Qayta ishlangan', 'Qimmat', "Qishloq xo'jaligi", "Qo'l bilan ishlangan", - 'Qattiq', 'Raqamli', 'Sharqona', 'Shaxsiy', @@ -44,12 +44,12 @@ export default { ], product: [ 'Avtomobil', - 'Baqlajon', 'Baliq', + 'Baqlajon', 'Chelak', 'Chexol', - 'Choynak', 'Chips', + 'Choynak', 'Daftar', 'Dasirmol', 'Dasturxon', @@ -63,11 +63,11 @@ export default { 'Guruch', 'Karom', 'Kitob', + "Ko'fta", + "Ko'ylak", 'Kolbasa', 'Kompyuter', 'Kreslo', - "Ko'fta", - "Ko'ylak", 'Kurtka', 'Lagan', 'Monitor', @@ -76,8 +76,8 @@ export default { 'Pishloq', 'Pitsa', 'Qahva', - "Qo'lqop", 'Qalam', + "Qo'lqop", 'Radar', 'Ruchka', 'Sabzi', diff --git a/src/locales/uz_UZ_latin/index.ts b/src/locales/uz_UZ_latin/index.ts index 37094e75be3..af7692b20ff 100644 --- a/src/locales/uz_UZ_latin/index.ts +++ b/src/locales/uz_UZ_latin/index.ts @@ -7,6 +7,7 @@ import color from './color'; import commerce from './commerce'; import date from './date'; import location from './location'; +import lorem from './lorem'; import metadata from './metadata'; import person from './person'; @@ -15,6 +16,7 @@ const uz_UZ_latin: LocaleDefinition = { commerce, date, location, + lorem, metadata, person, }; diff --git a/src/locales/uz_UZ_latin/lorem/index.ts b/src/locales/uz_UZ_latin/lorem/index.ts new file mode 100644 index 00000000000..2e093406a2b --- /dev/null +++ b/src/locales/uz_UZ_latin/lorem/index.ts @@ -0,0 +1,12 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { LoremDefinition } from '../../..'; +import words from './words'; + +const lorem: LoremDefinition = { + words, +}; + +export default lorem; diff --git a/src/locales/uz_UZ_latin/lorem/words.ts b/src/locales/uz_UZ_latin/lorem/words.ts new file mode 100644 index 00000000000..672028e498e --- /dev/null +++ b/src/locales/uz_UZ_latin/lorem/words.ts @@ -0,0 +1,1001 @@ +export default [ + 'a', + 'ab', + 'abbas', + 'abduco', + 'abeo', + 'abscido', + 'absconditus', + 'absens', + 'absorbeo', + 'absque', + 'abstergo', + 'absum', + 'abundans', + 'abutor', + 'accedo', + 'accendo', + 'acceptus', + 'accommodo', + 'accusamus', + 'accusantium', + 'accusator', + 'acer', + 'acerbitas', + 'acervus', + 'acidus', + 'acies', + 'acquiro', + 'acsi', + 'ad', + 'adamo', + 'adaugeo', + 'addo', + 'adduco', + 'ademptio', + 'adeo', + 'adeptio', + 'adfectus', + 'adfero', + 'adficio', + 'adflicto', + 'adhaero', + 'adhuc', + 'adicio', + 'adimpleo', + 'adinventitias', + 'adipisci', + 'adipiscor', + 'adiuvo', + 'administratio', + 'admiratio', + 'admitto', + 'admoneo', + 'admoveo', + 'adnuo', + 'adopto', + 'adsidue', + 'adstringo', + 'adsuesco', + 'adsum', + 'adulatio', + 'adulescens', + 'aduro', + 'advenio', + 'adversus', + 'advoco', + 'aedificium', + 'aeger', + 'aegre', + 'aegrotatio', + 'aegrus', + 'aeneus', + 'aequitas', + 'aequus', + 'aer', + 'aestas', + 'aestivus', + 'aestus', + 'aetas', + 'aeternus', + 'ager', + 'aggero', + 'aggredior', + 'agnitio', + 'agnosco', + 'ago', + 'ait', + 'aiunt', + 'alias', + 'alienus', + 'alii', + 'alioqui', + 'aliqua', + 'aliquam', + 'aliquid', + 'alius', + 'allatus', + 'alo', + 'alter', + 'altus', + 'alveus', + 'amaritudo', + 'ambitus', + 'ambulo', + 'amet', + 'amicitia', + 'amiculum', + 'amissio', + 'amita', + 'amitto', + 'amo', + 'amor', + 'amoveo', + 'amplexus', + 'amplitudo', + 'amplus', + 'ancilla', + 'angelus', + 'angulus', + 'angustus', + 'animadverto', + 'animi', + 'animus', + 'annus', + 'anser', + 'ante', + 'antea', + 'antepono', + 'antiquus', + 'aperiam', + 'aperio', + 'aperte', + 'apostolus', + 'apparatus', + 'appello', + 'appono', + 'appositus', + 'approbo', + 'apto', + 'aptus', + 'apud', + 'aqua', + 'ara', + 'aranea', + 'arbitro', + 'arbor', + 'arbustum', + 'arca', + 'arceo', + 'arcesso', + 'architecto', + 'arcus', + 'argentum', + 'argumentum', + 'arguo', + 'arma', + 'armarium', + 'aro', + 'ars', + 'articulus', + 'artificiose', + 'arto', + 'arx', + 'ascisco', + 'ascit', + 'asper', + 'asperiores', + 'aspernatur', + 'aspicio', + 'asporto', + 'assentator', + 'assumenda', + 'astrum', + 'at', + 'atavus', + 'ater', + 'atque', + 'atqui', + 'atrocitas', + 'atrox', + 'attero', + 'attollo', + 'attonbitus', + 'auctor', + 'auctus', + 'audacia', + 'audax', + 'audentia', + 'audeo', + 'audio', + 'auditor', + 'aufero', + 'aureus', + 'aurum', + 'aut', + 'autem', + 'autus', + 'auxilium', + 'avaritia', + 'avarus', + 'aveho', + 'averto', + 'baiulus', + 'balbus', + 'barba', + 'bardus', + 'basium', + 'beatae', + 'beatus', + 'bellicus', + 'bellum', + 'bene', + 'beneficium', + 'benevolentia', + 'benigne', + 'bestia', + 'bibo', + 'bis', + 'blandior', + 'blanditiis', + 'bonus', + 'bos', + 'brevis', + 'cado', + 'caecus', + 'caelestis', + 'caelum', + 'calamitas', + 'calcar', + 'calco', + 'calculus', + 'callide', + 'campana', + 'candidus', + 'canis', + 'canonicus', + 'canto', + 'capillus', + 'capio', + 'capitulus', + 'capto', + 'caput', + 'carbo', + 'carcer', + 'careo', + 'caries', + 'cariosus', + 'caritas', + 'carmen', + 'carpo', + 'carus', + 'casso', + 'caste', + 'casus', + 'catena', + 'caterva', + 'cattus', + 'cauda', + 'causa', + 'caute', + 'caveo', + 'cavus', + 'cedo', + 'celebrer', + 'celer', + 'celo', + 'cena', + 'cenaculum', + 'ceno', + 'censura', + 'centum', + 'cerno', + 'cernuus', + 'certe', + 'certus', + 'cervus', + 'cetera', + 'charisma', + 'chirographum', + 'cibo', + 'cibus', + 'cicuta', + 'cilicium', + 'cimentarius', + 'ciminatio', + 'cinis', + 'circumvenio', + 'cito', + 'civis', + 'civitas', + 'clam', + 'clamo', + 'claro', + 'clarus', + 'claudeo', + 'claustrum', + 'clementia', + 'clibanus', + 'coadunatio', + 'coaegresco', + 'coepi', + 'coerceo', + 'cogito', + 'cognatus', + 'cognomen', + 'cogo', + 'cohaero', + 'cohibeo', + 'cohors', + 'colligo', + 'collum', + 'colo', + 'color', + 'coma', + 'combibo', + 'comburo', + 'comedo', + 'comes', + 'cometes', + 'comis', + 'comitatus', + 'commemoro', + 'comminor', + 'commodi', + 'commodo', + 'communis', + 'comparo', + 'compello', + 'complectus', + 'compono', + 'comprehendo', + 'comptus', + 'conatus', + 'concedo', + 'concido', + 'conculco', + 'condico', + 'conduco', + 'confero', + 'confido', + 'conforto', + 'confugo', + 'congregatio', + 'conicio', + 'coniecto', + 'conitor', + 'coniuratio', + 'conor', + 'conqueror', + 'conscendo', + 'consectetur', + 'consequatur', + 'consequuntur', + 'conservo', + 'considero', + 'conspergo', + 'constans', + 'consuasor', + 'contabesco', + 'contego', + 'contigo', + 'contra', + 'conturbo', + 'conventus', + 'convoco', + 'copia', + 'copiose', + 'cornu', + 'corona', + 'corporis', + 'corpus', + 'correptius', + 'corrigo', + 'corroboro', + 'corrumpo', + 'corrupti', + 'coruscus', + 'cotidie', + 'crapula', + 'cras', + 'crastinus', + 'creator', + 'creber', + 'crebro', + 'credo', + 'creo', + 'creptio', + 'crepusculum', + 'cresco', + 'creta', + 'cribro', + 'crinis', + 'cruciamentum', + 'crudelis', + 'cruentus', + 'crur', + 'crustulum', + 'crux', + 'cubicularis', + 'cubitum', + 'cubo', + 'cui', + 'cuius', + 'culpa', + 'culpo', + 'cultellus', + 'cultura', + 'cum', + 'cumque', + 'cunabula', + 'cunae', + 'cunctatio', + 'cupiditas', + 'cupiditate', + 'cupio', + 'cuppedia', + 'cupressus', + 'cur', + 'cura', + 'curatio', + 'curia', + 'curiositas', + 'curis', + 'curo', + 'curriculum', + 'currus', + 'cursim', + 'curso', + 'cursus', + 'curto', + 'curtus', + 'curvo', + 'custodia', + 'damnatio', + 'damno', + 'dapifer', + 'debeo', + 'debilito', + 'debitis', + 'decens', + 'decerno', + 'decet', + 'decimus', + 'decipio', + 'decor', + 'decretum', + 'decumbo', + 'dedecor', + 'dedico', + 'deduco', + 'defaeco', + 'defendo', + 'defero', + 'defessus', + 'defetiscor', + 'deficio', + 'defleo', + 'defluo', + 'defungo', + 'degenero', + 'degero', + 'degusto', + 'deinde', + 'delectatio', + 'delectus', + 'delego', + 'deleniti', + 'deleo', + 'delibero', + 'delicate', + 'delinquo', + 'deludo', + 'demens', + 'demergo', + 'demitto', + 'demo', + 'demonstro', + 'demoror', + 'demulceo', + 'demum', + 'denego', + 'denique', + 'dens', + 'denuncio', + 'denuo', + 'deorsum', + 'depereo', + 'depono', + 'depopulo', + 'deporto', + 'depraedor', + 'deprecator', + 'deprimo', + 'depromo', + 'depulso', + 'deputo', + 'derelinquo', + 'derideo', + 'deripio', + 'deserunt', + 'desidero', + 'desino', + 'desipio', + 'desolo', + 'desparatus', + 'despecto', + 'dicta', + 'dignissimos', + 'distinctio', + 'dolor', + 'dolore', + 'dolorem', + 'doloremque', + 'dolores', + 'doloribus', + 'dolorum', + 'ducimus', + 'ea', + 'eaque', + 'earum', + 'eius', + 'eligendi', + 'enim', + 'eos', + 'error', + 'esse', + 'est', + 'et', + 'eum', + 'eveniet', + 'ex', + 'excepturi', + 'exercitationem', + 'expedita', + 'explicabo', + 'facere', + 'facilis', + 'fuga', + 'fugiat', + 'fugit', + 'harum', + 'hic', + 'id', + 'illo', + 'illum', + 'impedit', + 'in', + 'incidunt', + 'infit', + 'inflammatio', + 'inventore', + 'ipsa', + 'ipsam', + 'ipsum', + 'iste', + 'itaque', + 'iure', + 'iusto', + 'labore', + 'laboriosam', + 'laborum', + 'laudantium', + 'libero', + 'magnam', + 'magni', + 'maiores', + 'maxime', + 'minima', + 'minus', + 'modi', + 'molestiae', + 'molestias', + 'mollitia', + 'nam', + 'natus', + 'necessitatibus', + 'nemo', + 'neque', + 'nesciunt', + 'nihil', + 'nisi', + 'nobis', + 'non', + 'nostrum', + 'nulla', + 'numquam', + 'occaecati', + 'ocer', + 'odio', + 'odit', + 'officia', + 'officiis', + 'omnis', + 'optio', + 'paens', + 'pariatur', + 'patior', + 'patria', + 'patrocinor', + 'patruus', + 'pauci', + 'paulatim', + 'pauper', + 'pax', + 'peccatus', + 'pecco', + 'pecto', + 'pectus', + 'pecus', + 'peior', + 'pel', + 'perferendis', + 'perspiciatis', + 'placeat', + 'porro', + 'possimus', + 'praesentium', + 'provident', + 'quae', + 'quaerat', + 'quam', + 'quas', + 'quasi', + 'qui', + 'quia', + 'quibusdam', + 'quidem', + 'quis', + 'quisquam', + 'quo', + 'quod', + 'quos', + 'ratione', + 'recusandae', + 'reiciendis', + 'rem', + 'repellat', + 'repellendus', + 'reprehenderit', + 'repudiandae', + 'rerum', + 'saepe', + 'sapiente', + 'sed', + 'sequi', + 'similique', + 'sint', + 'sit', + 'socius', + 'sodalitas', + 'sol', + 'soleo', + 'solio', + 'solitudo', + 'solium', + 'sollers', + 'sollicito', + 'solum', + 'solus', + 'soluta', + 'solutio', + 'solvo', + 'somniculosus', + 'somnus', + 'sonitus', + 'sono', + 'sophismata', + 'sopor', + 'sordeo', + 'sortitus', + 'spargo', + 'speciosus', + 'spectaculum', + 'speculum', + 'sperno', + 'spero', + 'spes', + 'spiculum', + 'spiritus', + 'spoliatio', + 'sponte', + 'stabilis', + 'statim', + 'statua', + 'stella', + 'stillicidium', + 'stipes', + 'stips', + 'sto', + 'strenuus', + 'strues', + 'studio', + 'stultus', + 'suadeo', + 'suasoria', + 'sub', + 'subito', + 'subiungo', + 'sublime', + 'subnecto', + 'subseco', + 'substantia', + 'subvenio', + 'succedo', + 'succurro', + 'sufficio', + 'suffoco', + 'suffragium', + 'suggero', + 'sui', + 'sulum', + 'sum', + 'summa', + 'summisse', + 'summopere', + 'sumo', + 'sumptus', + 'sunt', + 'supellex', + 'super', + 'suppellex', + 'supplanto', + 'suppono', + 'supra', + 'surculus', + 'surgo', + 'sursum', + 'suscipio', + 'suscipit', + 'suspendo', + 'sustineo', + 'suus', + 'synagoga', + 'tabella', + 'tabernus', + 'tabesco', + 'tabgo', + 'tabula', + 'taceo', + 'tactus', + 'taedium', + 'talio', + 'talis', + 'talus', + 'tam', + 'tamdiu', + 'tamen', + 'tametsi', + 'tamisium', + 'tamquam', + 'tandem', + 'tantillus', + 'tantum', + 'tardus', + 'tego', + 'temeritas', + 'temperantia', + 'templum', + 'tempora', + 'tempore', + 'temporibus', + 'temptatio', + 'tempus', + 'tenax', + 'tendo', + 'teneo', + 'tener', + 'tenetur', + 'tenuis', + 'tenus', + 'tepesco', + 'tepidus', + 'ter', + 'terebro', + 'teres', + 'terga', + 'tergeo', + 'tergiversatio', + 'tergo', + 'tergum', + 'termes', + 'terminatio', + 'tero', + 'terra', + 'terreo', + 'territo', + 'terror', + 'tersus', + 'tertius', + 'testimonium', + 'texo', + 'textilis', + 'textor', + 'textus', + 'thalassinus', + 'theatrum', + 'theca', + 'thema', + 'theologus', + 'thermae', + 'thesaurus', + 'thesis', + 'thorax', + 'thymbra', + 'thymum', + 'tibi', + 'timidus', + 'timor', + 'titulus', + 'tolero', + 'tollo', + 'tondeo', + 'tonsor', + 'torqueo', + 'torrens', + 'tot', + 'totam', + 'totidem', + 'toties', + 'totus', + 'tracto', + 'trado', + 'traho', + 'trans', + 'tredecim', + 'tremo', + 'trepide', + 'tres', + 'tribuo', + 'tricesimus', + 'triduana', + 'tripudio', + 'tristis', + 'triumphus', + 'trucido', + 'truculenter', + 'tubineus', + 'tui', + 'tum', + 'tumultus', + 'tunc', + 'turba', + 'turbo', + 'turpis', + 'tutamen', + 'tutis', + 'tyrannus', + 'uberrime', + 'ubi', + 'ulciscor', + 'ullam', + 'ullus', + 'ulterius', + 'ultio', + 'ultra', + 'umbra', + 'umerus', + 'umquam', + 'una', + 'unde', + 'undique', + 'universe', + 'unus', + 'urbanus', + 'urbs', + 'uredo', + 'usitas', + 'usque', + 'ustilo', + 'ustulo', + 'usus', + 'ut', + 'uter', + 'uterque', + 'utilis', + 'utique', + 'utor', + 'utpote', + 'utrimque', + 'utroque', + 'utrum', + 'uxor', + 'vaco', + 'vacuus', + 'vado', + 'vae', + 'valde', + 'valens', + 'valeo', + 'valetudo', + 'validus', + 'vallum', + 'vapulus', + 'varietas', + 'varius', + 'vehemens', + 'vel', + 'velit', + 'velociter', + 'velum', + 'velut', + 'venia', + 'veniam', + 'venio', + 'ventito', + 'ventosus', + 'ventus', + 'venustas', + 'ver', + 'verbera', + 'verbum', + 'vere', + 'verecundia', + 'vereor', + 'vergo', + 'veritas', + 'veritatis', + 'vero', + 'versus', + 'verto', + 'verumtamen', + 'verus', + 'vesco', + 'vesica', + 'vesper', + 'vespillo', + 'vester', + 'vestigium', + 'vestrum', + 'vetus', + 'via', + 'vicinus', + 'vicissitudo', + 'victoria', + 'victus', + 'videlicet', + 'video', + 'viduo', + 'vigilo', + 'vigor', + 'vilicus', + 'vilis', + 'vilitas', + 'villa', + 'vinco', + 'vinculum', + 'vindico', + 'vinitor', + 'vinum', + 'vir', + 'virga', + 'virgo', + 'viridis', + 'viriliter', + 'virtus', + 'vis', + 'viscus', + 'vita', + 'vitae', + 'vitiosus', + 'vitium', + 'vito', + 'vivo', + 'vix', + 'vobis', + 'vociferor', + 'voco', + 'volaticus', + 'volo', + 'volubilis', + 'voluntarius', + 'volup', + 'voluptas', + 'voluptate', + 'voluptatem', + 'voluptates', + 'voluptatibus', + 'voluptatum', + 'volutabrum', + 'volva', + 'vomer', + 'vomica', + 'vomito', + 'vorago', + 'vorax', + 'voro', + 'vos', + 'votum', + 'voveo', + 'vox', + 'vulariter', + 'vulgaris', + 'vulgivagus', + 'vulgo', + 'vulgus', + 'vulnero', + 'vulnus', + 'vulpes', + 'vulticulus', + 'xiphias', +]; diff --git a/src/locales/vi/company/prefix.ts b/src/locales/vi/company/prefix.ts index e6fb2ddde59..f0d98a8d4b5 100644 --- a/src/locales/vi/company/prefix.ts +++ b/src/locales/vi/company/prefix.ts @@ -1,8 +1,8 @@ export default [ - 'Công ty', - 'Cty TNHH', + 'Chi nhánh', 'Cty', + 'Cty TNHH', + 'Công ty', 'Cửa hàng', 'Trung tâm', - 'Chi nhánh', ]; diff --git a/src/locales/zh_CN/commerce/department.ts b/src/locales/zh_CN/commerce/department.ts index 6dfed97f586..508a0689034 100644 --- a/src/locales/zh_CN/commerce/department.ts +++ b/src/locales/zh_CN/commerce/department.ts @@ -1,24 +1,24 @@ export default [ - '书籍', - '电影', - '音乐', - '游戏', - '电子', - '电脑', '主页', - '花园', - '工具', - '杂货', + '书籍', '健康', - '美丽', - '玩具', '孩子', '宝宝', + '工业', + '工具', + '户外', '服装', - '鞋子', + '杂货', + '汽车', + '游戏', + '玩具', '珠宝', + '电子', + '电影', + '电脑', + '美丽', + '花园', '运动', - '户外', - '汽车', - '工业', + '鞋子', + '音乐', ]; diff --git a/src/locales/zh_CN/commerce/product_description.ts b/src/locales/zh_CN/commerce/product_description.ts index b26015d66cd..f1a0b0f5610 100644 --- a/src/locales/zh_CN/commerce/product_description.ts +++ b/src/locales/zh_CN/commerce/product_description.ts @@ -1,12 +1,12 @@ export default [ - '人体工学椅电脑椅家用宿舍学生学习椅舒适久坐办公座椅转椅书桌椅', - '鼠标有线USB静音无声家用办公台式笔记本电脑家用商务电竞男', - '台式电脑机械硬盘SATA串口320G 500G 1TB 2T 3TB 4TB支持游戏监控', + 'Sony/索尼 XR-55A80EK 55英寸4K超清认知智能OLED安卓摄像头电视', '【2023新品官方旗舰正品】DERE戴睿笔记本电脑二合一新Surface Pro13平板商务办公学生教育超轻薄便携电脑本', + '【新品享壕礼】vivo iQOO Z8x手机官方旗舰店新品上市官网正品学生大电池大内存手机iqoo z7 z7x', + '【至高立省300元 赠数据线】vivo Y78新品全面屏游戏拍照学生5G智能手机大电池官方旗舰店老人机Y78+ Y77', + '人体工学椅电脑椅家用宿舍学生学习椅舒适久坐办公座椅转椅书桌椅', '华为笔记本电脑MateBook X Pro 2023 13代酷睿版锐炬显卡14.2英寸3.1K原色触控屏超轻薄旗舰微绒典藏1943', '可选16G【M2芯片】Apple/苹果 MacBook Pro 13英寸笔记本电脑剪辑设计大学生办公专用正品分期24G', - 'Sony/索尼 XR-55A80EK 55英寸4K超清认知智能OLED安卓摄像头电视', + '台式电脑机械硬盘SATA串口320G 500G 1TB 2T 3TB 4TB支持游戏监控', '小米电视 Redmi A43 高清智能电视 43英寸液晶平板电视L43RA-RA', - '【新品享壕礼】vivo iQOO Z8x手机官方旗舰店新品上市官网正品学生大电池大内存手机iqoo z7 z7x', - '【至高立省300元 赠数据线】vivo Y78新品全面屏游戏拍照学生5G智能手机大电池官方旗舰店老人机Y78+ Y77', + '鼠标有线USB静音无声家用办公台式笔记本电脑家用商务电竞男', ]; diff --git a/src/locales/zh_CN/commerce/product_name.ts b/src/locales/zh_CN/commerce/product_name.ts index 00e8e98f2de..fe8f63ca158 100644 --- a/src/locales/zh_CN/commerce/product_name.ts +++ b/src/locales/zh_CN/commerce/product_name.ts @@ -1,68 +1,68 @@ export default { adjective: [ - '小的', - '人体工程学的', - '电子的', - '质朴的', - '智能的', - '华丽的', '不可思议的', + '东方的', + '人体工程学的', '优雅的', - '精彩绝伦的', - '实用的', - '现代的', + '华丽的', '回收的', '圆滑的', + '好吃', '定制的', - '贼好用的', - '通用的', - '手工的', - '手工制作的', - '东方的', + '实用的', + '小的', '已许可的', - '豪华的', - '精致的', + '手工制作的', + '手工的', '无品牌的', - '好吃', + '智能的', + '现代的', + '电子的', + '精彩绝伦的', + '精致的', + '豪华的', + '质朴的', + '贼好用的', + '通用的', ], material: [ - '钢', - '青铜', - '木制', - '混凝土', + '冷冻', '塑料', + '新鲜', + '木制', '棉花', - '花岗岩', '橡胶', - '金属', + '混凝土', + '花岗岩', '软', - '新鲜', - '冷冻', + '金属', + '钢', + '青铜', ], product: [ + '培根', + '奶酪', + '帽子', + '手套', + '披萨', + '桌子', '椅子', + '毛巾', '汽车', + '沙拉', + '球', '电脑', - '键盘', - '鼠标', + '肥皂', '自行车', - '球', - '手套', - '裤子', + '薯条', '衬衫', - '桌子', - '鞋子', - '帽子', - '毛巾', - '肥皂', + '裤子', '金枪鱼', - '鸡肉', - '鱼肉', - '奶酪', - '培根', - '披萨', - '沙拉', + '键盘', + '鞋子', '香肠', - '薯条', + '鱼肉', + '鸡肉', + '鼠标', ], }; diff --git a/src/locales/zh_CN/company/category.ts b/src/locales/zh_CN/company/category.ts index c58bbcb744f..ebff3b9408d 100644 --- a/src/locales/zh_CN/company/category.ts +++ b/src/locales/zh_CN/company/category.ts @@ -1,16 +1,16 @@ export default [ - '水产', - '林业', - '矿业', - '建设', - '食品', + '传媒', + '保险', '印刷', - '电力', + '建设', + '旅游发展', + '林业', + '水产', '燃气', - '网络科技', '物流', - '保险', - '旅游发展', - '传媒', + '电力', + '矿业', + '网络科技', '运输', + '食品', ]; diff --git a/src/locales/zh_CN/company/name_pattern.ts b/src/locales/zh_CN/company/name_pattern.ts index 4877a982f73..9c9270c3e17 100644 --- a/src/locales/zh_CN/company/name_pattern.ts +++ b/src/locales/zh_CN/company/name_pattern.ts @@ -1,4 +1,4 @@ export default [ - '{{location.state}}{{person.first_name}}{{company.category}}{{company.type}}', '{{location.city}}{{person.first_name}}{{company.category}}{{company.type}}', + '{{location.state}}{{person.first_name}}{{company.category}}{{company.type}}', ]; diff --git a/src/locales/zh_CN/company/type.ts b/src/locales/zh_CN/company/type.ts index b40e55cf86e..8c17760ce70 100644 --- a/src/locales/zh_CN/company/type.ts +++ b/src/locales/zh_CN/company/type.ts @@ -1,9 +1,9 @@ export default [ + '无限公司', + '无限责任公司', + '有限公司', '有限责任公司', '股份有限公司', - '有限公司', - '(集团)有限公司', '集团有限公司', - '无限公司', - '无限责任公司', + '(集团)有限公司', ]; diff --git a/src/locales/zh_CN/database/column.ts b/src/locales/zh_CN/database/column.ts index c7b22df9951..08e58f304f4 100644 --- a/src/locales/zh_CN/database/column.ts +++ b/src/locales/zh_CN/database/column.ts @@ -1,16 +1,16 @@ export default [ - '标识', - '标题', - '名称', - '邮箱', - '手机', '令牌', - '组别', - '类别', + '创建于', + '名称', + '头像', '密码', + '手机', + '更新于', + '标识', + '标题', '注释', - '头像', '状态', - '创建于', - '更新于', + '类别', + '组别', + '邮箱', ]; diff --git a/src/locales/zh_CN/hacker/adjective.ts b/src/locales/zh_CN/hacker/adjective.ts index 963cbf92485..4b234c1a8a6 100644 --- a/src/locales/zh_CN/hacker/adjective.ts +++ b/src/locales/zh_CN/hacker/adjective.ts @@ -1,19 +1,19 @@ export default [ - '辅助', '主要', - '后端', - '开源', - '虚拟', - '跨平台', + '光学', + '全高清', '冗余', + '后端', + '固态', '在线', - '触控', '多字节', - '蓝牙', + '开源', '无线', - '全高清', '神经元', - '光学', - '固态', '移动', + '蓝牙', + '虚拟', + '触控', + '跨平台', + '辅助', ]; diff --git a/src/locales/zh_CN/hacker/noun.ts b/src/locales/zh_CN/hacker/noun.ts index 49d9c9ced36..ed007d9f6ec 100644 --- a/src/locales/zh_CN/hacker/noun.ts +++ b/src/locales/zh_CN/hacker/noun.ts @@ -1,26 +1,26 @@ export default [ - '驱动', - '协议', - '带宽', - '面板', - '芯片', - '程序', - '端口', - '卡片', - '数组', - '接口', - '系统', '传感器', - '防火墙', - '硬盘', '像素', - '警报', - '提要', - '监视器', - '应用', + '协议', + '卡片', '发送端', + '带宽', + '应用', '总线', - '电路', + '接口', + '提要', + '数组', '电容器', + '电路', + '监视器', '矩阵', + '硬盘', + '程序', + '端口', + '系统', + '芯片', + '警报', + '防火墙', + '面板', + '驱动', ]; diff --git a/src/locales/zh_CN/hacker/phrase.ts b/src/locales/zh_CN/hacker/phrase.ts index 6515965dfb5..93b908d5f32 100644 --- a/src/locales/zh_CN/hacker/phrase.ts +++ b/src/locales/zh_CN/hacker/phrase.ts @@ -1,10 +1,10 @@ export default [ - '倘若我们{{verb}}{{noun}},我们就可以通过{{adjective}}{{abbreviation}}{{noun}}获得{{abbreviation}}{{noun}}!', - '我们需要{{verb}}{{adjective}}{{abbreviation}}{{noun}}!', - '尝试{{verb}}{{abbreviation}}{{noun}},也许会{{verb}}{{adjective}}{{noun}}!', - '在没有{{verb}}{{adjective}}{{abbreviation}}{{noun}}的情况下,你不能{{verb}}{{noun}}!', - '使用{{adjective}}{{abbreviation}}{{noun}},然后你就能{{verb}}{{adjective}}{{noun}}!', '{{abbreviation}}{{noun}}已关闭,因为{{adjective}}{{noun}}所以我们能{{verb}}{{abbreviation}}{{noun}}!', '{{verb}}{{noun}}是无济于事的,我们需要{{verb}}{{adjective}}{{abbreviation}}{{noun}}!', + '使用{{adjective}}{{abbreviation}}{{noun}},然后你就能{{verb}}{{adjective}}{{noun}}!', + '倘若我们{{verb}}{{noun}},我们就可以通过{{adjective}}{{abbreviation}}{{noun}}获得{{abbreviation}}{{noun}}!', + '在没有{{verb}}{{adjective}}{{abbreviation}}{{noun}}的情况下,你不能{{verb}}{{noun}}!', + '尝试{{verb}}{{abbreviation}}{{noun}},也许会{{verb}}{{adjective}}{{noun}}!', + '我们需要{{verb}}{{adjective}}{{abbreviation}}{{noun}}!', '我将{{verb}}{{adjective}}{{abbreviation}}{{noun}},那是应该{{noun}}{{abbreviation}}{{noun}}!', ]; diff --git a/src/locales/zh_CN/hacker/verb.ts b/src/locales/zh_CN/hacker/verb.ts index 06759b7c3a5..e576c15ae70 100644 --- a/src/locales/zh_CN/hacker/verb.ts +++ b/src/locales/zh_CN/hacker/verb.ts @@ -1,20 +1,20 @@ export default [ - '备份', - '绕过', + '传输', '入侵', - '覆盖', '压缩', + '合成', + '备份', '复制', '导航', - '索引', - '链接', '生成', - '量化', + '索引', + '绕过', + '编程', + '覆盖', + '解析', '计算', - '合成', '输入', - '传输', - '编程', '重启', - '解析', + '量化', + '链接', ]; diff --git a/src/locales/zh_CN/music/genre.ts b/src/locales/zh_CN/music/genre.ts index 6977f65a123..4a2426c9097 100644 --- a/src/locales/zh_CN/music/genre.ts +++ b/src/locales/zh_CN/music/genre.ts @@ -1,20 +1,20 @@ export default [ - '摇滚', - '流行', - '重金属', - '电子', - '民谣', '世界', '乡村', - '爵士', - '放克', - '灵魂', '嘻哈', - '经典', '拉丁', + '摇滚', + '放克', + '民谣', + '流行', + '灵魂', + '爵士', '牙买加', + '电子', + '经典', + '舞台与银幕', '蓝调', - '非音乐', '说唱', - '舞台与银幕', + '重金属', + '非音乐', ]; diff --git a/src/locales/zh_CN/music/song_name.ts b/src/locales/zh_CN/music/song_name.ts index 9a8e2283003..aa662bfe6ee 100644 --- a/src/locales/zh_CN/music/song_name.ts +++ b/src/locales/zh_CN/music/song_name.ts @@ -1,118 +1,118 @@ export default [ - '白月光与朱砂痣', - '孤勇者', - '稻香', - '起风了', - '纪念', - '晴天', - '兰亭序', - '我流泪情绪零碎', - '七里香', - '花海', - '反方向的钟', - '一路向北', - '蒲公英的约定', - '夜曲', - '搁浅', - '海底', '105度的你', - '明明就', - '爱在西元前', - '我如此相信', - '枫', - '青花瓷', - '半岛铁盒', - '说了再见', - '暗号', - '退后', - '最长的电影', - '等你下课', - '烟花易冷', - '不该', - '告白气球', - '说好不哭', - '轨迹', - '红尘客栈', + '一点点', + '一路向北', + '七里香', + '不爱我拉倒', '不能说的秘密', - '珊瑚海', - '给我一首歌的时间', + '不该', + '世界末日', + '东风破', + '义勇军进行曲', + '之战之殇', + '以父之名', '你听得到', - '简单的爱', - '龙卷风', + '倒影', + '兰亭序', + '刀马旦', + '分裂', + '千里之外', + '半岛铁盒', + '反方向的钟', '发如雪', - '园游会', + '可爱女人', '听妈妈的话', + '听悲伤的情话', + '听见下雨的声音', + '告白气球', + '周大侠', + '哪里都是你', + '回到过去', + '园游会', + '在你身边', + '堕', + '夏日妄想', + '夏至未至', + '外婆', + '夜曲', '夜的第七章', - '接口', - '手写从前', + '大本钟', + '大鱼', + '奢香夫人', + '她的睫毛', + '孤勇者', '安静', - '爱情废材', - '以父之名', - '我不配', - '最伟大的作品', - '可爱女人', + '小城夏天', + '少年', + '布拉格广场', + '开不了口', '彩虹', - '回到过去', - '听悲伤的情话', + '心雨', + '忍者', + '悬溺', + '我不配', + '我如此相信', + '我流泪情绪零碎', + '手写从前', '把回忆拼好给你', - '东风破', - '黑色毛衣', + '接口', + '搁浅', + '断了的弦', + '明明就', + '星晴', + '晴天', + '暖暖', + '暗号', + '最伟大的作品', + '最好的安排', + '最长的电影', '本草纲目', - '开不了口', - '霍元甲', + '枫', + '海底', + '灯火里的中国', + '烟花易冷', + '爱在西元前', + '爱情废材', '爱的飞行日记', - '大本钟', - '断了的弦', '爷爷泡的茶', - '星晴', + '牛仔很忙', + '玫瑰少年', + '珊瑚海', '甜甜的', - '红颜如霜', - '粉色海洋', - '她的睫毛', - '雨下一整晚', + '画沙', + '白月光与朱砂痣', '白色风车', - '还在流浪', - '阳光宅男', + '稻香', + '等你下课', + '简单的爱', '算什么男人', + '米兰的小铁匠', + '粉色海洋', + '红尘客栈', + '红颜如霜', + '纪念', + '给我一首歌的时间', + '美人鱼', + '花海', '菊花台', - '千里之外', + '蒲公英的约定', + '说了再见', + '说好不哭', + '调查中', + '起风了', + '超人不会飞', + '轨迹', + '还在流浪', + '退后', + '铃芽之旅', '错过的烟火', - '倒影', - '听见下雨的声音', + '阳光宅男', + '雨下一整晚', + '霍元甲', + '青花瓷', + '飘移', '黑色幽默', + '黑色毛衣', '默', - '不爱我拉倒', - '之战之殇', - '布拉格广场', - '美人鱼', - '分裂', - '心雨', - '米兰的小铁匠', - '世界末日', - '一点点', - '外婆', - '画沙', - '哪里都是你', - '刀马旦', - '超人不会飞', - '牛仔很忙', - '周大侠', - '飘移', - '忍者', - '夏日妄想', - '铃芽之旅', - '玫瑰少年', - '大鱼', - '灯火里的中国', - '义勇军进行曲', - '调查中', - '少年', - '堕', - '在你身边', - '悬溺', - '奢香夫人', - '最好的安排', - '夏至未至', - '小城夏天', - '暖暖', + '龙卷风', ]; diff --git a/src/locales/zh_CN/vehicle/bicycle_type.ts b/src/locales/zh_CN/vehicle/bicycle_type.ts index 4b0b35038d9..9365b5ac911 100644 --- a/src/locales/zh_CN/vehicle/bicycle_type.ts +++ b/src/locales/zh_CN/vehicle/bicycle_type.ts @@ -1,20 +1,20 @@ export default [ + '三轮车', + '健身自行车', + '公路自行车', '冒险公路自行车', - '小轮车自行车', + '卧式自行车', + '双人自行车', + '双运动自行车', + '场地/固定齿轮自行车', '城市自行车', + '小轮车自行车', + '山地自行车', '巡洋舰自行车', - '越野自行车', - '双运动自行车', - '健身自行车', '平足舒适自行车', '折叠自行车', - '混合动力自行车', - '山地自行车', - '卧式自行车', - '公路自行车', - '双人自行车', '旅行自行车', - '场地/固定齿轮自行车', + '混合动力自行车', + '越野自行车', '铁人三项/计时自行车', - '三轮车', ]; diff --git a/src/locales/zh_CN/vehicle/fuel.ts b/src/locales/zh_CN/vehicle/fuel.ts index a37432255d1..28179f4b710 100644 --- a/src/locales/zh_CN/vehicle/fuel.ts +++ b/src/locales/zh_CN/vehicle/fuel.ts @@ -1 +1 @@ -export default ['柴油', '电动', '汽油', '混合动力']; +export default ['柴油', '汽油', '混合动力', '电动']; diff --git a/src/locales/zh_CN/vehicle/manufacturer.ts b/src/locales/zh_CN/vehicle/manufacturer.ts index 234c4490955..6f01458fb90 100644 --- a/src/locales/zh_CN/vehicle/manufacturer.ts +++ b/src/locales/zh_CN/vehicle/manufacturer.ts @@ -1,34 +1,34 @@ export default [ - '阿斯顿·马丁', + '丰田', + '保时捷', + '克莱斯勒', + '兰博基尼', + '劳斯莱斯', + '卡迪拉克', + '吉普车', + '大众汽车', + '奔驰', '奥迪', - '宾利', '宝马', + '宾利', + '小型的', '布加迪', - '卡迪拉克', - '雪佛兰', - '克莱斯勒', - '躲闪', - '法拉利', - '菲亚特', - '福特', + '捷豹', + '日产', '本田', + '极星', + '沃尔沃', + '法拉利', + '特斯拉', + '玛莎拉蒂', '现代', - '捷豹', - '吉普车', + '福特', + '聪明的', + '菲亚特', '起亚', - '兰博基尼', '路虎', - '玛莎拉蒂', + '躲闪', + '阿斯顿·马丁', + '雪佛兰', '马自达', - '奔驰', - '小型的', - '日产', - '极星', - '保时捷', - '劳斯莱斯', - '聪明的', - '特斯拉', - '丰田', - '大众汽车', - '沃尔沃', ]; diff --git a/src/locales/zh_CN/vehicle/type.ts b/src/locales/zh_CN/vehicle/type.ts index 28759059b67..1abd16619a2 100644 --- a/src/locales/zh_CN/vehicle/type.ts +++ b/src/locales/zh_CN/vehicle/type.ts @@ -1 +1 @@ -export default ['货车', '掀背车', '面包车', '客车', '越野车', '轿车', '旅行车']; +export default ['客车', '掀背车', '旅行车', '货车', '越野车', '轿车', '面包车']; diff --git a/src/locales/zu_ZA/company/suffix.ts b/src/locales/zu_ZA/company/suffix.ts index d1bd220258d..872faf24941 100644 --- a/src/locales/zu_ZA/company/suffix.ts +++ b/src/locales/zu_ZA/company/suffix.ts @@ -1 +1 @@ -export default ['Pty Ltd', 'Ltd', 'CC']; +export default ['CC', 'Ltd', 'Pty Ltd']; diff --git a/src/modules/music/index.ts b/src/modules/music/index.ts index 332b45306ad..e3d56715b1c 100644 --- a/src/modules/music/index.ts +++ b/src/modules/music/index.ts @@ -5,9 +5,43 @@ import { ModuleBase } from '../../internal/module-base'; * * ### Overview * - * Generate a random music genre with [`genre()`](https://fakerjs.dev/api/music.html#genre) or song name with [`songName()`](https://fakerjs.dev/api/music.html#songname). Both may be localized. + * Generate random music content. + * + * For a random album name, use [`album()`](https://fakerjs.dev/api/music.html#album). + * + * For a random artist, use [`artist()`](https://fakerjs.dev/api/music.html#artist). + * + * For a random genre, use [`genre()`](https://fakerjs.dev/api/music.html#genre). + * + * For a random song name, [`songName()`](https://fakerjs.dev/api/music.html#songname). + * + * All data types may be localized. */ export class MusicModule extends ModuleBase { + /** + * Returns a random album name. + * + * @example + * faker.music.album() // '1989' + * + * @since 9.0.0 + */ + album(): string { + return this.faker.helpers.arrayElement(this.faker.definitions.music.album); + } + + /** + * Returns a random artist name. + * + * @example + * faker.music.artist() // 'The Beatles' + * + * @since 9.0.0 + */ + artist(): string { + return this.faker.helpers.arrayElement(this.faker.definitions.music.artist); + } + /** * Returns a random music genre. * diff --git a/src/modules/vehicle/index.ts b/src/modules/vehicle/index.ts index e47b7b05765..d032465a42d 100644 --- a/src/modules/vehicle/index.ts +++ b/src/modules/vehicle/index.ts @@ -96,7 +96,7 @@ export class VehicleModule extends ModuleBase { length: 1, casing: 'upper', exclude, - })}${this.faker.number.int({ min: 10000, max: 99999 })}`; // return five digit # + })}${this.faker.string.numeric({ length: 5, allowLeadingZeros: true })}`; } /** diff --git a/test/docs/versions.spec.ts b/test/docs/versions.spec.ts index 777efcb2c9c..5567fd7323f 100644 --- a/test/docs/versions.spec.ts +++ b/test/docs/versions.spec.ts @@ -1,7 +1,7 @@ import { execSync } from 'node:child_process'; import * as semver from 'semver'; import { describe, expect, it } from 'vitest'; -import { oldVersions } from '../../docs/.vitepress/versions'; +import { versionLinks } from '../../docs/.vitepress/versions'; function isFakerOrigin(): boolean { try { @@ -22,19 +22,14 @@ function isFakerOrigin(): boolean { describe.runIf(isFakerOrigin())('docs versions', () => { describe('oldVersions', () => { it('should have a complete set of oldVersions', () => { - expect(oldVersions.length).toBeGreaterThanOrEqual(2); + expect(versionLinks.length).toBeGreaterThanOrEqual(1); - expect(oldVersions[0]).toEqual({ - version: 'latest', - link: 'https://fakerjs.dev/', - }); - - const versionEntry = oldVersions[1]; + const versionEntry = versionLinks[0]; if (versionEntry.version === 'next') { expect(versionEntry.link).toBe('https://next.fakerjs.dev/'); } - const releaseVersions = oldVersions.filter(({ version }) => + const releaseVersions = versionLinks.filter(({ version }) => semver.valid(version) ); const latestMajorRelease = semver.major(releaseVersions[0].version); diff --git a/test/modules/__snapshots__/commerce.spec.ts.snap b/test/modules/__snapshots__/commerce.spec.ts.snap index 2cd27effddf..efad4c8ff0d 100644 --- a/test/modules/__snapshots__/commerce.spec.ts.snap +++ b/test/modules/__snapshots__/commerce.spec.ts.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`commerce > 42 > department 1`] = `"Tools"`; +exports[`commerce > 42 > department 1`] = `"Garden"`; exports[`commerce > 42 > isbn > noArgs 1`] = `"978-0-9751108-6-7"`; @@ -26,17 +26,17 @@ exports[`commerce > 42 > price > with min and max option 1`] = `"68.75"`; exports[`commerce > 42 > price > with min option 1`] = `"400.85"`; -exports[`commerce > 42 > product 1`] = `"Pants"`; +exports[`commerce > 42 > product 1`] = `"Computer"`; -exports[`commerce > 42 > productAdjective 1`] = `"Fantastic"`; +exports[`commerce > 42 > productAdjective 1`] = `"Handcrafted"`; -exports[`commerce > 42 > productDescription 1`] = `"The Apollotech B340 is an affordable wireless mouse with reliable connectivity, 12 months battery life and modern design"`; +exports[`commerce > 42 > productDescription 1`] = `"New ABC 13 9370, 13.3, 5th Gen CoreA5-8250U, 8GB RAM, 256GB SSD, power UHD Graphics, OS 10 Home, OS Office A & J 2016"`; -exports[`commerce > 42 > productMaterial 1`] = `"Plastic"`; +exports[`commerce > 42 > productMaterial 1`] = `"Frozen"`; -exports[`commerce > 42 > productName 1`] = `"Fantastic Frozen Fish"`; +exports[`commerce > 42 > productName 1`] = `"Handcrafted Wooden Sausages"`; -exports[`commerce > 1211 > department 1`] = `"Automotive"`; +exports[`commerce > 1211 > department 1`] = `"Tools"`; exports[`commerce > 1211 > isbn > noArgs 1`] = `"978-1-82966-736-0"`; @@ -62,15 +62,15 @@ exports[`commerce > 1211 > price > with min and max option 1`] = `"96.49"`; exports[`commerce > 1211 > price > with min option 1`] = `"931.59"`; -exports[`commerce > 1211 > product 1`] = `"Sausages"`; +exports[`commerce > 1211 > product 1`] = `"Towels"`; -exports[`commerce > 1211 > productAdjective 1`] = `"Unbranded"`; +exports[`commerce > 1211 > productAdjective 1`] = `"Tasty"`; -exports[`commerce > 1211 > productDescription 1`] = `"Andy shoes are designed to keeping in mind durability as well as trends, the most stylish range of shoes & sandals"`; +exports[`commerce > 1211 > productDescription 1`] = `"The slim & simple Maple Gaming Keyboard from Dev Byte comes with a sleek body and 7- Color RGB LED Back-lighting for smart functionality"`; -exports[`commerce > 1211 > productMaterial 1`] = `"Frozen"`; +exports[`commerce > 1211 > productMaterial 1`] = `"Wooden"`; -exports[`commerce > 1211 > productName 1`] = `"Unbranded Fresh Bike"`; +exports[`commerce > 1211 > productName 1`] = `"Tasty Steel Cheese"`; exports[`commerce > 1337 > department 1`] = `"Computers"`; @@ -98,12 +98,12 @@ exports[`commerce > 1337 > price > with min and max option 1`] = `"63.19"`; exports[`commerce > 1337 > price > with min option 1`] = `"293.09"`; -exports[`commerce > 1337 > product 1`] = `"Ball"`; +exports[`commerce > 1337 > product 1`] = `"Chicken"`; -exports[`commerce > 1337 > productAdjective 1`] = `"Incredible"`; +exports[`commerce > 1337 > productAdjective 1`] = `"Generic"`; -exports[`commerce > 1337 > productDescription 1`] = `"The slim & simple Maple Gaming Keyboard from Dev Byte comes with a sleek body and 7- Color RGB LED Back-lighting for smart functionality"`; +exports[`commerce > 1337 > productDescription 1`] = `"Ergonomic executive chair upholstered in bonded black leather and PVC padded seat and back for all-day comfort and support"`; -exports[`commerce > 1337 > productMaterial 1`] = `"Concrete"`; +exports[`commerce > 1337 > productMaterial 1`] = `"Fresh"`; -exports[`commerce > 1337 > productName 1`] = `"Incredible Bronze Ball"`; +exports[`commerce > 1337 > productName 1`] = `"Generic Concrete Chicken"`; diff --git a/test/modules/__snapshots__/company.spec.ts.snap b/test/modules/__snapshots__/company.spec.ts.snap index 26f482c3422..2f942bf7793 100644 --- a/test/modules/__snapshots__/company.spec.ts.snap +++ b/test/modules/__snapshots__/company.spec.ts.snap @@ -1,12 +1,12 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`company > 42 > buzzAdjective 1`] = `"dynamic"`; +exports[`company > 42 > buzzAdjective 1`] = `"front-end"`; -exports[`company > 42 > buzzNoun 1`] = `"technologies"`; +exports[`company > 42 > buzzNoun 1`] = `"eyeballs"`; -exports[`company > 42 > buzzPhrase 1`] = `"seize collaborative schemas"`; +exports[`company > 42 > buzzPhrase 1`] = `"generate visionary platforms"`; -exports[`company > 42 > buzzVerb 1`] = `"seize"`; +exports[`company > 42 > buzzVerb 1`] = `"generate"`; exports[`company > 42 > catchPhrase 1`] = `"Implemented web-enabled policy"`; @@ -14,19 +14,19 @@ exports[`company > 42 > catchPhraseAdjective 1`] = `"Implemented"`; exports[`company > 42 > catchPhraseDescriptor 1`] = `"explicit"`; -exports[`company > 42 > catchPhraseNoun 1`] = `"framework"`; +exports[`company > 42 > catchPhraseNoun 1`] = `"forecast"`; -exports[`company > 42 > name 1`] = `"Wiegand - Reynolds"`; +exports[`company > 42 > name 1`] = `"Wiegand LLC"`; -exports[`company > 1211 > buzzAdjective 1`] = `"plug-and-play"`; +exports[`company > 1211 > buzzAdjective 1`] = `"virtual"`; -exports[`company > 1211 > buzzNoun 1`] = `"methodologies"`; +exports[`company > 1211 > buzzNoun 1`] = `"technologies"`; -exports[`company > 1211 > buzzPhrase 1`] = `"cultivate customized communities"`; +exports[`company > 1211 > buzzPhrase 1`] = `"transition vertical convergence"`; -exports[`company > 1211 > buzzVerb 1`] = `"cultivate"`; +exports[`company > 1211 > buzzVerb 1`] = `"transition"`; -exports[`company > 1211 > catchPhrase 1`] = `"Up-sized tertiary contingency"`; +exports[`company > 1211 > catchPhrase 1`] = `"Up-sized tertiary concept"`; exports[`company > 1211 > catchPhraseAdjective 1`] = `"Up-sized"`; @@ -36,20 +36,20 @@ exports[`company > 1211 > catchPhraseNoun 1`] = `"system engine"`; exports[`company > 1211 > name 1`] = `"Trantow, Fahey and Zieme"`; -exports[`company > 1337 > buzzAdjective 1`] = `"global"`; +exports[`company > 1337 > buzzAdjective 1`] = `"dynamic"`; -exports[`company > 1337 > buzzNoun 1`] = `"ROI"`; +exports[`company > 1337 > buzzNoun 1`] = `"deliverables"`; -exports[`company > 1337 > buzzPhrase 1`] = `"incentivize strategic solutions"`; +exports[`company > 1337 > buzzPhrase 1`] = `"enhance compelling e-business"`; -exports[`company > 1337 > buzzVerb 1`] = `"incentivize"`; +exports[`company > 1337 > buzzVerb 1`] = `"enhance"`; -exports[`company > 1337 > catchPhrase 1`] = `"Expanded clear-thinking definition"`; +exports[`company > 1337 > catchPhrase 1`] = `"Expanded clear-thinking data-warehouse"`; exports[`company > 1337 > catchPhraseAdjective 1`] = `"Expanded"`; exports[`company > 1337 > catchPhraseDescriptor 1`] = `"demand-driven"`; -exports[`company > 1337 > catchPhraseNoun 1`] = `"data-warehouse"`; +exports[`company > 1337 > catchPhraseNoun 1`] = `"customer loyalty"`; -exports[`company > 1337 > name 1`] = `"Cronin and Sons"`; +exports[`company > 1337 > name 1`] = `"Cronin - Gottlieb"`; diff --git a/test/modules/__snapshots__/database.spec.ts.snap b/test/modules/__snapshots__/database.spec.ts.snap index 8b3d9490938..74b92566713 100644 --- a/test/modules/__snapshots__/database.spec.ts.snap +++ b/test/modules/__snapshots__/database.spec.ts.snap @@ -1,31 +1,31 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`database > 42 > collation 1`] = `"utf8_bin"`; +exports[`database > 42 > collation 1`] = `"cp1250_bin"`; -exports[`database > 42 > column 1`] = `"token"`; +exports[`database > 42 > column 1`] = `"group"`; -exports[`database > 42 > engine 1`] = `"MEMORY"`; +exports[`database > 42 > engine 1`] = `"CSV"`; exports[`database > 42 > mongodbObjectId 1`] = `"8ead331ddf0fc4446b96d368"`; -exports[`database > 42 > type 1`] = `"smallint"`; +exports[`database > 42 > type 1`] = `"double"`; -exports[`database > 1211 > collation 1`] = `"cp1250_general_ci"`; +exports[`database > 1211 > collation 1`] = `"utf8_unicode_ci"`; -exports[`database > 1211 > column 1`] = `"createdAt"`; +exports[`database > 1211 > column 1`] = `"token"`; -exports[`database > 1211 > engine 1`] = `"ARCHIVE"`; +exports[`database > 1211 > engine 1`] = `"MyISAM"`; exports[`database > 1211 > mongodbObjectId 1`] = `"ed4fefa7fbaec9dc4c48fa8e"`; -exports[`database > 1211 > type 1`] = `"geometry"`; +exports[`database > 1211 > type 1`] = `"tinyint"`; -exports[`database > 1337 > collation 1`] = `"utf8_general_ci"`; +exports[`database > 1337 > collation 1`] = `"ascii_general_ci"`; -exports[`database > 1337 > column 1`] = `"email"`; +exports[`database > 1337 > column 1`] = `"createdAt"`; -exports[`database > 1337 > engine 1`] = `"MyISAM"`; +exports[`database > 1337 > engine 1`] = `"BLACKHOLE"`; exports[`database > 1337 > mongodbObjectId 1`] = `"536a7b5fa28d2f9bb79ca46e"`; -exports[`database > 1337 > type 1`] = `"time"`; +exports[`database > 1337 > type 1`] = `"datetime"`; diff --git a/test/modules/__snapshots__/finance.spec.ts.snap b/test/modules/__snapshots__/finance.spec.ts.snap index 30e1f66ae3d..bf62bcd747e 100644 --- a/test/modules/__snapshots__/finance.spec.ts.snap +++ b/test/modules/__snapshots__/finance.spec.ts.snap @@ -248,6 +248,6 @@ exports[`finance > 1337 > pin > with length option 1`] = `"2124352971"`; exports[`finance > 1337 > routingNumber 1`] = `"212435298"`; -exports[`finance > 1337 > transactionDescription 1`] = `"withdrawal transaction at Gottlieb and Sons using card ending with ***(...9477) for HUF 262.02 in account ***52971361"`; +exports[`finance > 1337 > transactionDescription 1`] = `"withdrawal transaction at Gottlieb - Koelpin using card ending with ***(...9477) for HUF 262.02 in account ***52971361"`; exports[`finance > 1337 > transactionType 1`] = `"withdrawal"`; diff --git a/test/modules/__snapshots__/git.spec.ts.snap b/test/modules/__snapshots__/git.spec.ts.snap index 8746903c83d..7ffa380e63f 100644 --- a/test/modules/__snapshots__/git.spec.ts.snap +++ b/test/modules/__snapshots__/git.spec.ts.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`git > 42 > branch 1`] = `"array-parse"`; +exports[`git > 42 > branch 1`] = `"driver-transmit"`; exports[`git > 42 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 08:59:19 2019 +1100"`; @@ -13,7 +13,7 @@ exports[`git > 42 > commitEntry > with only Date refDate 1`] = ` Author: Jerome Vandervort Date: Tue Dec 31 14:20:57 2019 +1100 -    bypass digital protocol +    bypass bluetooth application " `; @@ -22,7 +22,7 @@ exports[`git > 42 > commitEntry > with only number refDate 1`] = ` Author: Jerome Vandervort Date: Tue Dec 31 14:20:57 2019 +1100 -    bypass digital protocol +    bypass bluetooth application " `; @@ -31,11 +31,11 @@ exports[`git > 42 > commitEntry > with only string refDate 1`] = ` Author: Jerome Vandervort Date: Tue Dec 31 14:20:57 2019 +1100 -    bypass digital protocol +    bypass bluetooth application " `; -exports[`git > 42 > commitMessage 1`] = `"navigate mobile monitor"`; +exports[`git > 42 > commitMessage 1`] = `"generate wireless pixel"`; exports[`git > 42 > commitSha > noArgs 1`] = `"8ead331ddf0fc4446b96d368ab4bd1d31efb62f9"`; @@ -43,7 +43,7 @@ exports[`git > 42 > commitSha > with length 7 1`] = `"8ead331"`; exports[`git > 42 > commitSha > with length 8 1`] = `"8ead331d"`; -exports[`git > 1211 > branch 1`] = `"capacitor-reboot"`; +exports[`git > 1211 > branch 1`] = `"system-synthesize"`; exports[`git > 1211 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 22:17:03 2019 +1000"`; @@ -56,7 +56,7 @@ exports[`git > 1211 > commitEntry > with only Date refDate 1`] = ` Author: Deion Durgan Date: Tue Dec 31 11:08:15 2019 -0600 -    calculate optical bandwidth +    override solid state array " `; @@ -65,7 +65,7 @@ exports[`git > 1211 > commitEntry > with only number refDate 1`] = ` Author: Deion Durgan Date: Tue Dec 31 11:08:15 2019 -0600 -    calculate optical bandwidth +    override solid state array " `; @@ -74,11 +74,11 @@ exports[`git > 1211 > commitEntry > with only string refDate 1`] = ` Author: Deion Durgan Date: Tue Dec 31 11:08:15 2019 -0600 -    calculate optical bandwidth +    override solid state array " `; -exports[`git > 1211 > commitMessage 1`] = `"reboot solid state program"`; +exports[`git > 1211 > commitMessage 1`] = `"synthesize virtual capacitor"`; exports[`git > 1211 > commitSha > noArgs 1`] = `"ed4fefa7fbaec9dc4c48fa8ebf46fb7c8563cf3f"`; @@ -86,7 +86,7 @@ exports[`git > 1211 > commitSha > with length 7 1`] = `"ed4fefa"`; exports[`git > 1211 > commitSha > with length 8 1`] = `"ed4fefa7"`; -exports[`git > 1337 > branch 1`] = `"port-hack"`; +exports[`git > 1337 > branch 1`] = `"card-calculate"`; exports[`git > 1337 > commitDate > with only Date refDate 1`] = `"Tue Dec 31 06:17:18 2019 -0800"`; @@ -99,7 +99,7 @@ exports[`git > 1337 > commitEntry > with only Date refDate 1`] = ` Author: Matt_Hills Date: Tue Dec 31 00:20:42 2019 -0900 -    reboot mobile sensor +    synthesize wireless hard drive " `; @@ -108,7 +108,7 @@ exports[`git > 1337 > commitEntry > with only number refDate 1`] = ` Author: Matt_Hills Date: Tue Dec 31 00:20:42 2019 -0900 -    reboot mobile sensor +    synthesize wireless hard drive " `; @@ -117,11 +117,11 @@ exports[`git > 1337 > commitEntry > with only string refDate 1`] = ` Author: Matt_Hills Date: Tue Dec 31 00:20:42 2019 -0900 -    reboot mobile sensor +    synthesize wireless hard drive " `; -exports[`git > 1337 > commitMessage 1`] = `"compress back-end port"`; +exports[`git > 1337 > commitMessage 1`] = `"connect back-end card"`; exports[`git > 1337 > commitSha > noArgs 1`] = `"536a7b5fa28d2f9bb79ca46ea394bc4f9bb0af32"`; diff --git a/test/modules/__snapshots__/hacker.spec.ts.snap b/test/modules/__snapshots__/hacker.spec.ts.snap index c0b684c3a82..48d350b8718 100644 --- a/test/modules/__snapshots__/hacker.spec.ts.snap +++ b/test/modules/__snapshots__/hacker.spec.ts.snap @@ -2,36 +2,36 @@ exports[`hacker > 42 > abbreviation 1`] = `"HTTP"`; -exports[`hacker > 42 > adjective 1`] = `"cross-platform"`; +exports[`hacker > 42 > adjective 1`] = `"haptic"`; exports[`hacker > 42 > ingverb 1`] = `"copying"`; -exports[`hacker > 42 > noun 1`] = `"array"`; +exports[`hacker > 42 > noun 1`] = `"driver"`; -exports[`hacker > 42 > phrase 1`] = `"Try to hack the VGA pixel, maybe it will bypass the 1080p panel!"`; +exports[`hacker > 42 > phrase 1`] = `"The VGA bandwidth is down, reboot the online bandwidth so we can navigate the SQL application!"`; -exports[`hacker > 42 > verb 1`] = `"navigate"`; +exports[`hacker > 42 > verb 1`] = `"generate"`; exports[`hacker > 1211 > abbreviation 1`] = `"UTF8"`; -exports[`hacker > 1211 > adjective 1`] = `"solid state"`; +exports[`hacker > 1211 > adjective 1`] = `"virtual"`; -exports[`hacker > 1211 > ingverb 1`] = `"programming"`; +exports[`hacker > 1211 > ingverb 1`] = `"synthesizing"`; -exports[`hacker > 1211 > noun 1`] = `"capacitor"`; +exports[`hacker > 1211 > noun 1`] = `"system"`; -exports[`hacker > 1211 > phrase 1`] = `"I'll navigate the mobile USB feed, that should feed the DRAM application!"`; +exports[`hacker > 1211 > phrase 1`] = `"transmitting the panel won't do anything, we need to program the cross-platform USB panel!"`; -exports[`hacker > 1211 > verb 1`] = `"reboot"`; +exports[`hacker > 1211 > verb 1`] = `"synthesize"`; exports[`hacker > 1337 > abbreviation 1`] = `"FTP"`; -exports[`hacker > 1337 > adjective 1`] = `"open-source"`; +exports[`hacker > 1337 > adjective 1`] = `"cross-platform"`; -exports[`hacker > 1337 > ingverb 1`] = `"compressing"`; +exports[`hacker > 1337 > ingverb 1`] = `"connecting"`; -exports[`hacker > 1337 > noun 1`] = `"port"`; +exports[`hacker > 1337 > noun 1`] = `"card"`; -exports[`hacker > 1337 > phrase 1`] = `"Try to generate the COM sensor, maybe it will compress the virtual card!"`; +exports[`hacker > 1337 > phrase 1`] = `"The COM circuit is down, transmit the multi-byte interface so we can program the FTP card!"`; -exports[`hacker > 1337 > verb 1`] = `"compress"`; +exports[`hacker > 1337 > verb 1`] = `"connect"`; diff --git a/test/modules/__snapshots__/music.spec.ts.snap b/test/modules/__snapshots__/music.spec.ts.snap index c8517e378aa..0998ab50369 100644 --- a/test/modules/__snapshots__/music.spec.ts.snap +++ b/test/modules/__snapshots__/music.spec.ts.snap @@ -1,13 +1,25 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html +exports[`music > 42 > album 1`] = `"Heard It In A Past Life"`; + +exports[`music > 42 > artist 1`] = `"James TW"`; + exports[`music > 42 > genre 1`] = `"German Folk"`; -exports[`music > 42 > songName 1`] = `"God Bless the Child"`; +exports[`music > 42 > songName 1`] = `"I Honestly Love You"`; + +exports[`music > 1211 > album 1`] = `"Tu Veneno Mortal"`; + +exports[`music > 1211 > artist 1`] = `"Tove Lo"`; exports[`music > 1211 > genre 1`] = `"Swing"`; -exports[`music > 1211 > songName 1`] = `"The End of the World"`; +exports[`music > 1211 > songName 1`] = `"Wedding Bell Blues"`; + +exports[`music > 1337 > album 1`] = `"Dulce Beat"`; + +exports[`music > 1337 > artist 1`] = `"Evanescence"`; exports[`music > 1337 > genre 1`] = `"Drinking Songs"`; -exports[`music > 1337 > songName 1`] = `"That'll Be the Day"`; +exports[`music > 1337 > songName 1`] = `"Frankenstein"`; diff --git a/test/modules/__snapshots__/vehicle.spec.ts.snap b/test/modules/__snapshots__/vehicle.spec.ts.snap index 9655105db1e..c8164153099 100644 --- a/test/modules/__snapshots__/vehicle.spec.ts.snap +++ b/test/modules/__snapshots__/vehicle.spec.ts.snap @@ -8,13 +8,13 @@ exports[`vehicle > 42 > fuel 1`] = `"Electric"`; exports[`vehicle > 42 > manufacturer 1`] = `"Ford"`; -exports[`vehicle > 42 > model 1`] = `"Alpine"`; +exports[`vehicle > 42 > model 1`] = `"Durango"`; exports[`vehicle > 42 > type 1`] = `"Extended Cab Pickup"`; -exports[`vehicle > 42 > vehicle 1`] = `"Ford V90"`; +exports[`vehicle > 42 > vehicle 1`] = `"Ford Wrangler"`; -exports[`vehicle > 42 > vin 1`] = `"CYRK551VKPAZ84919"`; +exports[`vehicle > 42 > vin 1`] = `"CYRK551VKPAZ82113"`; exports[`vehicle > 42 > vrm 1`] = `"JY75EEB"`; @@ -26,13 +26,13 @@ exports[`vehicle > 1211 > fuel 1`] = `"Hybrid"`; exports[`vehicle > 1211 > manufacturer 1`] = `"Toyota"`; -exports[`vehicle > 1211 > model 1`] = `"2"`; +exports[`vehicle > 1211 > model 1`] = `"V90"`; exports[`vehicle > 1211 > type 1`] = `"Wagon"`; -exports[`vehicle > 1211 > vehicle 1`] = `"Toyota Aventador"`; +exports[`vehicle > 1211 > vehicle 1`] = `"Toyota Spyder"`; -exports[`vehicle > 1211 > vin 1`] = `"XW7ZNNSBNTUM84790"`; +exports[`vehicle > 1211 > vin 1`] = `"XW7ZNNSBNTUM84882"`; exports[`vehicle > 1211 > vrm 1`] = `"YX29RRT"`; @@ -44,12 +44,12 @@ exports[`vehicle > 1337 > fuel 1`] = `"Electric"`; exports[`vehicle > 1337 > manufacturer 1`] = `"Dodge"`; -exports[`vehicle > 1337 > model 1`] = `"Colorado"`; +exports[`vehicle > 1337 > model 1`] = `"Challenger"`; exports[`vehicle > 1337 > type 1`] = `"Coupe"`; -exports[`vehicle > 1337 > vehicle 1`] = `"Dodge Volt"`; +exports[`vehicle > 1337 > vehicle 1`] = `"Dodge Aventador"`; -exports[`vehicle > 1337 > vin 1`] = `"859FAH8ZR3JL21255"`; +exports[`vehicle > 1337 > vin 1`] = `"859FAH8ZR3JL19477"`; exports[`vehicle > 1337 > vrm 1`] = `"GE24ING"`; diff --git a/test/modules/git.spec.ts b/test/modules/git.spec.ts index 8957e99566b..e4692b20477 100644 --- a/test/modules/git.spec.ts +++ b/test/modules/git.spec.ts @@ -134,7 +134,7 @@ describe('git', () => { expect(commitDate).toBeTypeOf('string'); const parts = commitDate.split(' '); - expect(parts.length).toBe(6); + expect(parts).toHaveLength(6); }); }); diff --git a/test/modules/helpers.spec.ts b/test/modules/helpers.spec.ts index 98c3488a959..b9b59f22b95 100644 --- a/test/modules/helpers.spec.ts +++ b/test/modules/helpers.spec.ts @@ -402,7 +402,7 @@ describe('helpers', () => { const subset = faker.helpers.arrayElements(testArray, 6); // Check length - expect(subset.length).toBe(5); + expect(subset).toHaveLength(5); // Check elements for (const element of subset) { @@ -1078,7 +1078,7 @@ describe('helpers', () => { const result = faker.helpers.multiple(() => faker.person.firstName()); expect(result).toBeTypeOf('object'); expect(Array.isArray(result)).toBe(true); - expect(result.length).toBe(3); + expect(result).toHaveLength(3); }); it('should generate the given amount of values from the function', () => { @@ -1090,7 +1090,7 @@ describe('helpers', () => { ); expect(result).toBeTypeOf('object'); expect(Array.isArray(result)).toBe(true); - expect(result.length).toBe(5); + expect(result).toHaveLength(5); }); it('should generate a ranged number of values from the function', () => { @@ -1112,7 +1112,7 @@ describe('helpers', () => { }); expect(result).toBeTypeOf('object'); expect(Array.isArray(result)).toBe(true); - expect(result.length).toBe(3); + expect(result).toHaveLength(3); expect(result).toStrictEqual([0, 2, 4]); }); }); diff --git a/test/modules/location.spec.ts b/test/modules/location.spec.ts index 86897ad55e5..dc82757d29d 100644 --- a/test/modules/location.spec.ts +++ b/test/modules/location.spec.ts @@ -193,7 +193,7 @@ describe('location', () => { it('should return a zip code with length 5 for ZIP codes that start with 0', () => { const zipCode = fakerEN_US.location.zipCode({ state: 'NH' }); - expect(zipCode.length).toBe(5); + expect(zipCode).toHaveLength(5); }); it('should throw when definitions.location.postcode_by_state not set', () => { @@ -367,7 +367,7 @@ describe('location', () => { isMetric, }); - expect(coordinate.length).toBe(2); + expect(coordinate).toHaveLength(2); expect(coordinate[0]).toBeTypeOf('number'); expect(coordinate[1]).toBeTypeOf('number'); diff --git a/test/modules/music.spec.ts b/test/modules/music.spec.ts index a34091e873e..c422c290f5b 100644 --- a/test/modules/music.spec.ts +++ b/test/modules/music.spec.ts @@ -7,12 +7,32 @@ const NON_SEEDED_BASED_RUN = 5; describe('music', () => { seededTests(faker, 'music', (t) => { - t.itEach('genre', 'songName'); + t.itEach('album', 'artist', 'genre', 'songName'); }); describe.each(times(NON_SEEDED_BASED_RUN).map(() => faker.seed()))( 'random seeded tests for seed %i', () => { + describe('album()', () => { + it('should return an album name', () => { + const album = faker.music.album(); + + expect(album).toBeTruthy(); + expect(album).toBeTypeOf('string'); + expect(faker.definitions.music.album).toContain(album); + }); + }); + + describe('artist()', () => { + it('should return an artist', () => { + const artist = faker.music.artist(); + + expect(artist).toBeTruthy(); + expect(artist).toBeTypeOf('string'); + expect(faker.definitions.music.artist).toContain(artist); + }); + }); + describe('genre()', () => { it('should return a genre', () => { const genre = faker.music.genre(); diff --git a/tsconfig.json b/tsconfig.json index a949c9c3bf2..6d3b09b3e82 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ "noEmit": true, "declaration": true, "stripInternal": true, + "verbatimModuleSyntax": true, // These are configs specifically for !build and have to be reverted in the tsconfig.build.json "skipLibCheck": true,