diff --git a/composer.lock b/composer.lock index 8218a9d3e..19941a9e7 100644 --- a/composer.lock +++ b/composer.lock @@ -1181,16 +1181,16 @@ }, { "name": "symfony/validator", - "version": "v7.0.9", + "version": "v7.0.10", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "04266058fb2b936ad71ce726ab021b791b896f86" + "reference": "b3e4d838cdae9f2882402c2ad8018a27d469c075" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/04266058fb2b936ad71ce726ab021b791b896f86", - "reference": "04266058fb2b936ad71ce726ab021b791b896f86", + "url": "https://api.github.com/repos/symfony/validator/zipball/b3e4d838cdae9f2882402c2ad8018a27d469c075", + "reference": "b3e4d838cdae9f2882402c2ad8018a27d469c075", "shasum": "" }, "require": { @@ -1256,7 +1256,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v7.0.9" + "source": "https://github.com/symfony/validator/tree/v7.0.10" }, "funding": [ { @@ -1272,7 +1272,7 @@ "type": "tidelift" } ], - "time": "2024-06-22T11:38:48+00:00" + "time": "2024-07-26T12:31:22+00:00" }, { "name": "twig/twig", diff --git a/upload/system/storage/vendor/composer/installed.json b/upload/system/storage/vendor/composer/installed.json index cb34bf9c7..f90c54a08 100644 --- a/upload/system/storage/vendor/composer/installed.json +++ b/upload/system/storage/vendor/composer/installed.json @@ -1223,17 +1223,17 @@ }, { "name": "symfony/validator", - "version": "v7.0.9", - "version_normalized": "7.0.9.0", + "version": "v7.0.10", + "version_normalized": "7.0.10.0", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "04266058fb2b936ad71ce726ab021b791b896f86" + "reference": "b3e4d838cdae9f2882402c2ad8018a27d469c075" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/04266058fb2b936ad71ce726ab021b791b896f86", - "reference": "04266058fb2b936ad71ce726ab021b791b896f86", + "url": "https://api.github.com/repos/symfony/validator/zipball/b3e4d838cdae9f2882402c2ad8018a27d469c075", + "reference": "b3e4d838cdae9f2882402c2ad8018a27d469c075", "shasum": "" }, "require": { @@ -1272,7 +1272,7 @@ "symfony/translation": "^6.4.3|^7.0.3", "symfony/yaml": "^6.4|^7.0" }, - "time": "2024-06-22T11:38:48+00:00", + "time": "2024-07-26T12:31:22+00:00", "type": "library", "installation-source": "dist", "autoload": { @@ -1301,7 +1301,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v7.0.9" + "source": "https://github.com/symfony/validator/tree/v7.0.10" }, "funding": [ { diff --git a/upload/system/storage/vendor/composer/installed.php b/upload/system/storage/vendor/composer/installed.php index 49ff66d76..15f480517 100644 --- a/upload/system/storage/vendor/composer/installed.php +++ b/upload/system/storage/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'opencart/opencart-3', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '9be5a3ab96f27fdfeeb91a652049caf876f97647', + 'reference' => '0af4476208ead002238873406912b850e6dc14ab', 'type' => 'project', 'install_path' => __DIR__ . '/../../../../../', 'aliases' => array(), @@ -58,7 +58,7 @@ 'opencart/opencart-3' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '9be5a3ab96f27fdfeeb91a652049caf876f97647', + 'reference' => '0af4476208ead002238873406912b850e6dc14ab', 'type' => 'project', 'install_path' => __DIR__ . '/../../../../../', 'aliases' => array(), @@ -182,9 +182,9 @@ 'dev_requirement' => false, ), 'symfony/validator' => array( - 'pretty_version' => 'v7.0.9', - 'version' => '7.0.9.0', - 'reference' => '04266058fb2b936ad71ce726ab021b791b896f86', + 'pretty_version' => 'v7.0.10', + 'version' => '7.0.10.0', + 'reference' => 'b3e4d838cdae9f2882402c2ad8018a27d469c075', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/validator', 'aliases' => array(), diff --git a/upload/system/storage/vendor/symfony/validator/Constraints/AbstractComparisonValidator.php b/upload/system/storage/vendor/symfony/validator/Constraints/AbstractComparisonValidator.php index 941b1bef6..fc2ad3cc4 100644 --- a/upload/system/storage/vendor/symfony/validator/Constraints/AbstractComparisonValidator.php +++ b/upload/system/storage/vendor/symfony/validator/Constraints/AbstractComparisonValidator.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Validator\Constraints; use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException; +use Symfony\Component\PropertyAccess\Exception\UninitializedPropertyException; use Symfony\Component\PropertyAccess\PropertyAccess; use Symfony\Component\PropertyAccess\PropertyAccessorInterface; use Symfony\Component\Validator\Constraint; @@ -53,6 +54,8 @@ public function validate(mixed $value, Constraint $constraint): void $comparedValue = $this->getPropertyAccessor()->getValue($object, $path); } catch (NoSuchPropertyException $e) { throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: ', $path, get_debug_type($constraint)).$e->getMessage(), 0, $e); + } catch (UninitializedPropertyException) { + $comparedValue = null; } } else { $comparedValue = $constraint->value; diff --git a/upload/system/storage/vendor/symfony/validator/Constraints/BicValidator.php b/upload/system/storage/vendor/symfony/validator/Constraints/BicValidator.php index 19b88b689..5bc278a01 100644 --- a/upload/system/storage/vendor/symfony/validator/Constraints/BicValidator.php +++ b/upload/system/storage/vendor/symfony/validator/Constraints/BicValidator.php @@ -13,6 +13,7 @@ use Symfony\Component\Intl\Countries; use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException; +use Symfony\Component\PropertyAccess\Exception\UninitializedPropertyException; use Symfony\Component\PropertyAccess\PropertyAccess; use Symfony\Component\PropertyAccess\PropertyAccessor; use Symfony\Component\Validator\Constraint; @@ -127,6 +128,8 @@ public function validate(mixed $value, Constraint $constraint): void $iban = $this->getPropertyAccessor()->getValue($object, $path); } catch (NoSuchPropertyException $e) { throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: ', $path, get_debug_type($constraint)).$e->getMessage(), 0, $e); + } catch (UninitializedPropertyException) { + $iban = null; } } if (!$iban) { diff --git a/upload/system/storage/vendor/symfony/validator/Constraints/RangeValidator.php b/upload/system/storage/vendor/symfony/validator/Constraints/RangeValidator.php index 717c5d7f3..fa7f7978b 100644 --- a/upload/system/storage/vendor/symfony/validator/Constraints/RangeValidator.php +++ b/upload/system/storage/vendor/symfony/validator/Constraints/RangeValidator.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Validator\Constraints; use Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException; +use Symfony\Component\PropertyAccess\Exception\UninitializedPropertyException; use Symfony\Component\PropertyAccess\PropertyAccess; use Symfony\Component\PropertyAccess\PropertyAccessorInterface; use Symfony\Component\Validator\Constraint; @@ -159,6 +160,8 @@ private function getLimit(?string $propertyPath, mixed $default, Constraint $con return $this->getPropertyAccessor()->getValue($object, $propertyPath); } catch (NoSuchPropertyException $e) { throw new ConstraintDefinitionException(sprintf('Invalid property path "%s" provided to "%s" constraint: ', $propertyPath, get_debug_type($constraint)).$e->getMessage(), 0, $e); + } catch (UninitializedPropertyException) { + return null; } } diff --git a/upload/system/storage/vendor/symfony/validator/Mapping/Loader/AttributeLoader.php b/upload/system/storage/vendor/symfony/validator/Mapping/Loader/AttributeLoader.php index 9674122b6..62e9243a2 100644 --- a/upload/system/storage/vendor/symfony/validator/Mapping/Loader/AttributeLoader.php +++ b/upload/system/storage/vendor/symfony/validator/Mapping/Loader/AttributeLoader.php @@ -37,6 +37,7 @@ public function loadClassMetadata(ClassMetadata $metadata): bool if ($constraint instanceof GroupSequence) { $metadata->setGroupSequence($constraint->groups); } elseif ($constraint instanceof GroupSequenceProvider) { + $metadata->setGroupProvider($constraint->provider); $metadata->setGroupSequenceProvider(true); } elseif ($constraint instanceof Constraint) { $metadata->addConstraint($constraint); diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.af.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.af.xlf index f975fc516..e09d3fc06 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.af.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.af.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Die URL mis 'n topvlakdomein. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ar.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ar.xlf index 08012ac23..94a91d42a 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ar.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ar.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. هذا الرابط يفتقر إلى نطاق المستوى الأعلى. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.az.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.az.xlf index 2eeae5f8a..390e5f869 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.az.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.az.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Bu URL yuxarı səviyyəli domeni çatışmır. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.be.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.be.xlf index a0665388e..3ebae4cb6 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.be.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.be.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Гэтаму URL бракуе дамен верхняга ўзроўню. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bg.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bg.xlf index d2405339f..dffefdb7d 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bg.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bg.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. На този URL липсва домейн от най-високо ниво. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bs.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bs.xlf index 9fd444a59..f5e90aba5 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bs.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.bs.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Ovom URL-u nedostaje domena najvišeg nivoa. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ca.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ca.xlf index 652c0a48d..60f747f62 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ca.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ca.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Aquesta URL no conté un domini de primer nivell. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + Aquest valor és massa curt. Ha de contenir almenys una paraula.|Aquest valor és massa curt. Ha de contenir almenys {{ min }} paraules. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + Aquest valor és massa llarg. Ha de contenir una paraula.|Aquest valor és massa llarg. Ha de contenir {{ max }} paraules o menys. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cs.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cs.xlf index 2c4c54d9f..459d07fd7 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cs.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cs.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Této URL chybí doména nejvyššího řádu. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cy.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cy.xlf index a1ebdf7f8..7f3357daf 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cy.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.cy.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Mae'r URL hwn yn colli parth lefel uchaf. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.da.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.da.xlf index 808d8c6ad..d80251b2a 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.da.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.da.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Denne URL mangler et topdomæne. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.de.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.de.xlf index 3b6530631..6a9919ddd 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.de.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.de.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Dieser URL fehlt eine Top-Level-Domain. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + Dieser Wert ist zu kurz. Er muss aus mindestens einem Wort bestehen.|Dieser Wert ist zu kurz. Er muss mindestens {{ min }} Wörter enthalten. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + Dieser Wert ist zu lang. Er darf maximal aus einem Wort bestehen.|Dieser Wert ist zu lang. Er darf maximal {{ max }} Wörter enthalten. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.el.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.el.xlf index a60471835..bb0ccb46e 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.el.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.el.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Αυτή η διεύθυνση URL λείπει ένας τομέας ανώτατου επιπέδου. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.en.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.en.xlf index 721139011..cf08ea281 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.en.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.en.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. This URL is missing a top-level domain. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.es.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.es.xlf index d58045471..f9b327722 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.es.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.es.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Esta URL no contiene una extensión de dominio (TLD). + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + Este valor es demasiado corto. Debe contener al menos una palabra.|Este valor es demasiado corto. Debe contener al menos {{ min }} palabras. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + Este valor es demasiado largo. Debe contener una palabra.|Este valor es demasiado largo. Debe contener {{ max }} palabras o menos. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.et.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.et.xlf index d9d641322..988bb0aa0 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.et.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.et.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Sellel URL-il puudub ülataseme domeen. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.eu.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.eu.xlf index bdcbaa393..362dfa9c0 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.eu.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.eu.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. URL honek ez du goi-mailako domeinurik. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fa.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fa.xlf index 0f2cf5bbf..fb8b629b4 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fa.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fa.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. این URL فاقد دامنه سطح بالا است. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fi.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fi.xlf index e9ca6c833..6b8902f01 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fi.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fi.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Tästä URL-osoitteesta puuttuu ylätason verkkotunnus. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fr.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fr.xlf index 4e949d838..f06189712 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fr.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.fr.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Cette URL doit contenir un domaine de premier niveau. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + Cette valeur est trop courte. Elle doit contenir au moins un mot.|Cette valeur est trop courte. Elle doit contenir au moins {{ min }} mots. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + Cette valeur est trop longue. Elle doit contenir au maximum un mot.|Cette valeur est trop longue. Elle doit contenir au maximum {{ max }} mots. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.gl.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.gl.xlf index 2a1199bed..7885473fb 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.gl.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.gl.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Esta URL non contén un dominio de nivel superior. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.he.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.he.xlf index cd406b4eb..6e5ab5229 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.he.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.he.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. לכתובת URL זו חסר דומיין רמה עליונה. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hr.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hr.xlf index a7542a935..0ddbeb6f2 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hr.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hr.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Ovom URL-u nedostaje vršna domena. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hu.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hu.xlf index a31848c77..0c8002ae1 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hu.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hu.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Az URL-ből hiányzik a legfelső szintű tartomány (top-level domain). + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hy.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hy.xlf index d8ff322e6..29f916fff 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hy.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.hy.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Այս URL-ը չունի վերին մակարդակի դոմեյն: + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.id.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.id.xlf index b894c69d8..2814599a0 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.id.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.id.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. URL ini tidak memiliki domain tingkat atas. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.it.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.it.xlf index 74f3a75b0..1f409315e 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.it.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.it.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Questo URL è privo di un dominio di primo livello. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ja.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ja.xlf index 9ec98ebbd..d94a414e3 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ja.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ja.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. このURLはトップレベルドメインがありません。 + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lb.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lb.xlf index 28d1eff01..3c0a6f200 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lb.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lb.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Dësen URL feelt eng Top-Level-Domain. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lt.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lt.xlf index e16daea93..dc28eeba7 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lt.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lt.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Šiam URL trūksta aukščiausio lygio domeno. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + Per mažas žodžių skaičius. Turi susidaryti bent iš 1 žodžio.|Per mažas žodžių skaičius. Turi susidaryti iš {{ min }} arba daugiau žodžių. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + Per didelis žodžių skaičius. Turi susidaryti iš 1 žodžio.|Per didelis žodžių skaičius. Turi susidaryti iš {{ max }} arba mažiau žodžių. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lv.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lv.xlf index 66e370fea..9b2b9bd9f 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lv.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.lv.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Šim URL trūkst augšējā līmeņa domēna. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mk.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mk.xlf index d941f59ea..b89199079 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mk.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mk.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. На овој URL недостасува домен од највисоко ниво. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mn.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mn.xlf index 4f997a703..987d73199 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mn.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.mn.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Энэ URL дээд түвшингийн домейн дутуу байна. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.my.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.my.xlf index 57b6e276d..b7353e83a 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.my.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.my.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. ဤ URL တွင် အမြင့်ဆုံးအဆင့်ဒိုမိန်း ပါဝင်မရှိပါ။ + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nb.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nb.xlf index 27a4d3c55..2abe0fb7f 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nb.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nb.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Denne URL-en mangler et toppnivådomene. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nl.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nl.xlf index aa4a3e215..96e1d20d9 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nl.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nl.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Deze URL mist een top-level domein. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nn.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nn.xlf index de400b7d5..e825815ce 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nn.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.nn.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Denne URL-en manglar eit toppnivådomene. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.no.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.no.xlf index 27a4d3c55..2abe0fb7f 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.no.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.no.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Denne URL-en mangler et toppnivådomene. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pl.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pl.xlf index 42b6e9571..337a59495 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pl.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pl.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Podany URL nie zawiera domeny najwyższego poziomu. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + Podana wartość jest zbyt krótka. Powinna zawierać co najmniej jedno słowo.|Podana wartość jest zbyt krótka. Powinna zawierać co najmniej {{ min }} słów. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + Podana wartość jest zbyt długa. Powinna zawierać jedno słowo.|Podana wartość jest zbyt długa. Powinna zawierać {{ max }} słów lub mniej. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt.xlf index ed28ee31e..f771faa84 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt.xlf @@ -88,7 +88,7 @@ This value should not be blank. - Este valor não deveria ser branco/vazio. + Este valor não deveria ser vazio. This value should not be null. @@ -108,7 +108,7 @@ This value is not a valid URL. - Este valor não é um URL válido. + Este valor não é uma URL válida. The two values should be equal. @@ -120,11 +120,11 @@ The file is too large. - O ficheiro é muito grande. + O arquivo é muito grande. The file could not be uploaded. - Não foi possível carregar o ficheiro. + Não foi possível enviar o arquivo. This value should be a valid number. @@ -132,7 +132,7 @@ This file is not a valid image. - Este ficheiro não é uma imagem. + Este arquivo não é uma imagem. This value is not a valid IP address. @@ -144,11 +144,11 @@ This value is not a valid locale. - Este valor não é um 'locale' válido. + Este valor não é uma localidade válida. This value is not a valid country. - Este valor não é um País válido. + Este valor não é um país válido. This value is already used. @@ -156,7 +156,7 @@ The size of the image could not be detected. - O tamanho da imagem não foi detetado. + O tamanho da imagem não foi detectado. The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px. @@ -164,7 +164,7 @@ The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px. - A largura da imagem ({{ width }}px) é muito pequena. A largura miníma da imagem é de: {{ min_width }}px. + A largura da imagem ({{ width }}px) é muito pequena. A largura mínima da imagem é de: {{ min_width }}px. The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px. @@ -172,7 +172,7 @@ The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px. - A altura da imagem ({{ height }}px) é muito pequena. A altura miníma da imagem é de: {{ min_height }}px. + A altura da imagem ({{ height }}px) é muito pequena. A altura mínima da imagem é de: {{ min_height }}px. This value should be the user's current password. @@ -180,7 +180,7 @@ This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters. - Este valor deve possuir exatamente {{ limit }} caracteres. + Este valor deve possuir exatamente {{ limit }} caractere.|Este valor deve possuir exatamente {{ limit }} caracteres. The file was only partially uploaded. @@ -308,7 +308,7 @@ This value does not match the expected {{ charset }} charset. - O valor não corresponde ao conjunto de caracteres {{ charset }} esperado. + Este valor não corresponde ao conjunto de caracteres {{ charset }} esperado. This value is not a valid Business Identifier Code (BIC). @@ -340,7 +340,7 @@ This value should be positive. - Este valor deve ser estritamente positivo. + Este valor deve ser positivo. This value should be either positive or zero. @@ -348,7 +348,7 @@ This value should be negative. - Este valor deve ser estritamente negativo. + Este valor deve ser negativo. This value should be either negative or zero. @@ -360,11 +360,11 @@ This password has been leaked in a data breach, it must not be used. Please use another password. - Esta senha foi divulgada durante uma fuga de dados, não deve ser usada de novamente. Por favor usar uma senha outra. + Esta senha foi divulgada durante um vazamento de dados, não deve ser usada de novamente. Por favor usar uma senha outra. This value should be between {{ min }} and {{ max }}. - Este valor deve situar-se entre {{ min }} e {{ max }}. + Este valor deve estar entre {{ min }} e {{ max }}. This value is not a valid hostname. @@ -376,7 +376,7 @@ This value should satisfy at least one of the following constraints: - Este valor deve satisfazer pelo menos uma das seguintes restrições : + Este valor deve satisfazer pelo menos uma das seguintes restrições: Each element of this collection should satisfy its own set of constraints. @@ -428,11 +428,11 @@ The extension of the file is invalid ({{ extension }}). Allowed extensions are {{ extensions }}. - A extensão do ficheiro é inválida ({{ extension }}). As extensões permitidas são {{ extensions }}. + A extensão do arquivo é inválida ({{ extension }}). As extensões permitidas são {{ extensions }}. The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}. - A codificação de carateres detetada é inválida ({{ detected }}). As codificações permitidas são {{ encodings }}. + A codificação de carateres detectada é inválida ({{ detected }}). As codificações permitidas são {{ encodings }}. This value is not a valid MAC address. @@ -440,7 +440,15 @@ This URL is missing a top-level domain. - Esta URL está faltando um domínio de topo. + Esta URL está faltando o domínio de nível superior. + + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt_BR.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt_BR.xlf index e5fe095ea..e600bb17f 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt_BR.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.pt_BR.xlf @@ -440,7 +440,15 @@ This URL is missing a top-level domain. - Esta URL está faltando um domínio de topo. + Esta URL está faltando o domínio de nível superior. + + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ro.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ro.xlf index 3c0ace549..79cf6941a 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ro.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ro.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Acestui URL îi lipsește un domeniu de nivel superior. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ru.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ru.xlf index dbee06a98..70cb1144b 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ru.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ru.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. В этом URL отсутствует домен верхнего уровня. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sk.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sk.xlf index 8886395e6..8785adcc1 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sk.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sk.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Tomuto URL chýba doména najvyššej úrovne. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sl.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sl.xlf index 03e750b8a..4926c1b4f 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sl.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sl.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Temu URL manjka domena najvišje ravni. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sq.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sq.xlf index e9b31b882..9942b5cf2 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sq.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sq.xlf @@ -451,6 +451,14 @@ This URL is missing a top-level domain. Kësaj URL i mungon një domain i nivelit të lartë. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Cyrl.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Cyrl.xlf index 0550626d0..3aa3be49e 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Cyrl.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Cyrl.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Овом URL недостаје домен највишег нивоа. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Latn.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Latn.xlf index 5a85bd764..ac7d7186d 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Latn.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sr_Latn.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Ovom URL nedostaje domen najvišeg nivoa. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sv.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sv.xlf index d7be868c1..01668a87d 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sv.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.sv.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Denna URL saknar en toppdomän. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.th.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.th.xlf index 0d811ed04..c6f0b829a 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.th.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.th.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. URL นี้ขาดโดเมนระดับสูงสุด. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tl.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tl.xlf index 8e8146a0f..1d831bd8e 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tl.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tl.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Kulang ang URL na ito sa top-level domain. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tr.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tr.xlf index 3553af7b7..685e6ca1a 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tr.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.tr.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Bu URL bir üst düzey alan adı eksik. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uk.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uk.xlf index 7b9918910..b67e3e604 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uk.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uk.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Цьому URL не вистачає домену верхнього рівня. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ur.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ur.xlf index f994cb57a..d18604407 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ur.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.ur.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. اس URL میں ٹاپ لیول ڈومین موجود نہیں ہے۔ + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uz.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uz.xlf index 1e43fb0ff..d21bc24a3 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uz.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.uz.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. Bu URL yuqori darajali domenni o'z ichiga olmaydi. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.vi.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.vi.xlf index b3073cc73..e1cdb6d09 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.vi.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.vi.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. URL này thiếu miền cấp cao. + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_CN.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_CN.xlf index fabf86d3b..15b234fb0 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_CN.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_CN.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. 此URL缺少顶级域名。 + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + diff --git a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_TW.xlf b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_TW.xlf index feee108a1..3812029fc 100644 --- a/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_TW.xlf +++ b/upload/system/storage/vendor/symfony/validator/Resources/translations/validators.zh_TW.xlf @@ -442,6 +442,14 @@ This URL is missing a top-level domain. 此URL缺少頂級域名。 + + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + This value is too short. It should contain at least one word.|This value is too short. It should contain at least {{ min }} words. + + + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. + This value is too long. It should contain one word.|This value is too long. It should contain {{ max }} words or less. +