diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..7b34af62 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +# Nécessaire pour que better-typescript-lib puisse fonctionner +public-hoist-pattern[]=@typescript/* \ No newline at end of file diff --git a/.oxlintrc.json b/.oxlintrc.json index 2186393d..a51989dd 100644 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -1,6 +1,8 @@ { + "$schema": "./node_modules/oxlint/configuration_schema.json", "env": { "browser": true, + "es2020": true, "es2022": true }, "settings": { diff --git a/.prettierignore b/.prettierignore index 12b26b95..72b7ad1f 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,6 +3,7 @@ *.html *.js *.json +!package.json *.jsonc *.md *.scss diff --git a/.swcrc b/.swcrc index 4502b6a6..bd683fb0 100644 --- a/.swcrc +++ b/.swcrc @@ -23,7 +23,7 @@ "tsx": false }, "preserveAllComments": false, - "target": "es2022", + "target": "es2020", "transform": null }, "minify": true, diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..c12363c1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + "configurations": [ + { + "name": "Listen for Xdebug", + "type": "php", + "request": "launch", + "hostname": "0.0.0.0", + "port": 9003, + "pathMappings": { + "/var/www/html": "${workspaceFolder}" + }, + "preLaunchTask": "DDEV: Enable Xdebug", + "postDebugTask": "DDEV: Disable Xdebug", + "skipFiles": [ + "**/vendor/**/*.php", + "**/wp-admin/**/*.php", + "**/wp-includes/**/*.php", + "**/wp-blog-header.php" + ] + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 3d3f2be7..287f8230 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,12 +2,14 @@ "cSpell.words": [ "controle", "controles", + "Crell", "defini", "deplie", "ENTETE", "etats", "ETATS", "exts", + "generique", "gere", "glitchtip", "GLITCHTIP", @@ -15,9 +17,11 @@ "Proprietes", "reponse", "requete", + "resultat", "selecteur", "selecteurs", "Selectionne", + "Simplifiee", "souleve", "tabpanel", "tete", @@ -33,5 +37,8 @@ "twiggy.inlayHints.block": true, "twiggy.inlayHints.macro": true, "twiggy.inlayHints.macroArguments": true, - "typescript.tsdk": "node_modules/typescript/lib" + "typescript.tsdk": "node_modules/typescript/lib", + "terminal.integrated.env.osx": { + "PATH": "${env:HOME}/.config/VSCodium/User/globalStorage/biati.ddev-manager/exposed-commands:${env:PATH}" + } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..b2fd06d0 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,23 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "DDEV: Enable Xdebug", + "type": "shell", + "command": "ddev xdebug on", + "presentation": { + "reveal": "silent", + "close": true + } + }, + { + "label": "DDEV: Disable Xdebug", + "type": "shell", + "command": "ddev xdebug off", + "presentation": { + "reveal": "silent", + "close": true + } + } + ] +} diff --git a/biome.json b/biome.json index a0a1bbd2..47d8d992 100644 --- a/biome.json +++ b/biome.json @@ -1,19 +1,48 @@ { - "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json", + "css": { + "formatter": { "enabled": false }, + "linter": { "enabled": true } + }, "files": { - "ignore": ["*.min.js", "vendor", "web/app/plugins", "web/app/themes/haiku-atelier-2024/assets", "web/wp"], - "ignoreUnknown": true + "ignore": [ + "*.min.js", + "vendor", + "web/app/plugins", + "web/app/themes/haiku-atelier-2024/assets", + "web/wp" + ], + "ignoreUnknown": true, + "maxSize": 100000000 }, "formatter": { "enabled": false }, - "organizeImports": { "enabled": false }, + "graphql": { + "formatter": { "enabled": false }, + "linter": { "enabled": true } + }, + "json": { + "formatter": { "enabled": false }, + "linter": { "enabled": true } + }, "linter": { "enabled": true, "rules": { - "recommended": true, "complexity": { "noForEach": "off" }, - "nursery": { "recommended": true } + "nursery": { + "recommended": true, + "useSortedClasses": { + "fix": "unsafe", + "level": "error", + "options": { + "attributes": ["class"], + "functions": [""] + } + } + }, + "recommended": true } - } + }, + "organizeImports": { "enabled": false } } diff --git a/composer.json b/composer.json index bed854f7..d6d475e7 100644 --- a/composer.json +++ b/composer.json @@ -41,22 +41,24 @@ "require": { "php": ">=8.2", "composer/installers": "^2.2", - "vlucas/phpdotenv": "^5.5", + "crell/fp": "^1.0", + "htmlburger/carbon-fields": "^3.6", + "lstrojny/functional-php": "^1.17", + "mnsami/composer-custom-directory-installer": "^2.0", "oscarotero/env": "^2.1", "roots/bedrock-autoloader": "^1.0", "roots/bedrock-disallow-indexing": "^2.0", "roots/wordpress": "^6.6.1", "roots/wp-config": "^1.0.0", "roots/wp-password-bcrypt": "^1.1.0", - "wpackagist-theme/twentytwentyfour": "^1.0", "timber/timber": "^2.2", - "wpackagist-plugin/woocommerce": "^9.1", + "vlucas/phpdotenv": "^5.5", "wpackagist-plugin/falcon": "^2.8", "wpackagist-plugin/polylang": "^3.6", "wpackagist-plugin/query-monitor": "^3.16", - "mnsami/composer-custom-directory-installer": "^2.0", - "htmlburger/carbon-fields": "^3.6", - "wpackagist-plugin/wp-openapi": "^1.0" + "wpackagist-plugin/woocommerce": "^9.1", + "wpackagist-plugin/wp-openapi": "^1.0", + "wpackagist-theme/twentytwentyfour": "^1.0" }, "require-dev": { "squizlabs/php_codesniffer": "^3.7.1", diff --git a/composer.lock b/composer.lock index c5da2430..33440769 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "39c5846d0995e2de0bca59f1573eefec", + "content-hash": "9680ce236cff6786f09ed3d599b59f5d", "packages": [ { "name": "composer/installers", @@ -152,6 +152,76 @@ ], "time": "2024-06-24T20:46:46+00:00" }, + { + "name": "crell/fp", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/Crell/fp.git", + "reference": "796a1eaa3e2d841f93359f9ef64e45326b68af87" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Crell/fp/zipball/796a1eaa3e2d841f93359f9ef64e45326b68af87", + "reference": "796a1eaa3e2d841f93359f9ef64e45326b68af87", + "shasum": "" + }, + "require": { + "php": "~8.1" + }, + "require-dev": { + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "~10.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "files": [ + "src/array.php", + "src/composition.php", + "src/object.php", + "src/string.php" + ], + "psr-4": { + "Crell\\fp\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0-or-later" + ], + "authors": [ + { + "name": "Larry Garfield", + "email": "larry@garfieldtech.com", + "homepage": "http://www.garfieldtech.com/", + "role": "Developer" + } + ], + "description": "Functional utilities for PHP 8 and later", + "homepage": "https://github.com/Crell/fp", + "keywords": [ + "array", + "fp", + "functional" + ], + "support": { + "issues": "https://github.com/Crell/fp/issues", + "source": "https://github.com/Crell/fp/tree/1.0.0" + }, + "funding": [ + { + "url": "https://github.com/Crell", + "type": "github" + } + ], + "time": "2023-10-28T20:06:08+00:00" + }, { "name": "graham-campbell/result-type", "version": "v1.1.3", @@ -354,6 +424,160 @@ }, "time": "2024-07-31T08:17:38+00:00" }, + { + "name": "lstrojny/functional-php", + "version": "1.17.0", + "source": { + "type": "git", + "url": "https://github.com/lstrojny/functional-php.git", + "reference": "e459d5cb307bc6e10e9e992c4e96bb71a0262506" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/e459d5cb307bc6e10e9e992c4e96bb71a0262506", + "reference": "e459d5cb307bc6e10e9e992c4e96bb71a0262506", + "shasum": "" + }, + "require": { + "php": "^7.1|~8" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.17", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.5", + "squizlabs/php_codesniffer": "~3.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/Functional/Ary.php", + "src/Functional/Average.php", + "src/Functional/ButLast.php", + "src/Functional/Capture.php", + "src/Functional/ConstFunction.php", + "src/Functional/CompareOn.php", + "src/Functional/CompareObjectHashOn.php", + "src/Functional/Compose.php", + "src/Functional/Concat.php", + "src/Functional/Contains.php", + "src/Functional/Converge.php", + "src/Functional/Curry.php", + "src/Functional/CurryN.php", + "src/Functional/Difference.php", + "src/Functional/DropFirst.php", + "src/Functional/DropLast.php", + "src/Functional/Each.php", + "src/Functional/Equal.php", + "src/Functional/ErrorToException.php", + "src/Functional/Every.php", + "src/Functional/False.php", + "src/Functional/Falsy.php", + "src/Functional/Filter.php", + "src/Functional/First.php", + "src/Functional/FirstIndexOf.php", + "src/Functional/FlatMap.php", + "src/Functional/Flatten.php", + "src/Functional/Flip.php", + "src/Functional/GreaterThan.php", + "src/Functional/GreaterThanOrEqual.php", + "src/Functional/Group.php", + "src/Functional/Head.php", + "src/Functional/Id.php", + "src/Functional/IfElse.php", + "src/Functional/Identical.php", + "src/Functional/IndexesOf.php", + "src/Functional/Intersperse.php", + "src/Functional/Invoke.php", + "src/Functional/InvokeFirst.php", + "src/Functional/InvokeIf.php", + "src/Functional/InvokeLast.php", + "src/Functional/Invoker.php", + "src/Functional/Last.php", + "src/Functional/LastIndexOf.php", + "src/Functional/LessThan.php", + "src/Functional/LessThanOrEqual.php", + "src/Functional/LexicographicCompare.php", + "src/Functional/Map.php", + "src/Functional/Matching.php", + "src/Functional/Maximum.php", + "src/Functional/Memoize.php", + "src/Functional/Minimum.php", + "src/Functional/None.php", + "src/Functional/Noop.php", + "src/Functional/Not.php", + "src/Functional/OmitKeys.php", + "src/Functional/PartialAny.php", + "src/Functional/PartialLeft.php", + "src/Functional/PartialMethod.php", + "src/Functional/PartialRight.php", + "src/Functional/Partition.php", + "src/Functional/Pick.php", + "src/Functional/Pluck.php", + "src/Functional/Poll.php", + "src/Functional/Product.php", + "src/Functional/Ratio.php", + "src/Functional/ReduceLeft.php", + "src/Functional/ReduceRight.php", + "src/Functional/Reindex.php", + "src/Functional/Reject.php", + "src/Functional/Repeat.php", + "src/Functional/Retry.php", + "src/Functional/Select.php", + "src/Functional/SelectKeys.php", + "src/Functional/SequenceConstant.php", + "src/Functional/SequenceExponential.php", + "src/Functional/SequenceLinear.php", + "src/Functional/Some.php", + "src/Functional/Sort.php", + "src/Functional/Sum.php", + "src/Functional/SuppressError.php", + "src/Functional/Tap.php", + "src/Functional/Tail.php", + "src/Functional/TailRecursion.php", + "src/Functional/TakeLeft.php", + "src/Functional/TakeRight.php", + "src/Functional/True.php", + "src/Functional/Truthy.php", + "src/Functional/Unique.php", + "src/Functional/ValueToKey.php", + "src/Functional/With.php", + "src/Functional/Zip.php", + "src/Functional/ZipAll.php" + ], + "psr-4": { + "Functional\\": "src/Functional" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Strojny", + "email": "lstrojny@php.net", + "homepage": "https://usrportage.de" + }, + { + "name": "Max Beutel", + "email": "nash12@gmail.com" + } + ], + "description": "Functional primitives for PHP", + "keywords": [ + "functional" + ], + "support": { + "issues": "https://github.com/lstrojny/functional-php/issues", + "source": "https://github.com/lstrojny/functional-php/tree/1.17.0" + }, + "funding": [ + { + "url": "https://github.com/lstrojny", + "type": "github" + } + ], + "time": "2021-03-07T00:25:34+00:00" + }, { "name": "mnsami/composer-custom-directory-installer", "version": "2.0.0", @@ -676,7 +900,7 @@ }, { "name": "roots/wordpress", - "version": "6.6.1", + "version": "6.6.2", "source": { "type": "git", "url": "https://github.com/roots/wordpress.git", @@ -707,7 +931,7 @@ ], "support": { "issues": "https://github.com/roots/wordpress/issues", - "source": "https://github.com/roots/wordpress/tree/6.6.1" + "source": "https://github.com/roots/wordpress/tree/6.6.2" }, "funding": [ { @@ -790,22 +1014,22 @@ }, { "name": "roots/wordpress-no-content", - "version": "6.6.1", + "version": "6.6.2", "source": { "type": "git", "url": "https://github.com/WordPress/WordPress.git", - "reference": "6.6.1" + "reference": "6.6.2" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/release/wordpress-6.6.1-no-content.zip", - "shasum": "954aa560a66112cd999aa9d9519da5f964e6692a" + "url": "https://downloads.wordpress.org/release/wordpress-6.6.2-no-content.zip", + "shasum": "b496b8a9bb3c6d20a781344cbe3e189f7fd83871" }, "require": { - "php": ">= 7.0.0" + "php": ">= 7.2.24" }, "provide": { - "wordpress/core-implementation": "6.6.1" + "wordpress/core-implementation": "6.6.2" }, "suggest": { "ext-curl": "Performs remote request operations.", @@ -856,7 +1080,7 @@ "type": "other" } ], - "time": "2024-07-23T15:25:13+00:00" + "time": "2024-09-10T15:25:31+00:00" }, { "name": "roots/wp-config", @@ -906,16 +1130,16 @@ }, { "name": "roots/wp-password-bcrypt", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/roots/wp-password-bcrypt.git", - "reference": "15f0d8919fb3731f79a0cf2fb47e1baecb86cb26" + "reference": "bd26ab98aa646d88ce98c76e365d16259c5227a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/roots/wp-password-bcrypt/zipball/15f0d8919fb3731f79a0cf2fb47e1baecb86cb26", - "reference": "15f0d8919fb3731f79a0cf2fb47e1baecb86cb26", + "url": "https://api.github.com/repos/roots/wp-password-bcrypt/zipball/bd26ab98aa646d88ce98c76e365d16259c5227a2", + "reference": "bd26ab98aa646d88ce98c76e365d16259c5227a2", "shasum": "" }, "require": { @@ -969,19 +1193,15 @@ "support": { "forum": "https://discourse.roots.io/", "issues": "https://github.com/roots/wp-password-bcrypt/issues", - "source": "https://github.com/roots/wp-password-bcrypt/tree/1.1.0" + "source": "https://github.com/roots/wp-password-bcrypt/tree/1.2.0" }, "funding": [ { "url": "https://github.com/roots", "type": "github" - }, - { - "url": "https://www.patreon.com/rootsdev", - "type": "patreon" } ], - "time": "2021-10-31T01:18:58+00:00" + "time": "2024-09-10T23:11:22+00:00" }, { "name": "symfony/deprecation-contracts", @@ -1052,20 +1272,20 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "0424dff1c58f028c451efff2045f5d92410bd540" + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", - "reference": "0424dff1c58f028c451efff2045f5d92410bd540", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-ctype": "*" @@ -1111,7 +1331,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" }, "funding": [ { @@ -1127,24 +1347,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -1191,7 +1411,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -1207,24 +1427,24 @@ "type": "tidelift" } ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { @@ -1271,7 +1491,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" }, "funding": [ { @@ -1287,24 +1507,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af" + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", - "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { @@ -1347,7 +1567,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0" }, "funding": [ { @@ -1363,7 +1583,7 @@ "type": "tidelift" } ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "timber/timber", @@ -1465,16 +1685,16 @@ }, { "name": "twig/twig", - "version": "v3.13.0", + "version": "v3.14.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "afc0eb63dc66c248c5a94504dc2b255bc9b86575" + "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/afc0eb63dc66c248c5a94504dc2b255bc9b86575", - "reference": "afc0eb63dc66c248c5a94504dc2b255bc9b86575", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72", + "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72", "shasum": "" }, "require": { @@ -1528,7 +1748,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.13.0" + "source": "https://github.com/twigphp/Twig/tree/v3.14.0" }, "funding": [ { @@ -1540,7 +1760,7 @@ "type": "tidelift" } ], - "time": "2024-09-07T08:01:12+00:00" + "time": "2024-09-09T17:55:12+00:00" }, { "name": "vlucas/phpdotenv", @@ -1682,15 +1902,15 @@ }, { "name": "wpackagist-plugin/woocommerce", - "version": "9.2.3", + "version": "9.3.1", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/woocommerce/", - "reference": "tags/9.2.3" + "reference": "tags/9.3.1" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/woocommerce.9.2.3.zip" + "url": "https://downloads.wordpress.org/plugin/woocommerce.9.3.1.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -2370,16 +2590,16 @@ }, { "name": "netresearch/jsonmapper", - "version": "v4.4.1", + "version": "v4.5.0", "source": { "type": "git", "url": "https://github.com/cweiske/jsonmapper.git", - "reference": "132c75c7dd83e45353ebb9c6c9f591952995bbf0" + "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/132c75c7dd83e45353ebb9c6c9f591952995bbf0", - "reference": "132c75c7dd83e45353ebb9c6c9f591952995bbf0", + "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5", + "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5", "shasum": "" }, "require": { @@ -2415,9 +2635,9 @@ "support": { "email": "cweiske@cweiske.de", "issues": "https://github.com/cweiske/jsonmapper/issues", - "source": "https://github.com/cweiske/jsonmapper/tree/v4.4.1" + "source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0" }, - "time": "2024-01-31T06:18:54+00:00" + "time": "2024-09-08T10:13:13+00:00" }, { "name": "nikic/php-parser", @@ -2652,16 +2872,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.30.0", + "version": "1.30.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "5ceb0e384997db59f38774bf79c2a6134252c08f" + "reference": "51b95ec8670af41009e2b2b56873bad96682413e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/5ceb0e384997db59f38774bf79c2a6134252c08f", - "reference": "5ceb0e384997db59f38774bf79c2a6134252c08f", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e", + "reference": "51b95ec8670af41009e2b2b56873bad96682413e", "shasum": "" }, "require": { @@ -2693,9 +2913,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1" }, - "time": "2024-08-29T09:54:52+00:00" + "time": "2024-09-07T20:13:05+00:00" }, { "name": "psr/container", @@ -2752,16 +2972,16 @@ }, { "name": "psr/log", - "version": "3.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "79dff0b268932c640297f5208d6298f71855c03e" + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e", - "reference": "79dff0b268932c640297f5208d6298f71855c03e", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", "shasum": "" }, "require": { @@ -2796,9 +3016,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.1" + "source": "https://github.com/php-fig/log/tree/3.0.2" }, - "time": "2024-08-21T13:31:24+00:00" + "time": "2024-09-11T13:17:53+00:00" }, { "name": "roave/security-advisories", @@ -2806,12 +3026,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "f6547941a3b3a96c1b20b77c6ebf126b195f814e" + "reference": "fb263701a24214c3176ef23bfa98a7cbc59aa659" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/f6547941a3b3a96c1b20b77c6ebf126b195f814e", - "reference": "f6547941a3b3a96c1b20b77c6ebf126b195f814e", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/fb263701a24214c3176ef23bfa98a7cbc59aa659", + "reference": "fb263701a24214c3176ef23bfa98a7cbc59aa659", "shasum": "" }, "conflict": { @@ -2919,10 +3139,11 @@ "contao/managed-edition": "<=1.5", "corveda/phpsandbox": "<1.3.5", "cosenary/instagram": "<=2.3", - "craftcms/cms": "<4.6.2|>=5.0.0.0-beta1,<=5.2.2", + "craftcms/cms": "<4.6.2|>=5,<=5.2.2", "croogo/croogo": "<4", "cuyz/valinor": "<0.12", "czproject/git-php": "<4.0.3", + "damienharper/auditor-bundle": "<6", "dapphp/securimage": "<3.6.6", "darylldoyle/safe-svg": "<1.9.10", "datadog/dd-trace": ">=0.30,<0.30.2", @@ -3187,6 +3408,7 @@ "munkireport/softwareupdate": "<1.6", "mustache/mustache": ">=2,<2.14.1", "namshi/jose": "<2.2", + "nategood/httpful": "<1", "neoan3-apps/template": "<1.1.1", "neorazorx/facturascripts": "<2022.04", "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", @@ -3261,7 +3483,7 @@ "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5", "phpoffice/common": "<0.2.9", "phpoffice/phpexcel": "<1.8", - "phpoffice/phpspreadsheet": "<1.29.1|>=2,<2.2.1", + "phpoffice/phpspreadsheet": "<1.29.1|>=2,<2.1.1|>=2.2,<2.2.1", "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36", "phpservermon/phpservermon": "<3.6", "phpsysinfo/phpsysinfo": "<3.4.3", @@ -3455,7 +3677,7 @@ "tinymighty/wiki-seo": "<1.2.2", "titon/framework": "<9.9.99", "tobiasbg/tablepress": "<=2.0.0.0-RC1", - "topthink/framework": "<6.0.17|>=6.1,<6.1.5|>=8,<8.0.4", + "topthink/framework": "<6.0.17|>=6.1,<=8.0.4", "topthink/think": "<=6.1.1", "topthink/thinkphp": "<=3.2.3", "torrentpier/torrentpier": "<=2.4.3", @@ -3464,7 +3686,7 @@ "truckersmp/phpwhois": "<=4.3.1", "ttskch/pagination-service-provider": "<1", "twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2", - "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3", + "twig/twig": "<1.44.8|>=2,<2.16.1|>=3,<3.11.1|>=3.12,<3.14", "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", "typo3/cms-core": "<=8.7.56|>=9,<=9.5.47|>=10,<=10.4.44|>=11,<=11.5.36|>=12,<=12.4.14|>=13,<=13.1", @@ -3618,7 +3840,7 @@ "type": "tidelift" } ], - "time": "2024-09-04T15:05:11+00:00" + "time": "2024-09-13T14:04:35+00:00" }, { "name": "sebastian/diff", @@ -3996,20 +4218,20 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", - "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" @@ -4054,7 +4276,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" }, "funding": [ { @@ -4070,24 +4292,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" + "reference": "3833d7255cc303546435cb650316bff708a1c75c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", - "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" @@ -4135,7 +4357,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" }, "funding": [ { @@ -4151,7 +4373,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/service-contracts", @@ -4325,16 +4547,16 @@ }, { "name": "vimeo/psalm", - "version": "5.25.0", + "version": "5.26.1", "source": { "type": "git", "url": "https://github.com/vimeo/psalm.git", - "reference": "01a8eb06b9e9cc6cfb6a320bf9fb14331919d505" + "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vimeo/psalm/zipball/01a8eb06b9e9cc6cfb6a320bf9fb14331919d505", - "reference": "01a8eb06b9e9cc6cfb6a320bf9fb14331919d505", + "url": "https://api.github.com/repos/vimeo/psalm/zipball/d747f6500b38ac4f7dfc5edbcae6e4b637d7add0", + "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0", "shasum": "" }, "require": { @@ -4355,7 +4577,7 @@ "felixfbecker/language-server-protocol": "^1.5.2", "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0", "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", - "nikic/php-parser": "^4.16", + "nikic/php-parser": "^4.17", "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", "sebastian/diff": "^4.0 || ^5.0 || ^6.0", "spatie/array-to-xml": "^2.17.0 || ^3.0", @@ -4431,7 +4653,7 @@ "issues": "https://github.com/vimeo/psalm/issues", "source": "https://github.com/vimeo/psalm" }, - "time": "2024-06-16T15:08:35+00:00" + "time": "2024-09-08T18:53:08+00:00" }, { "name": "webmozart/assert", diff --git a/eslint.config.js b/eslint.config.js index 2f6a0162..524d1486 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,22 +1,31 @@ -import eslint from "@eslint/js"; +import js from "@eslint/js"; +import oxlint from "eslint-plugin-oxlint"; import perfectionist from "eslint-plugin-perfectionist"; +import globals from "globals"; import tseslint from "typescript-eslint"; export default tseslint.config( - eslint.configs.recommended, + js.configs.recommended, perfectionist.configs["recommended-natural"], ...tseslint.configs.strictTypeChecked, ...tseslint.configs.stylisticTypeChecked, + // @ts-expect-error -- Erreur inévitable pour le moment. + oxlint.configs["flat/recommended"], { files: ["*.js", "web/app/themes/haiku-atelier-2024/src/**/*.ts"], languageOptions: { + ecmaVersion: "latest", + globals: { + ...globals.browser, + ...globals.es2020, + }, parserOptions: { projectService: true, tsconfigRootDir: import.meta.dirname, }, }, rules: { - /* */ + /* Utilise Array plutôt que T[]. */ "@typescript-eslint/array-type": ["error", { default: "generic", readonly: "generic", @@ -24,13 +33,12 @@ export default tseslint.config( /* L'usage d'interfaces ou de types doit être à la discrétion du développeur. */ "@typescript-eslint/consistent-type-definitions": "off", /* Désactive cette règle pour les fonctions fléchées pour rendre le code moins verbeux. */ - "@typescript-eslint/no-confusing-void-expression": [ - "error", - { - "ignoreArrowShorthand": true, - "ignoreVoidOperator": false, - }, - ], + "@typescript-eslint/no-confusing-void-expression": ["error", { + "ignoreArrowShorthand": true, + "ignoreVoidOperator": false, + }], + /* Cette règle est doublon avec les règles noUnused* de TypeScript. */ + "@typescript-eslint/no-unused-vars": "off", /* Cette règle empêche de lever des erreurs génériques (p.ex. `E extends Error`). */ "@typescript-eslint/only-throw-error": "off", /* Cette règle empêche le style fonctionnel « point free ». */ diff --git a/package.json b/package.json index d3e6f87b..30d82806 100644 --- a/package.json +++ b/package.json @@ -11,25 +11,30 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@sentry/browser": "^8.28.0", + "@sentry/browser": "^8.30.0", "purify-ts": "^2.1.0", - "remeda": "^2.12.0", - "valibot": "^0.41.0", - "wretch": "^2.9.1" + "remeda": "^2.12.1", + "ts-pattern": "^5.3.1", + "valibot": "^0.42.0", + "wretch": "^2.10.0" }, "devDependencies": { - "@biomejs/biome": "^1.8.3", + "@biomejs/biome": "^1.9.1", "@eslint/js": "^9.10.0", "@prettier/plugin-php": "^0.22.2", "@prettier/plugin-xml": "^3.4.1", - "@sentry/types": "^8.28.0", - "@swc/cli": "^0.4.0", + "@sentry/types": "^8.30.0", + "@swc/cli": "0.4.1-nightly.20240914", "@types/eslint__js": "^8.42.3", + "better-typescript-lib": "^2.8.0", "browserslist": "^4.23.3", + "configurations-js": "git+https://git.gcch.fr/gcch/configurations-js.git", "eslint": "^9.10.0", - "eslint-plugin-perfectionist": "^3.4.0", + "eslint-plugin-oxlint": "^0.9.5", + "eslint-plugin-perfectionist": "^3.6.0", "fdir": "^6.3.0", - "oxlint": "^0.9.3", + "globals": "^15.9.0", + "oxlint": "^0.9.5", "picomatch": "^4.0.2", "prettier": "^3.3.3", "prettier-plugin-pkg": "^0.18.1", @@ -37,19 +42,24 @@ "sass": "^1.78.0", "stylelint": "^16.9.0", "stylelint-config-clean-order": "^6.1.0", - "stylelint-config-sass-guidelines": "^12.0.0", + "stylelint-config-sass-guidelines": "^12.1.0", "stylelint-config-standard-scss": "^13.1.0", "stylelint-declaration-block-no-ignored-properties": "^2.8.0", "stylelint-plugin-logical-css": "^1.2.1", - "typescript": "^5.5.4", - "typescript-eslint": "^8.4.0", - "vite": "^5.4.3", - "vite-plugin-valibot-env": "^0.6.11", + "typescript": "^5.6.2", + "typescript-eslint": "^8.6.0", + "vite": "^5.4.6", + "vite-plugin-valibot-env": "^0.6.12", + "vite-tsconfig-paths": "^5.0.1", "wp-types": "^4.66.1" }, "browserslist": [ - "defaults", - "last 3 years", - "not dead" + "chrome >0 and last 3 years", + "edge >0 and last 3 years", + "safari >0 and last 3 years", + "firefox >0 and last 3 years", + "and_chr >0 and last 3 years", + "and_ff >0 and last 3 years", + "ios >0 and last 3 years" ] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0cf4c2c3..671058d5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,24 +9,27 @@ importers: .: dependencies: '@sentry/browser': - specifier: ^8.28.0 - version: 8.28.0 + specifier: ^8.30.0 + version: 8.30.0 purify-ts: specifier: ^2.1.0 version: 2.1.0 remeda: - specifier: ^2.12.0 - version: 2.12.0 + specifier: ^2.12.1 + version: 2.12.1 + ts-pattern: + specifier: ^5.3.1 + version: 5.3.1 valibot: - specifier: ^0.41.0 - version: 0.41.0(typescript@5.5.4) + specifier: ^0.42.0 + version: 0.42.0(typescript@5.6.2) wretch: - specifier: ^2.9.1 - version: 2.9.1 + specifier: ^2.10.0 + version: 2.10.0 devDependencies: '@biomejs/biome': - specifier: ^1.8.3 - version: 1.8.3 + specifier: ^1.9.1 + version: 1.9.1 '@eslint/js': specifier: ^9.10.0 version: 9.10.0 @@ -37,29 +40,41 @@ importers: specifier: ^3.4.1 version: 3.4.1(prettier@3.3.3) '@sentry/types': - specifier: ^8.28.0 - version: 8.28.0 + specifier: ^8.30.0 + version: 8.30.0 '@swc/cli': - specifier: ^0.4.0 - version: 0.4.0(@swc/core@1.7.23)(chokidar@3.6.0) + specifier: 0.4.1-nightly.20240914 + version: 0.4.1-nightly.20240914(@swc/core@1.7.26)(chokidar@3.6.0) '@types/eslint__js': specifier: ^8.42.3 version: 8.42.3 + better-typescript-lib: + specifier: ^2.8.0 + version: 2.8.0(typescript@5.6.2) browserslist: specifier: ^4.23.3 version: 4.23.3 + configurations-js: + specifier: git+https://git.gcch.fr/gcch/configurations-js.git + version: git+https://git.gcch.fr/gcch/configurations-js.git#8041a8ac7398dd2255920bbb61ff782670bd13f2 eslint: specifier: ^9.10.0 version: 9.10.0 + eslint-plugin-oxlint: + specifier: ^0.9.5 + version: 0.9.5 eslint-plugin-perfectionist: - specifier: ^3.4.0 - version: 3.4.0(eslint@9.10.0)(typescript@5.5.4) + specifier: ^3.6.0 + version: 3.6.0(eslint@9.10.0)(typescript@5.6.2) fdir: specifier: ^6.3.0 version: 6.3.0(picomatch@4.0.2) + globals: + specifier: ^15.9.0 + version: 15.9.0 oxlint: - specifier: ^0.9.3 - version: 0.9.3 + specifier: ^0.9.5 + version: 0.9.5 picomatch: specifier: ^4.0.2 version: 4.0.2 @@ -77,34 +92,37 @@ importers: version: 1.78.0 stylelint: specifier: ^16.9.0 - version: 16.9.0(typescript@5.5.4) + version: 16.9.0(typescript@5.6.2) stylelint-config-clean-order: specifier: ^6.1.0 - version: 6.1.0(stylelint@16.9.0(typescript@5.5.4)) + version: 6.1.0(stylelint@16.9.0(typescript@5.6.2)) stylelint-config-sass-guidelines: - specifier: ^12.0.0 - version: 12.0.0(postcss@8.4.45)(stylelint@16.9.0(typescript@5.5.4)) + specifier: ^12.1.0 + version: 12.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)) stylelint-config-standard-scss: specifier: ^13.1.0 - version: 13.1.0(postcss@8.4.45)(stylelint@16.9.0(typescript@5.5.4)) + version: 13.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)) stylelint-declaration-block-no-ignored-properties: specifier: ^2.8.0 - version: 2.8.0(stylelint@16.9.0(typescript@5.5.4)) + version: 2.8.0(stylelint@16.9.0(typescript@5.6.2)) stylelint-plugin-logical-css: specifier: ^1.2.1 - version: 1.2.1(stylelint@16.9.0(typescript@5.5.4)) + version: 1.2.1(stylelint@16.9.0(typescript@5.6.2)) typescript: - specifier: ^5.5.4 - version: 5.5.4 + specifier: ^5.6.2 + version: 5.6.2 typescript-eslint: - specifier: ^8.4.0 - version: 8.4.0(eslint@9.10.0)(typescript@5.5.4) + specifier: ^8.6.0 + version: 8.6.0(eslint@9.10.0)(typescript@5.6.2) vite: - specifier: ^5.4.3 - version: 5.4.3(@types/node@22.5.4)(sass@1.78.0) + specifier: ^5.4.6 + version: 5.4.6(@types/node@22.5.5)(sass@1.78.0) vite-plugin-valibot-env: - specifier: ^0.6.11 - version: 0.6.11(valibot@0.41.0(typescript@5.5.4))(vite@5.4.3(@types/node@22.5.4)(sass@1.78.0)) + specifier: ^0.6.12 + version: 0.6.12(valibot@0.42.0(typescript@5.6.2))(vite@5.4.6(@types/node@22.5.5)(sass@1.78.0)) + vite-tsconfig-paths: + specifier: ^5.0.1 + version: 5.0.1(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(sass@1.78.0)) wp-types: specifier: ^4.66.1 version: 4.66.1 @@ -123,86 +141,149 @@ packages: resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} - '@biomejs/biome@1.8.3': - resolution: {integrity: sha512-/uUV3MV+vyAczO+vKrPdOW0Iaet7UnJMU4bNMinggGJTAnBPjCoLEYcyYtYHNnUNYlv4xZMH6hVIQCAozq8d5w==} + '@better-typescript-lib/decorators@2.8.0': + resolution: {integrity: sha512-fcvgdwQPNpbib1kWb+nqixrxM6YrUphSRx4hbzYs5KaDBRGMIlZhS+JkaF+kwkRMh241pbZjpMTzhtpJXrSnsw==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/dom@2.8.0': + resolution: {integrity: sha512-vU+j1AbfhGjpWkrmybgaBrAcgfLZ6tfjXtp2FNhluKPb9sBB5USE4wPAqUIoHlE0jNVSsDEZCGzpsrHFsUtTTA==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2015@2.8.0': + resolution: {integrity: sha512-bZwbpfsyhA8TKSNEw8uJlStDwvqk2Nzd99Z8sLGwlfPd9tbXJJHvedFLPFhHaq+2nUEZtcNfMqqB3OU7Tit9dA==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2016@2.8.0': + resolution: {integrity: sha512-uwYGrBosulkMLG7gxm6NM60x6+CJJs1siACYbIAwGXPtonIex0MmOpC07rsibGCnvvaCCzDfs9RzCoPIRQfMRg==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2017@2.8.0': + resolution: {integrity: sha512-yCIVS78jhJfVsfas1EJL6hzfb8PlSvoAev8UPCkYxh+CMKE9Ws54DgZm4rAQBE10AUkJCKd4r2TjGOKEsNzhbg==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2018@2.8.0': + resolution: {integrity: sha512-mnXqmPIU3AZKMNsVe1Q/6USY5k9XhBHkloWUyCrKGCosMVgb81gdQ/NqWfx7TbijO57TJBAdqBNV2bexkjFdig==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2019@2.8.0': + resolution: {integrity: sha512-/ui9vywQsLUTrwagpTCFLvqfGq+a4eXCMwcAWn9jRlL3YHIUwKchjmP4FGnekv4bkN+G+OFbySal3kpA6TsoaQ==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2020@2.8.0': + resolution: {integrity: sha512-vdMXo42W5GTXBz9Wb3Pzf03J19hYbKDUMSfP22ub7+Tox3ThYPnNFV9478ftc/4DkxhUDxiEyBK91uCSrZ4fyg==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2021@2.8.0': + resolution: {integrity: sha512-IgdAnbKgPIJJ9Yc8hlAbzv0j4TSn0MNhxRT1vQkWE2wfpsvclud80paf0A5HNwkD6DBRQvviQ2fAvTzbeHwqZA==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2022@2.8.0': + resolution: {integrity: sha512-lkXIUob8eaRJaTWBmqnDT2xm8VyaBmv2cQezktR0g7rKonqY/uXMzdQTxwL8K7h4+iSivJKkK/edE8LIDtxBrQ==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es2023@2.8.0': + resolution: {integrity: sha512-0YzewgfzE2+aV1KBgSzN0sfv1oIdeGcH4z6rB9WkPjpA7vjDSzw/P8eRd4V6nAcSliREcCQ/TjSnVwNVdqrZ6A==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es5@2.8.0': + resolution: {integrity: sha512-jmkb3p9HX2Ws/RKgT0HK8VBlHoLAlp9M+KCeB6T40ft6ahPVFMAdJ09ORAJIlE/zDwjIe/AQuuvxVlZSzp/fxg==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/es6@2.8.0': + resolution: {integrity: sha512-G3/0rsuKcNMxeleqFa3NlvDvM9Xjg6xbJLzKw2MNHTq6wRqCq0iCTnu+bdXqLhfZ5FGXB5eiwPspmXL8XmeTDQ==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/esnext@2.8.0': + resolution: {integrity: sha512-3qu8dmwmISMjFnbvcY+X8rcKlkaCyGmqwAmu1rvIUfMRPPWNP6RLfGkg+58SJpYhdIppctzb4xZJCGRe46i/Qg==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/scripthost@2.8.0': + resolution: {integrity: sha512-B7UiigKf6VTbmvkUpnujt5xIODnBbWCRr5ysIXyyYH7A+pKLEIlIWXPiPGrYx3nvhX0zZeACmlO+smlB5HRP/w==} + peerDependencies: + typescript: '>=4.5.2' + + '@better-typescript-lib/webworker@2.8.0': + resolution: {integrity: sha512-k6WLms6UWeKdL36YpI5pi4twNn/jxiyQz8bNjLZ0WEdkfbtegiSNjzwHOuWPFuhlUFMQ4w22Ts4PnYhwO5WQbw==} + peerDependencies: + typescript: '>=4.5.2' + + '@biomejs/biome@1.9.1': + resolution: {integrity: sha512-Ps0Rg0zg3B1zpx+zQHMz5b0n0PBNCAaXttHEDTVrJD5YXR6Uj3T+abTDgeS3wsu4z5i2whqcE1lZxGyWH4bZYg==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@1.8.3': - resolution: {integrity: sha512-9DYOjclFpKrH/m1Oz75SSExR8VKvNSSsLnVIqdnKexj6NwmiMlKk94Wa1kZEdv6MCOHGHgyyoV57Cw8WzL5n3A==} + '@biomejs/cli-darwin-arm64@1.9.1': + resolution: {integrity: sha512-js0brHswq/BoeKgfSEUJYOjUOlML6p65Nantti+PsoQ61u9+YVGIZ7325LK7iUpDH8KVJT+Bx7K2b/6Q//W1Pw==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@1.8.3': - resolution: {integrity: sha512-UeW44L/AtbmOF7KXLCoM+9PSgPo0IDcyEUfIoOXYeANaNXXf9mLUwV1GeF2OWjyic5zj6CnAJ9uzk2LT3v/wAw==} + '@biomejs/cli-darwin-x64@1.9.1': + resolution: {integrity: sha512-2zVyjUg5rN0k8XrytkubQWLbp2r/AS5wPhXs4vgVjvqbLnzo32EGX8p61gzroF2dH9DCUCfskdrigCGqNdEbpg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@1.8.3': - resolution: {integrity: sha512-9yjUfOFN7wrYsXt/T/gEWfvVxKlnh3yBpnScw98IF+oOeCYb5/b/+K7YNqKROV2i1DlMjg9g/EcN9wvj+NkMuQ==} + '@biomejs/cli-linux-arm64-musl@1.9.1': + resolution: {integrity: sha512-L/JmXKvhsZ1lTgqOr3tWkzuY/NRppdIscHeC9aaiR72WjnBgJS94mawl9BWmGB3aWBc0q6oSDWnBS7617EMMmA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-arm64@1.8.3': - resolution: {integrity: sha512-fed2ji8s+I/m8upWpTJGanqiJ0rnlHOK3DdxsyVLZQ8ClY6qLuPc9uehCREBifRJLl/iJyQpHIRufLDeotsPtw==} + '@biomejs/cli-linux-arm64@1.9.1': + resolution: {integrity: sha512-QgxwfnG+r2aer5RNGR67Ey91Tv7xXW8E9YckHhwuyWjdLEvKWkrSJrhVG/6ub0kVvTSNkYOuT/7/jMOFBuUbRA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-x64-musl@1.8.3': - resolution: {integrity: sha512-UHrGJX7PrKMKzPGoEsooKC9jXJMa28TUSMjcIlbDnIO4EAavCoVmNQaIuUSH0Ls2mpGMwUIf+aZJv657zfWWjA==} + '@biomejs/cli-linux-x64-musl@1.9.1': + resolution: {integrity: sha512-gY+eFLIAW45v3WicQHicvjRfA0ntMZHx7h937bXwBMFNFoKmB6rMi6+fKQ6/hiS6juhsFxZdZIz20m15s49J6A==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-linux-x64@1.8.3': - resolution: {integrity: sha512-I8G2QmuE1teISyT8ie1HXsjFRz9L1m5n83U1O6m30Kw+kPMPSKjag6QGUn+sXT8V+XWIZxFFBoTDEDZW2KPDDw==} + '@biomejs/cli-linux-x64@1.9.1': + resolution: {integrity: sha512-F0INygtzI2L2n2R1KtYHGr3YWDt9Up1zrUluwembM+iJ1dXN3qzlSb7deFUsSJm4FaIPriqs6Xa56ukdQW6UeQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-win32-arm64@1.8.3': - resolution: {integrity: sha512-J+Hu9WvrBevfy06eU1Na0lpc7uR9tibm9maHynLIoAjLZpQU3IW+OKHUtyL8p6/3pT2Ju5t5emReeIS2SAxhkQ==} + '@biomejs/cli-win32-arm64@1.9.1': + resolution: {integrity: sha512-7Jahxar3OB+aTPOgXisMJmMKMsjcK+UmdlG3UIOQjzN/ZFEsPV+GT3bfrVjZDQaCw/zes0Cqd7VTWFjFTC/+MQ==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@1.8.3': - resolution: {integrity: sha512-/PJ59vA1pnQeKahemaQf4Nyj7IKUvGQSc3Ze1uIGi+Wvr1xF7rGobSrAAG01T/gUDG21vkDsZYM03NAmPiVkqg==} + '@biomejs/cli-win32-x64@1.9.1': + resolution: {integrity: sha512-liSRWjWzFhyG7s1jg/Bbv9FL+ha/CEd5tFO3+dFIJNplL4TnvAivtyfRVi/tu/pNjISbV1k9JwdBewtAKAgA0w==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] - '@csstools/css-parser-algorithms@2.7.1': - resolution: {integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - '@csstools/css-tokenizer': ^2.4.1 - '@csstools/css-parser-algorithms@3.0.1': resolution: {integrity: sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==} engines: {node: '>=18'} peerDependencies: '@csstools/css-tokenizer': ^3.0.1 - '@csstools/css-tokenizer@2.4.1': - resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==} - engines: {node: ^14 || ^16 || >=18} - '@csstools/css-tokenizer@3.0.1': resolution: {integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==} engines: {node: '>=18'} - '@csstools/media-query-list-parser@2.1.13': - resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - '@csstools/css-parser-algorithms': ^2.7.1 - '@csstools/css-tokenizer': ^2.4.1 - '@csstools/media-query-list-parser@3.0.1': resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==} engines: {node: '>=18'} @@ -363,8 +444,8 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.11.0': - resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} + '@eslint-community/regexpp@4.11.1': + resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} '@eslint/config-array@0.18.0': @@ -411,43 +492,43 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@oxlint/darwin-arm64@0.9.3': - resolution: {integrity: sha512-ToQs4gOnWCUEbnvQSVCq2+wBQO0m17iUeVtnKJhENjP7t37yHV5SPO/gNTPBAQLkNgA/3skJLeLi9Jg+BNDAFw==} + '@oxlint/darwin-arm64@0.9.5': + resolution: {integrity: sha512-+PzOfZga1MY+Bx7CXjqp+3OuA575bCcwKI2hbRvfcrmynpQB+sT9vy9TY0XvWsJpWDikQSHHFF3GipSvEqslfw==} cpu: [arm64] os: [darwin] - '@oxlint/darwin-x64@0.9.3': - resolution: {integrity: sha512-lc3z4TFKXzFuR65OlTUUpRJMoHgSAAcxsGpzYWZDjxyWJr2nLydD3W22CSpRoWeQ8tU5V7dRCy/NvqymGXuMYQ==} + '@oxlint/darwin-x64@0.9.5': + resolution: {integrity: sha512-vvkfBnWs2nari8Qqas8BPI7M+CbDwBMSORy5LgoCS+hUlFQ6PsRlTXYtMpLCdvBamp7FtcRSUDrX5+wK+cVDQg==} cpu: [x64] os: [darwin] - '@oxlint/linux-arm64-gnu@0.9.3': - resolution: {integrity: sha512-EKpuCExwNc3ramzauMXDOBIx9Aopisg9xCu3cWUaO+hgXD/U02mwvtXOhrjGH63VeAXHevioIDFKuebLp7AfWQ==} + '@oxlint/linux-arm64-gnu@0.9.5': + resolution: {integrity: sha512-xCRr3wbqrqbDVnu9a43tKOWqNmc11ryH8OR6k2Z1H28iAohT5kP3dUxGfZfhM/LdxkTFHyU1d3+jFyJsUmCkWg==} cpu: [arm64] os: [linux] - '@oxlint/linux-arm64-musl@0.9.3': - resolution: {integrity: sha512-lY8PP1WOoRBU3jBDIp6+q9lxdXtxJa/OdqfsSP3fJky1n3xvd8UEufIJE5CI8dyGaTahES8HxbHw4sMFnsfLpg==} + '@oxlint/linux-arm64-musl@0.9.5': + resolution: {integrity: sha512-DDjaFIwgGlHU7sl4PVkp4cKqh8KECEdtEg6zs5t1++T8Lqm6ThZUAtT/oBWM+jR1bPawptpH9BzYSeGs4OmDdg==} cpu: [arm64] os: [linux] - '@oxlint/linux-x64-gnu@0.9.3': - resolution: {integrity: sha512-jXn+KV18pgBDrK+Kl3q+NBXfdnTnjJ6HQa8zsyMlDkc7c4tkmxhqMlSzwnfYreTQQSB9NGtHACBC4mF6k4e4sw==} + '@oxlint/linux-x64-gnu@0.9.5': + resolution: {integrity: sha512-xZc8M42EbAeqBjLVwuUnEqfyAit0WbZYaSJ4rd6N7EVfnKxTRRu7JGy5yuR0nOtveekhQyj59VC92HipOdmZig==} cpu: [x64] os: [linux] - '@oxlint/linux-x64-musl@0.9.3': - resolution: {integrity: sha512-UmWzxeE4zuWz/LpeJjpWGk/tvwI2BJ2gRGaUAZnTjJc6uR7tg9eQ4XFipy7y6+lYVpvlrmvu4Cldxf1+E/8BaQ==} + '@oxlint/linux-x64-musl@0.9.5': + resolution: {integrity: sha512-V6k4h2fOXFlQ3B6AhSvJv56DBQ7Ki23IU+tilpDzvPDTjUYsA18VWsaM2DQU00/eCxTFaqvjP1ahtGJlaZm0/w==} cpu: [x64] os: [linux] - '@oxlint/win32-arm64@0.9.3': - resolution: {integrity: sha512-DvhfhMHWzBoHwpFa1pRDrkpO90rUcjWXU2/A9nCh4NxWjY8EDzsPNsYTGSPeZsa42wg+fq8aMHiOUxDqLU0CiQ==} + '@oxlint/win32-arm64@0.9.5': + resolution: {integrity: sha512-5qbr5KwczXCXpj31NiL600cJe0LfNSBj4y4VovpYT3EH+HCP8NhOk7aMe2TDdc4yD4Few9qJfMlMbW4GltJGVw==} cpu: [arm64] os: [win32] - '@oxlint/win32-x64@0.9.3': - resolution: {integrity: sha512-g2oFpiTPmBgSY6kR7SCuYCkml7ioyTeBQPX1GARoCpjdFG4RjC5ujIu/csEJ+VntGAEpqk1vSA+TmISnt15zgA==} + '@oxlint/win32-x64@0.9.5': + resolution: {integrity: sha512-6zZK5S0mrIO8+/metreSb0ydq5JgC5VLve7dNnbYMxZFajdjNGGTCTatJm6cuLXhupHkcMI28AIvrMmPsfrb7A==} cpu: [x64] os: [win32] @@ -461,130 +542,130 @@ packages: peerDependencies: prettier: ^3.0.0 - '@rollup/rollup-android-arm-eabi@4.21.2': - resolution: {integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==} + '@rollup/rollup-android-arm-eabi@4.21.3': + resolution: {integrity: sha512-MmKSfaB9GX+zXl6E8z4koOr/xU63AMVleLEa64v7R0QF/ZloMs5vcD1sHgM64GXXS1csaJutG+ddtzcueI/BLg==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.21.2': - resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==} + '@rollup/rollup-android-arm64@4.21.3': + resolution: {integrity: sha512-zrt8ecH07PE3sB4jPOggweBjJMzI1JG5xI2DIsUbkA+7K+Gkjys6eV7i9pOenNSDJH3eOr/jLb/PzqtmdwDq5g==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.21.2': - resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==} + '@rollup/rollup-darwin-arm64@4.21.3': + resolution: {integrity: sha512-P0UxIOrKNBFTQaXTxOH4RxuEBVCgEA5UTNV6Yz7z9QHnUJ7eLX9reOd/NYMO3+XZO2cco19mXTxDMXxit4R/eQ==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.21.2': - resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==} + '@rollup/rollup-darwin-x64@4.21.3': + resolution: {integrity: sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.21.2': - resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==} + '@rollup/rollup-linux-arm-gnueabihf@4.21.3': + resolution: {integrity: sha512-btVgIsCjuYFKUjopPoWiDqmoUXQDiW2A4C3Mtmp5vACm7/GnyuprqIDPNczeyR5W8rTXEbkmrJux7cJmD99D2g==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.21.2': - resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==} + '@rollup/rollup-linux-arm-musleabihf@4.21.3': + resolution: {integrity: sha512-zmjbSphplZlau6ZTkxd3+NMtE4UKVy7U4aVFMmHcgO5CUbw17ZP6QCgyxhzGaU/wFFdTfiojjbLG3/0p9HhAqA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.21.2': - resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==} + '@rollup/rollup-linux-arm64-gnu@4.21.3': + resolution: {integrity: sha512-nSZfcZtAnQPRZmUkUQwZq2OjQciR6tEoJaZVFvLHsj0MF6QhNMg0fQ6mUOsiCUpTqxTx0/O6gX0V/nYc7LrgPw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.21.2': - resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==} + '@rollup/rollup-linux-arm64-musl@4.21.3': + resolution: {integrity: sha512-MnvSPGO8KJXIMGlQDYfvYS3IosFN2rKsvxRpPO2l2cum+Z3exiExLwVU+GExL96pn8IP+GdH8Tz70EpBhO0sIQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': - resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==} + '@rollup/rollup-linux-powerpc64le-gnu@4.21.3': + resolution: {integrity: sha512-+W+p/9QNDr2vE2AXU0qIy0qQE75E8RTwTwgqS2G5CRQ11vzq0tbnfBd6brWhS9bCRjAjepJe2fvvkvS3dno+iw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.21.2': - resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==} + '@rollup/rollup-linux-riscv64-gnu@4.21.3': + resolution: {integrity: sha512-yXH6K6KfqGXaxHrtr+Uoy+JpNlUlI46BKVyonGiaD74ravdnF9BUNC+vV+SIuB96hUMGShhKV693rF9QDfO6nQ==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.21.2': - resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==} + '@rollup/rollup-linux-s390x-gnu@4.21.3': + resolution: {integrity: sha512-R8cwY9wcnApN/KDYWTH4gV/ypvy9yZUHlbJvfaiXSB48JO3KpwSpjOGqO4jnGkLDSk1hgjYkTbTt6Q7uvPf8eg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.21.2': - resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==} + '@rollup/rollup-linux-x64-gnu@4.21.3': + resolution: {integrity: sha512-kZPbX/NOPh0vhS5sI+dR8L1bU2cSO9FgxwM8r7wHzGydzfSjLRCFAT87GR5U9scj2rhzN3JPYVC7NoBbl4FZ0g==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.21.2': - resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==} + '@rollup/rollup-linux-x64-musl@4.21.3': + resolution: {integrity: sha512-S0Yq+xA1VEH66uiMNhijsWAafffydd2X5b77eLHfRmfLsRSpbiAWiRHV6DEpz6aOToPsgid7TI9rGd6zB1rhbg==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.21.2': - resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==} + '@rollup/rollup-win32-arm64-msvc@4.21.3': + resolution: {integrity: sha512-9isNzeL34yquCPyerog+IMCNxKR8XYmGd0tHSV+OVx0TmE0aJOo9uw4fZfUuk2qxobP5sug6vNdZR6u7Mw7Q+Q==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.21.2': - resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==} + '@rollup/rollup-win32-ia32-msvc@4.21.3': + resolution: {integrity: sha512-nMIdKnfZfzn1Vsk+RuOvl43ONTZXoAPUUxgcU0tXooqg4YrAqzfKzVenqqk2g5efWh46/D28cKFrOzDSW28gTA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.21.2': - resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==} + '@rollup/rollup-win32-x64-msvc@4.21.3': + resolution: {integrity: sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==} cpu: [x64] os: [win32] - '@sentry-internal/browser-utils@8.28.0': - resolution: {integrity: sha512-tE9++KEy8SlqibTmYymuxFVAnutsXBqrwQ936WJbjaMfkqXiro7C1El0ybkprskd0rKS7kln20Q6nQlNlMEoTA==} + '@sentry-internal/browser-utils@8.30.0': + resolution: {integrity: sha512-pwX+awNWaxSOAsBLVLqc1+Hw+Fm1Nci9mbKFA6Ed5YzCG049PnBVQwugpmx2dcyyCqJpORhcIqb9jHdCkYmCiA==} engines: {node: '>=14.18'} - '@sentry-internal/feedback@8.28.0': - resolution: {integrity: sha512-5vYunPCDBLCJ8QNnhepacdYheiN+UtYxpGAIaC/zjBC1nDuBgWs+TfKPo1UlO/1sesfgs9ibpxtShOweucL61g==} + '@sentry-internal/feedback@8.30.0': + resolution: {integrity: sha512-ParFRxQY6helxkwUDmro77Wc5uSIC6rZos88jYMrYwFmoTJaNWf4lDzPyECfdSiSYyzSMZk4dorSUN85Ul7DCg==} engines: {node: '>=14.18'} - '@sentry-internal/replay-canvas@8.28.0': - resolution: {integrity: sha512-RfpYHDHMUKGeEdx41QtHITjEn6P3tGaDPHvatqdrD3yv4j+wbJ6laX1PrIxCpGFUtjdzkqi/KUcvUd2kzbH/FA==} + '@sentry-internal/replay-canvas@8.30.0': + resolution: {integrity: sha512-y/QqcvchhtMlVA6eOZicIfTxtZarazQZJuFW0018ynPxBTiuuWSxMCLqduulXUYsFejfD8/eKHb3BpCIFdDYjg==} engines: {node: '>=14.18'} - '@sentry-internal/replay@8.28.0': - resolution: {integrity: sha512-70jvzzOL5O74gahgXKyRkZgiYN93yly5gq+bbj4/6NRQ+EtPd285+ccy0laExdfyK0ugvvwD4v+1MQit52OAsg==} + '@sentry-internal/replay@8.30.0': + resolution: {integrity: sha512-/KFre+BrovPCiovgAu5N1ErJtkDVzkJA5hV3Jw011AlxRWxrmPwu6+9sV9/rn3tqYAGyq6IggYqeIOHhLh1Ihg==} engines: {node: '>=14.18'} - '@sentry/browser@8.28.0': - resolution: {integrity: sha512-i/gjMYzIGQiPFH1pCbdnTwH9xs9mTAqzN+goP3GWX5a58frc7h8vxyA/5z0yMd0aCW6U8mVxnoAT72vGbKbx0g==} + '@sentry/browser@8.30.0': + resolution: {integrity: sha512-M+tKqawH9S3CqlAIcqdZcHbcsNQkEa9MrPqPCYvXco3C4LRpNizJP2XwBiGQY2yK+fOSvbaWpPtlI938/wuRZQ==} engines: {node: '>=14.18'} - '@sentry/core@8.28.0': - resolution: {integrity: sha512-+If9uubvpZpvaQQw4HLiKPhrSS9/KcoA/AcdQkNm+5CVwAoOmDPtyYfkPBgfo2hLZnZQqR1bwkz/PrNoOm+gqA==} + '@sentry/core@8.30.0': + resolution: {integrity: sha512-CJ/FuWLw0QEKGKXGL/nm9eaOdajEcmPekLuHAuOCxID7N07R9l9laz3vFbAkUZ97GGDv3sYrJZgywfY3Moropg==} engines: {node: '>=14.18'} - '@sentry/types@8.28.0': - resolution: {integrity: sha512-hOfqfd92/AzBrEdMgmmV1VfOXJbIfleFTnerRl0mg/+CcNgP/6+Fdonp354TD56ouWNF2WkOM6sEKSXMWp6SEQ==} + '@sentry/types@8.30.0': + resolution: {integrity: sha512-kgWW2BCjBmVlSQRG32GonHEVyeDbys74xf9mLPvynwHTgw3+NUlNAlEdu05xnb2ow4bCTHfbkS5G1zRgyv5k4Q==} engines: {node: '>=14.18'} - '@sentry/utils@8.28.0': - resolution: {integrity: sha512-smhk7PJpvDMQ2DB5p2qn9UeoUHdU41IgjMmS2xklZpa8tjzBTxDeWpGvrX2fuH67D9bAJuLC/XyZjJCHLoEW5g==} + '@sentry/utils@8.30.0': + resolution: {integrity: sha512-wZxU2HWlzsnu8214Xy7S7cRIuD6h8Z5DnnkojJfX0i0NLooepZQk2824el1Q13AakLb7/S8CHSHXOMnCtoSduw==} engines: {node: '>=14.18'} '@sindresorhus/is@4.6.0': resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} - '@stylistic/stylelint-plugin@2.1.3': - resolution: {integrity: sha512-/KUcqX36AbbUk7KvNuM0dWv2XSlPa1M12CPcC//eA4MNEFsZFl+2Kf8UZCLjlIWIrDNitd591vaVkXfOwUtsFQ==} + '@stylistic/stylelint-plugin@3.0.1': + resolution: {integrity: sha512-j3mH8HSw2Rob/KJFWZ627w3CQ8gQqVHtzCdPeEffUg5vOgpz4rgrR+Xw2kU0OQCDcdW8Y1nKfdXKKjM5Rn8X0g==} engines: {node: ^18.12 || >=20.9} peerDependencies: - stylelint: ^16.0.2 + stylelint: ^16.8.0 - '@swc/cli@0.4.0': - resolution: {integrity: sha512-4JdVrPtF/4rCMXp6Q1h5I6YkYZrCCcqod7Wk97ZQq7K8vNGzJUryBv4eHCvqx5sJOJBrbYm9fcswe1B0TygNoA==} + '@swc/cli@0.4.1-nightly.20240914': + resolution: {integrity: sha512-mpsF0+pq40uu9nZnhkzaA0gdivORTZnJNUFfuUGEzC1DgEEgmKDgisRWpBgA3p7xQPCpYlhkH5cTbsOkqar2Mg==} engines: {node: '>= 16.14.0'} hasBin: true peerDependencies: @@ -594,68 +675,68 @@ packages: chokidar: optional: true - '@swc/core-darwin-arm64@1.7.23': - resolution: {integrity: sha512-yyOHPfti6yKlQulfVWMt7BVKst+SyEZYCWuQSGMn1KgmNCH/bYufRWfQXIhkGSj44ZkEepJmsJ8tDyIb4k5WyA==} + '@swc/core-darwin-arm64@1.7.26': + resolution: {integrity: sha512-FF3CRYTg6a7ZVW4yT9mesxoVVZTrcSWtmZhxKCYJX9brH4CS/7PRPjAKNk6kzWgWuRoglP7hkjQcd6EpMcZEAw==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.7.23': - resolution: {integrity: sha512-GzqHwQ0Y1VyjdI/bBKFX2GKm5HD3PIB6OhuAQtWZMTtEr2yIrlT0YK2T+XKh7oIg31JwxGBeQdBk3KTI7DARmQ==} + '@swc/core-darwin-x64@1.7.26': + resolution: {integrity: sha512-az3cibZdsay2HNKmc4bjf62QVukuiMRh5sfM5kHR/JMTrLyS6vSw7Ihs3UTkZjUxkLTT8ro54LI6sV6sUQUbLQ==} engines: {node: '>=10'} cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.7.23': - resolution: {integrity: sha512-qwX4gB41OS6/OZkHcpTqLFGsdmvoZyffnJIlgB/kZKwH3lfeJWzv6vx57zXtNpM/t7GoQEe0VZUVdmNjxSxBZw==} + '@swc/core-linux-arm-gnueabihf@1.7.26': + resolution: {integrity: sha512-VYPFVJDO5zT5U3RpCdHE5v1gz4mmR8BfHecUZTmD2v1JeFY6fv9KArJUpjrHEEsjK/ucXkQFmJ0jaiWXmpOV9Q==} engines: {node: '>=10'} cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.7.23': - resolution: {integrity: sha512-TsrbUZdMaUwzI7+g/8rHPLWbntMKYSu5Bn5IBSqVKPeyqaXxNnlIUnWXgXcUcRAc+T+Y8ADfr7EiFz9iz5DuSA==} + '@swc/core-linux-arm64-gnu@1.7.26': + resolution: {integrity: sha512-YKevOV7abpjcAzXrhsl+W48Z9mZvgoVs2eP5nY+uoMAdP2b3GxC0Df1Co0I90o2lkzO4jYBpTMcZlmUXLdXn+Q==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.7.23': - resolution: {integrity: sha512-JEdtwdthazKq4PBz53KSubwwK8MvqODAihGSAzc8u3Unq4ojcvaS8b0CwLBeD+kTQ78HpxOXTt3DsFIxpgaCAA==} + '@swc/core-linux-arm64-musl@1.7.26': + resolution: {integrity: sha512-3w8iZICMkQQON0uIcvz7+Q1MPOW6hJ4O5ETjA0LSP/tuKqx30hIniCGOgPDnv3UTMruLUnQbtBwVCZTBKR3Rkg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.7.23': - resolution: {integrity: sha512-V51gFPWaVAHbI1yg9ahsoya3aB4uawye3SZ5uQWgcP7wdCdiv60dw4F5nuPJf5Z1oXD3U/BslXuamv8Oh9vXqQ==} + '@swc/core-linux-x64-gnu@1.7.26': + resolution: {integrity: sha512-c+pp9Zkk2lqb06bNGkR2Looxrs7FtGDMA4/aHjZcCqATgp348hOKH5WPvNLBl+yPrISuWjbKDVn3NgAvfvpH4w==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.7.23': - resolution: {integrity: sha512-BBqQi4+UdeRqag3yM4IJjaHG4yc1o3l9ksENHToE0o/u2DT0FY5+K/DiYGZLC1JHbSFzNqRCYsa7DIzRtZ0A1A==} + '@swc/core-linux-x64-musl@1.7.26': + resolution: {integrity: sha512-PgtyfHBF6xG87dUSSdTJHwZ3/8vWZfNIXQV2GlwEpslrOkGqy+WaiiyE7Of7z9AvDILfBBBcJvJ/r8u980wAfQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.7.23': - resolution: {integrity: sha512-JPk6pvCKncL6bXG7p+NLZf8PWx4FakVvKNdwGeMrYunb+yk1IZf7qf9LJk8+GDGF5QviDXPs8opZrTrfsW80fA==} + '@swc/core-win32-arm64-msvc@1.7.26': + resolution: {integrity: sha512-9TNXPIJqFynlAOrRD6tUQjMq7KApSklK3R/tXgIxc7Qx+lWu8hlDQ/kVPLpU7PWvMMwC/3hKBW+p5f+Tms1hmA==} engines: {node: '>=10'} cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.7.23': - resolution: {integrity: sha512-2Whxi8d+bLQBzJcQ5qYPHlk02YYVGsMVav0fWk+FnX2z1QRREIu1L1xvrpi7gBpjXp6BIU40ya8GiKeekNT2bg==} + '@swc/core-win32-ia32-msvc@1.7.26': + resolution: {integrity: sha512-9YngxNcG3177GYdsTum4V98Re+TlCeJEP4kEwEg9EagT5s3YejYdKwVAkAsJszzkXuyRDdnHUpYbTrPG6FiXrQ==} engines: {node: '>=10'} cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.7.23': - resolution: {integrity: sha512-82fARk4/yJ40kwWKY/gdKDisPdtgJE9jgpl/vkNG3alyJxrCzuNM7+CtiKoYbXLeqM8GQTS3wlvCaJu9oQ8dag==} + '@swc/core-win32-x64-msvc@1.7.26': + resolution: {integrity: sha512-VR+hzg9XqucgLjXxA13MtV5O3C0bK0ywtLIBw/+a+O+Oc6mxFWHtdUeXDbIi5AiPbn0fjgVJMqYnyjGyyX8u0w==} engines: {node: '>=10'} cpu: [x64] os: [win32] - '@swc/core@1.7.23': - resolution: {integrity: sha512-VDNkpDvDlreGh2E3tlDj8B3piiuLhhQA/7rIVZpiLUvG1YpucAa6N7iDXA7Gc/+Hah8spaCg/qvEaBkCmcIYCQ==} + '@swc/core@1.7.26': + resolution: {integrity: sha512-f5uYFf+TmMQyYIoxkn/evWhNGuUzC730dFwAKGwBVHHVoPyak1/GvJUm6i1SKl+2Hrj9oN0i3WSoWWZ4pgI8lw==} engines: {node: '>=10'} peerDependencies: '@swc/helpers': '*' @@ -697,14 +778,14 @@ packages: '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - '@types/node@22.5.4': - resolution: {integrity: sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==} + '@types/node@22.5.5': + resolution: {integrity: sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==} '@types/responselike@1.0.3': resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - '@typescript-eslint/eslint-plugin@8.4.0': - resolution: {integrity: sha512-rg8LGdv7ri3oAlenMACk9e+AR4wUV0yrrG+XKsGKOK0EVgeEDqurkXMPILG2836fW4ibokTB5v4b6Z9+GYQDEw==} + '@typescript-eslint/eslint-plugin@8.6.0': + resolution: {integrity: sha512-UOaz/wFowmoh2G6Mr9gw60B1mm0MzUtm6Ic8G2yM1Le6gyj5Loi/N+O5mocugRGY+8OeeKmkMmbxNqUCq3B4Sg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 @@ -714,8 +795,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.4.0': - resolution: {integrity: sha512-NHgWmKSgJk5K9N16GIhQ4jSobBoJwrmURaLErad0qlLjrpP5bECYg+wxVTGlGZmJbU03jj/dfnb6V9bw+5icsA==} + '@typescript-eslint/parser@8.6.0': + resolution: {integrity: sha512-eQcbCuA2Vmw45iGfcyG4y6rS7BhWfz9MQuk409WD47qMM+bKCGQWXxvoOs1DUp+T7UBMTtRTVT+kXr7Sh4O9Ow==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -724,12 +805,12 @@ packages: typescript: optional: true - '@typescript-eslint/scope-manager@8.4.0': - resolution: {integrity: sha512-n2jFxLeY0JmKfUqy3P70rs6vdoPjHK8P/w+zJcV3fk0b0BwRXC/zxRTEnAsgYT7MwdQDt/ZEbtdzdVC+hcpF0A==} + '@typescript-eslint/scope-manager@8.6.0': + resolution: {integrity: sha512-ZuoutoS5y9UOxKvpc/GkvF4cuEmpokda4wRg64JEia27wX+PysIE9q+lzDtlHHgblwUWwo5/Qn+/WyTUvDwBHw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.4.0': - resolution: {integrity: sha512-pu2PAmNrl9KX6TtirVOrbLPLwDmASpZhK/XU7WvoKoCUkdtq9zF7qQ7gna0GBZFN0hci0vHaSusiL2WpsQk37A==} + '@typescript-eslint/type-utils@8.6.0': + resolution: {integrity: sha512-dtePl4gsuenXVwC7dVNlb4mGDcKjDT/Ropsk4za/ouMBPplCLyznIaR+W65mvCvsyS97dymoBRrioEXI7k0XIg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -737,12 +818,12 @@ packages: typescript: optional: true - '@typescript-eslint/types@8.4.0': - resolution: {integrity: sha512-T1RB3KQdskh9t3v/qv7niK6P8yvn7ja1mS7QK7XfRVL6wtZ8/mFs/FHf4fKvTA0rKnqnYxl/uHFNbnEt0phgbw==} + '@typescript-eslint/types@8.6.0': + resolution: {integrity: sha512-rojqFZGd4MQxw33SrOy09qIDS8WEldM8JWtKQLAjf/X5mGSeEFh5ixQlxssMNyPslVIk9yzWqXCsV2eFhYrYUw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.4.0': - resolution: {integrity: sha512-kJ2OIP4dQw5gdI4uXsaxUZHRwWAGpREJ9Zq6D5L0BweyOrWsL6Sz0YcAZGWhvKnH7fm1J5YFE1JrQL0c9dd53A==} + '@typescript-eslint/typescript-estree@8.6.0': + resolution: {integrity: sha512-MOVAzsKJIPIlLK239l5s06YXjNqpKTVhBVDnqUumQJja5+Y94V3+4VUFRA0G60y2jNnTVwRCkhyGQpavfsbq/g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -750,14 +831,14 @@ packages: typescript: optional: true - '@typescript-eslint/utils@8.4.0': - resolution: {integrity: sha512-swULW8n1IKLjRAgciCkTCafyTHHfwVQFt8DovmaF69sKbOxTSFMmIZaSHjqO9i/RV0wIblaawhzvtva8Nmm7lQ==} + '@typescript-eslint/utils@8.6.0': + resolution: {integrity: sha512-eNp9cWnYf36NaOVjkEUznf6fEgVy1TWpE0o52e4wtojjBx7D1UV2WAWGzR+8Y5lVFtpMLPwNbC67T83DWSph4A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - '@typescript-eslint/visitor-keys@8.4.0': - resolution: {integrity: sha512-zTQD6WLNTre1hj5wp09nBIDiOc2U5r/qmzo7wxPn4ZgAjHql09EofqhF9WF+fZHzL5aCyaIpPcT2hyxl73kr9A==} + '@typescript-eslint/visitor-keys@8.6.0': + resolution: {integrity: sha512-wapVFfZg9H0qOYh4grNVQiMklJGluQrOUiOhYRrQWhx7BY/+I1IYb8BczWNbbUpO+pqy0rDciv3lQH5E1bCLrg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@xml-tools/parser@1.0.11': @@ -783,8 +864,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} engines: {node: '>=12'} ansi-styles@3.2.1: @@ -819,6 +900,11 @@ packages: balanced-match@2.0.0: resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} + better-typescript-lib@2.8.0: + resolution: {integrity: sha512-AAAsB7Q8lB1qavcHRmDs7Xrz/dD0T9bC7fgQ4fUbd0UAxiMi+ZCVQ42WojbQCFZzEvEplQnB0PDmm4vmPC0YQQ==} + peerDependencies: + typescript: '>=4.5.2' + bin-check@4.1.0: resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} engines: {node: '>=4'} @@ -862,8 +948,8 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - caniuse-lite@1.0.30001658: - resolution: {integrity: sha512-N2YVqWbJELVdrnsW5p+apoQyYt51aBMSsBZki1XZEfeBCexcM/sf4xiAHcXQBkuOwJBXtWF7aW1sYX6tKebPHw==} + caniuse-lite@1.0.30001660: + resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==} chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} @@ -906,6 +992,10 @@ packages: concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + configurations-js@git+https://git.gcch.fr/gcch/configurations-js.git#8041a8ac7398dd2255920bbb61ff782670bd13f2: + resolution: {commit: 8041a8ac7398dd2255920bbb61ff782670bd13f2, repo: https://git.gcch.fr/gcch/configurations-js.git, type: git} + version: 0.0.1 + content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -963,8 +1053,8 @@ packages: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} - electron-to-chromium@1.5.18: - resolution: {integrity: sha512-1OfuVACu+zKlmjsNdcJuVQuVE61sZOLbNM4JAQ1Rvh6EOj0/EUKhMJjRH73InPlXSh8HIJk1cVZ8pyOV/FMdUQ==} + electron-to-chromium@1.5.24: + resolution: {integrity: sha512-0x0wLCmpdKFCi9ulhvYZebgcPmHTkFVUfU2wzDykadkslKwT4oAmDTHEKLnlrDsMGZe4B+ksn8quZfZjYsBetA==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -1000,14 +1090,17 @@ packages: resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} engines: {node: '>=12'} - eslint-plugin-perfectionist@3.4.0: - resolution: {integrity: sha512-vXyd1sFg3H/7aKgBUie62bA6E0EN3Dh0LCD5r4vR/IYtTljxOnyckI1AV0Arw4eYjC/W9T1X04Pl2mdLsdWtMA==} + eslint-plugin-oxlint@0.9.5: + resolution: {integrity: sha512-y8AohK5k4L8Zfj7SiixggqKbVqz8V0VaBRc4OFEmJ4EHtUAHcO3cLWjgea0UleAiv2FiZENjnT45puqPYHY3QQ==} + + eslint-plugin-perfectionist@3.6.0: + resolution: {integrity: sha512-sA6ljy6dL/9cM5ruZ/pMqRVt0FQ4Z7mbQWlBYpyX9941LVfm65d2jl2k1ZbWD3ud9Wm+/NKgOvRnAatsKhMJbA==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: astro-eslint-parser: ^1.0.2 eslint: '>=8.0.0' svelte: '>=3.0.0' - svelte-eslint-parser: ^0.41.0 + svelte-eslint-parser: ^0.41.1 vue-eslint-parser: '>=9.0.0' peerDependenciesMeta: astro-eslint-parser: @@ -1192,6 +1285,10 @@ packages: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} + globals@15.9.0: + resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==} + engines: {node: '>=18'} + globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -1199,6 +1296,9 @@ packages: globjoin@0.1.4: resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + got@11.8.6: resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} engines: {node: '>=10.19.0'} @@ -1296,8 +1396,8 @@ packages: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} - is-unicode-supported@2.0.0: - resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} engines: {node: '>=18'} isexe@2.0.0: @@ -1476,8 +1576,8 @@ packages: resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} engines: {node: '>=4'} - oxlint@0.9.3: - resolution: {integrity: sha512-ecC+nASibeOMBH9clpbBYKgLn/HB0PhaeyD/L3pZ5FTM1HJqYKsOwYmv9npULrN6oTA1JEkE3VRRk9H+Jev9WQ==} + oxlint@0.9.5: + resolution: {integrity: sha512-Jw1QnE3GPwkKU6JUIfA+b8W5e+Oq9gAPDkEUK2ImE/1kPGoO2iHUmvnI0FS7sHeivHWbe1lsfdetWgxeW5YBZA==} engines: {node: '>=14.*'} hasBin: true @@ -1576,8 +1676,8 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.45: - resolution: {integrity: sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==} + postcss@8.4.47: + resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: @@ -1604,8 +1704,8 @@ packages: pseudomap@1.0.2: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} @@ -1636,8 +1736,8 @@ packages: regexp-to-ast@0.5.0: resolution: {integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==} - remeda@2.12.0: - resolution: {integrity: sha512-VAlyhh1os8boCA9/7yN9sXzo0tfCeOwScGXztwBspS0DXQmbIN8xTBfEABvbAW8rMJMPzqxQ1UymHquuESh/pg==} + remeda@2.12.1: + resolution: {integrity: sha512-hKFAbxbQe8PMd4+CYO1DYCrCbcZsUSa7e21g7+4co91GBy7BD+Ub6JdaLy76yPOp7PCPTAXRz/9NXtZ9w15jbg==} require-from-string@2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} @@ -1661,8 +1761,8 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rollup@4.21.2: - resolution: {integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==} + rollup@4.21.3: + resolution: {integrity: sha512-7sqRtBNnEbcBtMeRVc6VRsJMmpI+JU1z9VTvW8D4gXIYQFz0aLcsE6rRkyghZkLfEgUZgVvOG7A5CVz/VW5GIA==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -1677,6 +1777,9 @@ packages: engines: {node: '>=14.0.0'} hasBin: true + scule@1.3.0: + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} + semver-regex@4.0.5: resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} engines: {node: '>=12'} @@ -1733,8 +1836,8 @@ packages: resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} engines: {node: '>=0.10.0'} - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} source-map@0.7.4: @@ -1800,8 +1903,8 @@ packages: peerDependencies: stylelint: ^16.1.0 - stylelint-config-sass-guidelines@12.0.0: - resolution: {integrity: sha512-lGJml+QEVlU/nqI+awiQieyxXHkmuwhz4XsfUNkQVcNaPXBpLgefOHjZ7ZSmUm4y4YG8JhrvYNjYzUcTfe8cdg==} + stylelint-config-sass-guidelines@12.1.0: + resolution: {integrity: sha512-NTxEtVT6uNSqRvq+A3ScyKhjUrY/Z845TnpWEwnMgIPZ/+/Waa4+51r6OPuQRMu4XZS3D8DK1UaT4TWFBvuuAw==} engines: {node: '>=18.12.0'} peerDependencies: postcss: ^8.4.21 @@ -1840,8 +1943,8 @@ packages: peerDependencies: stylelint: ^14.0.0 || ^15.0.0 || ^16.0.0 - stylelint-scss@6.5.1: - resolution: {integrity: sha512-ZLqdqihm6uDYkrsOeD6YWb+stZI8Wn92kUNDhE4M+g9g1aCnRv0JlOrttFiAJJwaNzpdQgX3YJb5vDQXVuO9Ww==} + stylelint-scss@6.6.0: + resolution: {integrity: sha512-aK2Rdt41Jt9Gv/ClMN5BYhP7xR3IEoRMDKpJkIDI9frZQ6KkxeLishusxs2JtEGZdJWXvPoBOhswNxj3gx8L/g==} engines: {node: '>=18.12.0'} peerDependencies: stylelint: ^16.0.2 @@ -1891,6 +1994,19 @@ packages: peerDependencies: typescript: '>=4.2.0' + ts-pattern@5.3.1: + resolution: {integrity: sha512-1RUMKa8jYQdNfmnK4jyzBK3/PS/tnjcZ1CW0v1vWDeYe5RBklc/nquw03MEoB66hVBm4BnlCfmOqDVxHyT1DpA==} + + tsconfck@3.1.3: + resolution: {integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + tslib@2.7.0: resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} @@ -1898,12 +2014,12 @@ packages: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} - type-fest@4.26.0: - resolution: {integrity: sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw==} + type-fest@4.26.1: + resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} engines: {node: '>=16'} - typescript-eslint@8.4.0: - resolution: {integrity: sha512-67qoc3zQZe3CAkO0ua17+7aCLI0dU+sSQd1eKPGq06QE4rfQjstVXR6woHO5qQvGUa550NfGckT4tzh3b3c8Pw==} + typescript-eslint@8.6.0: + resolution: {integrity: sha512-eEhhlxCEpCd4helh3AO1hk0UP2MvbRi9CtIAJTVPQjuSXOOO2jsEacNi4UdcJzZJbeuVg1gMhtZ8UYb+NFYPrA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' @@ -1911,8 +2027,8 @@ packages: typescript: optional: true - typescript@5.5.4: - resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} + typescript@5.6.2: + resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} engines: {node: '>=14.17'} hasBin: true @@ -1931,23 +2047,31 @@ packages: util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - valibot@0.41.0: - resolution: {integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==} + valibot@0.42.0: + resolution: {integrity: sha512-igMdmHXxDiQY714ssh9bGisMqJ2yg7sko1KOmv/omnrIacGtP6mGrbvVT1IuV1bDrHyG9ybgpHwG1UElDiDCLg==} peerDependencies: typescript: '>=5' peerDependenciesMeta: typescript: optional: true - vite-plugin-valibot-env@0.6.11: - resolution: {integrity: sha512-jSwzXI/i9oaftWm1xwIT6id48N3HVLPmyO/W8Elf39/OX1/3WtLVlcLMaZCTbtujFHT+1cPGFwQd0QrdXGAeoQ==} + vite-plugin-valibot-env@0.6.12: + resolution: {integrity: sha512-91IrDFO5sMq8D9W2qNUj2rwKcl3SXIam55sTJCYV9cwXGWxDoOnocFVEaZzkNAKor3VyjNHWMWYgQyAtrIDMyw==} engines: {node: '>=18.0.0'} peerDependencies: - valibot: '>=0.30 <0.42' + valibot: '>=0.30 <0.43' vite: '>=2 <6' - vite@5.4.3: - resolution: {integrity: sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==} + vite-tsconfig-paths@5.0.1: + resolution: {integrity: sha512-yqwv+LstU7NwPeNqajZzLEBVpUFU6Dugtb2P84FXuvaoYA+/70l9MHE+GYfYAycVyPSDYZ7mjOFuYBRqlEpTig==} + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + + vite@5.4.6: + resolution: {integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -1996,8 +2120,8 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - wretch@2.9.1: - resolution: {integrity: sha512-ov2i8UkrqHy2DCJq5/Vr4YYRR2rdgGjx/FlL9TciCoo2o2Ksv0d1fJ949ZnmFedA/Wxm/YoQiNElpw9sVRCt1w==} + wretch@2.10.0: + resolution: {integrity: sha512-umAgGsgEfWVm2GT9Gl+Uyl2AI0q1P8WqXMGiDbSf5QImZW7bdnUbTUrgXYzYH+VmtlM6RqwJQH7JNizSNwt6kw==} engines: {node: '>=14'} write-file-atomic@5.0.1: @@ -2031,58 +2155,111 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.0 - '@biomejs/biome@1.8.3': - optionalDependencies: - '@biomejs/cli-darwin-arm64': 1.8.3 - '@biomejs/cli-darwin-x64': 1.8.3 - '@biomejs/cli-linux-arm64': 1.8.3 - '@biomejs/cli-linux-arm64-musl': 1.8.3 - '@biomejs/cli-linux-x64': 1.8.3 - '@biomejs/cli-linux-x64-musl': 1.8.3 - '@biomejs/cli-win32-arm64': 1.8.3 - '@biomejs/cli-win32-x64': 1.8.3 - - '@biomejs/cli-darwin-arm64@1.8.3': - optional: true - - '@biomejs/cli-darwin-x64@1.8.3': - optional: true - - '@biomejs/cli-linux-arm64-musl@1.8.3': - optional: true - - '@biomejs/cli-linux-arm64@1.8.3': - optional: true - - '@biomejs/cli-linux-x64-musl@1.8.3': - optional: true - - '@biomejs/cli-linux-x64@1.8.3': - optional: true - - '@biomejs/cli-win32-arm64@1.8.3': - optional: true - - '@biomejs/cli-win32-x64@1.8.3': - optional: true - - '@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1)': + '@better-typescript-lib/decorators@2.8.0(typescript@5.6.2)': dependencies: - '@csstools/css-tokenizer': 2.4.1 + typescript: 5.6.2 + + '@better-typescript-lib/dom@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2015@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2016@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2017@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2018@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2019@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2020@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2021@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2022@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es2023@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es5@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/es6@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/esnext@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/scripthost@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@better-typescript-lib/webworker@2.8.0(typescript@5.6.2)': + dependencies: + typescript: 5.6.2 + + '@biomejs/biome@1.9.1': + optionalDependencies: + '@biomejs/cli-darwin-arm64': 1.9.1 + '@biomejs/cli-darwin-x64': 1.9.1 + '@biomejs/cli-linux-arm64': 1.9.1 + '@biomejs/cli-linux-arm64-musl': 1.9.1 + '@biomejs/cli-linux-x64': 1.9.1 + '@biomejs/cli-linux-x64-musl': 1.9.1 + '@biomejs/cli-win32-arm64': 1.9.1 + '@biomejs/cli-win32-x64': 1.9.1 + + '@biomejs/cli-darwin-arm64@1.9.1': + optional: true + + '@biomejs/cli-darwin-x64@1.9.1': + optional: true + + '@biomejs/cli-linux-arm64-musl@1.9.1': + optional: true + + '@biomejs/cli-linux-arm64@1.9.1': + optional: true + + '@biomejs/cli-linux-x64-musl@1.9.1': + optional: true + + '@biomejs/cli-linux-x64@1.9.1': + optional: true + + '@biomejs/cli-win32-arm64@1.9.1': + optional: true + + '@biomejs/cli-win32-x64@1.9.1': + optional: true '@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)': dependencies: '@csstools/css-tokenizer': 3.0.1 - '@csstools/css-tokenizer@2.4.1': {} - '@csstools/css-tokenizer@3.0.1': {} - '@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': - dependencies: - '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) - '@csstools/css-tokenizer': 2.4.1 - '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)': dependencies: '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) @@ -2168,7 +2345,7 @@ snapshots: eslint: 9.10.0 eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.11.0': {} + '@eslint-community/regexpp@4.11.1': {} '@eslint/config-array@0.18.0': dependencies: @@ -2227,28 +2404,28 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@oxlint/darwin-arm64@0.9.3': + '@oxlint/darwin-arm64@0.9.5': optional: true - '@oxlint/darwin-x64@0.9.3': + '@oxlint/darwin-x64@0.9.5': optional: true - '@oxlint/linux-arm64-gnu@0.9.3': + '@oxlint/linux-arm64-gnu@0.9.5': optional: true - '@oxlint/linux-arm64-musl@0.9.3': + '@oxlint/linux-arm64-musl@0.9.5': optional: true - '@oxlint/linux-x64-gnu@0.9.3': + '@oxlint/linux-x64-gnu@0.9.5': optional: true - '@oxlint/linux-x64-musl@0.9.3': + '@oxlint/linux-x64-musl@0.9.5': optional: true - '@oxlint/win32-arm64@0.9.3': + '@oxlint/win32-arm64@0.9.5': optional: true - '@oxlint/win32-x64@0.9.3': + '@oxlint/win32-x64@0.9.5': optional: true '@prettier/plugin-php@0.22.2(prettier@3.3.3)': @@ -2262,118 +2439,118 @@ snapshots: '@xml-tools/parser': 1.0.11 prettier: 3.3.3 - '@rollup/rollup-android-arm-eabi@4.21.2': + '@rollup/rollup-android-arm-eabi@4.21.3': optional: true - '@rollup/rollup-android-arm64@4.21.2': + '@rollup/rollup-android-arm64@4.21.3': optional: true - '@rollup/rollup-darwin-arm64@4.21.2': + '@rollup/rollup-darwin-arm64@4.21.3': optional: true - '@rollup/rollup-darwin-x64@4.21.2': + '@rollup/rollup-darwin-x64@4.21.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.21.2': + '@rollup/rollup-linux-arm-gnueabihf@4.21.3': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.21.2': + '@rollup/rollup-linux-arm-musleabihf@4.21.3': optional: true - '@rollup/rollup-linux-arm64-gnu@4.21.2': + '@rollup/rollup-linux-arm64-gnu@4.21.3': optional: true - '@rollup/rollup-linux-arm64-musl@4.21.2': + '@rollup/rollup-linux-arm64-musl@4.21.3': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': + '@rollup/rollup-linux-powerpc64le-gnu@4.21.3': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.21.2': + '@rollup/rollup-linux-riscv64-gnu@4.21.3': optional: true - '@rollup/rollup-linux-s390x-gnu@4.21.2': + '@rollup/rollup-linux-s390x-gnu@4.21.3': optional: true - '@rollup/rollup-linux-x64-gnu@4.21.2': + '@rollup/rollup-linux-x64-gnu@4.21.3': optional: true - '@rollup/rollup-linux-x64-musl@4.21.2': + '@rollup/rollup-linux-x64-musl@4.21.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.21.2': + '@rollup/rollup-win32-arm64-msvc@4.21.3': optional: true - '@rollup/rollup-win32-ia32-msvc@4.21.2': + '@rollup/rollup-win32-ia32-msvc@4.21.3': optional: true - '@rollup/rollup-win32-x64-msvc@4.21.2': + '@rollup/rollup-win32-x64-msvc@4.21.3': optional: true - '@sentry-internal/browser-utils@8.28.0': + '@sentry-internal/browser-utils@8.30.0': dependencies: - '@sentry/core': 8.28.0 - '@sentry/types': 8.28.0 - '@sentry/utils': 8.28.0 + '@sentry/core': 8.30.0 + '@sentry/types': 8.30.0 + '@sentry/utils': 8.30.0 - '@sentry-internal/feedback@8.28.0': + '@sentry-internal/feedback@8.30.0': dependencies: - '@sentry/core': 8.28.0 - '@sentry/types': 8.28.0 - '@sentry/utils': 8.28.0 + '@sentry/core': 8.30.0 + '@sentry/types': 8.30.0 + '@sentry/utils': 8.30.0 - '@sentry-internal/replay-canvas@8.28.0': + '@sentry-internal/replay-canvas@8.30.0': dependencies: - '@sentry-internal/replay': 8.28.0 - '@sentry/core': 8.28.0 - '@sentry/types': 8.28.0 - '@sentry/utils': 8.28.0 + '@sentry-internal/replay': 8.30.0 + '@sentry/core': 8.30.0 + '@sentry/types': 8.30.0 + '@sentry/utils': 8.30.0 - '@sentry-internal/replay@8.28.0': + '@sentry-internal/replay@8.30.0': dependencies: - '@sentry-internal/browser-utils': 8.28.0 - '@sentry/core': 8.28.0 - '@sentry/types': 8.28.0 - '@sentry/utils': 8.28.0 + '@sentry-internal/browser-utils': 8.30.0 + '@sentry/core': 8.30.0 + '@sentry/types': 8.30.0 + '@sentry/utils': 8.30.0 - '@sentry/browser@8.28.0': + '@sentry/browser@8.30.0': dependencies: - '@sentry-internal/browser-utils': 8.28.0 - '@sentry-internal/feedback': 8.28.0 - '@sentry-internal/replay': 8.28.0 - '@sentry-internal/replay-canvas': 8.28.0 - '@sentry/core': 8.28.0 - '@sentry/types': 8.28.0 - '@sentry/utils': 8.28.0 + '@sentry-internal/browser-utils': 8.30.0 + '@sentry-internal/feedback': 8.30.0 + '@sentry-internal/replay': 8.30.0 + '@sentry-internal/replay-canvas': 8.30.0 + '@sentry/core': 8.30.0 + '@sentry/types': 8.30.0 + '@sentry/utils': 8.30.0 - '@sentry/core@8.28.0': + '@sentry/core@8.30.0': dependencies: - '@sentry/types': 8.28.0 - '@sentry/utils': 8.28.0 + '@sentry/types': 8.30.0 + '@sentry/utils': 8.30.0 - '@sentry/types@8.28.0': {} + '@sentry/types@8.30.0': {} - '@sentry/utils@8.28.0': + '@sentry/utils@8.30.0': dependencies: - '@sentry/types': 8.28.0 + '@sentry/types': 8.30.0 '@sindresorhus/is@4.6.0': {} - '@stylistic/stylelint-plugin@2.1.3(stylelint@16.9.0(typescript@5.5.4))': + '@stylistic/stylelint-plugin@3.0.1(stylelint@16.9.0(typescript@5.6.2))': dependencies: - '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) - '@csstools/css-tokenizer': 2.4.1 - '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) + '@csstools/css-tokenizer': 3.0.1 + '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) is-plain-object: 5.0.0 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 style-search: 0.1.0 - stylelint: 16.9.0(typescript@5.5.4) + stylelint: 16.9.0(typescript@5.6.2) - '@swc/cli@0.4.0(@swc/core@1.7.23)(chokidar@3.6.0)': + '@swc/cli@0.4.1-nightly.20240914(@swc/core@1.7.26)(chokidar@3.6.0)': dependencies: '@mole-inc/bin-wrapper': 8.0.1 - '@swc/core': 1.7.23 + '@swc/core': 1.7.26 '@swc/counter': 0.1.3 commander: 8.3.0 fast-glob: 3.3.2 @@ -2385,51 +2562,51 @@ snapshots: optionalDependencies: chokidar: 3.6.0 - '@swc/core-darwin-arm64@1.7.23': + '@swc/core-darwin-arm64@1.7.26': optional: true - '@swc/core-darwin-x64@1.7.23': + '@swc/core-darwin-x64@1.7.26': optional: true - '@swc/core-linux-arm-gnueabihf@1.7.23': + '@swc/core-linux-arm-gnueabihf@1.7.26': optional: true - '@swc/core-linux-arm64-gnu@1.7.23': + '@swc/core-linux-arm64-gnu@1.7.26': optional: true - '@swc/core-linux-arm64-musl@1.7.23': + '@swc/core-linux-arm64-musl@1.7.26': optional: true - '@swc/core-linux-x64-gnu@1.7.23': + '@swc/core-linux-x64-gnu@1.7.26': optional: true - '@swc/core-linux-x64-musl@1.7.23': + '@swc/core-linux-x64-musl@1.7.26': optional: true - '@swc/core-win32-arm64-msvc@1.7.23': + '@swc/core-win32-arm64-msvc@1.7.26': optional: true - '@swc/core-win32-ia32-msvc@1.7.23': + '@swc/core-win32-ia32-msvc@1.7.26': optional: true - '@swc/core-win32-x64-msvc@1.7.23': + '@swc/core-win32-x64-msvc@1.7.26': optional: true - '@swc/core@1.7.23': + '@swc/core@1.7.26': dependencies: '@swc/counter': 0.1.3 '@swc/types': 0.1.12 optionalDependencies: - '@swc/core-darwin-arm64': 1.7.23 - '@swc/core-darwin-x64': 1.7.23 - '@swc/core-linux-arm-gnueabihf': 1.7.23 - '@swc/core-linux-arm64-gnu': 1.7.23 - '@swc/core-linux-arm64-musl': 1.7.23 - '@swc/core-linux-x64-gnu': 1.7.23 - '@swc/core-linux-x64-musl': 1.7.23 - '@swc/core-win32-arm64-msvc': 1.7.23 - '@swc/core-win32-ia32-msvc': 1.7.23 - '@swc/core-win32-x64-msvc': 1.7.23 + '@swc/core-darwin-arm64': 1.7.26 + '@swc/core-darwin-x64': 1.7.26 + '@swc/core-linux-arm-gnueabihf': 1.7.26 + '@swc/core-linux-arm64-gnu': 1.7.26 + '@swc/core-linux-arm64-musl': 1.7.26 + '@swc/core-linux-x64-gnu': 1.7.26 + '@swc/core-linux-x64-musl': 1.7.26 + '@swc/core-win32-arm64-msvc': 1.7.26 + '@swc/core-win32-ia32-msvc': 1.7.26 + '@swc/core-win32-x64-msvc': 1.7.26 '@swc/counter@0.1.3': {} @@ -2447,7 +2624,7 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 22.5.4 + '@types/node': 22.5.5 '@types/responselike': 1.0.3 '@types/eslint@9.6.1': @@ -2467,95 +2644,95 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 22.5.4 + '@types/node': 22.5.5 - '@types/node@22.5.4': + '@types/node@22.5.5': dependencies: undici-types: 6.19.8 '@types/responselike@1.0.3': dependencies: - '@types/node': 22.5.4 + '@types/node': 22.5.5 - '@typescript-eslint/eslint-plugin@8.4.0(@typescript-eslint/parser@8.4.0(eslint@9.10.0)(typescript@5.5.4))(eslint@9.10.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.10.0)(typescript@5.6.2))(eslint@9.10.0)(typescript@5.6.2)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.4.0(eslint@9.10.0)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 8.4.0 - '@typescript-eslint/type-utils': 8.4.0(eslint@9.10.0)(typescript@5.5.4) - '@typescript-eslint/utils': 8.4.0(eslint@9.10.0)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.4.0 + '@eslint-community/regexpp': 4.11.1 + '@typescript-eslint/parser': 8.6.0(eslint@9.10.0)(typescript@5.6.2) + '@typescript-eslint/scope-manager': 8.6.0 + '@typescript-eslint/type-utils': 8.6.0(eslint@9.10.0)(typescript@5.6.2) + '@typescript-eslint/utils': 8.6.0(eslint@9.10.0)(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.6.0 eslint: 9.10.0 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.2) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.4.0(eslint@9.10.0)(typescript@5.5.4)': + '@typescript-eslint/parser@8.6.0(eslint@9.10.0)(typescript@5.6.2)': dependencies: - '@typescript-eslint/scope-manager': 8.4.0 - '@typescript-eslint/types': 8.4.0 - '@typescript-eslint/typescript-estree': 8.4.0(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 8.4.0 + '@typescript-eslint/scope-manager': 8.6.0 + '@typescript-eslint/types': 8.6.0 + '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) + '@typescript-eslint/visitor-keys': 8.6.0 debug: 4.3.7 eslint: 9.10.0 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.4.0': + '@typescript-eslint/scope-manager@8.6.0': dependencies: - '@typescript-eslint/types': 8.4.0 - '@typescript-eslint/visitor-keys': 8.4.0 + '@typescript-eslint/types': 8.6.0 + '@typescript-eslint/visitor-keys': 8.6.0 - '@typescript-eslint/type-utils@8.4.0(eslint@9.10.0)(typescript@5.5.4)': + '@typescript-eslint/type-utils@8.6.0(eslint@9.10.0)(typescript@5.6.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.4.0(typescript@5.5.4) - '@typescript-eslint/utils': 8.4.0(eslint@9.10.0)(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) + '@typescript-eslint/utils': 8.6.0(eslint@9.10.0)(typescript@5.6.2) debug: 4.3.7 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.2) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 transitivePeerDependencies: - eslint - supports-color - '@typescript-eslint/types@8.4.0': {} + '@typescript-eslint/types@8.6.0': {} - '@typescript-eslint/typescript-estree@8.4.0(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@8.6.0(typescript@5.6.2)': dependencies: - '@typescript-eslint/types': 8.4.0 - '@typescript-eslint/visitor-keys': 8.4.0 + '@typescript-eslint/types': 8.6.0 + '@typescript-eslint/visitor-keys': 8.6.0 debug: 4.3.7 fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.2) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.4.0(eslint@9.10.0)(typescript@5.5.4)': + '@typescript-eslint/utils@8.6.0(eslint@9.10.0)(typescript@5.6.2)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0) - '@typescript-eslint/scope-manager': 8.4.0 - '@typescript-eslint/types': 8.4.0 - '@typescript-eslint/typescript-estree': 8.4.0(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.6.0 + '@typescript-eslint/types': 8.6.0 + '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) eslint: 9.10.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@8.4.0': + '@typescript-eslint/visitor-keys@8.6.0': dependencies: - '@typescript-eslint/types': 8.4.0 + '@typescript-eslint/types': 8.6.0 eslint-visitor-keys: 3.4.3 '@xml-tools/parser@1.0.11': @@ -2584,7 +2761,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.1.0: {} ansi-styles@3.2.1: dependencies: @@ -2611,6 +2788,26 @@ snapshots: balanced-match@2.0.0: {} + better-typescript-lib@2.8.0(typescript@5.6.2): + dependencies: + '@typescript/lib-decorators': '@better-typescript-lib/decorators@2.8.0(typescript@5.6.2)' + '@typescript/lib-dom': '@better-typescript-lib/dom@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2015': '@better-typescript-lib/es2015@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2016': '@better-typescript-lib/es2016@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2017': '@better-typescript-lib/es2017@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2018': '@better-typescript-lib/es2018@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2019': '@better-typescript-lib/es2019@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2020': '@better-typescript-lib/es2020@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2021': '@better-typescript-lib/es2021@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2022': '@better-typescript-lib/es2022@2.8.0(typescript@5.6.2)' + '@typescript/lib-es2023': '@better-typescript-lib/es2023@2.8.0(typescript@5.6.2)' + '@typescript/lib-es5': '@better-typescript-lib/es5@2.8.0(typescript@5.6.2)' + '@typescript/lib-es6': '@better-typescript-lib/es6@2.8.0(typescript@5.6.2)' + '@typescript/lib-esnext': '@better-typescript-lib/esnext@2.8.0(typescript@5.6.2)' + '@typescript/lib-scripthost': '@better-typescript-lib/scripthost@2.8.0(typescript@5.6.2)' + '@typescript/lib-webworker': '@better-typescript-lib/webworker@2.8.0(typescript@5.6.2)' + typescript: 5.6.2 + bin-check@4.1.0: dependencies: execa: 0.7.0 @@ -2644,8 +2841,8 @@ snapshots: browserslist@4.23.3: dependencies: - caniuse-lite: 1.0.30001658 - electron-to-chromium: 1.5.18 + caniuse-lite: 1.0.30001660 + electron-to-chromium: 1.5.24 node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) @@ -2663,7 +2860,7 @@ snapshots: callsites@3.1.0: {} - caniuse-lite@1.0.30001658: {} + caniuse-lite@1.0.30001660: {} chalk@2.4.2: dependencies: @@ -2714,18 +2911,20 @@ snapshots: concat-map@0.0.1: {} + configurations-js@git+https://git.gcch.fr/gcch/configurations-js.git#8041a8ac7398dd2255920bbb61ff782670bd13f2: {} + content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 - cosmiconfig@9.0.0(typescript@5.5.4): + cosmiconfig@9.0.0(typescript@5.6.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 cross-spawn@5.1.0: dependencies: @@ -2744,7 +2943,7 @@ snapshots: css-tree@2.3.1: dependencies: mdn-data: 2.0.30 - source-map-js: 1.2.0 + source-map-js: 1.2.1 cssesc@3.0.0: {} @@ -2764,7 +2963,7 @@ snapshots: dependencies: path-type: 4.0.0 - electron-to-chromium@1.5.18: {} + electron-to-chromium@1.5.24: {} emoji-regex@8.0.0: {} @@ -2812,10 +3011,14 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-plugin-perfectionist@3.4.0(eslint@9.10.0)(typescript@5.5.4): + eslint-plugin-oxlint@0.9.5: dependencies: - '@typescript-eslint/types': 8.4.0 - '@typescript-eslint/utils': 8.4.0(eslint@9.10.0)(typescript@5.5.4) + scule: 1.3.0 + + eslint-plugin-perfectionist@3.6.0(eslint@9.10.0)(typescript@5.6.2): + dependencies: + '@typescript-eslint/types': 8.6.0 + '@typescript-eslint/utils': 8.6.0(eslint@9.10.0)(typescript@5.6.2) eslint: 9.10.0 minimatch: 9.0.5 natural-compare-lite: 1.4.0 @@ -2835,7 +3038,7 @@ snapshots: eslint@9.10.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0) - '@eslint-community/regexpp': 4.11.0 + '@eslint-community/regexpp': 4.11.1 '@eslint/config-array': 0.18.0 '@eslint/eslintrc': 3.1.0 '@eslint/js': 9.10.0 @@ -3004,7 +3207,7 @@ snapshots: get-stream@5.2.0: dependencies: - pump: 3.0.0 + pump: 3.0.2 get-stream@6.0.1: {} @@ -3028,6 +3231,8 @@ snapshots: globals@14.0.0: {} + globals@15.9.0: {} + globby@11.1.0: dependencies: array-union: 2.1.0 @@ -3039,6 +3244,8 @@ snapshots: globjoin@0.1.4: {} + globrex@0.1.2: {} + got@11.8.6: dependencies: '@sindresorhus/is': 4.6.0 @@ -3113,7 +3320,7 @@ snapshots: is-stream@2.0.1: {} - is-unicode-supported@2.0.0: {} + is-unicode-supported@2.1.0: {} isexe@2.0.0: {} @@ -3162,7 +3369,7 @@ snapshots: log-symbols@7.0.0: dependencies: - is-unicode-supported: 2.0.0 + is-unicode-supported: 2.1.0 yoctocolors: 2.1.1 lowercase-keys@2.0.0: {} @@ -3260,16 +3467,16 @@ snapshots: dependencies: arch: 2.2.0 - oxlint@0.9.3: + oxlint@0.9.5: optionalDependencies: - '@oxlint/darwin-arm64': 0.9.3 - '@oxlint/darwin-x64': 0.9.3 - '@oxlint/linux-arm64-gnu': 0.9.3 - '@oxlint/linux-arm64-musl': 0.9.3 - '@oxlint/linux-x64-gnu': 0.9.3 - '@oxlint/linux-x64-musl': 0.9.3 - '@oxlint/win32-arm64': 0.9.3 - '@oxlint/win32-x64': 0.9.3 + '@oxlint/darwin-arm64': 0.9.5 + '@oxlint/darwin-x64': 0.9.5 + '@oxlint/linux-arm64-gnu': 0.9.5 + '@oxlint/linux-arm64-musl': 0.9.5 + '@oxlint/linux-x64-gnu': 0.9.5 + '@oxlint/linux-x64-musl': 0.9.5 + '@oxlint/win32-arm64': 0.9.5 + '@oxlint/win32-x64': 0.9.5 p-cancelable@2.1.1: {} @@ -3322,30 +3529,30 @@ snapshots: postcss-resolve-nested-selector@0.1.6: {} - postcss-safe-parser@7.0.0(postcss@8.4.45): + postcss-safe-parser@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.45 + postcss: 8.4.47 - postcss-scss@4.0.9(postcss@8.4.45): + postcss-scss@4.0.9(postcss@8.4.47): dependencies: - postcss: 8.4.45 + postcss: 8.4.47 postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sorting@8.0.2(postcss@8.4.45): + postcss-sorting@8.0.2(postcss@8.4.47): dependencies: - postcss: 8.4.45 + postcss: 8.4.47 postcss-value-parser@4.2.0: {} - postcss@8.4.45: + postcss@8.4.47: dependencies: nanoid: 3.3.7 picocolors: 1.1.0 - source-map-js: 1.2.0 + source-map-js: 1.2.1 prelude-ls@1.2.1: {} @@ -3363,7 +3570,7 @@ snapshots: pseudomap@1.0.2: {} - pump@3.0.0: + pump@3.0.2: dependencies: end-of-stream: 1.4.4 once: 1.4.0 @@ -3394,9 +3601,9 @@ snapshots: regexp-to-ast@0.5.0: {} - remeda@2.12.0: + remeda@2.12.1: dependencies: - type-fest: 4.26.0 + type-fest: 4.26.1 require-from-string@2.0.2: {} @@ -3412,26 +3619,26 @@ snapshots: reusify@1.0.4: {} - rollup@4.21.2: + rollup@4.21.3: dependencies: '@types/estree': 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.21.2 - '@rollup/rollup-android-arm64': 4.21.2 - '@rollup/rollup-darwin-arm64': 4.21.2 - '@rollup/rollup-darwin-x64': 4.21.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.21.2 - '@rollup/rollup-linux-arm-musleabihf': 4.21.2 - '@rollup/rollup-linux-arm64-gnu': 4.21.2 - '@rollup/rollup-linux-arm64-musl': 4.21.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.21.2 - '@rollup/rollup-linux-riscv64-gnu': 4.21.2 - '@rollup/rollup-linux-s390x-gnu': 4.21.2 - '@rollup/rollup-linux-x64-gnu': 4.21.2 - '@rollup/rollup-linux-x64-musl': 4.21.2 - '@rollup/rollup-win32-arm64-msvc': 4.21.2 - '@rollup/rollup-win32-ia32-msvc': 4.21.2 - '@rollup/rollup-win32-x64-msvc': 4.21.2 + '@rollup/rollup-android-arm-eabi': 4.21.3 + '@rollup/rollup-android-arm64': 4.21.3 + '@rollup/rollup-darwin-arm64': 4.21.3 + '@rollup/rollup-darwin-x64': 4.21.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.21.3 + '@rollup/rollup-linux-arm-musleabihf': 4.21.3 + '@rollup/rollup-linux-arm64-gnu': 4.21.3 + '@rollup/rollup-linux-arm64-musl': 4.21.3 + '@rollup/rollup-linux-powerpc64le-gnu': 4.21.3 + '@rollup/rollup-linux-riscv64-gnu': 4.21.3 + '@rollup/rollup-linux-s390x-gnu': 4.21.3 + '@rollup/rollup-linux-x64-gnu': 4.21.3 + '@rollup/rollup-linux-x64-musl': 4.21.3 + '@rollup/rollup-win32-arm64-msvc': 4.21.3 + '@rollup/rollup-win32-ia32-msvc': 4.21.3 + '@rollup/rollup-win32-x64-msvc': 4.21.3 fsevents: 2.3.3 run-parallel@1.2.0: @@ -3444,7 +3651,9 @@ snapshots: dependencies: chokidar: 3.6.0 immutable: 4.3.7 - source-map-js: 1.2.0 + source-map-js: 1.2.1 + + scule@1.3.0: {} semver-regex@4.0.5: {} @@ -3490,7 +3699,7 @@ snapshots: dependencies: is-plain-obj: 1.1.0 - source-map-js@1.2.0: {} + source-map-js@1.2.1: {} source-map@0.7.4: {} @@ -3510,7 +3719,7 @@ snapshots: strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-eof@1.0.0: {} @@ -3527,60 +3736,60 @@ snapshots: style-search@0.1.0: {} - stylelint-config-clean-order@6.1.0(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-clean-order@6.1.0(stylelint@16.9.0(typescript@5.6.2)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) - stylelint-order: 6.0.4(stylelint@16.9.0(typescript@5.5.4)) + stylelint: 16.9.0(typescript@5.6.2) + stylelint-order: 6.0.4(stylelint@16.9.0(typescript@5.6.2)) - stylelint-config-recommended-scss@14.1.0(postcss@8.4.45)(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-recommended-scss@14.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)): dependencies: - postcss-scss: 4.0.9(postcss@8.4.45) - stylelint: 16.9.0(typescript@5.5.4) - stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4)) - stylelint-scss: 6.5.1(stylelint@16.9.0(typescript@5.5.4)) + postcss-scss: 4.0.9(postcss@8.4.47) + stylelint: 16.9.0(typescript@5.6.2) + stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2)) + stylelint-scss: 6.6.0(stylelint@16.9.0(typescript@5.6.2)) optionalDependencies: - postcss: 8.4.45 + postcss: 8.4.47 - stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.6.2)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) + stylelint: 16.9.0(typescript@5.6.2) - stylelint-config-sass-guidelines@12.0.0(postcss@8.4.45)(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-sass-guidelines@12.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)): dependencies: - '@stylistic/stylelint-plugin': 2.1.3(stylelint@16.9.0(typescript@5.5.4)) - postcss: 8.4.45 - postcss-scss: 4.0.9(postcss@8.4.45) - stylelint: 16.9.0(typescript@5.5.4) - stylelint-scss: 6.5.1(stylelint@16.9.0(typescript@5.5.4)) + '@stylistic/stylelint-plugin': 3.0.1(stylelint@16.9.0(typescript@5.6.2)) + postcss: 8.4.47 + postcss-scss: 4.0.9(postcss@8.4.47) + stylelint: 16.9.0(typescript@5.6.2) + stylelint-scss: 6.6.0(stylelint@16.9.0(typescript@5.6.2)) - stylelint-config-standard-scss@13.1.0(postcss@8.4.45)(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-standard-scss@13.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) - stylelint-config-recommended-scss: 14.1.0(postcss@8.4.45)(stylelint@16.9.0(typescript@5.5.4)) - stylelint-config-standard: 36.0.1(stylelint@16.9.0(typescript@5.5.4)) + stylelint: 16.9.0(typescript@5.6.2) + stylelint-config-recommended-scss: 14.1.0(postcss@8.4.47)(stylelint@16.9.0(typescript@5.6.2)) + stylelint-config-standard: 36.0.1(stylelint@16.9.0(typescript@5.6.2)) optionalDependencies: - postcss: 8.4.45 + postcss: 8.4.47 - stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.6.2)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) - stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4)) + stylelint: 16.9.0(typescript@5.6.2) + stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.6.2)) - stylelint-declaration-block-no-ignored-properties@2.8.0(stylelint@16.9.0(typescript@5.5.4)): + stylelint-declaration-block-no-ignored-properties@2.8.0(stylelint@16.9.0(typescript@5.6.2)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) + stylelint: 16.9.0(typescript@5.6.2) - stylelint-order@6.0.4(stylelint@16.9.0(typescript@5.5.4)): + stylelint-order@6.0.4(stylelint@16.9.0(typescript@5.6.2)): dependencies: - postcss: 8.4.45 - postcss-sorting: 8.0.2(postcss@8.4.45) - stylelint: 16.9.0(typescript@5.5.4) + postcss: 8.4.47 + postcss-sorting: 8.0.2(postcss@8.4.47) + stylelint: 16.9.0(typescript@5.6.2) - stylelint-plugin-logical-css@1.2.1(stylelint@16.9.0(typescript@5.5.4)): + stylelint-plugin-logical-css@1.2.1(stylelint@16.9.0(typescript@5.6.2)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) + stylelint: 16.9.0(typescript@5.6.2) - stylelint-scss@6.5.1(stylelint@16.9.0(typescript@5.5.4)): + stylelint-scss@6.6.0(stylelint@16.9.0(typescript@5.6.2)): dependencies: css-tree: 2.3.1 is-plain-object: 5.0.0 @@ -3589,9 +3798,9 @@ snapshots: postcss-resolve-nested-selector: 0.1.6 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - stylelint: 16.9.0(typescript@5.5.4) + stylelint: 16.9.0(typescript@5.6.2) - stylelint@16.9.0(typescript@5.5.4): + stylelint@16.9.0(typescript@5.6.2): dependencies: '@csstools/css-parser-algorithms': 3.0.1(@csstools/css-tokenizer@3.0.1) '@csstools/css-tokenizer': 3.0.1 @@ -3600,7 +3809,7 @@ snapshots: '@dual-bundle/import-meta-resolve': 4.1.0 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.6.2) css-functions-list: 3.2.2 css-tree: 2.3.1 debug: 4.3.7 @@ -3620,9 +3829,9 @@ snapshots: micromatch: 4.0.8 normalize-path: 3.0.0 picocolors: 1.1.0 - postcss: 8.4.45 + postcss: 8.4.47 postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 7.0.0(postcss@8.4.45) + postcss-safe-parser: 7.0.0(postcss@8.4.47) postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -3674,9 +3883,15 @@ snapshots: dependencies: escape-string-regexp: 5.0.0 - ts-api-utils@1.3.0(typescript@5.5.4): + ts-api-utils@1.3.0(typescript@5.6.2): dependencies: - typescript: 5.5.4 + typescript: 5.6.2 + + ts-pattern@5.3.1: {} + + tsconfck@3.1.3(typescript@5.6.2): + optionalDependencies: + typescript: 5.6.2 tslib@2.7.0: {} @@ -3684,20 +3899,20 @@ snapshots: dependencies: prelude-ls: 1.2.1 - type-fest@4.26.0: {} + type-fest@4.26.1: {} - typescript-eslint@8.4.0(eslint@9.10.0)(typescript@5.5.4): + typescript-eslint@8.6.0(eslint@9.10.0)(typescript@5.6.2): dependencies: - '@typescript-eslint/eslint-plugin': 8.4.0(@typescript-eslint/parser@8.4.0(eslint@9.10.0)(typescript@5.5.4))(eslint@9.10.0)(typescript@5.5.4) - '@typescript-eslint/parser': 8.4.0(eslint@9.10.0)(typescript@5.5.4) - '@typescript-eslint/utils': 8.4.0(eslint@9.10.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.10.0)(typescript@5.6.2))(eslint@9.10.0)(typescript@5.6.2) + '@typescript-eslint/parser': 8.6.0(eslint@9.10.0)(typescript@5.6.2) + '@typescript-eslint/utils': 8.6.0(eslint@9.10.0)(typescript@5.6.2) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 transitivePeerDependencies: - eslint - supports-color - typescript@5.5.4: {} + typescript@5.6.2: {} undici-types@6.19.8: {} @@ -3713,24 +3928,35 @@ snapshots: util-deprecate@1.0.2: {} - valibot@0.41.0(typescript@5.5.4): + valibot@0.42.0(typescript@5.6.2): optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.2 - vite-plugin-valibot-env@0.6.11(valibot@0.41.0(typescript@5.5.4))(vite@5.4.3(@types/node@22.5.4)(sass@1.78.0)): + vite-plugin-valibot-env@0.6.12(valibot@0.42.0(typescript@5.6.2))(vite@5.4.6(@types/node@22.5.5)(sass@1.78.0)): dependencies: kleur: 4.1.5 log-symbols: 7.0.0 - valibot: 0.41.0(typescript@5.5.4) - vite: 5.4.3(@types/node@22.5.4)(sass@1.78.0) + valibot: 0.42.0(typescript@5.6.2) + vite: 5.4.6(@types/node@22.5.5)(sass@1.78.0) - vite@5.4.3(@types/node@22.5.4)(sass@1.78.0): + vite-tsconfig-paths@5.0.1(typescript@5.6.2)(vite@5.4.6(@types/node@22.5.5)(sass@1.78.0)): + dependencies: + debug: 4.3.7 + globrex: 0.1.2 + tsconfck: 3.1.3(typescript@5.6.2) + optionalDependencies: + vite: 5.4.6(@types/node@22.5.5)(sass@1.78.0) + transitivePeerDependencies: + - supports-color + - typescript + + vite@5.4.6(@types/node@22.5.5)(sass@1.78.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.45 - rollup: 4.21.2 + postcss: 8.4.47 + rollup: 4.21.3 optionalDependencies: - '@types/node': 22.5.4 + '@types/node': 22.5.5 fsevents: 2.3.3 sass: 1.78.0 @@ -3746,11 +3972,11 @@ snapshots: wp-types@4.66.1: dependencies: - typescript: 5.5.4 + typescript: 5.6.2 wrappy@1.0.2: {} - wretch@2.9.1: {} + wretch@2.10.0: {} write-file-atomic@5.0.1: dependencies: diff --git a/prettier.config.js b/prettier.config.js index 7afa2bc9..7e0be93d 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,5 +1,3 @@ -// @ts-check - /** @type {import("prettier").Config} */ export default { arrowParens: "avoid", diff --git a/tsconfig.json b/tsconfig.json index 22f2135a..4dacc83b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,12 +13,8 @@ "exactOptionalPropertyTypes": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, - "lib": [ - "DOM", - "ES2020", - "ES2022" - ], - "module": "ES2022", + "lib": ["DOM", "ES2020", "ES2022"], + "module": "ES2020", "moduleDetection": "force", "moduleResolution": "Bundler", "noEmit": true, @@ -30,6 +26,7 @@ "noPropertyAccessFromIndexSignature": true, "noStrictGenericChecks": false, "noUncheckedIndexedAccess": true, + "noUncheckedSideEffectImports": true, "noUnusedLocals": true, "noUnusedParameters": true, "skipLibCheck": false, @@ -40,10 +37,8 @@ "strictPropertyInitialization": true, "suppressExcessPropertyErrors": false, "suppressImplicitAnyIndexErrors": false, - "target": "ES2022", - "types": [ - "vite/client" - ], + "target": "ES2020", + "types": ["vite/client"], "useDefineForClassFields": true, "useUnknownInCatchVariables": true }, diff --git a/vite.config.js b/vite.config.js index 05358cb4..414d4a65 100644 --- a/vite.config.js +++ b/vite.config.js @@ -41,7 +41,7 @@ export default defineConfig({ treeshake: "smallest", }, sourcemap: true, - target: "es2023", + target: "es2020", watch: { clearScreen: false }, write: true, }, diff --git a/web/app/languages/plugins/woocommerce-en_GB-013dea08856db161abf927a4e6199155.json b/web/app/languages/plugins/woocommerce-en_GB-013dea08856db161abf927a4e6199155.json index 8797eb49..7a542c27 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-013dea08856db161abf927a4e6199155.json +++ b/web/app/languages/plugins/woocommerce-en_GB-013dea08856db161abf927a4e6199155.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Creating the product":["Creating the product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/edit-product-page.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Creating the product":["Creating the product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/edit-product-page.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-04928f3cadfae9e0174101d5c19e28a1.json b/web/app/languages/plugins/woocommerce-en_GB-04928f3cadfae9e0174101d5c19e28a1.json index f9109122..1b0bba05 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-04928f3cadfae9e0174101d5c19e28a1.json +++ b/web/app/languages/plugins/woocommerce-en_GB-04928f3cadfae9e0174101d5c19e28a1.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This version of the Product Search block is outdated. Upgrade to continue using.":["This version of the Product Search block is outdated. Upgrade to continue using."],"Upgrade Block":["Upgrade Block"],"Enter search placeholder text":["Enter search placeholder text"],"Search Label":["Search Label"],"A search box to allow customers to search for products by keyword.":["A search box to allow customers to search for products by keyword."],"Search products\u2026":["Search products..."],"Show search field label":["Show search field label"],"Product Search":["Product Search"],"Content":["Content"],"Search":["Search"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-search.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This version of the Product Search block is outdated. Upgrade to continue using.":["This version of the Product Search block is outdated. Upgrade to continue using."],"Upgrade Block":["Upgrade Block"],"Enter search placeholder text":["Enter search placeholder text"],"Search Label":["Search Label"],"A search box to allow customers to search for products by keyword.":["A search box to allow customers to search for products by keyword."],"Search products\u2026":["Search products..."],"Show search field label":["Show search field label"],"Product Search":["Product Search"],"Content":["Content"],"Search":["Search"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-search.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-05193a92b2d1838b5259ccc41e459d78.json b/web/app/languages/plugins/woocommerce-en_GB-05193a92b2d1838b5259ccc41e459d78.json index 84bca0cd..887a18d7 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-05193a92b2d1838b5259ccc41e459d78.json +++ b/web/app/languages/plugins/woocommerce-en_GB-05193a92b2d1838b5259ccc41e459d78.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Shipping, taxes, and discounts calculated at checkout.":["Shipping, taxes, and discounts calculated at checkout."],"Subtotal":["Subtotal"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/footer-style.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Shipping, taxes, and discounts calculated at checkout.":["Shipping, taxes, and discounts calculated at checkout."],"Subtotal":["Subtotal"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/footer-style.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-051b948ebeb4e5c14867979a392b0fc3.json b/web/app/languages/plugins/woocommerce-en_GB-051b948ebeb4e5c14867979a392b0fc3.json index b8d9bebe..e072bb3e 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-051b948ebeb4e5c14867979a392b0fc3.json +++ b/web/app/languages/plugins/woocommerce-en_GB-051b948ebeb4e5c14867979a392b0fc3.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-077c5bb7545347e905aab54d7eb15734.json b/web/app/languages/plugins/woocommerce-en_GB-077c5bb7545347e905aab54d7eb15734.json index ca1508b6..48e9c700 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-077c5bb7545347e905aab54d7eb15734.json +++ b/web/app/languages/plugins/woocommerce-en_GB-077c5bb7545347e905aab54d7eb15734.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"install":["install"],"Create shipping label":["Create shipping label"],"Print discounted shipping labels with a click.":["Print discounted shipping labels with a click."],"Shipping ":["Shipping "],"Plugin installed and activated":["Plugin installed and activated"],"Shipment Tracking":["Shipment Tracking"],"Toggle panel:":["Toggle panel:"],"By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"Unable to %s the plugin. Refresh the page and try again.":["Unable to %s the plugin. Refresh the page and try again."],"start":["start"],"set up":["set up"],"activate":["activate"],"I don't need this":["I don't need this"],"Remind me later":["Remind me later"],"With WooCommerce Shipping you can Print shipping labels from your WooCommerce dashboard at the lowest USPS rates.":["With WooCommerce Shipping you can print shipping labels from your WooCommerce dashboard at the lowest USPS rates."],"Are you sure?":["Are you sure?"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Close Print Label Banner.":["Close Print Label Banner."],"Shipping Label":["Shipping Label"],"download":["download","downloads"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/print-shipping-label-banner.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"install":["install"],"Create shipping label":["Create shipping label"],"Print discounted shipping labels with a click.":["Print discounted shipping labels with a click."],"Shipping ":["Shipping "],"Shipment Tracking":["Shipment Tracking"],"Toggle panel:":["Toggle panel:"],"By clicking \"%s\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["By clicking \"%s\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"Unable to %s the plugin. Refresh the page and try again.":["Unable to %s the plugin. Refresh the page and try again."],"start":["start"],"set up":["set up"],"activate":["activate"],"I don't need this":["I don't need this"],"Remind me later":["Remind me later"],"With WooCommerce Shipping you can Print shipping labels from your WooCommerce dashboard at the lowest USPS rates.":["With WooCommerce Shipping you can print shipping labels from your WooCommerce dashboard at the lowest USPS rates."],"Are you sure?":["Are you sure?"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Close Print Label Banner.":["Close Print Label Banner."],"Shipping Label":["Shipping Label"],"download":["download","downloads"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/print-shipping-label-banner.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1b36fa525be4ba85b1874b0942df17ea.json b/web/app/languages/plugins/woocommerce-en_GB-09381d2c7f7ea586458805520808e681.json similarity index 77% rename from web/app/languages/plugins/woocommerce-en_GB-1b36fa525be4ba85b1874b0942df17ea.json rename to web/app/languages/plugins/woocommerce-en_GB-09381d2c7f7ea586458805520808e681.json index 2f9255fb..285da3de 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1b36fa525be4ba85b1874b0942df17ea.json +++ b/web/app/languages/plugins/woocommerce-en_GB-09381d2c7f7ea586458805520808e681.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Publish":["Publish"],"Site Icon":["Site Icon"],"Undo":["Undo"],"Images":["Images"],"Content":["Content"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/8037.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Publish":["Publish"],"Site Icon":["Site Icon"],"Undo":["Undo"],"Images":["Images"],"Content":["Content"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6802.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-0a0188c1a49e75d2af172be062aac004.json b/web/app/languages/plugins/woocommerce-en_GB-0a0188c1a49e75d2af172be062aac004.json index 1dbe7b78..8d6fe315 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-0a0188c1a49e75d2af172be062aac004.json +++ b/web/app/languages/plugins/woocommerce-en_GB-0a0188c1a49e75d2af172be062aac004.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"This block shows on-sale products. There are currently no discounted products in your store.":["This block shows on-sale products. There are currently no discounted products in your store."],"Display a grid of products currently on sale.":["Display a grid of products currently on sale."],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"On Sale Products":["On Sale Products"],"Filter by Product Category":["Filter by Product Category"],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-on-sale.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"This block shows on-sale products. There are currently no discounted products in your store.":["This block shows on-sale products. There are currently no discounted products in your store."],"Display a grid of products currently on sale.":["Display a grid of products currently on sale."],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"On Sale Products":["On Sale Products"],"Filter by Product Category":["Filter by Product Category"],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-on-sale.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-0d6604f2b4e5dcbcc7fb3013a9a6d17d.json b/web/app/languages/plugins/woocommerce-en_GB-0d6604f2b4e5dcbcc7fb3013a9a6d17d.json index edc9a2a3..9d2bbaa2 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-0d6604f2b4e5dcbcc7fb3013a9a6d17d.json +++ b/web/app/languages/plugins/woocommerce-en_GB-0d6604f2b4e5dcbcc7fb3013a9a6d17d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Invalid item":["Invalid item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Add item":["Add item"],"Remove item":["Remove item"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"No results.":["No results."]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-frontend-vendors-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Invalid item":["Invalid item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Add item":["Add item"],"Remove item":["Remove item"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"No results.":["No results."]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-frontend-vendors-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-11819b527241962c70b08cf35d34a104.json b/web/app/languages/plugins/woocommerce-en_GB-11819b527241962c70b08cf35d34a104.json index 2b7a2054..7f299e8f 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-11819b527241962c70b08cf35d34a104.json +++ b/web/app/languages/plugins/woocommerce-en_GB-11819b527241962c70b08cf35d34a104.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Undo":["Undo"],"Learn more":["Learn more"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/classic-shortcode.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Undo":["Undo"],"Learn more":["Learn more"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/classic-shortcode.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-12d195cdcdd08cd46e20ff463e2ae83e.json b/web/app/languages/plugins/woocommerce-en_GB-12d195cdcdd08cd46e20ff463e2ae83e.json index fca6c61b..031e1a77 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-12d195cdcdd08cd46e20ff463e2ae83e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-12d195cdcdd08cd46e20ff463e2ae83e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add %s section":["Add %s section"],"Add more sections":["Add more sections"],"Dashboard Sections":["Dashboard Sections"],"Remove block":["Remove block"],"Performance":["Performance"],"Leaderboards":["Leaderboards"],"Charts":["Charts"],"Remove section":["Remove section"],"Section title":["Section title"],"Move up":["Move up"],"Move down":["Move down"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customizable-dashboard.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add %s section":["Add %s section"],"Add more sections":["Add more sections"],"Dashboard Sections":["Dashboard Sections"],"Remove block":["Remove block"],"Performance":["Performance"],"Leaderboards":["Leaderboards"],"Charts":["Charts"],"Remove section":["Remove section"],"Section title":["Section title"],"Move up":["Move up"],"Move down":["Move down"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customizable-dashboard.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-13b98984f6788c5a905ec4e2e2b9bb86.json b/web/app/languages/plugins/woocommerce-en_GB-13b98984f6788c5a905ec4e2e2b9bb86.json index 365fdd85..ef77cbe0 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-13b98984f6788c5a905ec4e2e2b9bb86.json +++ b/web/app/languages/plugins/woocommerce-en_GB-13b98984f6788c5a905ec4e2e2b9bb86.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add your product categories":["Add your product categories"],"Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store.":["Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store."],"Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d":["Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d"],"Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it.":["Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it."],"Keep editing":["Keep editing"],"Publish your product \ud83c\udf89":["Publish your product \ud83c\udf89"],"Add your product tags":["Add your product tags"],"Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalog.":["Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalogue."],"Add your product data":["Add your product data"],"Add your product description":["Add your product description"],"Add your product image":["Add your product image"],"Add your short product description":["Add your short product description"],"Start typing your new product name here. This will be what your customers will see in your store.":["Start typing your new product name here. This will be what your customers will see in your store."],"Type a quick summary for your product here. This will appear on the product page right under the product name.":["Type a quick summary for your product here. This will appear on the product page right under the product name."],"Use the tabs to switch between sections and insert product details. Start by adding your product price.":["Use the tabs to switch between sections and insert product details. Start by adding your product price."],"Product name":["Product name"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/product-tour.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add your product categories":["Add your product categories"],"Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store.":["Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store."],"Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d":["Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d"],"Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it.":["Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it."],"Keep editing":["Keep editing"],"Publish your product \ud83c\udf89":["Publish your product \ud83c\udf89"],"Add your product tags":["Add your product tags"],"Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalog.":["Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalogue."],"Add your product data":["Add your product data"],"Add your product description":["Add your product description"],"Add your product image":["Add your product image"],"Add your short product description":["Add your short product description"],"Start typing your new product name here. This will be what your customers will see in your store.":["Start typing your new product name here. This will be what your customers will see in your store."],"Type a quick summary for your product here. This will appear on the product page right under the product name.":["Type a quick summary for your product here. This will appear on the product page right under the product name."],"Use the tabs to switch between sections and insert product details. Start by adding your product price.":["Use the tabs to switch between sections and insert product details. Start by adding your product price."],"Product name":["Product name"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/product-tour.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-14572ea42178218f02a7f3d6a88c91ea.json b/web/app/languages/plugins/woocommerce-en_GB-14572ea42178218f02a7f3d6a88c91ea.json index 3bbeb157..6f16a115 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-14572ea42178218f02a7f3d6a88c91ea.json +++ b/web/app/languages/plugins/woocommerce-en_GB-14572ea42178218f02a7f3d6a88c91ea.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add products":["Add products"],"Stock":["Stock"],"Price":["Price"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/product-list\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add products":["Add products"],"Stock":["Stock"],"Price":["Price"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/product-list\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-15a008f9d686fcc31f8006949bb3da16.json b/web/app/languages/plugins/woocommerce-en_GB-15a008f9d686fcc31f8006949bb3da16.json index f589e84d..4473e203 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-15a008f9d686fcc31f8006949bb3da16.json +++ b/web/app/languages/plugins/woocommerce-en_GB-15a008f9d686fcc31f8006949bb3da16.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Step description text.":["Step description text."],"Step":["Step"],"Shipping options will be displayed here after entering your full shipping address.":["Shipping options will be displayed here after entering your full shipping address."],"Shipping options":["Shipping options"],"Free":["Free"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-methods-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Step description text.":["Step description text."],"Step":["Step"],"Shipping options will be displayed here after entering your full shipping address.":["Shipping options will be displayed here after entering your full shipping address."],"Shipping options":["Shipping options"],"Free":["Free"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-methods-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1635acaa3eb10c788d39b8dba143ee8d.json b/web/app/languages/plugins/woocommerce-en_GB-1635acaa3eb10c788d39b8dba143ee8d.json index 6eb22101..bca71264 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1635acaa3eb10c788d39b8dba143ee8d.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1635acaa3eb10c788d39b8dba143ee8d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Default sorting":["Default sorting"]}},"comment":{"reference":"assets\/client\/blocks\/catalog-sorting.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Default sorting":["Default sorting"]}},"comment":{"reference":"assets\/client\/blocks\/catalog-sorting.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-181ce41a6826e43d33e176d72f1da0dd.json b/web/app/languages/plugins/woocommerce-en_GB-181ce41a6826e43d33e176d72f1da0dd.json index 1a87c977..dea4ca3a 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-181ce41a6826e43d33e176d72f1da0dd.json +++ b/web/app/languages/plugins/woocommerce-en_GB-181ce41a6826e43d33e176d72f1da0dd.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss this notice":["Dismiss this notice"]}},"comment":{"reference":"assets\/client\/blocks\/store-notices.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss this notice":["Dismiss this notice"]}},"comment":{"reference":"assets\/client\/blocks\/store-notices.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1946967fff98663eed939b1b2e6e3340.json b/web/app/languages/plugins/woocommerce-en_GB-1946967fff98663eed939b1b2e6e3340.json index 7689c153..6a168bc6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1946967fff98663eed939b1b2e6e3340.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1946967fff98663eed939b1b2e6e3340.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"]}},"comment":{"reference":"assets\/client\/blocks\/product-price.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"]}},"comment":{"reference":"assets\/client\/blocks\/product-price.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1a8f53117c16a3508e6cd4b45fc4c5f7.json b/web/app/languages/plugins/woocommerce-en_GB-1a8f53117c16a3508e6cd4b45fc4c5f7.json index 1db2935b..b4197480 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1a8f53117c16a3508e6cd4b45fc4c5f7.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1a8f53117c16a3508e6cd4b45fc4c5f7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Learn about marketing a store":["Learn about marketing a store"],"By %s":["By %s"],"Explore more marketing extensions":["Explore more marketing extensions"],"Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions.":["Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions."],"Discover more marketing tools":["Discover more marketing tools"],"Installed extensions":["Installed extensions"],"Zapier":["Zapier"],"Vimeo":["Vimeo"],"Trustpilot":["Trustpilot"],"Salesforce":["Salesforce"],"Jetpack CRM":["Jetpack CRM"],"Google":["Google"],"Creative Mail by Constant Contact":["Creative Mail by Constant Contact"],"Collapse":["Collapse"],"Built by WooCommerce":["Built by WooCommerce"],"View details":["View details"],"No posts yet":["No posts yet"],"Oops, our posts aren't loading right now":["Oops, our posts aren't loading right now"],"Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store":["Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store"],"There was an error loading recommended extensions.":["There was an error loading recommended extensions."],"There was an error loading installed extensions.":["There was an error loading installed extensions."],"There was an error trying to activate the extension.":["There was an error trying to activate the extension."],"The extension has been successfully activated.":["The extension has been successfully activated."],"Finish setup":["Finish setup"],"Facebook":["Facebook"],"Manage":["Manage"],"Activate":["Activate"],"Create":["Create"],"Sales":["Sales"],"Cost":["Cost"],"Expand":["Expand"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/multichannel-marketing.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Learn about marketing a store":["Learn about marketing a store"],"By %s":["By %s"],"Explore more marketing extensions":["Explore more marketing extensions"],"Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions.":["Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions."],"Discover more marketing tools":["Discover more marketing tools"],"Installed extensions":["Installed extensions"],"Zapier":["Zapier"],"Vimeo":["Vimeo"],"Trustpilot":["Trustpilot"],"Salesforce":["Salesforce"],"Jetpack CRM":["Jetpack CRM"],"Google":["Google"],"Creative Mail by Constant Contact":["Creative Mail by Constant Contact"],"Collapse":["Collapse"],"Built by WooCommerce":["Built by WooCommerce"],"View details":["View details"],"No posts yet":["No posts yet"],"Oops, our posts aren't loading right now":["Oops, our posts aren't loading right now"],"Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store":["Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store"],"There was an error loading recommended extensions.":["There was an error loading recommended extensions."],"There was an error loading installed extensions.":["There was an error loading installed extensions."],"There was an error trying to activate the extension.":["There was an error trying to activate the extension."],"The extension has been successfully activated.":["The extension has been successfully activated."],"Finish setup":["Finish setup"],"Facebook":["Facebook"],"Manage":["Manage"],"Activate":["Activate"],"Create":["Create"],"Sales":["Sales"],"Cost":["Cost"],"Expand":["Expand"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/multichannel-marketing.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1b48a41aeb3290448ede10e6210481e4.json b/web/app/languages/plugins/woocommerce-en_GB-1b48a41aeb3290448ede10e6210481e4.json index bd41fd57..5892f3ba 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1b48a41aeb3290448ede10e6210481e4.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1b48a41aeb3290448ede10e6210481e4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udfe0 Nice work creating your store's homepage!":["\ud83c\udfe0 Nice work creating your store's homepage!"],"Continue setup.":["Continue setup."]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/onboarding-homepage-notice.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udfe0 Nice work creating your store\u2019s homepage!":["\ud83c\udfe0 Nice work creating your store's homepage!"],"Continue setup.":["Continue setup."]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/onboarding-homepage-notice.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1bb96e0bebe36fe6bd94960d3cdcfa7a.json b/web/app/languages/plugins/woocommerce-en_GB-1bb96e0bebe36fe6bd94960d3cdcfa7a.json index fe420829..08c5c942 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1bb96e0bebe36fe6bd94960d3cdcfa7a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1bb96e0bebe36fe6bd94960d3cdcfa7a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Done":["Done"],"Country \/ State":["Country \/ State"],"Title":["Title"],"Enable local pickup":["Enable local pickup"],"Postcode \/ ZIP":["Postcode \/ ZIP"],"Save changes":["Save changes"],"Free":["Free"],"Learn more":["Learn more"],"Cost":["Cost"],"Enabled":["Enabled"],"Taxable":["Taxable"],"Address":["Address","Addresses"],"Cancel":["Cancel"],"City":["City"],"Taxes":["Taxes"],"State":["State"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/wc-shipping-method-pickup-location.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Done":["Done"],"Country \/ State":["Country \/ State"],"Title":["Title"],"Enable local pickup":["Enable local pickup"],"Postcode \/ ZIP":["Postcode \/ ZIP"],"Save changes":["Save changes"],"Free":["Free"],"Learn more":["Learn more"],"Cost":["Cost"],"Enabled":["Enabled"],"Taxable":["Taxable"],"Address":["Address","Addresses"],"Cancel":["Cancel"],"City":["City"],"Taxes":["Taxes"],"State":["State"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/wc-shipping-method-pickup-location.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1d36dd58e9841b6509a2e3f0d219e98b.json b/web/app/languages/plugins/woocommerce-en_GB-1d36dd58e9841b6509a2e3f0d219e98b.json index e75fb9eb..6177fcbd 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1d36dd58e9841b6509a2e3f0d219e98b.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1d36dd58e9841b6509a2e3f0d219e98b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Downloads":["Downloads"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-downloads-wrapper.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Downloads":["Downloads"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-downloads-wrapper.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1d716fa12c0292f20da700275eba091d.json b/web/app/languages/plugins/woocommerce-en_GB-1d716fa12c0292f20da700275eba091d.json index 46024e7e..7e50efe6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1d716fa12c0292f20da700275eba091d.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1d716fa12c0292f20da700275eba091d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View less product types":["View less product types"],"View more product types":["View more product types"],"What product do you want to add?":["What product do you want to add?"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/1910.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View less product types":["View less product types"],"View more product types":["View more product types"],"What product do you want to add?":["What product do you want to add?"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/1910.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-1dee949f3bc3eacc1513cb13c32c60bd.json b/web/app/languages/plugins/woocommerce-en_GB-1dee949f3bc3eacc1513cb13c32c60bd.json index 08edaacd..6c0a74a9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-1dee949f3bc3eacc1513cb13c32c60bd.json +++ b/web/app/languages/plugins/woocommerce-en_GB-1dee949f3bc3eacc1513cb13c32c60bd.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Are you sure? Inbox messages will be dismissed forever.":["Are you sure? Inbox messages will be dismissed forever."],"Dismiss all":["Dismiss all"],"Inbox Notes Options":["Inbox Notes Options"],"Yes, dismiss all":["Yes, dismiss all"],"All messages dismissed":["All messages dismissed"],"Message could not be dismissed":["Message could not be dismissed"],"Undo":["Undo"],"Message dismissed":["Message dismissed"],"Dismiss all messages":["Dismiss all messages"],"Messages could not be dismissed":["Messages could not be dismissed"],"Inbox":["Inbox"],"There was an error getting your inbox. Please try again.":["There was an error getting your inbox. Please try again."],"As things begin to happen in your store your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations and more!":["As things begin to happen in your store your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations and more!"],"Your inbox is empty":["Your inbox is empty"],"Reload":["Reload"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/activity-panels-inbox.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Are you sure? Inbox messages will be dismissed forever.":["Are you sure? Inbox messages will be dismissed forever."],"Dismiss all":["Dismiss all"],"Inbox Notes Options":["Inbox Notes Options"],"Yes, dismiss all":["Yes, dismiss all"],"All messages dismissed":["All messages dismissed"],"Message could not be dismissed":["Message could not be dismissed"],"Undo":["Undo"],"Message dismissed":["Message dismissed"],"Dismiss all messages":["Dismiss all messages"],"Messages could not be dismissed":["Messages could not be dismissed"],"Inbox":["Inbox"],"There was an error getting your inbox. Please try again.":["There was an error getting your inbox. Please try again."],"As things begin to happen in your store your inbox will start to fill up. You\u2019ll see things like achievements, new feature announcements, extension recommendations and more!":["As things begin to happen in your store, your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations, and more!"],"Your inbox is empty":["Your inbox is empty"],"Reload":["Reload"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/activity-panels-inbox.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-202af67c0a3cdb5d8374095542b82c72.json b/web/app/languages/plugins/woocommerce-en_GB-202af67c0a3cdb5d8374095542b82c72.json index 5f7dca8d..56129a07 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-202af67c0a3cdb5d8374095542b82c72.json +++ b/web/app/languages/plugins/woocommerce-en_GB-202af67c0a3cdb5d8374095542b82c72.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tags":["Tags"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/tag\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tags":["Tags"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/tag\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-21c97cf1edd07c594d1e7952ca60a50e.json b/web/app/languages/plugins/woocommerce-en_GB-21c97cf1edd07c594d1e7952ca60a50e.json index d2bf225a..50fdb273 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-21c97cf1edd07c594d1e7952ca60a50e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-21c97cf1edd07c594d1e7952ca60a50e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block title":["Block title"],"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Chips":["Chips"],"Clear All":["Clear All"],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"List":["List"],"Active filters":["Active filters"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block title":["Block title"],"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Chips":["Chips"],"Clear All":["Clear All"],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"List":["List"],"Active filters":["Active filters"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-21db0a202cf860c0d667914e5c3ff04f.json b/web/app/languages/plugins/woocommerce-en_GB-21db0a202cf860c0d667914e5c3ff04f.json index e68eab1d..782cf45a 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-21db0a202cf860c0d667914e5c3ff04f.json +++ b/web/app/languages/plugins/woocommerce-en_GB-21db0a202cf860c0d667914e5c3ff04f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-222ba99c0ab9979a199b79f82f1a52f9.json b/web/app/languages/plugins/woocommerce-en_GB-222ba99c0ab9979a199b79f82f1a52f9.json index e0f1db8b..fbd40219 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-222ba99c0ab9979a199b79f82f1a52f9.json +++ b/web/app/languages/plugins/woocommerce-en_GB-222ba99c0ab9979a199b79f82f1a52f9.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\"%s\" was removed from your cart.":["\"%s\" was removed from your basket."],"Polo":["Polo"],"%s (optional)":["%s (optional)"],"There was an error registering the payment method with id '%s': ":["There was an error registering the payment method with ID '%s': "],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Sales tax":["Sales tax"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Free shipping":["Free shipping"],"Shipping":["Shipping"],"Fee":["Fee"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-data.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\"%s\" was removed from your cart.":["\"%s\" was removed from your basket."],"Polo":["Polo"],"%s (optional)":["%s (optional)"],"There was an error registering the payment method with id '%s': ":["There was an error registering the payment method with ID '%s': "],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Sales tax":["Sales tax"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Free shipping":["Free shipping"],"Shipping":["Shipping"],"Fee":["Fee"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-data.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2445bfbce6188dfc1e617e7506a894ce.json b/web/app/languages/plugins/woocommerce-en_GB-2445bfbce6188dfc1e617e7506a894ce.json index 83e83910..7b2ac295 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2445bfbce6188dfc1e617e7506a894ce.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2445bfbce6188dfc1e617e7506a894ce.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udf89 WooCommerce Shipping is installed!":["\ud83c\udf89 WooCommerce Shipping is installed!"],"Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping.":["Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping."],"Recommended shipping solutions":["Recommended shipping solutions"],"We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\".":["We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\"."],"See more options":["See more options"],"WooCommerce Shipping":["WooCommerce Shipping"],"Hide this":["Hide this"],"(opens in a new tab)":["(opens in a new tab)"],"Get started":["Get started"],"Task List Options":["Task List Options"],"Recommended":["Recommended"],"Activate":["Activate"],"Shipping zones":["Shipping zones"],"Learn more":["Learn more"],"Shipping methods":["Shipping methods"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/shipping-recommendations.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udf89 WooCommerce Shipping is installed!":["\ud83c\udf89 WooCommerce Shipping is installed!"],"Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping.":["Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping."],"Recommended shipping solutions":["Recommended shipping solutions"],"We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\".":["We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\"."],"See more options":["See more options"],"WooCommerce Shipping":["WooCommerce Shipping"],"Hide this":["Hide this"],"(opens in a new tab)":["(opens in a new tab)"],"Get started":["Get started"],"Task List Options":["Task List Options"],"Recommended":["Recommended"],"Activate":["Activate"],"Shipping zones":["Shipping zones"],"Learn more":["Learn more"],"Shipping methods":["Shipping methods"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/shipping-recommendations.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-268d1111eddac83f6cfa3013b0277955.json b/web/app/languages/plugins/woocommerce-en_GB-268d1111eddac83f6cfa3013b0277955.json index b0b6e11a..d1ba25b1 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-268d1111eddac83f6cfa3013b0277955.json +++ b/web/app/languages/plugins/woocommerce-en_GB-268d1111eddac83f6cfa3013b0277955.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Task Options":["Task Options"],"This task is required to keep your store running":["This task is required to keep your store running"],"This task is required to set up your extension":["This task is required to set up your extension"],"Dismissed messages cannot be viewed again":["Dismissed messages cannot be viewed again"],"Yes, I'm sure":["Yes, I'm sure"],"Remind me later":["Remind me later"],"Are you sure?":["Are you sure?"],"Dismiss":["Dismiss"],"Cancel":["Cancel"],"Delete":["Delete"]}},"comment":{"reference":"assets\/client\/admin\/experimental\/index.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Task Options":["Task Options"],"This task is required to keep your store running":["This task is required to keep your store running"],"This task is required to set up your extension":["This task is required to set up your extension"],"Dismissed messages cannot be viewed again":["Dismissed messages cannot be viewed again"],"Yes, I'm sure":["Yes, I'm sure"],"Remind me later":["Remind me later"],"Are you sure?":["Are you sure?"],"Dismiss":["Dismiss"],"Cancel":["Cancel"],"Delete":["Delete"]}},"comment":{"reference":"assets\/client\/admin\/experimental\/index.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-279fa10060c1cf9b6f0ce3c1488f35ea.json b/web/app/languages/plugins/woocommerce-en_GB-279fa10060c1cf9b6f0ce3c1488f35ea.json index dca3d4ae..ca7cdb1f 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-279fa10060c1cf9b6f0ce3c1488f35ea.json +++ b/web/app/languages/plugins/woocommerce-en_GB-279fa10060c1cf9b6f0ce3c1488f35ea.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment Promotion Options":["Payment Promotion Options"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Install":["Install"],"Dismiss":["Dismiss"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/payment-method-promotions.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment Promotion Options":["Payment Promotion Options"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Install":["Install"],"Dismiss":["Dismiss"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/payment-method-promotions.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-29b0e56355106637676f77f1355b72db.json b/web/app/languages/plugins/woocommerce-en_GB-29b0e56355106637676f77f1355b72db.json index 2268ff49..4aa640f2 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-29b0e56355106637676f77f1355b72db.json +++ b/web/app/languages/plugins/woocommerce-en_GB-29b0e56355106637676f77f1355b72db.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your cart":["Your basket"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/title-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your cart":["Your basket"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/title-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2ac87a601295112b7c1db6c968c1d4f9.json b/web/app/languages/plugins/woocommerce-en_GB-2ac87a601295112b7c1db6c968c1d4f9.json index 09dd5a6e..3f970c0f 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2ac87a601295112b7c1db6c968c1d4f9.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2ac87a601295112b7c1db6c968c1d4f9.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add new":["Add new"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/downloads\/downloads-menu\/downloads-menu.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add new":["Add new"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/downloads\/downloads-menu\/downloads-menu.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2b2538420122030cea7c8d36028faff6.json b/web/app/languages/plugins/woocommerce-en_GB-2b2538420122030cea7c8d36028faff6.json index 3b2f628f..c0e8a374 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2b2538420122030cea7c8d36028faff6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2b2538420122030cea7c8d36028faff6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-wrapper-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-wrapper-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2b32bbc4963015931b7c821ff3ac61b9.json b/web/app/languages/plugins/woocommerce-en_GB-2b32bbc4963015931b7c821ff3ac61b9.json index fead5c55..af041bc5 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2b32bbc4963015931b7c821ff3ac61b9.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2b32bbc4963015931b7c821ff3ac61b9.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating-stars.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating-stars.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2b9ad1ee5266e82cfc566a86f6541d13.json b/web/app/languages/plugins/woocommerce-en_GB-2b9ad1ee5266e82cfc566a86f6541d13.json index 9fcd8fc3..b2044937 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2b9ad1ee5266e82cfc566a86f6541d13.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2b9ad1ee5266e82cfc566a86f6541d13.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Please create a stronger password":["Please create a stronger password"],"Please enter a valid password":["Please enter a valid password"],"Create a password":["Create a password"],"Show separator":["Show separator"],"Show form step numbers":["Show form step numbers"],"Delivery":["Delivery"],"Ship":["Ship"],"+ Add %s":["+ Add %s"],"Please select a valid option":["Please select a valid option"],"Additional order information":["Additional order information"],"Calculate shipping for your location":["Calculate shipping for your location"],"Medium":["Medium"],"free":["free"],"Polo":["Polo"],"Your store does not have any payment methods that support the Checkout block. Once you have configured a compatible payment method it will be displayed here.":["Your store does not have any payment methods that support the Checkout block. Once you have configured a compatible payment method it will be displayed here."],"The following shipping integrations are active on your store.":["The following shipping integrations are active on your store."],"Enter the billing address that matches your payment method.":["Enter the billing address that matches your payment method."],"We are experiencing difficulties with this payment method. Please contact us for assistance.":["We are experiencing difficulties with this payment method. Please contact us for assistance."],"Page settings updated":["Page settings updated"],"Optional text for this form step.":["Optional text for this form step."],"Setup a Privacy Policy page":["Set up a Privacy Policy page"],"Setup a Terms and Conditions page":["Set up a Terms and Conditions page"],"No shipping options available":["No shipping options available"],"Sorry, this order requires a shipping option.":["Sorry, this order requires a shipping option."],"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Total price for %1$d %2$s item: %3$s":["Total price for %1$d %2$s item: %3$s","Total price for %1$d %2$s items: %3$s"],"%d item":["%d item","%d items"],"Address Fields":["Address Fields"],"By proceeding with your purchase you agree to our %1$s and %2$s":["By proceeding with your purchase you agree to our %1$s and %2$s"],"Ensure you add links to your policy pages in this section.":["Ensure you add links to your policy pages in this section."],"Enter the address where you want your order delivered.":["Enter the address where you want your order delivered."],"Express Checkout":["Express Checkout"],"Form Step Options":["Form Step Options"],"Manage payment methods":["Manage payment methods"],"Methods":["Methods"],"Payment options":["Payment options"],"Require checkbox":["Require checkbox"],"Restore default text":["Restore default text"],"Show or hide fields in the checkout address forms.":["Show or hide fields in the checkout address forms."],"Step description text.":["Step description text."],"You currently have the following payment integrations active.":["You currently have the following payment integrations active."],"You must accept our %1$s and %2$s to continue with your purchase.":["You must accept our %1$s and %2$s to continue with your purchase."],"No registered Payment Methods":["No registered Payment Methods"],"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"Show the percentage rate alongside each tax line in the summary.":["Show the percentage rate alongside each tax line in the summary."],"Show rate after tax name":["Show rate after tax name"],"%s (optional)":["%s (optional)"],"Step":["Step"],"Other available payment methods":["Other available payment methods"],"Use another payment method.":["Use another payment method."],"Shipping options will be displayed here after entering your full shipping address.":["Shipping options will be displayed here after entering your full shipping address."],"Display options":["Display options"],"%1$s (%2$d unit)":["%1$s (%2$d unit)","%1$s (%2$d units)"],"Inputs styled specifically for use on dark background colors.":["Inputs styled specifically for use on dark background colours."],"Add a note to your order":["Add a note to your order"],"Notes about your order.":["Notes about your order."],"Dark mode inputs":["Dark mode inputs"],"Style":["Style"],"Shipping to %s":["Shipping to %s"],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Remove coupon \"%s\"":["Remove coupon \"%s\""],"Loading shipping rates\u2026":["Loading shipping rates\u2026"],"%d shipping option was found":["%d shipping option was found","%d shipping options were found"],"Shipping option searched for %d package.":["Shipping option searched for %d package.","Shipping options searched for %d packages."],"%d shipping option was found.":["%d shipping option was found.","%d shipping options were found."],"Removing coupon\u2026":["Removing coupon\u2026"],"Calculated during checkout":["Calculated during checkout"],"Calculate":["Calculate"],"Choose a shipping option":["Choose a shipping option"],"Use same address for billing":["Use same address for billing"],"We'll use this email to send you details and updates about your order.":["We'll use this email to send you details and updates about your order."],"Contact information":["Contact information"],"There was an error with this payment method. Please verify it's configured correctly.":["There was an error with this payment method. Please verify it's configured correctly."],"WooCommerce Cart Page":["WooCommerce Basket Page"],"Return to Cart button":["Return to Basket button"],"Show a \"Return to Cart\" link":["Show a \"Return to Basket\" link"],"Configure Shipping Options":["Configure Shipping Options"],"Your store does not have any Shipping Options configured. Once you have added your Shipping Options they will appear here.":["Your store does not have any Shipping Options configured. Once you have added your Shipping Options they will appear here."],"We are currently working on improving our cart and checkout blocks to provide merchants with the tools and customization options they need.":["We are currently working on improving our basket and checkout blocks to provide merchants with the tools and customisation options they need."],"Order summary":["Order summary"],"%1$s ending in %2$s (expires %3$s)":["%1$s ending in %2$s (expires %3$s)"],"There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.":["There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order."],"Save payment information to my account for future purchases.":["Save payment information to my account for future purchases."],"Saved token for %s":["Saved token for %s"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Link to":["Link to"],"Give us your feedback.":["Give us your feedback."],"Feedback?":["Feedback?"],"Return to Cart":["Return to Basket"],"Terms and Conditions":["Terms and Conditions"],"Privacy Policy":["Privacy Policy"],"%d left in stock":["%d left in stock"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"],"Including in taxes":["Including in taxes"],"Enter code":["Enter code"],"Applying coupon\u2026":["Applying coupon\u2026"],"Taxes:":["Taxes:"],"Coupon code \"%s\" has been removed from your cart.":["Coupon code \"%s\" has been removed from your basket."],"Coupon code \"%s\" has been applied to your cart.":["Coupon code \"%s\" has been applied to your basket."],"Loading\u2026":["Loading\u2026"],"Place Order":["Place Order"],"Or continue below":["Or continue below"],"There was a problem with your shipping option.":["There was a problem with your shipping option."],"There was a problem with your payment option.":["There was a problem with your payment option."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"Undo":["Undo"],"(opens in a new tab)":["(opens in a new tab)"],"Sales tax":["Sales tax"],"Configure Payment Methods":["Configure Payment Methods"],"Dismiss this notice":["Dismiss this notice"],"Fees:":["Fees:"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Read less":["Read less"],"Change address":["Change address"],"Required":["Required"],"Please enter a valid email address":["Please enter a valid email address"],"Manage shipping methods":["Manage shipping methods"],"%1$s ending in %2$s":["%1$s ending in %2$s"],"Coupon: %s":["Coupon: %s"],"Free shipping":["Free shipping"],"Error:":["Error:"],"Shipping options":["Shipping options"],"Address line 2":["Address line 2"],"Billing address":["Billing address"],"Shipping address":["Shipping address"],"Notes about your order, e.g. special notes for delivery.":["Notes about your order, e.g. special notes for delivery."],"Free":["Free"],"Discount":["Discount"],"Optional":["Optional"],"Apply":["Apply"],"Phone":["Phone"],"Shipping":["Shipping"],"Total":["Total"],"Cancel":["Cancel"],"Company":["Company"],"Taxes":["Taxes"],"Update":["Update"],"Edit":["Edit"],"Coupons":["Coupons"],"Fee":["Fee"],"Subtotal:":["Subtotal:"],"Discount:":["Discount:"],"Shipping:":["Shipping:"],"Read more":["Read more"],"Available on backorder":["Available on back-order"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/checkout.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Please create a stronger password":["Please create a stronger password"],"Please enter a valid password":["Please enter a valid password"],"Create a password":["Create a password"],"Password strength":["Password strength"],"Very strong":["Very strong"],"Strong":["Strong"],"Weak":["Weak"],"Too weak":["Too weak"],"Please select a %s":["Please select a %s"],"Show separator":["Show separator"],"Show form step numbers":["Show form step numbers"],"Delivery":["Delivery"],"Ship":["Ship"],"+ Add %s":["+ Add %s"],"Please select a valid option":["Please select a valid option"],"Additional order information":["Additional order information"],"Calculate shipping for your location":["Calculate shipping for your location"],"Medium":["Medium"],"free":["free"],"Polo":["Polo"],"Your store does not have any payment methods that support the Checkout block. Once you have configured a compatible payment method it will be displayed here.":["Your store does not have any payment methods that support the Checkout block. Once you have configured a compatible payment method it will be displayed here."],"The following shipping integrations are active on your store.":["The following shipping integrations are active on your store."],"Enter the billing address that matches your payment method.":["Enter the billing address that matches your payment method."],"We are experiencing difficulties with this payment method. Please contact us for assistance.":["We are experiencing difficulties with this payment method. Please contact us for assistance."],"Page settings updated":["Page settings updated"],"Optional text for this form step.":["Optional text for this form step."],"Setup a Privacy Policy page":["Set up a Privacy Policy page"],"Setup a Terms and Conditions page":["Set up a Terms and Conditions page"],"No shipping options available":["No shipping options available"],"Sorry, this order requires a shipping option.":["Sorry, this order requires a shipping option."],"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Total price for %1$d %2$s item: %3$s":["Total price for %1$d %2$s item: %3$s","Total price for %1$d %2$s items: %3$s"],"%d item":["%d item","%d items"],"Address Fields":["Address Fields"],"By proceeding with your purchase you agree to our %1$s and %2$s":["By proceeding with your purchase you agree to our %1$s and %2$s"],"Ensure you add links to your policy pages in this section.":["Ensure you add links to your policy pages in this section."],"Enter the address where you want your order delivered.":["Enter the address where you want your order delivered."],"Express Checkout":["Express Checkout"],"Form Step Options":["Form Step Options"],"Manage payment methods":["Manage payment methods"],"Methods":["Methods"],"Payment options":["Payment options"],"Require checkbox":["Require checkbox"],"Restore default text":["Restore default text"],"Show or hide fields in the checkout address forms.":["Show or hide fields in the checkout address forms."],"Step description text.":["Step description text."],"You currently have the following payment integrations active.":["You currently have the following payment integrations active."],"You must accept our %1$s and %2$s to continue with your purchase.":["You must accept our %1$s and %2$s to continue with your purchase."],"No registered Payment Methods":["No registered Payment Methods"],"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"Show the percentage rate alongside each tax line in the summary.":["Show the percentage rate alongside each tax line in the summary."],"Show rate after tax name":["Show rate after tax name"],"%s (optional)":["%s (optional)"],"Step":["Step"],"Other available payment methods":["Other available payment methods"],"Use another payment method.":["Use another payment method."],"Shipping options will be displayed here after entering your full shipping address.":["Shipping options will be displayed here after entering your full shipping address."],"Display options":["Display options"],"%1$s (%2$d unit)":["%1$s (%2$d unit)","%1$s (%2$d units)"],"Inputs styled specifically for use on dark background colors.":["Inputs styled specifically for use on dark background colours."],"Add a note to your order":["Add a note to your order"],"Notes about your order.":["Notes about your order."],"Dark mode inputs":["Dark mode inputs"],"Style":["Style"],"Shipping to %s":["Shipping to %s"],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Remove coupon \"%s\"":["Remove coupon \"%s\""],"Loading shipping rates\u2026":["Loading shipping rates\u2026"],"%d shipping option was found":["%d shipping option was found","%d shipping options were found"],"Shipping option searched for %d package.":["Shipping option searched for %d package.","Shipping options searched for %d packages."],"%d shipping option was found.":["%d shipping option was found.","%d shipping options were found."],"Removing coupon\u2026":["Removing coupon\u2026"],"Calculated during checkout":["Calculated during checkout"],"Calculate":["Calculate"],"Choose a shipping option":["Choose a shipping option"],"Use same address for billing":["Use same address for billing"],"We'll use this email to send you details and updates about your order.":["We'll use this email to send you details and updates about your order."],"Contact information":["Contact information"],"There was an error with this payment method. Please verify it's configured correctly.":["There was an error with this payment method. Please verify it's configured correctly."],"WooCommerce Cart Page":["WooCommerce Basket Page"],"Return to Cart button":["Return to Basket button"],"Show a \"Return to Cart\" link":["Show a \"Return to Basket\" link"],"Configure Shipping Options":["Configure Shipping Options"],"Your store does not have any Shipping Options configured. Once you have added your Shipping Options they will appear here.":["Your store does not have any Shipping Options configured. Once you have added your Shipping Options they will appear here."],"We are currently working on improving our cart and checkout blocks to provide merchants with the tools and customization options they need.":["We are currently working on improving our basket and checkout blocks to provide merchants with the tools and customisation options they need."],"Order summary":["Order summary"],"%1$s ending in %2$s (expires %3$s)":["%1$s ending in %2$s (expires %3$s)"],"There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.":["There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order."],"Save payment information to my account for future purchases.":["Save payment information to my account for future purchases."],"Saved token for %s":["Saved token for %s"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Link to":["Link to"],"Give us your feedback.":["Give us your feedback."],"Feedback?":["Feedback?"],"Return to Cart":["Return to Basket"],"Terms and Conditions":["Terms and Conditions"],"Privacy Policy":["Privacy Policy"],"%d left in stock":["%d left in stock"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"],"Including in taxes":["Including in taxes"],"Enter code":["Enter code"],"Applying coupon\u2026":["Applying coupon\u2026"],"Taxes:":["Taxes:"],"Coupon code \"%s\" has been removed from your cart.":["Coupon code \"%s\" has been removed from your basket."],"Coupon code \"%s\" has been applied to your cart.":["Coupon code \"%s\" has been applied to your basket."],"Loading\u2026":["Loading\u2026"],"Place Order":["Place Order"],"Or continue below":["Or continue below"],"There was a problem with your shipping option.":["There was a problem with your shipping option."],"There was a problem with your payment option.":["There was a problem with your payment option."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"Undo":["Undo"],"(opens in a new tab)":["(opens in a new tab)"],"Sales tax":["Sales tax"],"Configure Payment Methods":["Configure Payment Methods"],"Dismiss this notice":["Dismiss this notice"],"Fees:":["Fees:"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Read less":["Read less"],"Change address":["Change address"],"Required":["Required"],"Please enter a valid email address":["Please enter a valid email address"],"Manage shipping methods":["Manage shipping methods"],"%1$s ending in %2$s":["%1$s ending in %2$s"],"Coupon: %s":["Coupon: %s"],"Free shipping":["Free shipping"],"Error:":["Error:"],"Shipping options":["Shipping options"],"Address line 2":["Address line 2"],"Billing address":["Billing address"],"Shipping address":["Shipping address"],"Notes about your order, e.g. special notes for delivery.":["Notes about your order, e.g. special notes for delivery."],"Free":["Free"],"Discount":["Discount"],"Optional":["Optional"],"Apply":["Apply"],"Phone":["Phone"],"Shipping":["Shipping"],"Total":["Total"],"Cancel":["Cancel"],"Company":["Company"],"Taxes":["Taxes"],"Update":["Update"],"Edit":["Edit"],"Coupons":["Coupons"],"Fee":["Fee"],"Subtotal:":["Subtotal:"],"Discount:":["Discount:"],"Shipping:":["Shipping:"],"Read more":["Read more"],"Available on backorder":["Available on back-order"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/checkout.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2c06722f600263a208d0239e1bee3a8d.json b/web/app/languages/plugins/woocommerce-en_GB-2c06722f600263a208d0239e1bee3a8d.json index 070a1ae8..92c0c9b9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2c06722f600263a208d0239e1bee3a8d.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2c06722f600263a208d0239e1bee3a8d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Remove product attribute filter":["Remove product attribute filter"],"Search product attributes":["Search product attributes"],"Product attribute":["Product attribute"],"Select a product variation filter match":["Select a product variation filter match"],"Remove product variation filter":["Remove product variation filter"],"Search product variations":["Search product variations"],"Product variation":["Product variation"],"Full refunds are not deducted from tax or net sales totals":["Full refunds are not deducted from tax or net sales totals"],"Single product":["Single product"],"Advanced filters":["Advanced filters"],"Single coupon":["Single coupon"],"All Revenue":["All Revenue"],"variations\u0004Excludes":["Excludes"],"variations\u0004Includes":["Includes"],"Select variation":["Select variation"],"Select a product attribute filter match":["Select a product attribute filter match"],"Select attributes":["Select attributes"],"Type to search for a variation":["Type to search for a variation"],"product attribute\u0004Is":["Is"],"product attribute\u0004Is Not":["Is Not"],"Single variation":["Single variation"],"Check at least two variations below to compare":["Tick at least two variations below to compare"],"Check at least two products below to compare":["Tick at least two products below to compare"],"Charts":["Charts"],"Choose which charts to display":["Choose which charts to display"],"Gross discounted":["Gross discounted"],"Select customer username":["Select customer username"],"Select a customer username filter match":["Select a customer username filter match"],"Remove customer username filter":["Remove customer username filter"],"Search customer username":["Search customer username"],"Select product":["Select product"],"Remove product filter":["Remove product filter"],"Select IP address":["Select IP address"],"Select an IP address filter match":["Select an IP address filter match"],"Remove IP address filter":["Remove IP address filter"],"Search IP address":["Search IP address"],"order numbers\u0004Excludes":["Excludes"],"order numbers\u0004Includes":["Includes"],"Select order number":["Select order number"],"Select a order number filter match":["Select a order number filter match"],"Remove order number filter":["Remove order number filter"],"Search order number":["Search order number"],"customer usernames\u0004Excludes":["Excludes"],"customer usernames\u0004Includes":["Includes"],"IP addresses\u0004Excludes":["Excludes"],"IP addresses\u0004Includes":["Includes"],"Average order value":["Average order value"],"Compare Variations":["Compare variations"],"Search for variations to compare":["Search for variations to compare"],"Amount":["Amount"],"Check at least two coupon codes below to compare":["Tick at least two coupon codes below to compare"],"No data for the selected date range":["No data for the selected date range"],"No data for the current search":["No data for the current search"],"Reload":["Reload"],"Search for products to compare":["Search for products to compare"],"Comparison":["Comparison"],"Type to search for a product":["Type to search for a product"],"Select a refund type":["Select a refund type"],"Select a refund filter match":["Select a refund filter match"],"Remove refund filter":["Remove refund filter"],"Returning":["Returning"],"New":["New"],"Select a customer type":["Select a customer type"],"Select a customer filter match":["Select a customer filter match"],"Remove customer filter":["Remove customer filter"],"There was an error getting your stats. Please try again.":["There was an error getting your stats. Please try again."],"tax rate\u0004Excludes":["Excludes"],"tax rate\u0004Includes":["Includes"],"Select tax rates":["Select tax rates"],"Select a tax rate filter match":["Select a tax rate filter match"],"coupon code\u0004Excludes":["Excludes"],"coupon code\u0004Includes":["Includes"],"Select coupon codes":["Select coupon codes"],"Select a coupon filter match":["Select a coupon filter match"],"Remove coupon filter":["Remove coupon filter"],"products\u0004Excludes":["Excludes"],"products\u0004Includes":["Includes"],"Select products":["Select products"],"Select a product filter match":["Select a product filter match"],"Remove tax rate filter":["Remove tax rate filter"],"Search tax rates":["Search tax rates"],"Fully refunded":["Fully refunded"],"Partially refunded":["Partially refunded"],"order status\u0004Is":["Is"],"Select an order status":["Select an order status"],"Select an order status filter match":["Select an order status filter match"],"Remove order status filter":["Remove order status filter"],"Advanced Filters":["Advanced Filters"],"order status\u0004Is Not":["Is Not"],"Compare Products":["Compare Products"],"Single Coupon":["Single Coupon"],"Compare Tax Codes":["Compare Tax Codes"],"Search for tax codes to compare":["Search for tax codes to compare"],"Compare Coupon Codes":["Compare Coupon Codes"],"Type to search for a coupon":["Type to search for a coupon"],"All downloads":["All downloads"],"All orders":["All orders"],"All taxes":["All taxes"],"All variations":["All variations"],"Customer type":["Customer type"],"Gross sales":["Gross sales"],"Tax rate":["Tax rate"],"Average items per order":["Average items per order"],"Order #":["Order #"],"Order tax":["Order tax"],"Shipping tax":["Shipping tax"],"Returns":["Returns"],"Discounted orders":["Discounted orders"],"Items sold":["Items sold"],"Net sales":["Net sales"],"Compare":["Compare"],"Bar chart":["Bar chart"],"Line chart":["Line chart"],"By year":["By year"],"By quarter":["By quarter"],"By month":["By month"],"By week":["By week"],"By day":["By day"],"By hour":["By hour"],"TAX":["TAX"],"Check at least two tax codes below to compare":["Tick at least two items below to compare"],"%s Report":["%s Report"],"Downloads":["Downloads"],"Any %s":["Any %s"],"All products":["All products"],"IP Address":["IP Address"],"Search coupons":["Search coupons"],"Search products":["Search products"],"Refund":["Refund"],"All coupons":["All coupons"],"Show":["Show"],"Username":["Username"],"None":["None"],"All":["All"],"Total sales":["Total sales"],"Total tax":["Total tax"],"Shipping":["Shipping"],"Coupon code":["Coupon code"],"Search":["Search"],"Orders":["Orders"],"Taxes":["Taxes"],"Coupons":["Coupons"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/dashboard-charts.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Remove product attribute filter":["Remove product attribute filter"],"Search product attributes":["Search product attributes"],"Product attribute":["Product attribute"],"Select a product variation filter match":["Select a product variation filter match"],"Remove product variation filter":["Remove product variation filter"],"Search product variations":["Search product variations"],"Product variation":["Product variation"],"Full refunds are not deducted from tax or net sales totals":["Full refunds are not deducted from tax or net sales totals"],"Single product":["Single product"],"Advanced filters":["Advanced filters"],"Single coupon":["Single coupon"],"All Revenue":["All Revenue"],"variations\u0004Excludes":["Excludes"],"variations\u0004Includes":["Includes"],"Select variation":["Select variation"],"Select a product attribute filter match":["Select a product attribute filter match"],"Select attributes":["Select attributes"],"Type to search for a variation":["Type to search for a variation"],"product attribute\u0004Is":["Is"],"product attribute\u0004Is Not":["Is Not"],"Single variation":["Single variation"],"Check at least two variations below to compare":["Tick at least two variations below to compare"],"Check at least two products below to compare":["Tick at least two products below to compare"],"Charts":["Charts"],"Choose which charts to display":["Choose which charts to display"],"Gross discounted":["Gross discounted"],"Select customer username":["Select customer username"],"Select a customer username filter match":["Select a customer username filter match"],"Remove customer username filter":["Remove customer username filter"],"Search customer username":["Search customer username"],"Select product":["Select product"],"Remove product filter":["Remove product filter"],"Select IP address":["Select IP address"],"Select an IP address filter match":["Select an IP address filter match"],"Remove IP address filter":["Remove IP address filter"],"Search IP address":["Search IP address"],"order numbers\u0004Excludes":["Excludes"],"order numbers\u0004Includes":["Includes"],"Select order number":["Select order number"],"Select a order number filter match":["Select a order number filter match"],"Remove order number filter":["Remove order number filter"],"Search order number":["Search order number"],"customer usernames\u0004Excludes":["Excludes"],"customer usernames\u0004Includes":["Includes"],"IP addresses\u0004Excludes":["Excludes"],"IP addresses\u0004Includes":["Includes"],"Average order value":["Average order value"],"Compare Variations":["Compare variations"],"Search for variations to compare":["Search for variations to compare"],"Amount":["Amount"],"Check at least two coupon codes below to compare":["Tick at least two coupon codes below to compare"],"No data for the selected date range":["No data for the selected date range"],"No data for the current search":["No data for the current search"],"Search for products to compare":["Search for products to compare"],"Comparison":["Comparison"],"Type to search for a product":["Type to search for a product"],"Select a refund type":["Select a refund type"],"Select a refund filter match":["Select a refund filter match"],"Remove refund filter":["Remove refund filter"],"Returning":["Returning"],"New":["New"],"Select a customer type":["Select a customer type"],"Select a customer filter match":["Select a customer filter match"],"Remove customer filter":["Remove customer filter"],"tax rate\u0004Excludes":["Excludes"],"tax rate\u0004Includes":["Includes"],"Select tax rates":["Select tax rates"],"Select a tax rate filter match":["Select a tax rate filter match"],"coupon code\u0004Excludes":["Excludes"],"coupon code\u0004Includes":["Includes"],"Select coupon codes":["Select coupon codes"],"Select a coupon filter match":["Select a coupon filter match"],"Remove coupon filter":["Remove coupon filter"],"products\u0004Excludes":["Excludes"],"products\u0004Includes":["Includes"],"Select products":["Select products"],"Select a product filter match":["Select a product filter match"],"Remove tax rate filter":["Remove tax rate filter"],"Search tax rates":["Search tax rates"],"Fully refunded":["Fully refunded"],"Partially refunded":["Partially refunded"],"order status\u0004Is":["Is"],"Select an order status":["Select an order status"],"Select an order status filter match":["Select an order status filter match"],"Remove order status filter":["Remove order status filter"],"Advanced Filters":["Advanced Filters"],"order status\u0004Is Not":["Is Not"],"Compare Products":["Compare Products"],"Single Coupon":["Single Coupon"],"Compare Tax Codes":["Compare Tax Codes"],"Search for tax codes to compare":["Search for tax codes to compare"],"Compare Coupon Codes":["Compare Coupon Codes"],"Type to search for a coupon":["Type to search for a coupon"],"All downloads":["All downloads"],"All orders":["All orders"],"All taxes":["All taxes"],"All variations":["All variations"],"Customer type":["Customer type"],"Gross sales":["Gross sales"],"Tax rate":["Tax rate"],"Average items per order":["Average items per order"],"Order #":["Order #"],"Order tax":["Order tax"],"Shipping tax":["Shipping tax"],"Returns":["Returns"],"Discounted orders":["Discounted orders"],"Items sold":["Items sold"],"Net sales":["Net sales"],"Compare":["Compare"],"Bar chart":["Bar chart"],"Line chart":["Line chart"],"By year":["By year"],"By quarter":["By quarter"],"By month":["By month"],"By week":["By week"],"By day":["By day"],"By hour":["By hour"],"TAX":["TAX"],"Check at least two tax codes below to compare":["Tick at least two items below to compare"],"%s Report":["%s Report"],"Downloads":["Downloads"],"Any %s":["Any %s"],"All products":["All products"],"IP Address":["IP Address"],"Search coupons":["Search coupons"],"Search products":["Search products"],"Refund":["Refund"],"All coupons":["All coupons"],"Show":["Show"],"Username":["Username"],"None":["None"],"All":["All"],"Total sales":["Total sales"],"Total tax":["Total tax"],"Shipping":["Shipping"],"Coupon code":["Coupon code"],"Search":["Search"],"Orders":["Orders"],"Taxes":["Taxes"],"Coupons":["Coupons"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/dashboard-charts.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2c99303d18ce23c3379a94c74d3a5726.json b/web/app/languages/plugins/woocommerce-en_GB-2c99303d18ce23c3379a94c74d3a5726.json index f35398ae..e92e6975 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2c99303d18ce23c3379a94c74d3a5726.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2c99303d18ce23c3379a94c74d3a5726.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Total":["Total"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-totals.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Total":["Total"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-totals.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2ce1ccfb028a87015cd02b9b1a2b40bc.json b/web/app/languages/plugins/woocommerce-en_GB-2ce1ccfb028a87015cd02b9b1a2b40bc.json index 89d0f9a8..b4c89c2c 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2ce1ccfb028a87015cd02b9b1a2b40bc.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2ce1ccfb028a87015cd02b9b1a2b40bc.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Reset attribute filter":["Reset attribute filter"],"Select %s":["Select %s"],"There are no products with the selected attributes.":["There are no products with the selected attributes."],"Now displaying a preview of the Filter Products by Attribute block.":["Now displaying a preview of the Filter Products by Attribute block."],"Choose to return filter results for any of the attributes selected.":["Choose to return filter results for any of the attributes selected."],"Choose to return filter results for all of the attributes selected.":["Choose to return filter results for all of the attributes selected."],"Filter Conditions":["Filter Conditions"],"Filter by Attribute":["Filter by Attribute"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Invalid %s filter.":["Invalid %s filter."],"Remove %s filter.":["Remove %s filter."],"Please select an attribute to use this filter!":["Please select an attribute to use this filter!"],"Block title":["Block title"],"Loading\u2026":["Loading\u2026"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Attributes are needed for filtering your products. You haven't created any attributes yet.":["Attributes are needed for filtering your products. You haven't created any attributes yet."],"Search for a product attribute:":["Search for a product attribute:"],"Clear selected attribute":["Clear selected attribute"],"Filter by attribute":["Filter by attribute"],"Display Style":["Display Style"],"Content Settings":["Content Settings"],"Display a list of filters based on the selected attributes.":["Display a list of filters based on the selected attributes."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"Done":["Done"],"Product attribute search results updated.":["Product attribute search results updated."],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Product Attributes":["Product Attributes"],"Display Settings":["Display Settings"],"%s product":["%s product","%s products"],"List":["List"],"Dropdown":["Dropdown"],"Learn more":["Learn more"],"Any":["Any"],"All":["All"],"Reset":["Reset"],"Apply":["Apply"],"Edit":["Edit"],"Add new attribute":["Add new attribute"]}},"comment":{"reference":"assets\/client\/blocks\/attribute-filter.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Reset attribute filter":["Reset attribute filter"],"Select %s":["Select %s"],"There are no products with the selected attributes.":["There are no products with the selected attributes."],"Now displaying a preview of the Filter Products by Attribute block.":["Now displaying a preview of the Filter Products by Attribute block."],"Choose to return filter results for any of the attributes selected.":["Choose to return filter results for any of the attributes selected."],"Choose to return filter results for all of the attributes selected.":["Choose to return filter results for all of the attributes selected."],"Filter Conditions":["Filter Conditions"],"Filter by Attribute":["Filter by Attribute"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Invalid %s filter.":["Invalid %s filter."],"Remove %s filter.":["Remove %s filter."],"Please select an attribute to use this filter!":["Please select an attribute to use this filter!"],"Block title":["Block title"],"Loading\u2026":["Loading\u2026"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Attributes are needed for filtering your products. You haven't created any attributes yet.":["Attributes are needed for filtering your products. You haven't created any attributes yet."],"Search for a product attribute:":["Search for a product attribute:"],"Clear selected attribute":["Clear selected attribute"],"Filter by attribute":["Filter by attribute"],"Display Style":["Display Style"],"Content Settings":["Content Settings"],"Display a list of filters based on the selected attributes.":["Display a list of filters based on the selected attributes."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"Done":["Done"],"Product attribute search results updated.":["Product attribute search results updated."],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Product Attributes":["Product Attributes"],"Display Settings":["Display Settings"],"%s product":["%s product","%s products"],"List":["List"],"Dropdown":["Dropdown"],"Learn more":["Learn more"],"Any":["Any"],"All":["All"],"Reset":["Reset"],"Apply":["Apply"],"Edit":["Edit"],"Add new attribute":["Add new attribute"]}},"comment":{"reference":"assets\/client\/blocks\/attribute-filter.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-2f278f06b0f8da97a92d1521751dca84.json b/web/app/languages/plugins/woocommerce-en_GB-2f278f06b0f8da97a92d1521751dca84.json index 5403c502..1eda026c 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-2f278f06b0f8da97a92d1521751dca84.json +++ b/web/app/languages/plugins/woocommerce-en_GB-2f278f06b0f8da97a92d1521751dca84.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Full refunds are not deducted from tax or net sales totals":["Full refunds are not deducted from tax or net sales totals"],"All Revenue":["All Revenue"],"Got it":["Got it"],"order":["order","orders"],"day":["day","days"],"Advanced Filters":["Advanced Filters"],"Gross sales":["Gross sales"],"Returns":["Returns"],"Net sales":["Net sales"],"Revenue":["Revenue"],"Show":["Show"],"Total sales":["Total sales"],"Shipping":["Shipping"],"Date":["Date"],"Orders":["Orders"],"Taxes":["Taxes"],"Coupons":["Coupons"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-revenue.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Full refunds are not deducted from tax or net sales totals":["Full refunds are not deducted from tax or net sales totals"],"All Revenue":["All Revenue"],"Got it":["Got it"],"order":["order","orders"],"day":["day","days"],"Advanced Filters":["Advanced Filters"],"Gross sales":["Gross sales"],"Returns":["Returns"],"Net sales":["Net sales"],"Revenue":["Revenue"],"Show":["Show"],"Total sales":["Total sales"],"Shipping":["Shipping"],"Date":["Date"],"Orders":["Orders"],"Taxes":["Taxes"],"Coupons":["Coupons"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-revenue.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-300a9bbfa15ee1cf558675d4527a387e.json b/web/app/languages/plugins/woocommerce-en_GB-300a9bbfa15ee1cf558675d4527a387e.json index 60558723..ded3629f 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-300a9bbfa15ee1cf558675d4527a387e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-300a9bbfa15ee1cf558675d4527a387e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Log in":["Log in"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-style.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Log in":["Log in"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-style.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-307deb1043792dd104d07d926bde2852.json b/web/app/languages/plugins/woocommerce-en_GB-307deb1043792dd104d07d926bde2852.json index d72b5bdc..d339b563 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-307deb1043792dd104d07d926bde2852.json +++ b/web/app/languages/plugins/woocommerce-en_GB-307deb1043792dd104d07d926bde2852.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"To":["To"],"From":["From"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/schedule-sale\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"To":["To"],"From":["From"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/schedule-sale\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-30c7f6b9e786ba39013f7d90b417e417.json b/web/app/languages/plugins/woocommerce-en_GB-30c7f6b9e786ba39013f7d90b417e417.json index 0b3c2c72..e53c12f4 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-30c7f6b9e786ba39013f7d90b417e417.json +++ b/web/app/languages/plugins/woocommerce-en_GB-30c7f6b9e786ba39013f7d90b417e417.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Something went wrong. Please contact us for assistance.":["Something went wrong. Please contact us for assistance."],"Filled Cart":["Filled Basket"],"Reload the page":["Reload the page"],"The cart has encountered an unexpected error. If the error persists, please get in touch with us for help.":["The basket has encountered an unexpected error. If the error persists, please get in touch with us for help."],"Empty Cart":["Empty Basket"]}},"comment":{"reference":"assets\/client\/blocks\/cart-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Something went wrong. Please contact us for assistance.":["Something went wrong. Please contact us for assistance."],"Filled Cart":["Filled Basket"],"Reload the page":["Reload the page"],"The cart has encountered an unexpected error. If the error persists, please get in touch with us for help.":["The basket has encountered an unexpected error. If the error persists, please get in touch with us for help."],"Empty Cart":["Empty Basket"]}},"comment":{"reference":"assets\/client\/blocks\/cart-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-30eecad5aa15cff72eb58125ba5d85d7.json b/web/app/languages/plugins/woocommerce-en_GB-30eecad5aa15cff72eb58125ba5d85d7.json index 7eeb3b17..0d6a9c0e 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-30eecad5aa15cff72eb58125ba5d85d7.json +++ b/web/app/languages/plugins/woocommerce-en_GB-30eecad5aa15cff72eb58125ba5d85d7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You have not set up any product tags on your store.":["You have not set up any product tags on your store."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"This block displays products from selected tags. To use it you first need to create products and assign tags to them.":["This block displays products from selected tags. To use it you first need to create products and assign tags to them."],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"Edit selected tags":["Edit selected tags"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"Product Tags":["Product Tags"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Columns":["Columns"],"Done":["Done"],"Layout":["Layout"],"Rows":["Rows"],"This block displays products from selected tags. Select at least one tag to display its products.":["This block displays products from selected tags. Select at least one tag to display its products."],"Display a grid of products from your selected tags.":["Display a grid of products from your selected tags."],"Products by Tag":["Products by Tag"],"Showing Products by Tag block preview.":["Showing Products by Tag block preview."],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"%d tag selected":["%d tag selected","%d tags selected"],"All selected tags":["All selected tags"],"Any selected tags":["Any selected tags"],"Clear all product tags":["Clear all product tags"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Pick at least two tags to use this setting.":["Pick at least two tags to use this setting."],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Search for product tags":["Search for product tags"],"Tag search results updated.":["Tag search results updated."],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"%1$d product tagged as %2$s":["%1$d product tagged as %2$s","%1$d products tagged as %2$s"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"Content":["Content"],"Cancel":["Cancel"],"Product Tag":["Product Tag"]}},"comment":{"reference":"assets\/client\/blocks\/product-tag.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You have not set up any product tags on your store.":["You have not set up any product tags on your store."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"This block displays products from selected tags. To use it you first need to create products and assign tags to them.":["This block displays products from selected tags. To use it you first need to create products and assign tags to them."],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"Edit selected tags":["Edit selected tags"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"Product Tags":["Product Tags"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Columns":["Columns"],"Done":["Done"],"Layout":["Layout"],"Rows":["Rows"],"This block displays products from selected tags. Select at least one tag to display its products.":["This block displays products from selected tags. Select at least one tag to display its products."],"Display a grid of products from your selected tags.":["Display a grid of products from your selected tags."],"Products by Tag":["Products by Tag"],"Showing Products by Tag block preview.":["Showing Products by Tag block preview."],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"%d tag selected":["%d tag selected","%d tags selected"],"All selected tags":["All selected tags"],"Any selected tags":["Any selected tags"],"Clear all product tags":["Clear all product tags"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Pick at least two tags to use this setting.":["Pick at least two tags to use this setting."],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Search for product tags":["Search for product tags"],"Tag search results updated.":["Tag search results updated."],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"%1$d product tagged as %2$s":["%1$d product tagged as %2$s","%1$d products tagged as %2$s"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"Content":["Content"],"Cancel":["Cancel"],"Product Tag":["Product Tag"]}},"comment":{"reference":"assets\/client\/blocks\/product-tag.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-310aa1f58a8786a5c1345d8318a53e32.json b/web/app/languages/plugins/woocommerce-en_GB-310aa1f58a8786a5c1345d8318a53e32.json index c9aa0994..857e0de6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-310aa1f58a8786a5c1345d8318a53e32.json +++ b/web/app/languages/plugins/woocommerce-en_GB-310aa1f58a8786a5c1345d8318a53e32.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This field is required.":["This field is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This field is required.":["This field is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-319f63b6d11179df948f1e1c4039f238.json b/web/app/languages/plugins/woocommerce-en_GB-319f63b6d11179df948f1e1c4039f238.json index fb717022..42993f31 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-319f63b6d11179df948f1e1c4039f238.json +++ b/web/app/languages/plugins/woocommerce-en_GB-319f63b6d11179df948f1e1c4039f238.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Proceed to Checkout":["Proceed to Checkout"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/proceed-to-checkout-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Proceed to Checkout":["Proceed to Checkout"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/proceed-to-checkout-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-31ef9d00b21b6f004ab50657c9191072.json b/web/app/languages/plugins/woocommerce-en_GB-31ef9d00b21b6f004ab50657c9191072.json index ef627562..ace57852 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-31ef9d00b21b6f004ab50657c9191072.json +++ b/web/app/languages/plugins/woocommerce-en_GB-31ef9d00b21b6f004ab50657c9191072.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Earn and manage recurring revenue and get automatic deposits into your nominated bank account.":["Earn and manage recurring revenue and get automatic deposits into your nominated bank account."],"Sell to international markets and accept more than 135 currencies with local payment methods.":["Sell to international markets and accept more than 135 currencies with local payment methods."],"Accepted payment methods":["Accepted payment methods"],"Setup required":["Set up required"],"Local Partner":["Local Partner"],"Recommended":["Recommended"],"Learn more":["Learn more"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/onboarding\/index.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Earn and manage recurring revenue and get automatic deposits into your nominated bank account.":["Earn and manage recurring revenue and get automatic deposits into your nominated bank account."],"Sell to international markets and accept more than 135 currencies with local payment methods.":["Sell to international markets and accept more than 135 currencies with local payment methods."],"Accepted payment methods":["Accepted payment methods"],"Setup required":["Set up required"],"Local Partner":["Local Partner"],"Recommended":["Recommended"],"Learn more":["Learn more"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/onboarding\/index.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-31f155bff663a5e2e6814d812cb59a41.json b/web/app/languages/plugins/woocommerce-en_GB-31f155bff663a5e2e6814d812cb59a41.json index b98b8d4b..fd3f1892 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-31f155bff663a5e2e6814d812cb59a41.json +++ b/web/app/languages/plugins/woocommerce-en_GB-31f155bff663a5e2e6814d812cb59a41.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment options":["Payment options"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/payment-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment options":["Payment options"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/payment-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-325d05a45405811cc4e3bc3480e1273a.json b/web/app/languages/plugins/woocommerce-en_GB-325d05a45405811cc4e3bc3480e1273a.json index a9911610..0a57e658 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-325d05a45405811cc4e3bc3480e1273a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-325d05a45405811cc4e3bc3480e1273a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Enter the billing address that matches your payment method.":["Enter the billing address that matches your payment method."],"Step description text.":["Step description text."],"Step":["Step"],"Billing address":["Billing address"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/billing-address-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Enter the billing address that matches your payment method.":["Enter the billing address that matches your payment method."],"Step description text.":["Step description text."],"Step":["Step"],"Billing address":["Billing address"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/billing-address-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-35badc913c2594f0b9f19d36b58b9cce.json b/web/app/languages/plugins/woocommerce-en_GB-35badc913c2594f0b9f19d36b58b9cce.json index 18a262d9..c74d906d 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-35badc913c2594f0b9f19d36b58b9cce.json +++ b/web/app/languages/plugins/woocommerce-en_GB-35badc913c2594f0b9f19d36b58b9cce.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset stock filter":["Reset stock filter"],"Reset filter":["Reset filter"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"%s product":["%s product","%s products"],"Reset":["Reset"],"Apply":["Apply"]}},"comment":{"reference":"assets\/client\/blocks\/stock-filter-wrapper-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset stock filter":["Reset stock filter"],"Reset filter":["Reset filter"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"%s product":["%s product","%s products"],"Reset":["Reset"],"Apply":["Apply"]}},"comment":{"reference":"assets\/client\/blocks\/stock-filter-wrapper-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-35f5d74f2007b126eeef3c73a7c819a6.json b/web/app/languages/plugins/woocommerce-en_GB-35f5d74f2007b126eeef3c73a7c819a6.json index b49ac864..2d28b436 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-35f5d74f2007b126eeef3c73a7c819a6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-35f5d74f2007b126eeef3c73a7c819a6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Now displaying a preview of the reviews for the products in the selected categories.":["Now displaying a preview of the reviews for the products in the selected categories."],"Edit selected categories":["Edit selected categories"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The following error was returned":["The following error was returned"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Reviews by Category":["Reviews by Category"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Show product reviews from specific categories.":["Show product reviews from specific categories."],"This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do.":["This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your store settings<\/a>.":["Product rating is disabled in your store settings<\/a>."],"Reviewer photo is disabled in your site settings<\/a>.":["Reviewer photo is disabled in your site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"List Settings":["List Settings"],"Display products matching":["Display products matching"],"Product rating":["Product rating"],"Category":["Category"],"Rated %f out of 5":["Rated %f out of 5"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"Image":["Image"],"Product name":["Product name"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-category.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Now displaying a preview of the reviews for the products in the selected categories.":["Now displaying a preview of the reviews for the products in the selected categories."],"Edit selected categories":["Edit selected categories"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"The following error was returned":["The following error was returned"],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Reviews by Category":["Reviews by Category"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Show product reviews from specific categories.":["Show product reviews from specific categories."],"This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do.":["This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your store settings<\/a>.":["Product rating is disabled in your store settings<\/a>."],"Reviewer photo is disabled in your site settings<\/a>.":["Reviewer photo is disabled in your site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"List Settings":["List Settings"],"Display products matching":["Display products matching"],"Product rating":["Product rating"],"Category":["Category"],"Rated %f out of 5":["Rated %f out of 5"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"Image":["Image"],"Product name":["Product name"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-category.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-368bb8ce25c346d4b6cd85a5f9a6922a.json b/web/app/languages/plugins/woocommerce-en_GB-368bb8ce25c346d4b6cd85a5f9a6922a.json index b5dcbc44..15a6a620 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-368bb8ce25c346d4b6cd85a5f9a6922a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-368bb8ce25c346d4b6cd85a5f9a6922a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Previous year:":["Previous year:"],"Previous period:":["Previous period:"],"No data for the selected date range":["No data for the selected date range"],"No data for the current search":["No data for the current search"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6224.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Previous year:":["Previous year:"],"Previous period:":["Previous period:"],"No data for the selected date range":["No data for the selected date range"],"No data for the current search":["No data for the current search"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6224.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3819305314c698924728d966720aaca7.json b/web/app/languages/plugins/woocommerce-en_GB-3819305314c698924728d966720aaca7.json index 35260813..7624bbc4 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3819305314c698924728d966720aaca7.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3819305314c698924728d966720aaca7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Design a store that reflects your brand and business. Customize your active theme, select a professionally designed theme, or create a new look using our store designer.":["Design a store that reflects your brand and business. Customise your active theme, select a professionally designed theme, or create a new look using our store designer."],"DON'T HAVE A LOGO YET?":["DON'T HAVE A LOGO YET?"],"Want more patterns?":["Want more patterns?"],"Unfortunately, we're experiencing some technical issues \u2014 please come back later to access more patterns.":["Unfortunately, we're experiencing some technical issues \u2013 please come back later to access more patterns."],"Shuffle":["Shuffle"],"Services":["Services"],"Welcome shoppers to your store with one of our introductory patterns.":["Welcome shoppers to your store with one of our introductory patterns."],"Intro":["Intro"],"Looks like we can't detect your network. Please double-check your internet connection and refresh the page.":["Looks like we can't detect your network. Please double-check your internet connection and refresh the page."],"Browse themes":["Browse themes"],"Choose a professionally designed theme":["Choose a professionally designed theme"],"Use the store designer":["Use the store designer"],"Design or choose a new theme":["Design or choose a new theme"],"Design your own theme":["Design your own theme"],"You can edit your content later in the Editor":["You can edit your content later in the editor"],"Opt in to usage tracking<\/OptInModal> to get access to more patterns.":["Opt in to usage tracking<\/OptInModal> to get access to more patterns."],"Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme.":["Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme."],"Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome.":["Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome."],"I wanted to design my own theme.":["I wanted to design my own theme."],"What motivated you to choose the \"Design your own theme\" option?":["What motivated you to choose the \"Design your own theme\" option?"],"Choose your footer":["Choose your footer"],"Design your homepage":["Design your homepage"],"Choose your header":["Choose your header"],"Choose fonts":["Choose fonts"],"Choose your color palette":["Choose your colour palette"],"Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI.":["Create a store that reflects your brand and business. Select one of our professionally designed themes to customise, or create your own using AI."],"Take a quick tour to discover what's possible.":["Take a quick tour to discover what's possible."],"But don't let that stop you! Start customizing the look and feel of your store by adding your logo and selecting your colors and layout. ":["But don't let that stop you! Start customising the look and feel of your store by adding your logo and selecting your colours and layout. "],"Discover what's possible with the store designer":["Discover what's possible with the store designer"],"Start designing your store, including adding your logo, changing color schemes, and building your own layouts. Take a quick tour to discover what's possible.":["Start designing your store, including adding your logo, changing colour schemes, and building your own layouts. Take a quick tour to discover what's possible."],"Setting up the foundations":["Setting up the foundations"],"Continue setting up your store":["Continue setting up your store"],"Options":["Options"],"Send":["Send"],"Neutral":["Neutral"],"Back":["Back"],"Navigation":["Navigation"],"Style":["Style"],"Paid":["Paid"],"Share feedback":["Share feedback"],"Skip":["Skip"],"About":["About"],"Layout":["Layout"],"%1$s (%2$s)":["%1$s (%2$s)"],"Previous":["Previous"],"Save":["Save"],"Close":["Close"],"Cancel":["Cancel"],"Continue":["Continue"],"Delete":["Delete"],"Settings":["Settings"],"Reviews":["Reviews"],"Default":["Standard"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customize-store.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Sorry, you don't have permission to update the theme.":["Sorry, you don't have permission to update the theme."],"Finish customizing":["Finish customising"],"AI has selected a font pairing that's the best fit for your business. If you'd like to change them, select a new option below now, or later in Editor.":["AI has selected a font pairing that's the best fit for your business. If you'd like to change them, select a new option below now, or later in the editor."],"Select the pair of fonts that best suits your brand. The larger font will be used for headings, and the smaller for supporting content. You can change your font at any time in Editor.":["Select the pair of fonts that best suits your brand. The larger font will be used for headings, and the smaller for supporting content. You can change your font at any time in the editor."],"Add patterns":["Add patterns"],"Based on the info you shared, our AI tool recommends using this color palette. Want to change it? You can select or add new colors below, or update them later in Editor.":["Based on the info you shared, our AI tool recommends using this colour palette. Want to change it? You can select or add new colours below, or update them later in the editor."],"Choose the color palette that best suits your brand. Want to change it? Create your custom color palette below, or update it later in Editor.":["Choose the colour palette that best suits your brand. Want to change it? Create your custom colour palette below, or update it later in the editor."],"Design a store that reflects your brand and business. Customize your active theme, select a professionally designed theme, or create a new look using our store designer.":["Design a store that reflects your brand and business. Customise your active theme, select a professionally designed theme, or create a new look using our store designer."],"DON'T HAVE A LOGO YET?":["DON'T HAVE A LOGO YET?"],"Want more patterns?":["Want more patterns?"],"Unfortunately, we're experiencing some technical issues \u2014 please come back later to access more patterns.":["Unfortunately, we're experiencing some technical issues \u2013 please come back later to access more patterns."],"Shuffle":["Shuffle"],"Services":["Services"],"Welcome shoppers to your store with one of our introductory patterns.":["Welcome shoppers to your store with one of our introductory patterns."],"Intro":["Intro"],"Looks like we can't detect your network. Please double-check your internet connection and refresh the page.":["Looks like we can't detect your network. Please double-check your internet connection and refresh the page."],"Browse themes":["Browse themes"],"Choose a professionally designed theme":["Choose a professionally designed theme"],"Use the store designer":["Use the store designer"],"Design or choose a new theme":["Design or choose a new theme"],"Design your own theme":["Design your own theme"],"You can edit your content later in the Editor":["You can edit your content later in the editor"],"Opt in to usage tracking<\/OptInModal> to get access to more patterns.":["Opt in to usage tracking<\/OptInModal> to get access to more patterns."],"Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme.":["Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme."],"Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome.":["Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome."],"I wanted to design my own theme.":["I wanted to design my own theme."],"What motivated you to choose the \"Design your own theme\" option?":["What motivated you to choose the \"Design your own theme\" option?"],"Choose your footer":["Choose your footer"],"Design your homepage":["Design your homepage"],"Choose your header":["Choose your header"],"Choose fonts":["Choose fonts"],"Choose your color palette":["Choose your colour palette"],"Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI.":["Create a store that reflects your brand and business. Select one of our professionally designed themes to customise, or create your own using AI."],"Take a quick tour to discover what's possible.":["Take a quick tour to discover what's possible."],"But don't let that stop you! Start customizing the look and feel of your store by adding your logo and selecting your colors and layout. ":["But don't let that stop you! Start customising the look and feel of your store by adding your logo and selecting your colours and layout. "],"Discover what's possible with the store designer":["Discover what's possible with the store designer"],"Start designing your store, including adding your logo, changing color schemes, and building your own layouts. Take a quick tour to discover what's possible.":["Start designing your store, including adding your logo, changing colour schemes, and building your own layouts. Take a quick tour to discover what's possible."],"Setting up the foundations":["Setting up the foundations"],"Continue setting up your store":["Continue setting up your store"],"Options":["Options"],"Send":["Send"],"Neutral":["Neutral"],"Back":["Back"],"Navigation":["Navigation"],"Style":["Style"],"Paid":["Paid"],"Share feedback":["Share feedback"],"Skip":["Skip"],"About":["About"],"Layout":["Layout"],"%1$s (%2$s)":["%1$s (%2$s)"],"Previous":["Previous"],"Close":["Close"],"Cancel":["Cancel"],"Continue":["Continue"],"Delete":["Delete"],"Settings":["Settings"],"Reviews":["Reviews"],"Default":["Standard"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customize-store.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3822e084584af73b3534ef184ec8d114.json b/web/app/languages/plugins/woocommerce-en_GB-3822e084584af73b3534ef184ec8d114.json index 08f989c0..a21dea00 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3822e084584af73b3534ef184ec8d114.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3822e084584af73b3534ef184ec8d114.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Affirm":["Affirm"],"Amazon Pay":["Amazon Pay"],"Get in touch":["Get in touch"],"I\u2019m open to installing it another time":["I\u2019m open to installing it another time"],"It\u2019s something else (Please share below)":["It\u2019s something else (Please share below)"],"I don\u2019t want to install another plugin":["I don\u2019t want to install another plugin"],"I\u2019m already happy with my payments setup":["I\u2019m already happy with my payments setup"],"Limited time offer":["Limited time offer"],"See more":["See more"],"PayPal Payments":["PayPal Payments"],"Comments (Optional)":["Comments (optional)"],"Klarna":["Klarna"],"Learn more":["Learn more"],"No thanks":["No thanks"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/wcpay-payment-welcome-page.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Affirm":["Affirm"],"Amazon Pay":["Amazon Pay"],"Get in touch":["Get in touch"],"I\u2019m open to installing it another time":["I\u2019m open to installing it another time"],"It\u2019s something else (Please share below)":["It\u2019s something else (Please share below)"],"I don\u2019t want to install another plugin":["I don\u2019t want to install another plugin"],"I\u2019m already happy with my payments setup":["I\u2019m already happy with my payments setup"],"Limited time offer":["Limited time offer"],"See more":["See more"],"PayPal Payments":["PayPal Payments"],"Comments (Optional)":["Comments (optional)"],"Klarna":["Klarna"],"Learn more":["Learn more"],"No thanks":["No thanks"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/wcpay-payment-welcome-page.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-39d4b99786986c8785a60df484b86f21.json b/web/app/languages/plugins/woocommerce-en_GB-39d4b99786986c8785a60df484b86f21.json index 8c3e606f..75ba9762 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-39d4b99786986c8785a60df484b86f21.json +++ b/web/app/languages/plugins/woocommerce-en_GB-39d4b99786986c8785a60df484b86f21.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment via PayPal":["Payment via PayPal"],"Proceed to PayPal":["Proceed to PayPal"],"PayPal":["PayPal"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-paypal.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment via PayPal":["Payment via PayPal"],"Proceed to PayPal":["Proceed to PayPal"],"PayPal":["PayPal"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-paypal.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3b957db33e488eb39035ec5e68557f2e.json b/web/app/languages/plugins/woocommerce-en_GB-3b957db33e488eb39035ec5e68557f2e.json index 9264d0dc..2a6419d7 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3b957db33e488eb39035ec5e68557f2e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3b957db33e488eb39035ec5e68557f2e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Choose products for me":["Choose products for me"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/linked-product-list\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Choose products for me":["Choose products for me"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/linked-product-list\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3d15c295dc4f6052bcee5acb181dc0d5.json b/web/app/languages/plugins/woocommerce-en_GB-3d15c295dc4f6052bcee5acb181dc0d5.json index f67cabaa..e2c12cb2 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3d15c295dc4f6052bcee5acb181dc0d5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3d15c295dc4f6052bcee5acb181dc0d5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Property attribute is required.":["Property attribute is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text-area\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Property attribute is required.":["Property attribute is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text-area\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3d846a67871bcc8383e5c6f1024b8187.json b/web/app/languages/plugins/woocommerce-en_GB-3d846a67871bcc8383e5c6f1024b8187.json index ea10b766..2ef13318 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3d846a67871bcc8383e5c6f1024b8187.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3d846a67871bcc8383e5c6f1024b8187.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Sizes":["Sizes"],"Colors":["Colours"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/variation-items\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Sizes":["Sizes"],"Colors":["Colours"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/variation-items\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3e376ec0adac031d29baa7e1204b6860.json b/web/app/languages/plugins/woocommerce-en_GB-3e376ec0adac031d29baa7e1204b6860.json index 5a7d2f80..1879acc1 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3e376ec0adac031d29baa7e1204b6860.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3e376ec0adac031d29baa7e1204b6860.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Delivery":["Delivery"],"Ship":["Ship"],"free":["free"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-method-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Delivery":["Delivery"],"Ship":["Ship"],"free":["free"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-method-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-3eb1b9d6b8f7d2a59005ecc2cf46492f.json b/web/app/languages/plugins/woocommerce-en_GB-3eb1b9d6b8f7d2a59005ecc2cf46492f.json index 11e3c761..2e0764a3 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-3eb1b9d6b8f7d2a59005ecc2cf46492f.json +++ b/web/app/languages/plugins/woocommerce-en_GB-3eb1b9d6b8f7d2a59005ecc2cf46492f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Additional order information":["Additional order information"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/additional-information-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Additional order information":["Additional order information"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/additional-information-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-403dcd6a366f8d33e75b08cf7779b241.json b/web/app/languages/plugins/woocommerce-en_GB-403dcd6a366f8d33e75b08cf7779b241.json index 94f73c40..9d5b5f41 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-403dcd6a366f8d33e75b08cf7779b241.json +++ b/web/app/languages/plugins/woocommerce-en_GB-403dcd6a366f8d33e75b08cf7779b241.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit category image":["Edit category image"],"Media settings":["Media settings"],"Edit selected category":["Edit selected category"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Clothing":["Clothing"],"Branded t-shirts, jumpers, pants and more!":["Branded t-shirts, jumpers, trousers and more!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product category is selected.":["No product category is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Visually highlight a product category and encourage prompt action.":["Visually highlight a product category and encourage prompt action."],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Featured Category":["Featured Category"],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"Select a category":["Select a category"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"]}},"comment":{"reference":"assets\/client\/blocks\/featured-category.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit category image":["Edit category image"],"Media settings":["Media settings"],"Edit selected category":["Edit selected category"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Clothing":["Clothing"],"Branded t-shirts, jumpers, pants and more!":["Branded t-shirts, jumpers, trousers and more!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product category is selected.":["No product category is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Visually highlight a product category and encourage prompt action.":["Visually highlight a product category and encourage prompt action."],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Featured Category":["Featured Category"],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"Select a category":["Select a category"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"]}},"comment":{"reference":"assets\/client\/blocks\/featured-category.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-41c967d2b4e928033877e0063828c441.json b/web/app/languages/plugins/woocommerce-en_GB-41c967d2b4e928033877e0063828c441.json index a783578a..cc0455c8 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-41c967d2b4e928033877e0063828c441.json +++ b/web/app/languages/plugins/woocommerce-en_GB-41c967d2b4e928033877e0063828c441.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Clear All":["Clear All"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters-wrapper-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Clear All":["Clear All"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters-wrapper-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-42f875d1d5f4fc0dc6d5e7f27026c87d.json b/web/app/languages/plugins/woocommerce-en_GB-42f875d1d5f4fc0dc6d5e7f27026c87d.json index 21888a63..087e6014 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-42f875d1d5f4fc0dc6d5e7f27026c87d.json +++ b/web/app/languages/plugins/woocommerce-en_GB-42f875d1d5f4fc0dc6d5e7f27026c87d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Expired":["Expired"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/woo-product-usage-notice.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Expired":["Expired"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/woo-product-usage-notice.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-437fd0de081e2abc79b4baa55ec087a4.json b/web/app/languages/plugins/woocommerce-en_GB-437fd0de081e2abc79b4baa55ec087a4.json index ef0a0c21..3a50e015 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-437fd0de081e2abc79b4baa55ec087a4.json +++ b/web/app/languages/plugins/woocommerce-en_GB-437fd0de081e2abc79b4baa55ec087a4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Highlight a product or variation.":["Highlight a product or variation."],"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit product image":["Edit product image"],"Media settings":["Media settings"],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids walls. This banner will spruce up any space it\u2019s hung!":["Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids' walls. This banner will spruce up any space in which it\u2019s hung!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product is selected.":["No product is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"],"Featured Product":["Featured Product"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/featured-product.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Highlight a product or variation.":["Highlight a product or variation."],"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit product image":["Edit product image"],"Media settings":["Media settings"],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids walls. This banner will spruce up any space it\u2019s hung!":["Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids' walls. This banner will spruce up any space in which it\u2019s hung!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product is selected.":["No product is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"],"Featured Product":["Featured Product"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/featured-product.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-43cabab7dc6aee12ed8d61d58e037ad4.json b/web/app/languages/plugins/woocommerce-en_GB-43cabab7dc6aee12ed8d61d58e037ad4.json index a510a36c..7eb4b648 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-43cabab7dc6aee12ed8d61d58e037ad4.json +++ b/web/app/languages/plugins/woocommerce-en_GB-43cabab7dc6aee12ed8d61d58e037ad4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"FROM A CSV FILE":["FROM A CSV FILE"],"Import all products at once by uploading a CSV file.":["Import all products at once by uploading a CSV file."],"Or add your products from scratch":["Or add your products from scratch"],"Import your products":["Import your products"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/997.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"FROM A CSV FILE":["FROM A CSV FILE"],"Import all products at once by uploading a CSV file.":["Import all products at once by uploading a CSV file."],"Or add your products from scratch":["Or add your products from scratch"],"Import your products":["Import your products"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/997.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-43eefb91a69c4b24e94255fbd6b2bd04.json b/web/app/languages/plugins/woocommerce-en_GB-43eefb91a69c4b24e94255fbd6b2bd04.json index 505b7010..f9eb3f70 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-43eefb91a69c4b24e94255fbd6b2bd04.json +++ b/web/app/languages/plugins/woocommerce-en_GB-43eefb91a69c4b24e94255fbd6b2bd04.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Guide controls":["Guide controls"],"Share feedback":["Share feedback"],"Previous":["Previous"],"Next":["Next"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/5771.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Guide controls":["Guide controls"],"Share feedback":["Share feedback"],"Previous":["Previous"],"Next":["Next"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/5771.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-440e3f94950fd71495d4bcb332ee639f.json b/web/app/languages/plugins/woocommerce-en_GB-440e3f94950fd71495d4bcb332ee639f.json index 4df1fab5..68cdfa5d 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-440e3f94950fd71495d4bcb332ee639f.json +++ b/web/app/languages/plugins/woocommerce-en_GB-440e3f94950fd71495d4bcb332ee639f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Toggle to use the global query context that is set with the current template, such as variations of the product catalog or search. Disable to customize the filtering independently.":["Toggle to use the global query context that is set with the current template, such as variations of the product catalogue or search. Disable to customise the filtering independently."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"%d term":["%d term","%d terms"],"%1$s, has %2$d term":["%1$s, has %2$d term","%1$s, has %2$d terms"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Give us your feedback.":["Give us your feedback."],"Feedback?":["Feedback?"],"Loading\u2026":["Loading\u2026"],"Advanced Filters":["Advanced Filters"],"Product Summary":["Product summary"],"Display the title of a product.":["Display the title of a product."],"Display a short description about a product.":["Display a short description about a product."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"All selected attributes":["All selected attributes"],"Any selected attributes":["Any selected attributes"],"Clear all product attributes":["Clear all product attributes"],"Pick at least two attributes to use this setting.":["Pick at least two attributes to use this setting."],"Product attribute search results updated.":["Product attribute search results updated."],"Search for product attributes":["Search for product attributes"],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Hand-picked Products":["Hand-picked Products"],"Display products matching":["Display products matching"],"Product Title":["Product Title"],"Product Attributes":["Product Attributes"],"Related products":["Related products"],"%d product":["%d product","%d products"],"Stock status":["Stock status"],"Attributes":["Attributes"]}},"comment":{"reference":"assets\/client\/blocks\/product-query.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Toggle to use the global query context that is set with the current template, such as variations of the product catalog or search. Disable to customize the filtering independently.":["Toggle to use the global query context that is set with the current template, such as variations of the product catalogue or search. Disable to customise the filtering independently."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"%d term":["%d term","%d terms"],"%1$s, has %2$d term":["%1$s, has %2$d term","%1$s, has %2$d terms"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Give us your feedback.":["Give us your feedback."],"Feedback?":["Feedback?"],"Loading\u2026":["Loading\u2026"],"Advanced Filters":["Advanced Filters"],"Product Summary":["Product summary"],"Display the title of a product.":["Display the title of a product."],"Display a short description about a product.":["Display a short description about a product."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"All selected attributes":["All selected attributes"],"Any selected attributes":["Any selected attributes"],"Clear all product attributes":["Clear all product attributes"],"Pick at least two attributes to use this setting.":["Pick at least two attributes to use this setting."],"Product attribute search results updated.":["Product attribute search results updated."],"Search for product attributes":["Search for product attributes"],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Hand-picked Products":["Hand-picked Products"],"Display products matching":["Display products matching"],"Product Title":["Product Title"],"Product Attributes":["Product Attributes"],"Related products":["Related products"],"%d product":["%d product","%d products"],"Stock status":["Stock status"],"Attributes":["Attributes"]}},"comment":{"reference":"assets\/client\/blocks\/product-query.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-452ce70241ca22cfa3d369e7eaf12b03.json b/web/app/languages/plugins/woocommerce-en_GB-452ce70241ca22cfa3d369e7eaf12b03.json index 3e1ccaa2..ab544c72 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-452ce70241ca22cfa3d369e7eaf12b03.json +++ b/web/app/languages/plugins/woocommerce-en_GB-452ce70241ca22cfa3d369e7eaf12b03.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s (optional)":["%s (optional)"],"%d in cart":["%d in basket","%d in basket"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/product-button-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s (optional)":["%s (optional)"],"%d in cart":["%d in basket","%d in basket"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/product-button-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-453c78ba73b2787ae017ce68f8e07b0a.json b/web/app/languages/plugins/woocommerce-en_GB-453c78ba73b2787ae017ce68f8e07b0a.json index 9eed3d95..2ac325e6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-453c78ba73b2787ae017ce68f8e07b0a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-453c78ba73b2787ae017ce68f8e07b0a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Overlay drawer orientation":["Overlay drawer orientation"],"POSITION":["POSITION"],"The overlay will show on the left or right side of the screen (only on desktop).":["The overlay will show on the left or right side of the screen (only on desktop)."],"The overlay will fill up the whole screen.":["The overlay will fill up the whole screen."],"Full-Screen":["Full screen"],"Style":["Style"],"Left":["Left"],"Right":["Right"]}},"comment":{"reference":"assets\/client\/blocks\/product-filters-overlay.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Overlay drawer orientation":["Overlay drawer orientation"],"POSITION":["POSITION"],"The overlay will show on the left or right side of the screen (only on desktop).":["The overlay will show on the left or right side of the screen (only on desktop)."],"The overlay will fill up the whole screen.":["The overlay will fill up the whole screen."],"Full-Screen":["Full screen"],"Style":["Style"],"Left":["Left"],"Right":["Right"]}},"comment":{"reference":"assets\/client\/blocks\/product-filters-overlay.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-471a3ad765cae270d0a25210d8a53ab8.json b/web/app/languages/plugins/woocommerce-en_GB-471a3ad765cae270d0a25210d8a53ab8.json index e843698b..b9396b2a 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-471a3ad765cae270d0a25210d8a53ab8.json +++ b/web/app/languages/plugins/woocommerce-en_GB-471a3ad765cae270d0a25210d8a53ab8.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/coming-soon.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/coming-soon.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-4722b63f6b580b10ebd10d293a0b6765.json b/web/app/languages/plugins/woocommerce-en_GB-4722b63f6b580b10ebd10d293a0b6765.json index 36a89411..ea5ee022 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-4722b63f6b580b10ebd10d293a0b6765.json +++ b/web/app/languages/plugins/woocommerce-en_GB-4722b63f6b580b10ebd10d293a0b6765.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Click for error details":["Click for error details"],"We're sorry for the inconvenience. Please try reloading the page, or you can get support from the community forums.":["We're sorry for the inconvenience. Please try reloading the page, or you can get support from the community forums."],"Oops, something went wrong":["Oops, something went wrong"],"Reload Page":["Reload page"],"Quickly create a beautiful looking store using our built-in store designer, or select a pre-built theme and customize it to fit your brand.":["Quickly create a beautiful looking store using our built-in store designer, or select a pre-built theme and customise it to fit your brand."],"Add details":["Add details"],"Get your store up and running in no time. Add your store's address to set up shipping, tax and payments faster.":["Get your store up and running in no time. Add your store's address to set up shipping, tax and payments faster."],"First, tell us about your store":["First, tell us about your store"],"Store location illustration":["Store location illustration"],"Add New Product":["Add New Product"],"Save store location":["Save store location"],"Add your store location to help us calculate shipping rates and the best shipping options for you. You can manage your store location again at any time in WooCommerce Settings General.":["Add your store location to help us calculate shipping rates and the best shipping options for you. You can manage your store location again at any time in WooCommerce Settings General."],"Set your store location":["Set your store location"],"Enable shipping label printing and discounted rates":["Enable shipping label printing and discounted rates"],"Save shipping options":["Save shipping options"],"We recommend the following shipping options based on your location. You can manage your shipping options again at any time in WooCommerce Shipping settings.":["We recommend the following shipping options based on your location. You can manage your shipping options again at any time in WooCommerce Shipping settings."],"Try one of the alternative payment providers.":["Try one of the alternative payment providers."],"Other payment providers":["Other payment providers"],"Give your customers additional choices in ways to pay.":["Give your customers additional choices in ways to pay."],"To start accepting online payments":["To start accepting online payments"],"Earn and manage recurring revenue and get automatic deposits into your nominated bank account.":["Earn and manage recurring revenue and get automatic deposits into your nominated bank account."],"Sell to international markets and accept more than 135 currencies with local payment methods.":["Sell to international markets and accept more than 135 currencies with local payment methods."],"Good choice! You chose to add amazing new features to your store. Continue to checkout to complete your purchase.":["Good choice! You chose to add amazing new features to your store. Continue to checkout to complete your purchase."],"Purchase illustration":["Purchase illustration"],"Appearance illustration":["Appearance illustration"],"Congratulations! Take a moment to celebrate and look out for the first sale.":["Congratulations! Take a moment to celebrate and look out for the first sale."],"How was your experience?":["How was your experience?"],"Marketing illustration":["Marketing illustration"],"Payment illustration":["Payment illustration"],"Preview store":["Preview store"],"Products illustration":["Products illustration"],"Shipping illustration":["Shipping illustration"],"Show setup task list":["Show setup task list"],"Tax illustration":["Tax illustration"],"We appreciate your feedback!":["We appreciate your feedback!"],"Welcome to your store":["Welcome to your store"],"\ud83c\udf89 Almost there. Only {{strongText}}%1$d step left{{\/strongText}} get your store up and running. {{setupLink}}Finish setup{{\/setupLink}}":["\ud83c\udf89 Almost there. Only {{strongText}}%1$d step left{{\/strongText}} get your store up and running. {{setupLink}}Finish setup{{\/setupLink}}"],"\ud83d\ude80 You're doing great! {{strongText}}%1$d steps left{{\/strongText}} to get your store up and running. {{setupLink}}Continue setup{{\/setupLink}}":["\ud83d\ude80 You're doing great! {{strongText}}%1$d steps left{{\/strongText}} to get your store up and running. {{setupLink}}Continue setup{{\/setupLink}}"],"Choose a payment provider":["Choose a payment provider"],"Follow these steps to start selling quickly. %1$d out of %2$d complete.":["Follow these steps to start selling quickly. %1$d out of %2$d complete."],"Hide setup list":["Hide setup list"],"Let's get you started":["Let's get you started"],"Offline payment methods":["Offline payment methods"],"Welcome to %s":["Welcome to %s"],"You're on the right track":["You're on the right track"],"You're almost there":["You're almost there"],"Built by WooCommerce":["Built by WooCommerce"],"Activity":["Activity"],"Are you sure? These tasks are required for all stores.":["Are you sure? These tasks are required for all stores."],"Choose a tax partner":["Choose a tax partner"],"Hide store setup tasks":["Hide store setup tasks"],"Hide this list":["Hide this list"],"It's time to get paid":["It's time to get paid"],"Keep list":["Keep list"],"Set up taxes manually":["Set up taxes manually"],"Yes, hide store setup tasks":["Yes, hide store setup tasks"],"You've completed store setup":["You've completed store setup"],"100% free":["100% free"],"Best for new stores":["Best for new stores"],"Not allowed":["Not allowed"],"Real-time sales tax calculation":["Real-time sales tax calculation"],"Sorry, you are not allowed to access this page.":["Sorry, you are not allowed to access this page."],"{{strong}}Single{{\/strong}} economic nexus compliance":["{{strong}}Single{{\/strong}} economic nexus compliance"],"See more":["See more"],"We recommend adding one of the following marketing tools for your store. The extension will be installed and activated for you when you click \"Get started\".":["We recommend adding one of the following marketing tools for your store. The extension will be installed and activated for you when you click \"Get started\"."],"%s logo":["%s logo"],"Recommended marketing extensions":["Recommended marketing extensions"],"You can manage this payment gateway's settings by clicking the button below":["You can manage this payment gateway's settings by clicking the button below"],"%s configured successfully":["%s configured successfully"],"Task postponed until tomorrow":["Task postponed until tomorrow"],"With WooCommerce Shipping you can save time by printing your USPS and DHL Express shipping labels at home":["With WooCommerce Shipping you can save time by printing your USPS and DHL Express shipping labels at home"],"You have inventory to review and update":["You have inventory to review and update"],"Inventory to review":["Inventory to review"],"Orders to fulfill":["Orders to fulfil"],"Show %d more task.":["Show %d more task.","Show %d more tasks."],"You have %d new thing to do":["You have %d new thing to do","You have %d new things to do"],"Show things to do next":["Show things to do next"],"Things to do next":["Things to do next"],"Additional payment options":["Additional payment options"],"Setup required":["Set up required"],"Preview site":["Preview site"],"Local Partner":["Local Partner"],"Configure your %(title)s account":["Configure your %(title)s account"],"You can now favorite your extensions to pin them in the top level of the navigation.":["You can now favourite your extensions to pin them in the top level of the navigation."],"Introducing favorites":["Introducing favourites"],"Remove this item from your favorites.":["Remove this item from your favourites."],"Add this item to your favorites.":["Add this item to your favourites."],"Got it":["Got it"],"If you have any questions, feel free to explore the WooCommerce docs listed here.":["If you have any questions, feel free to explore the WooCommerce docs listed here."],"We're here for help":["We're here for help"],"Would you like to add the following paid features to your store now?":["Would you like to add the following paid features to your store now?"],"Get Support":["Get Support"],"I agree":["I agree"],"No thanks, I'll set up manually":["No thanks, I'll set up manually"],"I don't charge sales tax":["I don't charge sales tax"],"Set up manually":["Set up manually"],"WordPress Dashboard":["WordPress Dashboard"],"Site Icon":["Site Icon"],"Display options":["Display options"],"Two columns":["Two columns"],"Single column":["Single column"],"WooCommerce Home":["WooCommerce Home"],"Run your store from anywhere":["Run your store from anywhere"],"Download the WooCommerce app":["Download the WooCommerce app"],"Task dismissed":["Task dismissed"],"Abort":["Abort"],"Setup Wizard":["Setup Wizard"],"My business doesn't charge sales tax":["My business doesn't charge sales tax"],"Review your shipping options":["Review your shipping options"],"Payment Methods":["Payment Methods"],"Loading\u2026":["Loading\u2026"],"Undo":["Undo"],"Hide this":["Hide this"],"Overview":["Overview"],"Home":["Home"],"Installed marketing extensions":["Installed marketing extensions"],"Finish setup":["Finish setup"],"These details are required to receive payments via bank transfer":["These details are required to receive payments via bank transfer"],"Add your bank details":["Add your bank details"],"Direct bank transfer details added successfully":["Direct bank transfer details added successfully"],"Please enter an account number or IBAN":["Please enter an account number or IBAN"],"Unregistered Statuses":["Unregistered Statuses"],"There was a problem saving your payment settings":["There was a problem saving your payment settings"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Install":["Install"],"unread activity":["unread activity"],"%1$s ‹ %2$s — WooCommerce":["%1$s ‹ %2$s — WooCommerce"],"Store Activity":["Store Activity"],"Reviews to moderate":["Reviews to moderate"],"You have %d order to fulfill":["You have %d order to fulfil","You have %d orders to fulfil"],"You have %d review to moderate":["You have %d review to moderate","You have %d reviews to moderate"],"Get started":["Get started"],"Install %s":["Install %s"],"Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{\/link}} that shows us how WooCommerce is used. No personal data is tracked or stored.":["Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{\/link}} that shows us how WooCommerce is used. No personal data is tracked or stored."],"Yes, count me in!":["Yes, count me in!"],"Build a better WooCommerce":["Build a better WooCommerce"],"There was a problem updating your preferences":["There was a problem updating your preferences"],"Task List Options":["Task List Options"],"Good news!":["Good news!"],"By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{\/link}}.":["By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{\/link}}."],"Head over to the tax rate settings screen to configure your tax rates":["Head over to the tax rate settings screen to configure your tax rates"],"Configure tax rates":["Configure tax rates"],"Connect your store to WordPress.com to enable automated sales tax calculations":["Connect your store to WordPress.com to enable automated sales tax calculations"],"Set up tax rates manually":["Set up tax rates manually"],"Connect your store":["Connect your store"],"We recommend using ShipStation to save time at the post office by printing your shipping labels at home. Try ShipStation free for 30 days. {{link}}Learn more{{\/link}}.":["We recommend using ShipStation to save time at the post office by printing your shipping labels at home. Try ShipStation free for 30 days. {{link}}Learn more{{\/link}}."],"Enable shipping label printing":["Enable shipping label printing"],"Define how much customers pay to ship to different destinations":["Define how much customers pay to ship to different destinations"],"Set shipping costs":["Set shipping costs"],"The address from which your business operates":["The address from which your business operates"],"Set store location":["Set store location"],"You're awesome! One less item on your to-do list \u2705":["You're awesome! One less item on your to-do list \u2705"],"Connect your store to WordPress.com to enable label printing":["Connect your store to WordPress.com to enable label printing"],"\ud83d\udce6 Shipping is done! Don't worry, you can always change it later":["\ud83d\udce6 Shipping is done! Don't worry, you can always change it later"],"Shipping cost":["Shipping cost"],"Shipping rates can not be negative numbers.":["Shipping rates can not be negative numbers."],"Post code":["Postcode"],"Complete task":["Complete task"],"Please select a country \/ region":["Please select a country \/ region"],"Install & enable":["Install & enable"],"There was a problem saving your store location":["There was a problem saving your store location"],"Your shipping rates have been updated":["Your shipping rates have been updated"],"Import your products":["Import your products"],"I'll do it later":["I'll do it later"],"You won't have access to this functionality until the extensions have been purchased and installed.":["You won't have access to this functionality until the extensions have been purchased and installed."],"Dismiss this notice":["Dismiss this notice"],"Select a default date range. When no range is selected, reports will be viewed by the default date range.":["Select a default date range. When no range is selected, reports will be viewed by the default date range."],"Exclude the %s status from reports":["Exclude the %s status from reports"],"Orders with these statuses are excluded from the totals in your reports. The {{strong}}Refunded{{\/strong}} status can not be excluded.":["Orders with these statuses are excluded from the totals in your reports. The {{strong}}Refunded{{\/strong}} status can not be excluded."],"Custom Statuses":["Custom Statuses"],"Actionable statuses:":["Actionable statuses:"],"Default date range:":["Default date range:"],"Excluded statuses:":["Excluded statuses:"],"Orders with these statuses require action on behalf of the store admin. These orders will show up in the Home Screen - Orders task.":["Orders with these statuses require action on behalf of the store admin. These orders will show up in the Home Screen - Orders task."],"Analytics":["Analytics"],"Edit Product":["Edit Product"],"Continue setup":["Continue setup"],"Revenue":["Revenue"],"Country \/ Region":["Country\/Region"],"Show less":["Show less"],"Yes please":["Yes, please"],"Retry":["Retry"],"Layout":["Layout"],"Manage":["Manage"],"Recommended":["Recommended"],"Copy link":["Copy link"],"Import products":["Import products"],"Activate":["Activate"],"Connect":["Connect"],"Free shipping":["Free shipping"],"Extensions":["Extensions"],"Rest of the world":["Rest of the World"],"Downloads":["Downloads"],"Configure":["Configure"],"Buy now":["Buy now"],"IBAN":["IBAN"],"BIC \/ Swift":["BIC \/ Swift"],"Enable":["Enable"],"Bank name":["Bank name"],"Account number":["Account number"],"Account name":["Account name"],"Sort code":["Sort code"],"Display":["Display"],"Copied!":["Copied!"],"Marketing":["Marketing"],"Installed payment methods are listed below and can be sorted to control their display order on the frontend.":["Installed payment methods are listed below and can be sorted to control their display order on the frontend."],"Learn more":["Learn more"],"Save":["Save"],"Add products":["Add products"],"Close":["Close"],"Products":["Products"],"Variations":["Variations"],"No thanks":["No thanks"],"Address":["Address","Addresses"],"Categories":["Categories"],"Stock":["Stock"],"Cancel":["Cancel"],"City":["City"],"Orders":["Orders"],"Customers":["Customers"],"Taxes":["Taxes"],"Continue":["Continue"],"Update":["Update"],"Coupons":["Coupons"],"Settings":["Settings"],"Product":["Product"],"Download":["Download"],"WooCommerce Tax":["WooCommerce Tax"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/app\/index.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Coming soon":["Coming soon"],"Click for error details":["Click for error details"],"We\u2019re sorry for the inconvenience. Please try reloading the page, or you can get support from the community forums.":["We're sorry for the inconvenience. Please try reloading the page, or you can get support from the community forums."],"Oops, something went wrong":["Oops, something went wrong"],"Reload Page":["Reload page"],"Quickly create a beautiful looking store using our built-in store designer, or select a pre-built theme and customize it to fit your brand.":["Quickly create a beautiful looking store using our built-in store designer, or select a pre-built theme and customise it to fit your brand."],"Add details":["Add details"],"Get your store up and running in no time. Add your store\u2019s address to set up shipping, tax and payments faster.":["Get your store up and running in no time. Add your store's address to set up shipping, tax, and payments faster."],"First, tell us about your store":["First, tell us about your store"],"Store location illustration":["Store location illustration"],"Add New Product":["Add New Product"],"Save store location":["Save store location"],"Add your store location to help us calculate shipping rates and the best shipping options for you. You can manage your store location again at any time in WooCommerce Settings General.":["Add your store location to help us calculate shipping rates and the best shipping options for you. You can manage your store location again at any time in WooCommerce Settings General."],"Set your store location":["Set your store location"],"Enable shipping label printing and discounted rates":["Enable shipping label printing and discounted rates"],"Save shipping options":["Save shipping options"],"We recommend the following shipping options based on your location. You can manage your shipping options again at any time in WooCommerce Shipping settings.":["We recommend the following shipping options based on your location. You can manage your shipping options again at any time in WooCommerce Shipping settings."],"Try one of the alternative payment providers.":["Try one of the alternative payment providers."],"Other payment providers":["Other payment providers"],"Give your customers additional choices in ways to pay.":["Give your customers additional choices in ways to pay."],"To start accepting online payments":["To start accepting online payments"],"Earn and manage recurring revenue and get automatic deposits into your nominated bank account.":["Earn and manage recurring revenue and get automatic deposits into your nominated bank account."],"Sell to international markets and accept more than 135 currencies with local payment methods.":["Sell to international markets and accept more than 135 currencies with local payment methods."],"Good choice! You chose to add amazing new features to your store. Continue to checkout to complete your purchase.":["Good choice! You chose to add amazing new features to your store. Continue to checkout to complete your purchase."],"Purchase illustration":["Purchase illustration"],"Appearance illustration":["Appearance illustration"],"Congratulations! Take a moment to celebrate and look out for the first sale.":["Congratulations! Take a moment to celebrate and look out for the first sale."],"How was your experience?":["How was your experience?"],"Marketing illustration":["Marketing illustration"],"Payment illustration":["Payment illustration"],"Preview store":["Preview store"],"Products illustration":["Products illustration"],"Shipping illustration":["Shipping illustration"],"Show setup task list":["Show setup task list"],"Tax illustration":["Tax illustration"],"We appreciate your feedback!":["We appreciate your feedback!"],"Welcome to your store":["Welcome to your store"],"\ud83c\udf89 Almost there. Only {{strongText}}%1$d step left{{\/strongText}} get your store up and running. {{setupLink}}Finish setup{{\/setupLink}}":["\ud83c\udf89 Almost there. Only {{strongText}}%1$d step left{{\/strongText}} get your store up and running. {{setupLink}}Finish setup{{\/setupLink}}"],"\ud83d\ude80 You\u2019re doing great! {{strongText}}%1$d steps left{{\/strongText}} to get your store up and running. {{setupLink}}Continue setup{{\/setupLink}}":["\ud83d\ude80 You're doing great! {{strongText}}%1$d steps left{{\/strongText}} to get your store up and running. {{setupLink}}Continue setup{{\/setupLink}}"],"Choose a payment provider":["Choose a payment provider"],"Follow these steps to start selling quickly. %1$d out of %2$d complete.":["Follow these steps to start selling quickly. %1$d out of %2$d complete."],"Hide setup list":["Hide setup list"],"Let\u2019s get you started":["Let's get you started"],"Offline payment methods":["Offline payment methods"],"Welcome to %s":["Welcome to %s"],"You\u2019re on the right track":["You're on the right track"],"You\u2019re almost there":["You're almost there"],"Built by WooCommerce":["Built by WooCommerce"],"Activity":["Activity"],"Are you sure? These tasks are required for all stores.":["Are you sure? These tasks are required for all stores."],"Choose a tax partner":["Choose a tax partner"],"Hide store setup tasks":["Hide store setup tasks"],"Hide this list":["Hide this list"],"Keep list":["Keep list"],"Set up taxes manually":["Set up taxes manually"],"Yes, hide store setup tasks":["Yes, hide store setup tasks"],"You\u2019ve completed store setup":["You've completed store setup"],"100% free":["100% free"],"Best for new stores":["Best for new stores"],"Not allowed":["Not allowed"],"Real-time sales tax calculation":["Real-time sales tax calculation"],"Sorry, you are not allowed to access this page.":["Sorry, you are not allowed to access this page."],"{{strong}}Single{{\/strong}} economic nexus compliance":["{{strong}}Single{{\/strong}} economic nexus compliance"],"See more":["See more"],"We recommend adding one of the following marketing tools for your store. The extension will be installed and activated for you when you click \"Get started\".":["We recommend adding one of the following marketing tools for your store. The extension will be installed and activated for you when you click \"Get started\"."],"%s logo":["%s logo"],"Recommended marketing extensions":["Recommended marketing extensions"],"You can manage this payment gateway\u2019s settings by clicking the button below":["You can manage this payment gateway's settings by clicking the button below"],"%s configured successfully":["%s configured successfully"],"Task postponed until tomorrow":["Task postponed until tomorrow"],"With WooCommerce Shipping you can save time by printing your USPS and DHL Express shipping labels at home":["With WooCommerce Shipping you can save time by printing your USPS and DHL Express shipping labels at home"],"You have inventory to review and update":["You have inventory to review and update"],"Inventory to review":["Inventory to review"],"Orders to fulfill":["Orders to fulfil"],"Show %d more task.":["Show %d more task.","Show %d more tasks."],"You have %d new thing to do":["You have %d new thing to do","You have %d new things to do"],"Show things to do next":["Show things to do next"],"Things to do next":["Things to do next"],"Additional payment options":["Additional payment options"],"Setup required":["Set up required"],"Preview site":["Preview site"],"Local Partner":["Local Partner"],"Configure your %(title)s account":["Configure your %(title)s account"],"Got it":["Got it"],"Would you like to add the following paid features to your store now?":["Would you like to add the following paid features to your store now?"],"Get Support":["Get Support"],"I agree":["I agree"],"No thanks, I'll set up manually":["No thanks, I'll set up manually"],"I don't charge sales tax":["I don't charge sales tax"],"Set up manually":["Set up manually"],"Display options":["Display options"],"Two columns":["Two columns"],"Single column":["Single column"],"WooCommerce Home":["WooCommerce Home"],"Run your store from anywhere":["Run your store from anywhere"],"Download the WooCommerce app":["Download the WooCommerce app"],"Task dismissed":["Task dismissed"],"Abort":["Abort"],"Setup Wizard":["Setup Wizard"],"My business doesn't charge sales tax":["My business doesn't charge sales tax"],"Review your shipping options":["Review your shipping options"],"Payment Methods":["Payment Methods"],"Loading\u2026":["Loading\u2026"],"Undo":["Undo"],"Hide this":["Hide this"],"Overview":["Overview"],"Home":["Home"],"Installed marketing extensions":["Installed marketing extensions"],"Finish setup":["Finish setup"],"These details are required to receive payments via bank transfer":["These details are required to receive payments via bank transfer"],"Add your bank details":["Add your bank details"],"Direct bank transfer details added successfully":["Direct bank transfer details added successfully"],"Please enter an account number or IBAN":["Please enter an account number or IBAN"],"Unregistered Statuses":["Unregistered Statuses"],"There was a problem saving your payment settings":["There was a problem saving your payment settings"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Install":["Install"],"unread activity":["unread activity"],"%1$s ‹ %2$s — WooCommerce":["%1$s ‹ %2$s — WooCommerce"],"Store Activity":["Store Activity"],"Reviews to moderate":["Reviews to moderate"],"You have %d order to fulfill":["You have %d order to fulfil","You have %d orders to fulfil"],"You have %d review to moderate":["You have %d review to moderate","You have %d reviews to moderate"],"Get started":["Get started"],"Install %s":["Install %s"],"Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{\/link}} that shows us how WooCommerce is used. No personal data is tracked or stored.":["Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{\/link}} that shows us how WooCommerce is used. No personal data is tracked or stored."],"Yes, count me in!":["Yes, count me in!"],"Build a better WooCommerce":["Build a better WooCommerce"],"There was a problem updating your preferences":["There was a problem updating your preferences"],"Task List Options":["Task List Options"],"Good news!":["Good news!"],"By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{\/link}}.":["By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{\/link}}."],"Head over to the tax rate settings screen to configure your tax rates":["Head over to the tax rate settings screen to configure your tax rates"],"Configure tax rates":["Configure tax rates"],"Connect your store to WordPress.com to enable automated sales tax calculations":["Connect your store to WordPress.com to enable automated sales tax calculations"],"Set up tax rates manually":["Set up tax rates manually"],"Connect your store":["Connect your store"],"We recommend using ShipStation to save time at the post office by printing your shipping labels at home. Try ShipStation free for 30 days. {{link}}Learn more{{\/link}}.":["We recommend using ShipStation to save time at the post office by printing your shipping labels at home. Try ShipStation free for 30 days. {{link}}Learn more{{\/link}}."],"Enable shipping label printing":["Enable shipping label printing"],"Define how much customers pay to ship to different destinations":["Define how much customers pay to ship to different destinations"],"Set shipping costs":["Set shipping costs"],"The address from which your business operates":["The address from which your business operates"],"Set store location":["Set store location"],"You\u2019re awesome! One less item on your to-do list \u2705":["You're awesome! One less item on your to-do list \u2705"],"Connect your store to WordPress.com to enable label printing":["Connect your store to WordPress.com to enable label printing"],"\ud83d\udce6 Shipping is done! Don\u2019t worry, you can always change it later":["\ud83d\udce6 Shipping is done! Don't worry, you can always change it later"],"Shipping cost":["Shipping cost"],"Shipping rates can not be negative numbers.":["Shipping rates can not be negative numbers."],"Post code":["Postcode"],"Complete task":["Complete task"],"Please select a country \/ region":["Please select a country \/ region"],"Install & enable":["Install & enable"],"There was a problem saving your store location":["There was a problem saving your store location"],"Your shipping rates have been updated":["Your shipping rates have been updated"],"Import your products":["Import your products"],"I\u2019ll do it later":["I'll do it later"],"You won\u2019t have access to this functionality until the extensions have been purchased and installed.":["You won't have access to this functionality until the extensions have been purchased and installed."],"Dismiss this notice":["Dismiss this notice"],"Select a default date range. When no range is selected, reports will be viewed by the default date range.":["Select a default date range. When no range is selected, reports will be viewed by the default date range."],"Exclude the %s status from reports":["Exclude the %s status from reports"],"Orders with these statuses are excluded from the totals in your reports. The {{strong}}Refunded{{\/strong}} status can not be excluded.":["Orders with these statuses are excluded from the totals in your reports. The {{strong}}Refunded{{\/strong}} status can not be excluded."],"Custom Statuses":["Custom Statuses"],"Actionable statuses:":["Actionable statuses:"],"Default date range:":["Default date range:"],"Excluded statuses:":["Excluded statuses:"],"Orders with these statuses require action on behalf of the store admin. These orders will show up in the Home Screen - Orders task.":["Orders with these statuses require action on behalf of the store admin. These orders will show up in the Home Screen - Orders task."],"Analytics":["Analytics"],"Edit Product":["Edit Product"],"Continue setup":["Continue setup"],"Revenue":["Revenue"],"Country \/ Region":["Country\/Region"],"Show less":["Show less"],"Yes please":["Yes, please"],"Retry":["Retry"],"Layout":["Layout"],"Manage":["Manage"],"Recommended":["Recommended"],"Copy link":["Copy link"],"Import products":["Import products"],"Activate":["Activate"],"Connect":["Connect"],"Export":["Export"],"Free shipping":["Free shipping"],"Extensions":["Extensions"],"Rest of the world":["Rest of the World"],"Downloads":["Downloads"],"Configure":["Configure"],"Buy now":["Buy now"],"IBAN":["IBAN"],"BIC \/ Swift":["BIC \/ Swift"],"Enable":["Enable"],"Bank name":["Bank name"],"Account number":["Account number"],"Account name":["Account name"],"Sort code":["Sort code"],"Save changes":["Save changes"],"Display":["Display"],"Copied!":["Copied!"],"Marketing":["Marketing"],"Installed payment methods are listed below and can be sorted to control their display order on the frontend.":["Installed payment methods are listed below and can be sorted to control their display order on the frontend."],"Learn more":["Learn more"],"Save":["Save"],"Add products":["Add products"],"Products":["Products"],"Variations":["Variations"],"No thanks":["No thanks"],"Address":["Address","Addresses"],"Categories":["Categories"],"Stock":["Stock"],"Cancel":["Cancel"],"City":["City"],"Orders":["Orders"],"Customers":["Customers"],"Taxes":["Taxes"],"Continue":["Continue"],"Update":["Update"],"Coupons":["Coupons"],"Settings":["Settings"],"Product":["Product"],"Download":["Download"],"WooCommerce Tax":["WooCommerce Tax"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/app\/index.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-47334b38fd482809419fbd389607b05e.json b/web/app/languages/plugins/woocommerce-en_GB-47334b38fd482809419fbd389607b05e.json index 6f3f60c8..ebcda288 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-47334b38fd482809419fbd389607b05e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-47334b38fd482809419fbd389607b05e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Oops, something went wrong. Please try again":["Oops, something went wrong. Please try again"],"Collapse":["Collapse"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Drag images here or click to upload":["Drag images here or click to upload"],"Choose images":["Choose images"],"Close Tour":["Close Tour"],"Step %1$d of %2$d":["Step %1$d of %2$d"],"Cover":["Cover"],"Options":["Options"],"Date range":["Date range"],"Previous period:":["Previous period:"],"Down %f%% from %s":["Down %f%% from %s"],"Up %f%% from %s":["Up %f%% from %s"],"%f%%":["%f%%"],"All attributes with names that include {{query \/}}":["All attributes with names that include {{query \/}}"],"Back":["Back"],"Help":["Help"],"F j, Y":["F j, Y"],"g:ia":["g:ia"],"Abort":["Abort"],"Press the down arrow key to interact with the calendar and select a date.":["Press the down arrow key to interact with the calendar and select a date."],"Add an image":["Add an image"],"Select or upload image":["Select or upload image"],"Continue without installing":["Continue without installing"],"Proceed":["Proceed"],"Skip":["Skip"],"Install & enable":["Install & enable"],"Reload":["Reload"],"Show less":["Show less"],"No data to display":["No data to display"],"Attribute value":["Attribute value"],"Retry":["Retry"],"+%d more":["+%d more"],"Columns:":["Columns:"],"Choose which values to display":["Choose which values to display"],"Sort by %s in descending order":["Sort by %s in descending order"],"Sort by %s in ascending order":["Sort by %s in ascending order"],"(scroll to see more)":["(scroll to see more)"],"No change from %s":["No change from %s"],"List of data points available for filtering. Use arrow keys to cycle through the list. Click a data point for a detailed report.":["List of data points available for filtering. Use arrow keys to cycle through the list. Click a data point for a detailed report."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"Filters":["Filters"],"%1$s out of %2$s stars.":["%1$s out of %2$s stars."],"Go to page":["Go to page"],"filter report to show:":["filter report to show:"],"vs.":["vs."],"Presets":["Presets"],"select a date range":["select a date range"],"Select date range and comparison":["Select date range and comparison"],"select a preset period":["select a preset period"],"Date input describing a selected date range's end date in format %s":["Date input describing a selected date range's end date in format %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Date input describing a selected date range's start date in format %s":["Date input describing a selected date range's start date in format %s"],"Selected. %s":["Selected. %s"],"%s is not selectable.":["%s is not selectable."],"Select %s as an end date.":["Select %s as an end date."],"Select %s as a start date.":["Select %s as a start date."],"Return to the date input field.":["Return to the date input field."],"Go to the first or last day of a week.":["Go to the first or last day of a week."],"Switch months.":["Switch months."],"Move backward (up) and forward (down) by one week.":["Move backward (up) and forward (down) by one week."],"Move backward (left) and forward (right) by one day.":["Move backward (left) and forward (right) by one day."],"Select the date in focus.":["Select the date in focus."],"Question mark":["Question mark"],"Escape key":["Escape key"],"Home and end keys":["Home and end keys"],"page up and page down keys":["page up and page down keys"],"up and down arrow keys":["up and down arrow keys"],"Right and left arrow keys":["Right and left arrow keys"],"Enter key":["Enter key"],"Move forward to switch to the next month.":["Move forward to switch to the next month."],"Move backward to switch to the previous month.":["Move backward to switch to the previous month."],"Interact with the calendar and select start and end dates.":["Interact with the calendar and select start and end dates."],"Calendar":["Calendar"],"compare to":["compare to"],"Your requested data is loading":["Your requested data is loading"],"Bar chart":["Bar chart"],"Line chart":["Line chart"],"By year":["By year"],"By quarter":["By quarter"],"By month":["By month"],"By week":["By week"],"By day":["By day"],"By hour":["By hour"],"You may select up to %d items.":["You may select up to %d items."],"Clear all filters":["Clear all filters"],"Choose to apply any or all filters":["Choose to apply any or all filters"],"select a date":["select a date"],"Date input describing a selected date in format %s":["Date input describing a selected date in format %s"],"Choose a date":["Choose a date"],"%(field)s range end":["%(field)s range end"],"%(field)s range start":["%(field)s range start"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"All categories with titles that include {{query \/}}":["All categories with titles that include {{query \/}}"],"All coupons with codes that include {{query \/}}":["All coupons with codes that include {{query \/}}"],"All customers with names that include {{query \/}}":["All customers with names that include {{query \/}}"],"All products with titles that include {{query \/}}":["All products with titles that include {{query \/}}"],"All taxes with codes that include {{query \/}}":["All taxes with codes that include {{query \/}}"],"Clear all":["Clear all"],"Move backward for selected items":["Move backward for selected items"],"No results.":["No results."],"Remove %s":["Remove %s"],"maximum value input\u0004%(field)s maximum amount":["%(field)s maximum amount"],"minimum value input\u0004%(field)s minimum amount":["%(field)s minimum amount"],"MM\/DD\/YYYY":["MM\/DD\/YYYY"],"MMM D, YYYY":["MMM D, YYYY"],"Performance Indicators":["Performance Indicators"],"Next Page":["Next Page"],"Previous Page":["Previous Page"],"End Date":["End Date"],"Start Date":["Start Date"],"Clear Dates":["Clear Dates"],"Clear Date":["Clear Date"],"Add a filter":["Add a filter"],"TAX":["TAX"],"Done":["Done"],"Rows per page":["Rows per page"],"Attribute name":["Attribute name"],"Next":["Next"],"Select":["Select"],"Filter":["Filter"],"to":["to"],"Custom":["Custom"],"Learn more":["Learn more"],"Item":["Product"],"Any":["Any"],"All":["All"],"Reset":["Reset"],"Close":["Close"],"Expand":["Expand"],"Remove image":["Remove image"],"N\/A":["N\/A"],"No thanks":["No thanks"],"Continue":["Continue"],"Remove":["Remove"],"Update":["Update"]}},"comment":{"reference":"assets\/client\/admin\/components\/index.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Oops, something went wrong. Please try again":["Oops, something went wrong. Please try again"],"Collapse":["Collapse"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Drag images here or click to upload":["Drag images here or click to upload"],"Choose images":["Choose images"],"Close Tour":["Close Tour"],"Step %1$d of %2$d":["Step %1$d of %2$d"],"Cover":["Cover"],"Options":["Options"],"Date range":["Date range"],"Previous period:":["Previous period:"],"Down %f%% from %s":["Down %f%% from %s"],"Up %f%% from %s":["Up %f%% from %s"],"%f%%":["%f%%"],"All attributes with names that include {{query \/}}":["All attributes with names that include {{query \/}}"],"Back":["Back"],"Help":["Help"],"F j, Y":["F j, Y"],"g:ia":["g:ia"],"Abort":["Abort"],"Press the down arrow key to interact with the calendar and select a date.":["Press the down arrow key to interact with the calendar and select a date."],"Add an image":["Add an image"],"Select or upload image":["Select or upload image"],"Continue without installing":["Continue without installing"],"Proceed":["Proceed"],"Skip":["Skip"],"Install & enable":["Install & enable"],"Reload":["Reload"],"There was an error getting your stats. Please try again.":["There was an error getting your stats. Please try again."],"Show less":["Show less"],"No data to display":["No data to display"],"Attribute value":["Attribute value"],"Retry":["Retry"],"+%d more":["+%d more"],"Columns:":["Columns:"],"Choose which values to display":["Choose which values to display"],"Sort by %s in descending order":["Sort by %s in descending order"],"Sort by %s in ascending order":["Sort by %s in ascending order"],"(scroll to see more)":["(scroll to see more)"],"No change from %s":["No change from %s"],"List of data points available for filtering. Use arrow keys to cycle through the list. Click a data point for a detailed report.":["List of data points available for filtering. Use arrow keys to cycle through the list. Click a data point for a detailed report."],"Search results updated.":["Search results updated."],"Filters":["Filters"],"%1$s out of %2$s stars.":["%1$s out of %2$s stars."],"Go to page":["Go to page"],"filter report to show:":["filter report to show:"],"vs.":["vs."],"Presets":["Presets"],"select a date range":["select a date range"],"Select date range and comparison":["Select date range and comparison"],"select a preset period":["select a preset period"],"Date input describing a selected date range's end date in format %s":["Date input describing a selected date range's end date in format %s"],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Date input describing a selected date range's start date in format %s":["Date input describing a selected date range's start date in format %s"],"Selected. %s":["Selected. %s"],"%s is not selectable.":["%s is not selectable."],"Select %s as an end date.":["Select %s as an end date."],"Select %s as a start date.":["Select %s as a start date."],"Return to the date input field.":["Return to the date input field."],"Go to the first or last day of a week.":["Go to the first or last day of a week."],"Switch months.":["Switch months."],"Move backward (up) and forward (down) by one week.":["Move backward (up) and forward (down) by one week."],"Move backward (left) and forward (right) by one day.":["Move backward (left) and forward (right) by one day."],"Select the date in focus.":["Select the date in focus."],"Question mark":["Question mark"],"Escape key":["Escape key"],"Home and end keys":["Home and end keys"],"page up and page down keys":["page up and page down keys"],"up and down arrow keys":["up and down arrow keys"],"Right and left arrow keys":["Right and left arrow keys"],"Enter key":["Enter key"],"Move forward to switch to the next month.":["Move forward to switch to the next month."],"Move backward to switch to the previous month.":["Move backward to switch to the previous month."],"Interact with the calendar and select start and end dates.":["Interact with the calendar and select start and end dates."],"Calendar":["Calendar"],"compare to":["compare to"],"Your requested data is loading":["Your requested data is loading"],"Bar chart":["Bar chart"],"Line chart":["Line chart"],"By year":["By year"],"By quarter":["By quarter"],"By month":["By month"],"By week":["By week"],"By day":["By day"],"By hour":["By hour"],"You may select up to %d items.":["You may select up to %d items."],"Clear all filters":["Clear all filters"],"Choose to apply any or all filters":["Choose to apply any or all filters"],"select a date":["select a date"],"Date input describing a selected date in format %s":["Date input describing a selected date in format %s"],"Choose a date":["Choose a date"],"%(field)s range end":["%(field)s range end"],"%(field)s range start":["%(field)s range start"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"All categories with titles that include {{query \/}}":["All categories with titles that include {{query \/}}"],"All coupons with codes that include {{query \/}}":["All coupons with codes that include {{query \/}}"],"All customers with names that include {{query \/}}":["All customers with names that include {{query \/}}"],"All products with titles that include {{query \/}}":["All products with titles that include {{query \/}}"],"All taxes with codes that include {{query \/}}":["All taxes with codes that include {{query \/}}"],"Clear all":["Clear all"],"Move backward for selected items":["Move backward for selected items"],"No results.":["No results."],"Remove %s":["Remove %s"],"maximum value input\u0004%(field)s maximum amount":["%(field)s maximum amount"],"minimum value input\u0004%(field)s minimum amount":["%(field)s minimum amount"],"MM\/DD\/YYYY":["MM\/DD\/YYYY"],"MMM D, YYYY":["MMM D, YYYY"],"Performance Indicators":["Performance Indicators"],"Next Page":["Next Page"],"Previous Page":["Previous Page"],"End Date":["End Date"],"Start Date":["Start Date"],"Clear Dates":["Clear Dates"],"Clear Date":["Clear Date"],"Add a filter":["Add a filter"],"TAX":["TAX"],"Done":["Done"],"Rows per page":["Rows per page"],"Attribute name":["Attribute name"],"Next":["Next"],"Select":["Select"],"Filter":["Filter"],"to":["to"],"Custom":["Custom"],"Learn more":["Learn more"],"Item":["Product"],"Any":["Any"],"All":["All"],"Reset":["Reset"],"Close":["Close"],"Expand":["Expand"],"Remove image":["Remove image"],"N\/A":["N\/A"],"No thanks":["No thanks"],"Continue":["Continue"],"Remove":["Remove"],"Update":["Update"]}},"comment":{"reference":"assets\/client\/admin\/components\/index.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-48f712bf18d189801e4ae706e0037377.json b/web/app/languages/plugins/woocommerce-en_GB-48f712bf18d189801e4ae706e0037377.json index 28554126..2866f82b 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-48f712bf18d189801e4ae706e0037377.json +++ b/web/app/languages/plugins/woocommerce-en_GB-48f712bf18d189801e4ae706e0037377.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price":["Price"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/pricing\/edit.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price":["Price"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/pricing\/edit.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-4960ed60135ea5260a9baabe3c0e60bb.json b/web/app/languages/plugins/woocommerce-en_GB-4960ed60135ea5260a9baabe3c0e60bb.json index 30c56840..2d077a32 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-4960ed60135ea5260a9baabe3c0e60bb.json +++ b/web/app/languages/plugins/woocommerce-en_GB-4960ed60135ea5260a9baabe3c0e60bb.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"Rated %f out of 5":["Rated %f out of 5"],"List":["List"],"Dropdown":["Dropdown"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"Rated %f out of 5":["Rated %f out of 5"],"List":["List"],"Dropdown":["Dropdown"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-4ab6442e99b7c2a178f27791cdd43f56.json b/web/app/languages/plugins/woocommerce-en_GB-4ab6442e99b7c2a178f27791cdd43f56.json index d689f21d..fd5d78b6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-4ab6442e99b7c2a178f27791cdd43f56.json +++ b/web/app/languages/plugins/woocommerce-en_GB-4ab6442e99b7c2a178f27791cdd43f56.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Display reviews for your products.":["Display reviews for your products."],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"Loading\u2026":["Loading\u2026"],"The following error was returned":["The following error was returned"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Showing Reviews by Product block preview.":["Showing Reviews by Product block preview."],"Show reviews of your product to build trust":["Show reviews of your product to build trust"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does.":["This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Reviews by Product":["Reviews by Product"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your store settings<\/a>.":["Product rating is disabled in your store settings<\/a>."],"Reviewer photo is disabled in your site settings<\/a>.":["Reviewer photo is disabled in your site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Done":["Done"],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Your store doesn't have any products.":["Your store doesn't have any products."],"List Settings":["List Settings"],"Product rating":["Product rating"],"Rated %f out of 5":["Rated %f out of 5"],"Content":["Content"],"Products":["Products"],"Image":["Image"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-product.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Display reviews for your products.":["Display reviews for your products."],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"Loading\u2026":["Loading\u2026"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"The following error was returned":["The following error was returned"],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Showing Reviews by Product block preview.":["Showing Reviews by Product block preview."],"Show reviews of your product to build trust":["Show reviews of your product to build trust"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does.":["This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Reviews by Product":["Reviews by Product"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your store settings<\/a>.":["Product rating is disabled in your store settings<\/a>."],"Reviewer photo is disabled in your site settings<\/a>.":["Reviewer photo is disabled in your site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Done":["Done"],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Your store doesn't have any products.":["Your store doesn't have any products."],"List Settings":["List Settings"],"Product rating":["Product rating"],"Rated %f out of 5":["Rated %f out of 5"],"Content":["Content"],"Products":["Products"],"Image":["Image"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-product.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-4af982bf749b69f729f23ce8e76511b6.json b/web/app/languages/plugins/woocommerce-en_GB-4af982bf749b69f729f23ce8e76511b6.json index e14be04c..aa680f83 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-4af982bf749b69f729f23ce8e76511b6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-4af982bf749b69f729f23ce8e76511b6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Cart totals":["Basket totals"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/order-summary-heading-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Cart totals":["Basket totals"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/order-summary-heading-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-4d4fa55da406b60dff2c54bd3e1bdf3a.json b/web/app/languages/plugins/woocommerce-en_GB-4d4fa55da406b60dff2c54bd3e1bdf3a.json index 9321f2aa..002f1652 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-4d4fa55da406b60dff2c54bd3e1bdf3a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-4d4fa55da406b60dff2c54bd3e1bdf3a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Load more reviews":["Load more reviews"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Reviews list updated.":["Reviews list updated."],"There was an error loading the reviews.":["There was an error loading the reviews."],"Read less":["Read less"],"%d review loaded.":["%d review loaded.","%d reviews loaded."],"Order reviews by":["Order reviews by"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Order by":["Order by"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Load more reviews":["Load more reviews"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Reviews list updated.":["Reviews list updated."],"There was an error loading the reviews.":["There was an error loading the reviews."],"Read less":["Read less"],"%d review loaded.":["%d review loaded.","%d reviews loaded."],"Order reviews by":["Order reviews by"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Order by":["Order by"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-4ef3118a4b5a865d0934d771a1a875a5.json b/web/app/languages/plugins/woocommerce-en_GB-4ef3118a4b5a865d0934d771a1a875a5.json index eec1078c..281b4e83 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-4ef3118a4b5a865d0934d771a1a875a5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-4ef3118a4b5a865d0934d771a1a875a5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Direct bank transfer":["Direct bank transfer"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-bacs.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Direct bank transfer":["Direct bank transfer"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-bacs.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-507f1208a3dc15ee33256209b516fa76.json b/web/app/languages/plugins/woocommerce-en_GB-507f1208a3dc15ee33256209b516fa76.json index 3bf76728..2def0481 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-507f1208a3dc15ee33256209b516fa76.json +++ b/web/app/languages/plugins/woocommerce-en_GB-507f1208a3dc15ee33256209b516fa76.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Display a grid of your top rated products.":["Display a grid of your top rated products."],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Filter by Product Category":["Filter by Product Category"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-top-rated.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Display a grid of your top rated products.":["Display a grid of your top rated products."],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Filter by Product Category":["Filter by Product Category"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-top-rated.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-530b01a91640e4b045d957344718894e.json b/web/app/languages/plugins/woocommerce-en_GB-530b01a91640e4b045d957344718894e.json index 2490e09a..1549ec2d 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-530b01a91640e4b045d957344718894e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-530b01a91640e4b045d957344718894e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$d item in cart":["%1$d item in basket","%1$d items in basket"],"%1$d item in cart, total price of %2$s":["%1$d item in basket, total price of %2$s","%1$d items in basket, total price of %2$s"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-component-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$d item in cart":["%1$d item in basket","%1$d items in basket"],"%1$d item in cart, total price of %2$s":["%1$d item in basket, total price of %2$s","%1$d items in basket, total price of %2$s"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-component-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-557ca5826389cc89ab14b1bb3893402d.json b/web/app/languages/plugins/woocommerce-en_GB-557ca5826389cc89ab14b1bb3893402d.json index 3ffa88e1..1c36abc5 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-557ca5826389cc89ab14b1bb3893402d.json +++ b/web/app/languages/plugins/woocommerce-en_GB-557ca5826389cc89ab14b1bb3893402d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Connect your store to WordPress.com to enable WooCommerce Shipping":["Connect your store to WordPress.com to enable WooCommerce Shipping"],"Enable shipping label printing and discounted rates":["Enable shipping label printing and discounted rates"],"Access discounted shipping rates with DHL and USPS.":["Access discounted shipping rates with DHL and USPS."],"Discounted rates":["Discounted rates"],"Pick up an order, then just pay, print, package and post.":["Pick up an order, then just pay, print, package and post."],"Print at home":["Print at home"],"No need to wonder where that stampbook went.":["No need to wonder where that stampbook went."],"Buy postage when you need it":["Buy postage when you need it"],"Connect your store":["Connect your store"],"The address from which your business operates":["The address from which your business operates"],"Set store location":["Set store location"],"Complete task":["Complete task"],"Install & enable":["Install & enable"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6290.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Connect your store to WordPress.com to enable WooCommerce Shipping":["Connect your store to WordPress.com to enable WooCommerce Shipping"],"Enable shipping label printing and discounted rates":["Enable shipping label printing and discounted rates"],"Access discounted shipping rates with DHL and USPS.":["Access discounted shipping rates with DHL and USPS."],"Discounted rates":["Discounted rates"],"Pick up an order, then just pay, print, package and post.":["Pick up an order, then just pay, print, package and post."],"Print at home":["Print at home"],"No need to wonder where that stampbook went.":["No need to wonder where that stampbook went."],"Buy postage when you need it":["Buy postage when you need it"],"Connect your store":["Connect your store"],"The address from which your business operates":["The address from which your business operates"],"Set store location":["Set store location"],"Complete task":["Complete task"],"Install & enable":["Install & enable"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6290.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-5598a099319118a77b5e42860bea0251.json b/web/app/languages/plugins/woocommerce-en_GB-5598a099319118a77b5e42860bea0251.json index 79092407..de5440c1 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-5598a099319118a77b5e42860bea0251.json +++ b/web/app/languages/plugins/woocommerce-en_GB-5598a099319118a77b5e42860bea0251.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-56ac046978a89f98fa741a4dc37373f4.json b/web/app/languages/plugins/woocommerce-en_GB-56ac046978a89f98fa741a4dc37373f4.json index b7668a70..db04678f 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-56ac046978a89f98fa741a4dc37373f4.json +++ b/web/app/languages/plugins/woocommerce-en_GB-56ac046978a89f98fa741a4dc37373f4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"Total spend":["Total spend"],"Date registered":["Date registered"],"customer":["customer","customers"],"Search by customer name":["Search by customer name"],"Remove last active filter":["Remove last active filter"],"Last active":["Last active"],"date\u0004Between":["Between"],"date\u0004After":["After"],"date\u0004Before":["Before"],"Select registered date":["Select registered date"],"Remove registered filter":["Remove registered filter"],"Registered":["Registered"],"average order value of customer\u0004Between":["Between"],"average order value of customer\u0004More Than":["More Than"],"Select a last active filter match":["Select a last active filter match"],"Select a registered filter match":["Select a registered filter match"],"average order value of customer\u0004Less Than":["Less than"],"Select an average order value filter match":["Select an average order value filter match"],"Remove average order value filter":["Remove average order value filter"],"total spend by customer\u0004Between":["Between"],"total spend by customer\u0004More Than":["More than"],"total spend by customer\u0004Less Than":["Less than"],"Select a total spend filter match":["Select a total spend filter match"],"Remove customer email filter":["Remove customer email filter"],"Search customer email":["Search customer email"],"countries\u0004Excludes":["Excludes"],"countries\u0004Includes":["Includes"],"Select country \/ region":["Select country \/ region"],"Select a country \/ region filter match":["Select a country \/ region filter match"],"Remove country \/ region filter":["Remove country \/ region filter"],"customer names\u0004Excludes":["Excludes"],"customer names\u0004Includes":["Includes"],"Select customer name":["Select customer name"],"Select a customer name filter match":["Select a customer name filter match"],"Remove customer name filter":["Remove customer name filter"],"Select customer username":["Select customer username"],"Select a customer username filter match":["Select a customer username filter match"],"Remove customer username filter":["Remove customer username filter"],"Search customer username":["Search customer username"],"customer usernames\u0004Excludes":["Excludes"],"customer usernames\u0004Includes":["Includes"],"Type to search for a customer":["Type to search for a customer"],"Single Customer":["Single Customer"],"All Customers":["All Customers"],"customer emails\u0004Includes":["Includes"],"Select customer email":["Select customer email"],"Select a customer email filter match":["Select a customer email filter match"],"Select an order count filter match":["Select an order count filter match"],"Remove order filter":["Remove order filter"],"customer emails\u0004Excludes":["Excludes"],"Remove total spend filter":["Remove total spend filter"],"number of orders\u0004Between":["Between"],"number of orders\u0004More Than":["More Than"],"number of orders\u0004Less Than":["Less Than"],"Average lifetime spend":["Average lifetime spend"],"Average order":["Average order","Average orders"],"Average order value":["Average order value"],"No. of Orders":["No. of Orders"],"AOV":["AOV"],"Total Spend":["Total Spend"],"Country \/ Region":["Country\/Region"],"TAX":["TAX"],"Postal code":["Postcode"],"Any %s":["Any %s"],"Region":["Region"],"Show":["Show"],"Username":["Username"],"Guest":["Guest"],"Search":["Search"],"City":["City"],"Email":["Email"],"Orders":["Orders"],"Customers":["Customers"],"Name":["Name"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-customers.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"Total spend":["Total spend"],"Date registered":["Date registered"],"customer":["customer","customers"],"Search by customer name":["Search by customer name"],"Remove last active filter":["Remove last active filter"],"Last active":["Last active"],"date\u0004Between":["Between"],"date\u0004After":["After"],"date\u0004Before":["Before"],"Select registered date":["Select registered date"],"Remove registered filter":["Remove registered filter"],"Registered":["Registered"],"average order value of customer\u0004Between":["Between"],"average order value of customer\u0004More Than":["More Than"],"Select a last active filter match":["Select a last active filter match"],"Select a registered filter match":["Select a registered filter match"],"average order value of customer\u0004Less Than":["Less than"],"Select an average order value filter match":["Select an average order value filter match"],"Remove average order value filter":["Remove average order value filter"],"total spend by customer\u0004Between":["Between"],"total spend by customer\u0004More Than":["More than"],"total spend by customer\u0004Less Than":["Less than"],"Select a total spend filter match":["Select a total spend filter match"],"Remove customer email filter":["Remove customer email filter"],"Search customer email":["Search customer email"],"countries\u0004Excludes":["Excludes"],"countries\u0004Includes":["Includes"],"Select country \/ region":["Select country \/ region"],"Select a country \/ region filter match":["Select a country \/ region filter match"],"Remove country \/ region filter":["Remove country \/ region filter"],"customer names\u0004Excludes":["Excludes"],"customer names\u0004Includes":["Includes"],"Select customer name":["Select customer name"],"Select a customer name filter match":["Select a customer name filter match"],"Remove customer name filter":["Remove customer name filter"],"Select customer username":["Select customer username"],"Select a customer username filter match":["Select a customer username filter match"],"Remove customer username filter":["Remove customer username filter"],"Search customer username":["Search customer username"],"customer usernames\u0004Excludes":["Excludes"],"customer usernames\u0004Includes":["Includes"],"Type to search for a customer":["Type to search for a customer"],"Single Customer":["Single Customer"],"All Customers":["All Customers"],"customer emails\u0004Includes":["Includes"],"Select customer email":["Select customer email"],"Select a customer email filter match":["Select a customer email filter match"],"Select an order count filter match":["Select an order count filter match"],"Remove order filter":["Remove order filter"],"customer emails\u0004Excludes":["Excludes"],"Remove total spend filter":["Remove total spend filter"],"number of orders\u0004Between":["Between"],"number of orders\u0004More Than":["More Than"],"number of orders\u0004Less Than":["Less Than"],"Average lifetime spend":["Average lifetime spend"],"Average order":["Average order","Average orders"],"Average order value":["Average order value"],"No. of Orders":["No. of Orders"],"AOV":["AOV"],"Total Spend":["Total Spend"],"Country \/ Region":["Country\/Region"],"TAX":["TAX"],"Postal code":["Postcode"],"Any %s":["Any %s"],"Region":["Region"],"Show":["Show"],"Username":["Username"],"Guest":["Guest"],"Search":["Search"],"City":["City"],"Email":["Email"],"Orders":["Orders"],"Customers":["Customers"],"Name":["Name"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-customers.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-5771b62744bce3727cc7578423dbffc6.json b/web/app/languages/plugins/woocommerce-en_GB-5771b62744bce3727cc7578423dbffc6.json index e52e10cb..73a8ad87 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-5771b62744bce3727cc7578423dbffc6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-5771b62744bce3727cc7578423dbffc6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Product on sale":["Product on sale"],"Sale":["Sale"]}},"comment":{"reference":"assets\/client\/blocks\/product-sale-badge.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Product on sale":["Product on sale"],"Sale":["Sale"]}},"comment":{"reference":"assets\/client\/blocks\/product-sale-badge.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-58eb230d6d2fe31c63044647ca8823cb.json b/web/app/languages/plugins/woocommerce-en_GB-58eb230d6d2fe31c63044647ca8823cb.json index fdab36d4..40312409 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-58eb230d6d2fe31c63044647ca8823cb.json +++ b/web/app/languages/plugins/woocommerce-en_GB-58eb230d6d2fe31c63044647ca8823cb.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-5914770a01730d9ad61a73952929876b.json b/web/app/languages/plugins/woocommerce-en_GB-5914770a01730d9ad61a73952929876b.json index 1b473333..12a1ade6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-5914770a01730d9ad61a73952929876b.json +++ b/web/app/languages/plugins/woocommerce-en_GB-5914770a01730d9ad61a73952929876b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View my cart":["View my basket"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/cart-button-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View my cart":["View my basket"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/cart-button-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-59fbd21ed13d458e419a381aae56baf7.json b/web/app/languages/plugins/woocommerce-en_GB-59fbd21ed13d458e419a381aae56baf7.json index ee671571..a3431bdb 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-59fbd21ed13d458e419a381aae56baf7.json +++ b/web/app/languages/plugins/woocommerce-en_GB-59fbd21ed13d458e419a381aae56baf7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Check at least two items below to compare":["Tick at least two items below to compare"],"There was a problem exporting your %s Report. Please try again.":["There was a problem exporting your %s Report. Please try again."],"Your %s Report will be emailed to you.":["Your %s Report will be emailed to you."],"Reload":["Reload"],"There was an error getting your stats. Please try again.":["There was an error getting your stats. Please try again."],"Search by item name":["Search by item name"],"Compare":["Compare"],"Select All":["Select All"],"Download":["Download"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/9941.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Check at least two items below to compare":["Tick at least two items below to compare"],"There was a problem exporting your %s Report. Please try again.":["There was a problem exporting your %s Report. Please try again."],"Your %s Report will be emailed to you.":["Your %s Report will be emailed to you."],"Search by item name":["Search by item name"],"Compare":["Compare"],"Select All":["Select All"],"Download":["Download"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/9941.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-5a46c0880461d4dc5eb91cd66679410c.json b/web/app/languages/plugins/woocommerce-en_GB-5a46c0880461d4dc5eb91cd66679410c.json index 791aaf24..f14886a6 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-5a46c0880461d4dc5eb91cd66679410c.json +++ b/web/app/languages/plugins/woocommerce-en_GB-5a46c0880461d4dc5eb91cd66679410c.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Order details":["Order details"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-totals-wrapper.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Order details":["Order details"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-totals-wrapper.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-5d01323fef6997040e0487ea97c888de.json b/web/app/languages/plugins/woocommerce-en_GB-5d01323fef6997040e0487ea97c888de.json index 15f4ef20..e5126028 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-5d01323fef6997040e0487ea97c888de.json +++ b/web/app/languages/plugins/woocommerce-en_GB-5d01323fef6997040e0487ea97c888de.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Link to %s":["Link to %s"],"Product on sale":["Product on sale"],"Sale":["Sale"]}},"comment":{"reference":"assets\/client\/blocks\/product-image.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Link to %s":["Link to %s"],"Product on sale":["Product on sale"],"Sale":["Sale"]}},"comment":{"reference":"assets\/client\/blocks\/product-image.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-5d44b68974722f8f33f1e09db8c8c52a.json b/web/app/languages/plugins/woocommerce-en_GB-5d44b68974722f8f33f1e09db8c8c52a.json index fc25ac82..f47fccc9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-5d44b68974722f8f33f1e09db8c8c52a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-5d44b68974722f8f33f1e09db8c8c52a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Filter by rating":["Filter by rating"],"Enable customers to filter the product grid by stock status.":["Enable customers to filter the product grid by stock status."],"Enable customers to filter the product grid by selecting one or more attributes, such as color.":["Enable customers to filter the product grid by selecting one or more attributes, such as colour."],"Display the currently active filters.":["Display the currently active product filters."],"Filter by Attribute":["Filter by Attribute"],"Filter by Price":["Filter by Price"],"Filter by attribute":["Filter by attribute"],"Filter by stock status":["Filter by stock status"],"Filter by price":["Filter by price"],"Active filters":["Active filters"]}},"comment":{"reference":"assets\/client\/blocks\/filter-wrapper.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Filter by rating":["Filter by rating"],"Enable customers to filter the product grid by stock status.":["Enable customers to filter the product grid by stock status."],"Enable customers to filter the product grid by selecting one or more attributes, such as color.":["Enable customers to filter the product grid by selecting one or more attributes, such as colour."],"Display the currently active filters.":["Display the currently active product filters."],"Filter by Attribute":["Filter by Attribute"],"Filter by Price":["Filter by Price"],"Filter by attribute":["Filter by attribute"],"Filter by stock status":["Filter by stock status"],"Filter by price":["Filter by price"],"Active filters":["Active filters"]}},"comment":{"reference":"assets\/client\/blocks\/filter-wrapper.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-61879217cb86dca73d402b4a6834bf23.json b/web/app/languages/plugins/woocommerce-en_GB-61879217cb86dca73d402b4a6834bf23.json index f57f6c75..9f450aac 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-61879217cb86dca73d402b4a6834bf23.json +++ b/web/app/languages/plugins/woocommerce-en_GB-61879217cb86dca73d402b4a6834bf23.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View my cart":["View my basket"],"Go to checkout":["Go to checkout"],"Shipping, taxes, and discounts calculated at checkout.":["Shipping, taxes, and discounts calculated at checkout."],"Subtotal":["Subtotal"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/footer-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View my cart":["View my basket"],"Go to checkout":["Go to checkout"],"Shipping, taxes, and discounts calculated at checkout.":["Shipping, taxes, and discounts calculated at checkout."],"Subtotal":["Subtotal"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/footer-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-61ff17b10b4ff22e2725e50533ffc3a5.json b/web/app/languages/plugins/woocommerce-en_GB-61ff17b10b4ff22e2725e50533ffc3a5.json index 0861562d..7cd95425 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-61ff17b10b4ff22e2725e50533ffc3a5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-61ff17b10b4ff22e2725e50533ffc3a5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Low stock":["Low stock"],"Indication of a low quantity\u0004Low":["Low"],"Advanced Filters":["Advanced Filters"],"Product \/ Variation":["Product \/ Variation"],"On backorder":["On backorder"],"All Products":["All Products"],"Filter by":["Filter by"],"All products":["All products"],"Show":["Show"],"N\/A":["N\/A"],"SKU":["SKU"],"Stock":["Stock"],"Status":["Status"],"Product":["Product"],"In stock":["In stock"],"Out of stock":["Out of stock"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-stock.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Low stock":["Low stock"],"Indication of a low quantity\u0004Low":["Low"],"Advanced Filters":["Advanced Filters"],"Product \/ Variation":["Product \/ Variation"],"On backorder":["On backorder"],"All Products":["All Products"],"Filter by":["Filter by"],"All products":["All products"],"Show":["Show"],"N\/A":["N\/A"],"SKU":["SKU"],"Stock":["Stock"],"Status":["Status"],"Product":["Product"],"In stock":["In stock"],"Out of stock":["Out of stock"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-stock.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-62d404bf6e393bbb546940dd814b9f26.json b/web/app/languages/plugins/woocommerce-en_GB-62d404bf6e393bbb546940dd814b9f26.json index e3ff29b8..99bb0bc1 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-62d404bf6e393bbb546940dd814b9f26.json +++ b/web/app/languages/plugins/woocommerce-en_GB-62d404bf6e393bbb546940dd814b9f26.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"server caches":["server caches"],"Congratulations! Your store will launch soon":["Congratulations! Your store will launch soon"],"We appreciate your feedback!":["We appreciate your feedback!"],"Send":["Send"],"Site Icon":["Site Icon"],"Back":["Back"],"Copy link":["Copy link"],"Copied!":["Copied!"],"Close":["Close"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/launch-store.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"server caches":["server caches"],"Congratulations! Your store will launch soon":["Congratulations! Your store will launch soon"],"We appreciate your feedback!":["We appreciate your feedback!"],"Send":["Send"],"Site Icon":["Site Icon"],"Back":["Back"],"Copy link":["Copy link"],"Copied!":["Copied!"],"Close":["Close"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/launch-store.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-638616813127815eec836b38d70517f5.json b/web/app/languages/plugins/woocommerce-en_GB-638616813127815eec836b38d70517f5.json index 1d33dc07..1bf3f343 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-638616813127815eec836b38d70517f5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-638616813127815eec836b38d70517f5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Additional Information":["Additional Information"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-additional-fields-wrapper.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Additional Information":["Additional Information"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-additional-fields-wrapper.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-641fd4df4e377ec54b0d9354f920fbb3.json b/web/app/languages/plugins/woocommerce-en_GB-641fd4df4e377ec54b0d9354f920fbb3.json index 2487d79f..940a0264 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-641fd4df4e377ec54b0d9354f920fbb3.json +++ b/web/app/languages/plugins/woocommerce-en_GB-641fd4df4e377ec54b0d9354f920fbb3.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"field":["field"],"+ Add %s":["+ Add %s"],"Please select a valid option":["Please select a valid option"],"Calculate shipping for your location":["Calculate shipping for your location"],"Remove %s from cart":["Remove %s from basket"],"Polo":["Polo"],"We are experiencing difficulties with this payment method. Please contact us for assistance.":["We are experiencing difficulties with this payment method. Please contact us for assistance."],"No shipping options available":["No shipping options available"],"%s has been removed from your cart.":["%s has been removed from your basket."],"Sorry, this order requires a shipping option.":["Sorry, this order requires a shipping option."],"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Total price for %1$d %2$s item: %3$s":["Total price for %1$d %2$s item: %3$s","Total price for %1$d %2$s items: %3$s"],"%d item":["%d item","%d items"],"Express Checkout":["Express Checkout"],"No registered Payment Methods":["No registered Payment Methods"],"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"The type returned by checkout filters must be the same as the type they receive. The function received %1$s but returned %2$s.":["The type returned by checkout filters must be the same as the type they receive. The function received %1$s but returned %2$s."],"%s (optional)":["%s (optional)"],"Returned value must include %1$s, you passed \"%2$s\"":["Returned value must include %1$s, you passed \"%2$s\""],"Other available payment methods":["Other available payment methods"],"Use another payment method.":["Use another payment method."],"%1$s (%2$d unit)":["%1$s (%2$d unit)","%1$s (%2$d units)"],"Remove \"%s\"":["Remove \"%s\""],"Shipping to %s":["Shipping to %s"],"Remove item":["Remove item"],"Details":["Details"],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Remove coupon \"%s\"":["Remove coupon \"%s\""],"Quantity increased to %s.":["Quantity increased to %s."],"Quantity reduced to %s.":["Quantity reduced to %s."],"Quantity of %s in your cart.":["Quantity of %s in your basket."],"Loading shipping rates\u2026":["Loading shipping rates\u2026"],"%d shipping option was found":["%d shipping option was found","%d shipping options were found"],"Shipping option searched for %d package.":["Shipping option searched for %d package.","Shipping options searched for %d packages."],"%d shipping option was found.":["%d shipping option was found.","%d shipping options were found."],"Removing coupon\u2026":["Removing coupon\u2026"],"Calculated during checkout":["Calculated during checkout"],"Calculate":["Calculate"],"Choose a shipping option":["Choose a shipping option"],"There was an error with this payment method. Please verify it's configured correctly.":["There was an error with this payment method. Please verify it's configured correctly."],"Order summary":["Order summary"],"%1$s ending in %2$s (expires %3$s)":["%1$s ending in %2$s (expires %3$s)"],"There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.":["There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order."],"Save payment information to my account for future purchases.":["Save payment information to my account for future purchases."],"Saved token for %s":["Saved token for %s"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Return to Cart":["Return to Basket"],"%d left in stock":["%d left in stock"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"],"Including in taxes":["Including in taxes"],"Enter code":["Enter code"],"Applying coupon\u2026":["Applying coupon\u2026"],"Taxes:":["Taxes:"],"Coupon code \"%s\" has been removed from your cart.":["Coupon code \"%s\" has been removed from your basket."],"Coupon code \"%s\" has been applied to your cart.":["Coupon code \"%s\" has been applied to your basket."],"Loading\u2026":["Loading\u2026"],"Or continue below":["Or continue below"],"There was a problem with your shipping option.":["There was a problem with your shipping option."],"There was a problem with your payment option.":["There was a problem with your payment option."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"Sales tax":["Sales tax"],"Dismiss this notice":["Dismiss this notice"],"Fees:":["Fees:"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Show less":["Show less"],"Show less options":["Show less options"],"Show %s more":["Show %s more","Show %s more"],"Show %s more option":["Show %s more option","Show %s more options"],"Or":["Or"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Read less":["Read less"],"Change address":["Change address"],"Please enter a valid email address":["Please enter a valid email address"],"%1$s ending in %2$s":["%1$s ending in %2$s"],"Coupon: %s":["Coupon: %s"],"Free shipping":["Free shipping"],"Error:":["Error:"],"Shipping options":["Shipping options"],"Subtotal":["Subtotal"],"Free":["Free"],"Discount":["Discount"],"Close":["Close"],"Apply":["Apply"],"Save %s":["Save %s"],"Shipping":["Shipping"],"Total":["Total"],"Taxes":["Taxes"],"Remove":["Remove"],"Update":["Update"],"Coupons":["Coupons"],"Product":["Product"],"Fee":["Fee"],"Subtotal:":["Subtotal:"],"Discount:":["Discount:"],"Shipping:":["Shipping:"],"Read more":["Read more"],"Available on backorder":["Available on back-order"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/wc-cart-checkout-base-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"field":["field"],"Please select a %s":["Please select a %s"],"+ Add %s":["+ Add %s"],"Please select a valid option":["Please select a valid option"],"Calculate shipping for your location":["Calculate shipping for your location"],"Remove %s from cart":["Remove %s from basket"],"Polo":["Polo"],"We are experiencing difficulties with this payment method. Please contact us for assistance.":["We are experiencing difficulties with this payment method. Please contact us for assistance."],"No shipping options available":["No shipping options available"],"%s has been removed from your cart.":["%s has been removed from your basket."],"Sorry, this order requires a shipping option.":["Sorry, this order requires a shipping option."],"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Total price for %1$d %2$s item: %3$s":["Total price for %1$d %2$s item: %3$s","Total price for %1$d %2$s items: %3$s"],"%d item":["%d item","%d items"],"Express Checkout":["Express Checkout"],"No registered Payment Methods":["No registered Payment Methods"],"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"The type returned by checkout filters must be the same as the type they receive. The function received %1$s but returned %2$s.":["The type returned by checkout filters must be the same as the type they receive. The function received %1$s but returned %2$s."],"%s (optional)":["%s (optional)"],"Returned value must include %1$s, you passed \"%2$s\"":["Returned value must include %1$s, you passed \"%2$s\""],"Other available payment methods":["Other available payment methods"],"Use another payment method.":["Use another payment method."],"%1$s (%2$d unit)":["%1$s (%2$d unit)","%1$s (%2$d units)"],"Remove \"%s\"":["Remove \"%s\""],"Shipping to %s":["Shipping to %s"],"Remove item":["Remove item"],"Details":["Details"],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Remove coupon \"%s\"":["Remove coupon \"%s\""],"Quantity increased to %s.":["Quantity increased to %s."],"Quantity reduced to %s.":["Quantity reduced to %s."],"Quantity of %s in your cart.":["Quantity of %s in your basket."],"Loading shipping rates\u2026":["Loading shipping rates\u2026"],"%d shipping option was found":["%d shipping option was found","%d shipping options were found"],"Shipping option searched for %d package.":["Shipping option searched for %d package.","Shipping options searched for %d packages."],"%d shipping option was found.":["%d shipping option was found.","%d shipping options were found."],"Removing coupon\u2026":["Removing coupon\u2026"],"Calculated during checkout":["Calculated during checkout"],"Calculate":["Calculate"],"Choose a shipping option":["Choose a shipping option"],"There was an error with this payment method. Please verify it's configured correctly.":["There was an error with this payment method. Please verify it's configured correctly."],"Order summary":["Order summary"],"%1$s ending in %2$s (expires %3$s)":["%1$s ending in %2$s (expires %3$s)"],"There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.":["There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order."],"Save payment information to my account for future purchases.":["Save payment information to my account for future purchases."],"Saved token for %s":["Saved token for %s"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Return to Cart":["Return to Basket"],"%d left in stock":["%d left in stock"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"],"Including in taxes":["Including in taxes"],"Enter code":["Enter code"],"Applying coupon\u2026":["Applying coupon\u2026"],"Taxes:":["Taxes:"],"Coupon code \"%s\" has been removed from your cart.":["Coupon code \"%s\" has been removed from your basket."],"Coupon code \"%s\" has been applied to your cart.":["Coupon code \"%s\" has been applied to your basket."],"Loading\u2026":["Loading\u2026"],"Or continue below":["Or continue below"],"There was a problem with your shipping option.":["There was a problem with your shipping option."],"There was a problem with your payment option.":["There was a problem with your payment option."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"Sales tax":["Sales tax"],"Dismiss this notice":["Dismiss this notice"],"Fees:":["Fees:"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Show less":["Show less"],"Show less options":["Show less options"],"Show %s more":["Show %s more","Show %s more"],"Show %s more option":["Show %s more option","Show %s more options"],"Or":["Or"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Read less":["Read less"],"Change address":["Change address"],"Please enter a valid email address":["Please enter a valid email address"],"%1$s ending in %2$s":["%1$s ending in %2$s"],"Coupon: %s":["Coupon: %s"],"Free shipping":["Free shipping"],"Error:":["Error:"],"Shipping options":["Shipping options"],"Subtotal":["Subtotal"],"Free":["Free"],"Discount":["Discount"],"Close":["Close"],"Apply":["Apply"],"Save %s":["Save %s"],"Shipping":["Shipping"],"Total":["Total"],"Taxes":["Taxes"],"Remove":["Remove"],"Update":["Update"],"Coupons":["Coupons"],"Product":["Product"],"Fee":["Fee"],"Subtotal:":["Subtotal:"],"Discount:":["Discount:"],"Shipping:":["Shipping:"],"Read more":["Read more"],"Available on backorder":["Available on back-order"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/wc-cart-checkout-base-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-64a77239dfb2b1729c26a1a7c25245fc.json b/web/app/languages/plugins/woocommerce-en_GB-64a77239dfb2b1729c26a1a7c25245fc.json index f5a0594e..80d277d9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-64a77239dfb2b1729c26a1a7c25245fc.json +++ b/web/app/languages/plugins/woocommerce-en_GB-64a77239dfb2b1729c26a1a7c25245fc.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Please create a stronger password":["Please create a stronger password"],"Please enter a valid password":["Please enter a valid password"],"Create a password":["Create a password"],"Medium":["Medium"],"Step description text.":["Step description text."],"Step":["Step"],"We'll use this email to send you details and updates about your order.":["We'll use this email to send you details and updates about your order."],"Contact information":["Contact information"],"Log in":["Log in"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Please create a stronger password":["Please create a stronger password"],"Please enter a valid password":["Please enter a valid password"],"Create a password":["Create a password"],"Password strength":["Password strength"],"Very strong":["Very strong"],"Strong":["Strong"],"Weak":["Weak"],"Too weak":["Too weak"],"Medium":["Medium"],"Step description text.":["Step description text."],"Step":["Step"],"We'll use this email to send you details and updates about your order.":["We'll use this email to send you details and updates about your order."],"Contact information":["Contact information"],"Log in":["Log in"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-64f0d663cfe62dfbb0c8052400e9d423.json b/web/app/languages/plugins/woocommerce-en_GB-64f0d663cfe62dfbb0c8052400e9d423.json index 4c03a74a..cce309f1 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-64f0d663cfe62dfbb0c8052400e9d423.json +++ b/web/app/languages/plugins/woocommerce-en_GB-64f0d663cfe62dfbb0c8052400e9d423.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Viewing products":["Viewing products"],"Product List":["Product List"],"Change Cart Item Quantity":["Change Basket Item Quantity"],"Remove Cart Item":["Remove Basket Item"],"Add to Cart":["Add to Basket"],"Payment Method":["Payment Method"],"Shipping Method":["Shipping Method"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-google-analytics.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Viewing products":["Viewing products"],"Product List":["Product List"],"Change Cart Item Quantity":["Change Basket Item Quantity"],"Remove Cart Item":["Remove Basket Item"],"Add to Cart":["Add to Basket"],"Payment Method":["Payment Method"],"Shipping Method":["Shipping Method"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-google-analytics.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-65c453b99754c5ecb86a000f47491ca5.json b/web/app/languages/plugins/woocommerce-en_GB-65c453b99754c5ecb86a000f47491ca5.json index 5f8acbe1..b8784436 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-65c453b99754c5ecb86a000f47491ca5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-65c453b99754c5ecb86a000f47491ca5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"%d taxes":["%d taxes"],"shipping tax":["shipping tax"],"order tax":["order tax"],"total tax":["total tax"],"tax code":["tax code","tax codes"],"order":["order","orders"],"Comparison":["Comparison"],"Compare Tax Codes":["Compare Tax Codes"],"Search for tax codes to compare":["Search for tax codes to compare"],"All taxes":["All taxes"],"Order tax":["Order tax"],"Shipping tax":["Shipping tax"],"Tax code":["Tax code"],"Compare":["Compare"],"TAX":["TAX"],"Check at least two tax codes below to compare":["Tick at least two items below to compare"],"Any %s":["Any %s"],"Show":["Show"],"Rate":["Rate"],"Total tax":["Total tax"],"Orders":["Orders"],"Taxes":["Taxes"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-taxes.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"%d taxes":["%d taxes"],"shipping tax":["shipping tax"],"order tax":["order tax"],"total tax":["total tax"],"tax code":["tax code","tax codes"],"order":["order","orders"],"Comparison":["Comparison"],"Compare Tax Codes":["Compare Tax Codes"],"Search for tax codes to compare":["Search for tax codes to compare"],"All taxes":["All taxes"],"Order tax":["Order tax"],"Shipping tax":["Shipping tax"],"Tax code":["Tax code"],"Compare":["Compare"],"TAX":["TAX"],"Check at least two tax codes below to compare":["Tick at least two items below to compare"],"Any %s":["Any %s"],"Show":["Show"],"Rate":["Rate"],"Total tax":["Total tax"],"Orders":["Orders"],"Taxes":["Taxes"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-taxes.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-66eb0f8993f9a1f59f27ad5b75ea6077.json b/web/app/languages/plugins/woocommerce-en_GB-66eb0f8993f9a1f59f27ad5b75ea6077.json index 3814e921..ff62836d 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-66eb0f8993f9a1f59f27ad5b75ea6077.json +++ b/web/app/languages/plugins/woocommerce-en_GB-66eb0f8993f9a1f59f27ad5b75ea6077.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Select ratings":["Select ratings"],"Select a rating":["Select a rating"],"Display product count":["Display product count"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"Rated %f out of 5":["Rated %f out of 5"],"List":["List"],"Dropdown":["Dropdown"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-filter-rating.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Select ratings":["Select ratings"],"Select a rating":["Select a rating"],"Display product count":["Display product count"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"Rated %f out of 5":["Rated %f out of 5"],"List":["List"],"Dropdown":["Dropdown"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-filter-rating.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-6b163e771738c554beb5fdb549b507c6.json b/web/app/languages/plugins/woocommerce-en_GB-6b163e771738c554beb5fdb549b507c6.json index 0971f8d2..522b0bf9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-6b163e771738c554beb5fdb549b507c6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-6b163e771738c554beb5fdb549b507c6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Continue setting up your store":["Continue setting up your store"],"Sample products added":["Sample products added"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/onboarding-load-sample-products-notice.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Continue setting up your store":["Continue setting up your store"],"Sample products added":["Sample products added"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/onboarding-load-sample-products-notice.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-6b252174a3e91d81c283352772a134e4.json b/web/app/languages/plugins/woocommerce-en_GB-6b252174a3e91d81c283352772a134e4.json index 63ae6fb9..ce65311e 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-6b252174a3e91d81c283352772a134e4.json +++ b/web/app/languages/plugins/woocommerce-en_GB-6b252174a3e91d81c283352772a134e4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Cash on delivery":["Cash on delivery"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-cod.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Cash on delivery":["Cash on delivery"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-cod.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-6b29275d5b37670972121098dd8b21a0.json b/web/app/languages/plugins/woocommerce-en_GB-6b29275d5b37670972121098dd8b21a0.json index 3e54dba5..726a6ddf 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-6b29275d5b37670972121098dd8b21a0.json +++ b/web/app/languages/plugins/woocommerce-en_GB-6b29275d5b37670972121098dd8b21a0.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Button":["Button"],"Icon only":["Icon only"],"Icon Size":["Icon size"],"Label only":["Label only"],"Label and icon":["Label and icon"],"Link":["Link"],"Style":["Style"],"Close":["Close"]}},"comment":{"reference":"assets\/client\/blocks\/product-filters-overlay-navigation.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Overlay Navigation (Experimental)":["Overlay navigation (experimental)"],"Button":["Button"],"Icon only":["Icon only"],"Icon Size":["Icon size"],"Label only":["Label only"],"Label and icon":["Label and icon"],"Link":["Link"],"Style":["Style"],"Filters":["Filters"],"Close":["Close"]}},"comment":{"reference":"assets\/client\/blocks\/product-filters-overlay-navigation.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-6bd75bb58189aed7804a8e3dbb6eb0e5.json b/web/app/languages/plugins/woocommerce-en_GB-6bd75bb58189aed7804a8e3dbb6eb0e5.json index 43554129..ac25858b 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-6bd75bb58189aed7804a8e3dbb6eb0e5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-6bd75bb58189aed7804a8e3dbb6eb0e5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add an image which displays the unique characteristics of this variation.":["Add an image which displays the unique characteristics of this variation."],"For best results, offer a variety of product images, like close-up details, lifestyle scenes, and color variations.":["For best results, offer a variety of product images, like close-up details, lifestyle scenes, and colour variations."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/images\/place-holder\/place-holder.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add an image which displays the unique characteristics of this variation.":["Add an image which displays the unique characteristics of this variation."],"For best results, offer a variety of product images, like close-up details, lifestyle scenes, and color variations.":["For best results, offer a variety of product images, like close-up details, lifestyle scenes, and colour variations."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/images\/place-holder\/place-holder.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-6de19c0ec6826c15dc55b28a1722c1b2.json b/web/app/languages/plugins/woocommerce-en_GB-6de19c0ec6826c15dc55b28a1722c1b2.json index 37d3f5af..eb7e7994 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-6de19c0ec6826c15dc55b28a1722c1b2.json +++ b/web/app/languages/plugins/woocommerce-en_GB-6de19c0ec6826c15dc55b28a1722c1b2.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Walmart":["Walmart"],"Wish":["Wish"],"Tell us where you run your business to help us configure currency, shipping, taxes, and more in a fully automated way.":["Tell us where you run your business to help us configure currency, shipping, taxes, and more in a fully automated way."],"There was a problem saving free features state":["There was a problem saving free features state"],"Discard":["Discard"],"You're about to go to a different step. Do you want to save the changes you've made here so far?":["You're about to go to a different step. Do you want to save the changes you've made here so far?"],"By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.":["By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.","By installing %s plugins for free you agree to our {{link}}Terms of Service{{\/link}}."],"Please enter your email address to subscribe":["Please enter your email address to subscribe"],"+250":["+250"],"< 10":["< 10"],"How many employees do you have?":["How many employees do you have?"],"It's just me":["It's just me"],"Get tips, product updates and inspiration straight to your mailbox.":["Get tips, product updates and inspiration straight to your mailbox."],"Powered by Mailchimp":["Powered by Mailchimp"],"I'd rather not say":["I'd rather not say"],"Free features":["Free features"],"Business details":["Business details"],"We recommend enhancing your store with these free extensions":["We recommend enhancing your store with these free extensions"],"Included business features":["Included business features"],"The following plugin will be installed for free: %1$s. %2$s":["The following plugin will be installed for free: %1$s. %2$s","The following plugins will be installed for free: %1$s. %2$s"],"Add recommended business features to my site":["Add recommended business features to my site."],"No commitment required - you can remove them at any time.":["No commitment required - you can remove them at any time."],"Billing is annual. All purchases are covered by our 30 day money back guarantee and include access to support and updates. Extensions will be added to a cart for you to purchase later.":["Billing is annual. All purchases are covered by our 30 day money back guarantee and include access to support and updates. Extensions will be added to a basket for you to purchase later."],"This product type requires a paid extension.\nWe'll add this to a cart so that\nyou can purchase and install it later.":["This product type requires a paid extension.\nWe'll add this to a basket so that\nyou can purchase and install it later."],"Skip setup store details":["Skip setup store details"],"Learn more about recommended free business features":["Learn more about recommended free business features"],"$%f per month":["$%f per month"],"Display monthly prices":["Display monthly prices"],"Manual setup is only recommended for\n experienced WooCommerce users or developers.":["Manual setup is only recommended for\n experienced WooCommerce users or developers."],"There was a problem skipping the setup wizard":["There was a problem skipping the setup wizard"],"User accounts are required to use these features.":["User accounts are required to use these features."],"What is the platform name?":["What is the platform name?"],"Etsy":["Etsy"],"eBay":["eBay"],"Amazon":["Amazon"],"Squarespace":["Squarespace"],"Industry":["Industry"],"I'm setting up a store for a client":["I'm setting up a store for a client"],"What type of products will be listed?":["What type of products will be listed?"],"Please select at least one product type":["Please select at least one product type"],"Choose any that apply":["Choose any that apply"],"In which industry does the store operate?":["In which industry does the store operate?"],"Please select at least one industry":["Please select at least one industry"],"We'd love to know if you are just getting started or you already have a business in place.":["We'd love to know if you are just getting started or you already have a business in place."],"Which platform is the store using?":["Which platform is the store using?"],"What's your current annual revenue?":["What's your current annual revenue?"],"Currently selling elsewhere?":["Currently selling elsewhere?"],"There was a problem updating your industries":["There was a problem updating your industries"],"How many products do you plan to display?":["How many products do you plan to display?"],"$%f per year":["$%f per year"],"There was a problem saving your store details":["There was a problem saving your store details"],"There was a problem updating your product types":["There was a problem updating your product types"],"Business Details":["Business Details"],"Store Details":["Store Details"],"There was a problem finishing the setup wizard":["There was a problem finishing the setup wizard"],"Yes, on another platform":["Yes, on another platform"],"More than %s":["More than %s"],"%s (I'm just getting started)":["%s (I'm just getting started)"],"I don't have any products yet.":["I don't have any products yet."],"Installing the following plugin: %s":["Installing the following plugin: %s","Installing the following plugins: %s"],"store product count or revenue\u0004%s+":["%s+"],"store product count or revenue range\u0004%1$s - %2$s":["%1$s - %2$s"],"This field is required":["This field is required"],"Tell us about your business":["Tell us about your business"],"Wix":["Wix"],"Magento":["Magento"],"BigCommerce":["BigCommerce"],"Shopify":["Shopify"],"Yes, on another platform and in person at physical stores and\/or events":["Yes, on another platform and in person at physical stores and\/or events"],"Yes, in person at physical stores and\/or events":["Yes, in person at physical stores and\/or events"],"Yes, I own a different store powered by WooCommerce":["Yes, I own a different store powered by WooCommerce"],"There was a problem updating your business details":["There was a problem updating your business details"],"Continue without installing":["Continue without installing"],"Up to %s":["Up to %s"],"Retry":["Retry"],"Invalid email address":["Invalid email address"],"Email address":["Email address"],"Product Types":["Product Types"],"Free":["Free"],"Learn more":["Learn more"],"Save":["Save"],"Save changes?":["Save changes?"],"Welcome to WooCommerce":["Welcome to WooCommerce"],"Other":["Other"],"No":["No"],"Continue":["Continue"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/profile-wizard.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Walmart":["Walmart"],"Wish":["Wish"],"Tell us where you run your business to help us configure currency, shipping, taxes, and more in a fully automated way.":["Tell us where you run your business to help us configure currency, shipping, taxes, and more in a fully automated way."],"There was a problem saving free features state":["There was a problem saving free features state"],"Discard":["Discard"],"You're about to go to a different step. Do you want to save the changes you've made here so far?":["You're about to go to a different step. Do you want to save the changes you've made here so far?"],"By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.":["By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.","By installing %s plugins for free you agree to our {{link}}Terms of Service{{\/link}}."],"Please enter your email address to subscribe":["Please enter your email address to subscribe"],"+250":["+250"],"< 10":["< 10"],"How many employees do you have?":["How many employees do you have?"],"It's just me":["It's just me"],"Get tips, product updates and inspiration straight to your mailbox.":["Get tips, product updates and inspiration straight to your mailbox."],"Powered by Mailchimp":["Powered by Mailchimp"],"I'd rather not say":["I'd rather not say"],"Free features":["Free features"],"Business details":["Business details"],"We recommend enhancing your store with these free extensions":["We recommend enhancing your store with these free extensions"],"Included business features":["Included business features"],"The following plugin will be installed for free: %1$s. %2$s":["The following plugin will be installed for free: %1$s. %2$s","The following plugins will be installed for free: %1$s. %2$s"],"Add recommended business features to my site":["Add recommended business features to my site."],"No commitment required - you can remove them at any time.":["No commitment required - you can remove them at any time."],"Billing is annual. All purchases are covered by our 30 day money back guarantee and include access to support and updates. Extensions will be added to a cart for you to purchase later.":["Billing is annual. All purchases are covered by our 30 day money back guarantee and include access to support and updates. Extensions will be added to a basket for you to purchase later."],"This product type requires a paid extension.\nWe'll add this to a cart so that\nyou can purchase and install it later.":["This product type requires a paid extension.\nWe'll add this to a basket so that\nyou can purchase and install it later."],"Skip setup store details":["Skip setup store details"],"Learn more about recommended free business features":["Learn more about recommended free business features"],"$%f per month":["$%f per month"],"Display monthly prices":["Display monthly prices"],"Manual setup is only recommended for\n experienced WooCommerce users or developers.":["Manual setup is only recommended for\n experienced WooCommerce users or developers."],"There was a problem skipping the setup wizard":["There was a problem skipping the setup wizard"],"User accounts are required to use these features.":["User accounts are required to use these features."],"What is the platform name?":["What is the platform name?"],"Etsy":["Etsy"],"eBay":["eBay"],"Amazon":["Amazon"],"Squarespace":["Squarespace"],"Industry":["Industry"],"I'm setting up a store for a client":["I'm setting up a store for a client"],"What type of products will be listed?":["What type of products will be listed?"],"Please select at least one product type":["Please select at least one product type"],"Choose any that apply":["Choose any that apply"],"In which industry does the store operate?":["In which industry does the store operate?"],"Please select at least one industry":["Please select at least one industry"],"We'd love to know if you are just getting started or you already have a business in place.":["We'd love to know if you are just getting started or you already have a business in place."],"Which platform is the store using?":["Which platform is the store using?"],"What's your current annual revenue?":["What's your current annual revenue?"],"Currently selling elsewhere?":["Currently selling elsewhere?"],"There was a problem updating your industries":["There was a problem updating your industries"],"How many products do you plan to display?":["How many products do you plan to display?"],"$%f per year":["$%f per year"],"There was a problem saving your store details":["There was a problem saving your store details"],"There was a problem updating your product types":["There was a problem updating your product types"],"Business Details":["Business Details"],"Store Details":["Store Details"],"There was a problem finishing the setup wizard":["There was a problem finishing the setup wizard"],"Yes, on another platform":["Yes, on another platform"],"More than %s":["More than %s"],"%s (I'm just getting started)":["%s (I'm just getting started)"],"I don't have any products yet.":["I don't have any products yet."],"Installing the following plugin: %s":["Installing the following plugin: %s","Installing the following plugins: %s"],"store product count or revenue\u0004%s+":["%s+"],"store product count or revenue range\u0004%1$s - %2$s":["%1$s - %2$s"],"This field is required":["This field is required"],"Tell us about your business":["Tell us about your business"],"Wix":["Wix"],"Magento":["Magento"],"BigCommerce":["BigCommerce"],"Shopify":["Shopify"],"Yes, on another platform and in person at physical stores and\/or events":["Yes, on another platform and in person at physical stores and\/or events"],"Yes, in person at physical stores and\/or events":["Yes, in person at physical stores and\/or events"],"Yes, I own a different store powered by WooCommerce":["Yes, I own a different store powered by WooCommerce"],"There was a problem updating your business details":["There was a problem updating your business details"],"Continue without installing":["Continue without installing"],"Up to %s":["Up to %s"],"Retry":["Retry"],"Invalid email address":["Invalid email address"],"Email address":["Email address"],"Product Types":["Product Types"],"Free":["Free"],"Learn more":["Learn more"],"Save":["Save"],"Save changes?":["Save changes?"],"Welcome to WooCommerce":["Welcome to WooCommerce"],"Other":["Other"],"No":["No"],"Continue":["Continue"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/profile-wizard.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7191abc3e5ae6aba1378c2d2b593e25a.json b/web/app/languages/plugins/woocommerce-en_GB-7191abc3e5ae6aba1378c2d2b593e25a.json index 2fbedb7b..812cfe1a 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-7191abc3e5ae6aba1378c2d2b593e25a.json +++ b/web/app/languages/plugins/woocommerce-en_GB-7191abc3e5ae6aba1378c2d2b593e25a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"Item sold":["Item sold","Items sold"],"Single category":["Single category"],"Check at least two categories below to compare":["Tick at least two categories below to compare"],"Check at least two products below to compare":["Tick at least two products below to compare"],"%d categories":["%d categories"],"Search by category name":["Search by category name"],"Search for categories to compare":["Search for categories to compare"],"Type to search for a category":["Type to search for a category"],"%d products":["%d products"],"Search by product name or SKU":["Search by product name or SKU"],"categories\u0004+%d more":["+%d more"],"Indication of a low quantity\u0004Low":["Low"],"Comparison":["Comparison"],"Compare Categories":["Compare Categories"],"Single Category":["Single Category"],"Items sold":["Items sold"],"Net sales":["Net sales"],"Compare":["Compare"],"TAX":["TAX"],"Product title":["Product title"],"All categories":["All categories"],"Category":["Category"],"Any %s":["Any %s"],"Show":["Show"],"Products":["Products"],"N\/A":["N\/A"],"Variations":["Variations"],"Categories":["Categories"],"SKU":["SKU"],"Stock":["Stock"],"Status":["Status"],"Order":["Order"],"Orders":["Orders"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-categories.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"Item sold":["Item sold","Items sold"],"Single category":["Single category"],"Check at least two categories below to compare":["Tick at least two categories below to compare"],"Check at least two products below to compare":["Tick at least two products below to compare"],"%d categories":["%d categories"],"Search by category name":["Search by category name"],"Search for categories to compare":["Search for categories to compare"],"Type to search for a category":["Type to search for a category"],"%d products":["%d products"],"Search by product name or SKU":["Search by product name or SKU"],"categories\u0004+%d more":["+%d more"],"Indication of a low quantity\u0004Low":["Low"],"Comparison":["Comparison"],"Compare Categories":["Compare Categories"],"Single Category":["Single Category"],"Items sold":["Items sold"],"Net sales":["Net sales"],"Compare":["Compare"],"TAX":["TAX"],"Product title":["Product title"],"All categories":["All categories"],"Category":["Category"],"Any %s":["Any %s"],"Show":["Show"],"Products":["Products"],"N\/A":["N\/A"],"Variations":["Variations"],"Categories":["Categories"],"SKU":["SKU"],"Stock":["Stock"],"Status":["Status"],"Order":["Order"],"Orders":["Orders"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-categories.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-73a78fe6884e2ce9cd23e3af73a3b52f.json b/web/app/languages/plugins/woocommerce-en_GB-73a78fe6884e2ce9cd23e3af73a3b52f.json index 3a73f618..17e5a891 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-73a78fe6884e2ce9cd23e3af73a3b52f.json +++ b/web/app/languages/plugins/woocommerce-en_GB-73a78fe6884e2ce9cd23e3af73a3b52f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%d product found":["%d product found","%d products found"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"\u2026":["\u2026"],"Navigate to another page":["Navigate to another page"],"Price: high to low":["Price: high to low"],"Price: low to high":["Price: low to high"],"Latest":["Latest"],"Popularity":["Popularity"],"We were unable to find any results based on your search.":["We were unable to find any results based on your search."],"Reset Search":["Reset Search"],"There are currently no products available to display.":["There are currently no products available to display."],"Order products by":["Order products by"],"Error:":["Error:"],"Next page":["Next page"],"Previous page":["Previous page"],"Default sorting":["Default sorting"],"No products":["No products"],"Page %d":["Page %d"],"No products found":["No products found"],"Average rating":["Average rating"]}},"comment":{"reference":"assets\/client\/blocks\/all-products-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%d product found":["%d product found","%d products found"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"\u2026":["\u2026"],"Navigate to another page":["Navigate to another page"],"Price: high to low":["Price: high to low"],"Price: low to high":["Price: low to high"],"Latest":["Latest"],"Popularity":["Popularity"],"We were unable to find any results based on your search.":["We were unable to find any results based on your search."],"Reset Search":["Reset Search"],"There are currently no products available to display.":["There are currently no products available to display."],"Order products by":["Order products by"],"Error:":["Error:"],"Next page":["Next page"],"Previous page":["Previous page"],"Default sorting":["Default sorting"],"No products":["No products"],"Page %d":["Page %d"],"No products found":["No products found"],"Average rating":["Average rating"]}},"comment":{"reference":"assets\/client\/blocks\/all-products-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-74b6fb60d0b88b06aae7413389f85544.json b/web/app/languages/plugins/woocommerce-en_GB-74b6fb60d0b88b06aae7413389f85544.json index 565dc81f..43c81f4e 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-74b6fb60d0b88b06aae7413389f85544.json +++ b/web/app/languages/plugins/woocommerce-en_GB-74b6fb60d0b88b06aae7413389f85544.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Placeholder":["Placeholder"],"Yes":["Yes"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-shipping-address.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Placeholder":["Placeholder"],"Yes":["Yes"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-shipping-address.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-74e5e424bcaed5f7c211729203f471df.json b/web/app/languages/plugins/woocommerce-en_GB-74e5e424bcaed5f7c211729203f471df.json index f4e277b0..9209015b 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-74e5e424bcaed5f7c211729203f471df.json +++ b/web/app/languages/plugins/woocommerce-en_GB-74e5e424bcaed5f7c211729203f471df.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Edit %s":["Edit %s"],"Cancel":["Cancel"],"Update":["Update"],"Delete":["Delete"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/downloads\/edit-downloads-modal\/edit-downloads-modal.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Edit %s":["Edit %s"],"Cancel":["Cancel"],"Update":["Update"],"Delete":["Delete"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/downloads\/edit-downloads-modal\/edit-downloads-modal.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-750143815c8f43588af17c98ace49c88.json b/web/app/languages/plugins/woocommerce-en_GB-750143815c8f43588af17c98ace49c88.json index a049c648..40623d53 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-750143815c8f43588af17c98ace49c88.json +++ b/web/app/languages/plugins/woocommerce-en_GB-750143815c8f43588af17c98ace49c88.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Hide":["Hide"],"Display":["Display"],"Never":["Never"],"Price":["Price"],"Remove":["Remove"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Hide":["Hide"],"Display":["Display"],"Never":["Never"],"Price":["Price"],"Remove":["Remove"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7502a4800e9e011e0d3d17e1ccd87cad.json b/web/app/languages/plugins/woocommerce-en_GB-7502a4800e9e011e0d3d17e1ccd87cad.json deleted file mode 100644 index 2081cf48..00000000 --- a/web/app/languages/plugins/woocommerce-en_GB-7502a4800e9e011e0d3d17e1ccd87cad.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reload":["Reload"],"There was an error getting your stats. Please try again.":["There was an error getting your stats. Please try again."]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-753733dacbf958ee7471d7a26d5dd84e.json b/web/app/languages/plugins/woocommerce-en_GB-753733dacbf958ee7471d7a26d5dd84e.json index e6fa4dd2..7e38ce80 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-753733dacbf958ee7471d7a26d5dd84e.json +++ b/web/app/languages/plugins/woocommerce-en_GB-753733dacbf958ee7471d7a26d5dd84e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Now displaying a preview of the reviews for the products in the selected categories.":["Now displaying a preview of the reviews for the products in the selected categories."],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"Edit selected categories":["Edit selected categories"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"No products were found that matched your selection.":["No products were found that matched your selection."],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Display a grid of products from your selected categories.":["Display a grid of products from your selected categories."],"Done":["Done"],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Select at least one category to display its products.":["Select at least one category to display its products."],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Products by Category":["Products by Category"],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"Filter by stock status":["Filter by stock status"],"Product Category":["Product Category"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/blocks\/product-category.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Now displaying a preview of the reviews for the products in the selected categories.":["Now displaying a preview of the reviews for the products in the selected categories."],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"Edit selected categories":["Edit selected categories"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"No products were found that matched your selection.":["No products were found that matched your selection."],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Display a grid of products from your selected categories.":["Display a grid of products from your selected categories."],"Done":["Done"],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Select at least one category to display its products.":["Select at least one category to display its products."],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Products by Category":["Products by Category"],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"Filter by stock status":["Filter by stock status"],"Product Category":["Product Category"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/blocks\/product-category.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-75478d27162f9793b21b8408f1996bf1.json b/web/app/languages/plugins/woocommerce-en_GB-75478d27162f9793b21b8408f1996bf1.json index b09998e3..3553239d 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-75478d27162f9793b21b8408f1996bf1.json +++ b/web/app/languages/plugins/woocommerce-en_GB-75478d27162f9793b21b8408f1996bf1.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Oops! We encountered a problem while fetching the list of countries to choose from. or ":["Oops! We encountered a problem while fetching the list of countries from which to choose. or "],"By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.":["By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.","By installing %s plugins for free you agree to our {{link}}Terms of Service{{\/link}}."],"Select an option":["Select an option"],"Education and learning":["Education and learning"],"Etsy":["Etsy"],"Amazon":["Amazon"],"Squarespace":["Squarespace"],"Google Shopping":["Google Shopping"],"I'm setting up a store for a client":["I'm setting up a store for a client"],"Wix":["Wix"],"Shopify":["Shopify"],"Food and drink":["Food and drink"],"Electronics and computers":["Electronics and computers"],"Health and beauty":["Health and beauty"],"Square":["Square"],"Installed":["Installed"],"Other":["Other"],"Learn More":["Learn More"],"Continue":["Continue"],"Skip this step":["Skip this step"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/core-profiler.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Builder setup":["Builder setup"],"Oops! We encountered a problem while fetching the list of countries to choose from. or ":["Oops! We encountered a problem while fetching the list of countries from which to choose. or "],"By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.":["By installing %s plugin for free you agree to our {{link}}Terms of Service{{\/link}}.","By installing %s plugins for free you agree to our {{link}}Terms of Service{{\/link}}."],"Select an option":["Select an option"],"Education and learning":["Education and learning"],"Etsy":["Etsy"],"Amazon":["Amazon"],"Squarespace":["Squarespace"],"Google Shopping":["Google Shopping"],"Wix":["Wix"],"Shopify":["Shopify"],"Food and drink":["Food and drink"],"Electronics and computers":["Electronics and computers"],"Health and beauty":["Health and beauty"],"Square":["Square"],"Import":["Import"],"Installed":["Installed"],"Skip setup":["Skip setup"],"Other":["Other"],"Learn More":["Learn More"],"Continue":["Continue"],"Skip this step":["Skip this step"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/core-profiler.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-762d02a1afb327baad73e17fed1f08e6.json b/web/app/languages/plugins/woocommerce-en_GB-762d02a1afb327baad73e17fed1f08e6.json index 7896afba..28bd1df9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-762d02a1afb327baad73e17fed1f08e6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-762d02a1afb327baad73e17fed1f08e6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Message could not be dismissed":["Message could not be dismissed"],"Message dismissed":["Message dismissed"],"{{current \/}} of {{total \/}}":["{{current \/}} of {{total \/}}"],"Tomorrow":["Tomorrow"],"Next Month":["Next Month"],"Next Week":["Next Week"],"Later Today":["Later Today"],"Next Alert":["Next Alert"],"Previous Alert":["Previous Alert"],"Remind Me Later":["Remind Me Later"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/store-alerts.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Message could not be dismissed":["Message could not be dismissed"],"Message dismissed":["Message dismissed"],"{{current \/}} of {{total \/}}":["{{current \/}} of {{total \/}}"],"Tomorrow":["Tomorrow"],"Next Month":["Next Month"],"Next Week":["Next Week"],"Later Today":["Later Today"],"Next Alert":["Next Alert"],"Previous Alert":["Previous Alert"],"Remind Me Later":["Remind Me Later"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/store-alerts.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-76de108c0680bf620d1bde32df485ae5.json b/web/app/languages/plugins/woocommerce-en_GB-76de108c0680bf620d1bde32df485ae5.json index 0fa0f404..e3e36621 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-76de108c0680bf620d1bde32df485ae5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-76de108c0680bf620d1bde32df485ae5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset stock filter":["Reset stock filter"],"Reset filter":["Reset filter"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Error:":["Error:"],"%s product":["%s product","%s products"],"Reset":["Reset"],"Apply":["Apply"]}},"comment":{"reference":"assets\/client\/blocks\/stock-filter-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset stock filter":["Reset stock filter"],"Reset filter":["Reset filter"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Error:":["Error:"],"%s product":["%s product","%s products"],"Reset":["Reset"],"Apply":["Apply"]}},"comment":{"reference":"assets\/client\/blocks\/stock-filter-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-77210a6df64bbebe2414a649842dcb52.json b/web/app/languages/plugins/woocommerce-en_GB-77210a6df64bbebe2414a649842dcb52.json index 19316996..610f1c11 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-77210a6df64bbebe2414a649842dcb52.json +++ b/web/app/languages/plugins/woocommerce-en_GB-77210a6df64bbebe2414a649842dcb52.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"free":["free"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/pickup-options-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"free":["free"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/pickup-options-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-78028b4b612742fc96407a351e0198e9.json b/web/app/languages/plugins/woocommerce-en_GB-78028b4b612742fc96407a351e0198e9.json index 691871e3..b76473d9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-78028b4b612742fc96407a351e0198e9.json +++ b/web/app/languages/plugins/woocommerce-en_GB-78028b4b612742fc96407a351e0198e9.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Show input fields inline with the slider.":["Show input fields inline with the slider."],"Inline input fields":["Inline input fields"],"Editable":["Editable"],"Text":["Text"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/product-filter-price.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Show input fields inline with the slider.":["Show input fields inline with the slider."],"Inline input fields":["Inline input fields"],"Editable":["Editable"],"Text":["Text"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/product-filter-price.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7861389540ce30157e63c9452aca49b5.json b/web/app/languages/plugins/woocommerce-en_GB-7861389540ce30157e63c9452aca49b5.json index bc695482..b59244e9 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-7861389540ce30157e63c9452aca49b5.json +++ b/web/app/languages/plugins/woocommerce-en_GB-7861389540ce30157e63c9452aca49b5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Go to checkout":["Go to checkout"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/checkout-button-frontend.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Go to checkout":["Go to checkout"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/checkout-button-frontend.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7951b083e84d8324bfbc01920a7950b6.json b/web/app/languages/plugins/woocommerce-en_GB-7951b083e84d8324bfbc01920a7950b6.json index 29bc1d8b..71a5a465 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-7951b083e84d8324bfbc01920a7950b6.json +++ b/web/app/languages/plugins/woocommerce-en_GB-7951b083e84d8324bfbc01920a7950b6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Shipping address":["Shipping address"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-shipping-wrapper.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Shipping address":["Shipping address"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-shipping-wrapper.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7d1c83d014474814d1024f6062f40ddc.json b/web/app/languages/plugins/woocommerce-en_GB-7d1c83d014474814d1024f6062f40ddc.json index 16f6d4eb..6309eac5 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-7d1c83d014474814d1024f6062f40ddc.json +++ b/web/app/languages/plugins/woocommerce-en_GB-7d1c83d014474814d1024f6062f40ddc.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"To filter your products by price you first need to assign prices to your products.":["To filter your products by price you first need to assign prices to your products."],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Show input fields inline with the slider.":["Show input fields inline with the slider."],"Inline input fields":["Inline input fields"],"Price Range Selector":["Price Range Selector"],"Filter by Price":["Filter by Price"],"Reset price filter":["Reset price filter"],"Reset filter":["Reset filter"],"Block title":["Block title"],"Apply price filter":["Apply price filter"],"Apply filter":["Apply filter"],"Filter products by maximum price":["Filter products by maximum price"],"Filter products by minimum price":["Filter products by minimum price"],"Editable":["Editable"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Display a slider to filter products in your store by price.":["Display a slider to filter products in your store by price."],"Text":["Text"],"Filter by price":["Filter by price"],"Add new product":["Add new product"],"Learn more":["Learn more"],"Reset":["Reset"],"Apply":["Apply"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/price-filter.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"To filter your products by price you first need to assign prices to your products.":["To filter your products by price you first need to assign prices to your products."],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Show input fields inline with the slider.":["Show input fields inline with the slider."],"Inline input fields":["Inline input fields"],"Price Range Selector":["Price Range Selector"],"Filter by Price":["Filter by Price"],"Reset price filter":["Reset price filter"],"Reset filter":["Reset filter"],"Block title":["Block title"],"Apply price filter":["Apply price filter"],"Apply filter":["Apply filter"],"Filter products by maximum price":["Filter products by maximum price"],"Filter products by minimum price":["Filter products by minimum price"],"Editable":["Editable"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Display a slider to filter products in your store by price.":["Display a slider to filter products in your store by price."],"Text":["Text"],"Filter by price":["Filter by price"],"Add new product":["Add new product"],"Learn more":["Learn more"],"Reset":["Reset"],"Apply":["Apply"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/price-filter.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7db1c7831a17345b259dedf12fa5c4e7.json b/web/app/languages/plugins/woocommerce-en_GB-7db1c7831a17345b259dedf12fa5c4e7.json index 6a3b5eda..b73696fb 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-7db1c7831a17345b259dedf12fa5c4e7.json +++ b/web/app/languages/plugins/woocommerce-en_GB-7db1c7831a17345b259dedf12fa5c4e7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Previous year:":["Previous year:"],"Previous period:":["Previous period:"],"Display stats:":["Display stats:"],"Choose which analytics to display and the section name":["Choose which analytics to display and the section name"],"Store Performance":["Store Performance"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/store-performance.js"}} \ No newline at end of file +{"translation-revision-date":"2024-09-14 09:16:51+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Previous year:":["Previous year:"],"Previous period:":["Previous period:"],"Display stats:":["Display stats:"],"Choose which analytics to display and the section name":["Choose which analytics to display and the section name"],"Store Performance":["Store Performance"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/store-performance.js"}} \ No newline at end of file diff --git a/web/app/languages/plugins/woocommerce-en_GB-7fdaf32d435835d6f63f776731e6588f.json b/web/app/languages/plugins/woocommerce-en_GB-7fdaf32d435835d6f63f776731e6588f.json index 111aa300..c0663746 100644 --- a/web/app/languages/plugins/woocommerce-en_GB-7fdaf32d435835d6f63f776731e6588f.json +++ b/web/app/languages/plugins/woocommerce-en_GB-7fdaf32d435835d6f63f776731e6588f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Something went wrong. Please contact us for assistance.":["Something went wrong. Please contact us for assistance."],"The checkout has encountered an unexpected error.