moved validator translation files to the Form and Validator components to make them reusable (closes #4588)

This commit is contained in:
Fabien Potencier 2012-06-16 13:08:37 +02:00
parent f881d28240
commit 76b2ed46d6
73 changed files with 685 additions and 423 deletions

View File

@ -4,6 +4,7 @@ CHANGELOG
2.1.0
-----
* moved the translation files to the Form and Validator components
* changed the default extension for XLIFF files from .xliff to .xlf
* moved Symfony\Bundle\FrameworkBundle\ContainerAwareEventDispatcher to Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher
* moved Symfony\Bundle\FrameworkBundle\Debug\TraceableEventDispatcher to Symfony\Component\EventDispatcher\ContainerAwareTraceableEventDispatcher

View File

@ -543,6 +543,16 @@ class FrameworkExtension extends Extension
if (is_dir($dir = $container->getParameter('kernel.root_dir').'/Resources/translations')) {
$dirs[] = $dir;
}
if (class_exists('Symfony\Component\Validator\Validator')) {
$r = new \ReflectionClass('Symfony\Component\Validator\Validator');
$dirs[] = dirname($r->getFilename()).'/Resources/translations';
}
if (class_exists('Symfony\Component\Form\Form')) {
$r = new \ReflectionClass('Symfony\Component\Form\Form');
$dirs[] = dirname($r->getFilename()).'/Resources/translations';
}
// Register translation resources
if ($dirs) {

View File

@ -183,10 +183,16 @@ abstract class FrameworkExtensionTest extends TestCase
}
}
$files = array_map(function($resource) use ($resources) { return str_replace(realpath(__DIR__.'/../../../../..').'/', '', realpath($resource[1])); }, $resources);
$this->assertContains(
realpath(__DIR__.'/../../Resources/translations/validators.fr.xlf'),
array_map(function($resource) use ($resources) { return realpath($resource[1]); }, $resources),
'->registerTranslatorConfiguration() finds FrameworkExtension translation resources'
'Symfony/Component/Validator/Resources/translations/validators.en.xlf',
$files,
'->registerTranslatorConfiguration() finds Validator translation resources'
);
$this->assertContains(
'Symfony/Component/Form/Resources/translations/validators.en.xlf',
$files,
'->registerTranslatorConfiguration() finds Form translation resources'
);
$calls = $container->getDefinition('translator.default')->getMethodCalls();

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Aquest formulari no hauria de contenir camps addicionals.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>L'arxiu pujat és massa gran. Per favor, pugi un arxiu més petit.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>El token CSRF no és vàlid.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Tato skupina polí nesmí obsahovat další pole.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Nahraný soubor je příliš velký. Nahrajte prosím menší soubor.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF token je neplatný. Zkuste prosím znovu odeslat formulář.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Feltgruppen må ikke indeholde ekstra felter.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Den oploadede fil var for stor. Opload venligst en mindre fil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF nøglen er ugyldig.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Dieses Formular sollte keine zusätzlichen Felder enthalten.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Die hochgeladene Datei ist zu groß. Versuchen Sie bitte eine kleinere Datei hochzuladen.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Das CSRF-Token ist ungültig. Versuchen Sie bitte das Formular erneut zu senden.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>This form should not contain extra fields.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>The uploaded file was too large. Please try to upload a smaller file.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>The CSRF token is invalid. Please try to resubmit the form.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Este formulario no debería contener campos adicionales.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>El archivo subido es demasiado grande. Por favor, suba un archivo más pequeño.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>El token CSRF no es válido.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version='1.0'?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Väljade grupp ei tohiks sisalda lisaväljasid.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Üleslaaditud fail oli liiga suur. Palun proovi uuesti väiksema failiga.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF-märgis on vigane. Palun proovi vormi uuesti esitada.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Formulario honek ez luke aparteko eremurik eduki behar.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Igotako fitxategia handiegia da. Mesedez saiatu fitxategi txikiago bat igotzen.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSFR tokena ez da egokia.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>این فرم نباید فیلد اضافی داشته باشد.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>فایل بارگذاری شده بسیار بزرگ است. لطفا فایل کوچکتری را بارگزاری کنید.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>مقدار CSRF نامعتبر است. لطفا فرم را مجددا ارسال فرمایید..</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This field group should not contain extra fields.</source>
<target>Tämä kenttäryhmä ei voi sisältää ylimääräisiä kenttiä.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Ladattu tiedosto on liian iso. Ole hyvä ja lataa pienempi tiedosto.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF tarkiste on virheellinen. Olen hyvä ja yritä lähettää lomake uudestaan.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ce formulaire ne doit pas contenir des champs supplémentaires.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Le fichier téléchargé est trop volumineux. Merci d'essayer d'envoyer un fichier plus petit.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Le jeton CSRF est invalide. Veuillez renvoyer le formulaire.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>הטופס לא צריך להכיל שדות נוספים.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>הקובץ שהועלה גדול מדי. נסה להעלות קובץ קטן יותר.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>אסימון CSRF אינו חוקי.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ovaj obrazac ne smije sadržavati dodatna polja.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Prenesena datoteka je prevelika. Molim pokušajte prenijeti manju datoteku.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF vrijednost nije ispravna. Pokušajte ponovo poslati obrazac.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ez a mezőcsoport nem tartalmazhat extra mezőket.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>A feltöltött fájl túl nagy. Kérem próbáljon egy kisebb fájlt feltölteni.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Érvénytelen CSRF token. Kérem próbálja újra elküldeni az űrlapot.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Այս ձևը չպետք է պարունակի լրացուցիչ տողեր.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Վերբեռնված ֆայլը չափազանց մեծ է: Խնդրվում է վերբեռնել ավելի փոքր չափսի ֆայլ.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF արժեքը անթույլատրելի է: Փորձեք նորից ուղարկել ձևը.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Gabungan kolom tidak boleh mengandung kolom tambahan.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Berkas yang di unggah terlalu besar. Silahkan coba unggah berkas yang lebih kecil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF-Token tidak sah. Silahkan coba kirim ulang formulir.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Questo form non dovrebbe contenere nessun campo extra.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Il file caricato è troppo grande. Per favore caricare un file più piccolo.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Il token CSRF non è valido. Provare a reinviare il form.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>フィールドグループに追加のフィールドを含んではなりません.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>アップロードされたファイルが大きすぎます。小さなファイルで再度アップロードしてください.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRFトークンが無効です.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Dës Feldergrupp sollt keng zousätzlech Felder enthalen.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>De geschécktene Fichier ass ze grouss. Versicht wann ech gelift ee méi klenge Fichier eropzelueden.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Den CSRF-Token ass ongëlteg. Versicht wann ech gelift de Formulaire nach eng Kéier ze schécken.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Forma negali turėti papildomų laukų.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Įkelta byla yra per didelė. bandykite įkelti mažesnę.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF kodas nepriimtinas. Bandykite siųsti formos užklausą dar kartą.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Форм нэмэлт талбар багтаах боломжгүй.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Upload хийсэн файл хэтэрхий том байна. Бага хэмжээтэй файл оруулна уу.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF token буруу байна. Формоо дахин илгээнэ үү.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Feltgruppen må ikke inneholde ekstra felter.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Den opplastede file var for stor. Vennligst last opp en mindre fil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF nøkkelen er ugyldig.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Dit formulier mag geen extra velden bevatten.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Het geüploade bestand is te groot. Probeer een kleiner bestand te uploaden.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>De CSRF-token is ongeldig. Probeer het formulier opnieuw te versturen.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ten formularz nie powinien zawierać dodatkowych pól.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Wgrany plik był za duży. Proszę spróbować wgrać mniejszy plik.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Token CSRF jest nieprawidłowy. Proszę spróbować wysłać formularz ponownie.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Este grupo de campos não deveria conter campos adicionais.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>O arquivo enviado é muito grande. Por favor, tente enviar um ficheiro mais pequeno.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>O token CSRF é inválido.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Este formulário não deve conter campos adicionais.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>O arquivo enviado é muito grande. Por favor, tente enviar um arquivo menor.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>O token CSRF é inválido. Por favor, tente reenviar o formulário.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Aceast formular nu ar trebui să conțină câmpuri suplimentare.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Fișierul încărcat a fost prea mare. Vă rugăm sa încărcați un fișier mai mic.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Token-ul CSRF este invalid. Vă rugăm să trimiteți formularul incă o dată.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Эта форма не должна содержать дополнительных полей.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Загруженный файл слишком большой. Пожалуйста, попробуйте загрузить файл меньшего размера.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF значение недопустимо. Пожалуйста, попробуйте повторить отправку формы.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Polia by nemali obsahovať ďalšie prvky.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Odoslaný súbor je príliš veľký. Prosím odošlite súbor s menšou veľkosťou.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF token je neplatný. Prosím skúste znovu odoslať formulár.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>To področje ne sme vsebovati dodatnih polj.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Naložena datoteka je prevelika. Prosim, poizkusite naložiti manjšo.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF vrednost je napačna. Prosimo, ponovno pošljite obrazec.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Овај формулар не треба да садржи додатна поља.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Отпремљена датотека је била превелика. Молим покушајте отпремање мање датотеке.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF вредност је невалидна.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ovaj formular ne treba da sadrži dodatna polja.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Otpremljena datoteka je bila prevelika. Molim pokušajte otpremanje manje datoteke.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF vrednost je nevalidna.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Formuläret kan inte innehålla extra fält.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Den uppladdade filen var för stor. Försök ladda upp en mindre fil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF-symbolen är inte giltig.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ця форма не повинна містити додаткових полів.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Завантажений файл занадто великий. Будь-ласка, спробуйте завантажити файл меншого розміру.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF значення недопустиме. Будь-ласка, спробуйте відправити форму знову.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>该表单中不可有额外字段.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>上传文件太大, 请重新尝试上传一个较小的文件.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF 验证符无效, 请重新提交.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Aquest valor no és una URL vàlida.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Aquest formulari no hauria de contenir camps addicionals.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>L'arxiu pujat és massa gran. Per favor, pugi un arxiu més petit.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>El token CSRF no és vàlid.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Els dos valors haurien de ser iguals.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Tato hodnota není platná URL adresa.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Tato skupina polí nesmí obsahovat další pole.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Nahraný soubor je příliš velký. Nahrajte prosím menší soubor.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF token je neplatný. Zkuste prosím znovu odeslat formulář.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Tyto dvě hodnoty musí být stejné.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Værdien er ikke en gyldig URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Feltgruppen må ikke indeholde ekstra felter.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Den oploadede fil var for stor. Opload venligst en mindre fil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF nøglen er ugyldig.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>De to værdier skal være ens.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Dieser Wert ist keine gültige URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Dieses Formular sollte keine zusätzlichen Felder enthalten.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Die hochgeladene Datei ist zu groß. Versuchen Sie bitte eine kleinere Datei hochzuladen.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Das CSRF-Token ist ungültig. Versuchen Sie bitte das Formular erneut zu senden.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Die beiden Werte sollten identisch sein.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>This value is not a valid URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>This form should not contain extra fields.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>The uploaded file was too large. Please try to upload a smaller file.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>The CSRF token is invalid. Please try to resubmit the form.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>The two values should be equal.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Este valor no es una URL válida.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Este formulario no debería contener campos adicionales.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>El archivo subido es demasiado grande. Por favor, suba un archivo más pequeño.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>El token CSRF no es válido.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Los dos valores deberían ser iguales.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Väärtus pole korrektne URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Väljade grupp ei tohiks sisalda lisaväljasid.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Üleslaaditud fail oli liiga suur. Palun proovi uuesti väiksema failiga.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF-märgis on vigane. Palun proovi vormi uuesti esitada.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Väärtused peaksid olema võrdsed.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Balio hau ez da URL egoki bat.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Formulario honek ez luke aparteko eremurik eduki behar.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Igotako fitxategia handiegia da. Mesedez saiatu fitxategi txikiago bat igotzen.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSFR tokena ez da egokia.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Bi balioak berdinak izan beharko lirateke.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>این یک URL معتبر نیست.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>این فرم نباید فیلد اضافی داشته باشد.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>فایل بارگذاری شده بسیار بزرگ است. لطفا فایل کوچکتری را بارگزاری کنید.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>مقدار CSRF نامعتبر است. لطفا فرم را مجددا ارسال فرمایید..</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>دو مقدار باید برابر باشند.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Annettu arvo ei ole kelvollinen URL-osoite.</target>
</trans-unit>
<trans-unit id="28">
<source>This field group should not contain extra fields.</source>
<target>Tämä kenttäryhmä ei voi sisältää ylimääräisiä kenttiä.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Ladattu tiedosto on liian iso. Ole hyvä ja lataa pienempi tiedosto.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF tarkiste on virheellinen. Olen hyvä ja yritä lähettää lomake uudestaan.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Kahden annetun arvon tulee olla samat.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Cette valeur n'est pas une URL valide.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ce formulaire ne doit pas contenir des champs supplémentaires.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Le fichier téléchargé est trop volumineux. Merci d'essayer d'envoyer un fichier plus petit.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Le jeton CSRF est invalide. Veuillez renvoyer le formulaire.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Les deux valeurs doivent être identiques.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>זאת אינה כתובת אתר תקינה.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>הטופס לא צריך להכיל שדות נוספים.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>הקובץ שהועלה גדול מדי. נסה להעלות קובץ קטן יותר.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>אסימון CSRF אינו חוקי.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>שני הערכים צריכים להיות שווים.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Ova vrijednost nije ispravan URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ovaj obrazac ne smije sadržavati dodatna polja.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Prenesena datoteka je prevelika. Molim pokušajte prenijeti manju datoteku.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF vrijednost nije ispravna. Pokušajte ponovo poslati obrazac.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Obje vrijednosti trebaju biti jednake.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Ez az érték nem egy szabályos URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ez a mezőcsoport nem tartalmazhat extra mezőket.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>A feltöltött fájl túl nagy. Kérem próbáljon egy kisebb fájlt feltölteni.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Érvénytelen CSRF token. Kérem próbálja újra elküldeni az űrlapot.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>A két értéknek azonosnak kell lennie.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Արժեքը URL չէ.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Այս ձևը չպետք է պարունակի լրացուցիչ տողեր.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Վերբեռնված ֆայլը չափազանց մեծ է: Խնդրվում է վերբեռնել ավելի փոքր չափսի ֆայլ.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF արժեքը անթույլատրելի է: Փորձեք նորից ուղարկել ձևը.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Երկու արժեքները պետք է նույնը լինեն.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Nilai ini bukan URL yang sah.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Gabungan kolom tidak boleh mengandung kolom tambahan.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Berkas yang di unggah terlalu besar. Silahkan coba unggah berkas yang lebih kecil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF-Token tidak sah. Silahkan coba kirim ulang formulir.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Isi keduanya harus sama.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Questo valore non è un URL valido.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Questo form non dovrebbe contenere nessun campo extra.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Il file caricato è troppo grande. Per favore caricare un file più piccolo.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Il token CSRF non è valido. Provare a reinviare il form.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>I due valori dovrebbero essere uguali.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>値が有効なURLではありません.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>フィールドグループに追加のフィールドを含んではなりません.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>アップロードされたファイルが大きすぎます。小さなファイルで再度アップロードしてください.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRFトークンが無効です.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>2つの値が同じでなければなりません.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Dëse Wäert ass keng gëlteg URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Dës Feldergrupp sollt keng zousätzlech Felder enthalen.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>De geschécktene Fichier ass ze grouss. Versicht wann ech gelift ee méi klenge Fichier eropzelueden.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Den CSRF-Token ass ongëlteg. Versicht wann ech gelift de Formulaire nach eng Kéier ze schécken.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Béid Wäerter sollten identesch sinn.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Ši reikšmė nėra tinkamas interneto adresas.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Forma negali turėti papildomų laukų.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Įkelta byla yra per didelė. bandykite įkelti mažesnę.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF kodas nepriimtinas. Bandykite siųsti formos užklausą dar kartą.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Abi reikšmės turi būti identiškos.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Энэ утга буруу URL байна .</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Форм нэмэлт талбар багтаах боломжгүй.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Upload хийсэн файл хэтэрхий том байна. Бага хэмжээтэй файл оруулна уу.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF token буруу байна. Формоо дахин илгээнэ үү.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Хоёр утгууд ижил байх ёстой.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Verdien er ikke en gyldig URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Feltgruppen må ikke inneholde ekstra felter.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Den opplastede file var for stor. Vennligst last opp en mindre fil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF nøkkelen er ugyldig.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>De to verdier skal være ens.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Deze waarde is geen geldige URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Dit formulier mag geen extra velden bevatten.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Het geüploade bestand is te groot. Probeer een kleiner bestand te uploaden.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>De CSRF-token is ongeldig. Probeer het formulier opnieuw te versturen.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>De twee waarden moeten gelijk zijn.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Ta wartość nie jest prawidłowym adresem URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ten formularz nie powinien zawierać dodatkowych pól.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Wgrany plik był za duży. Proszę spróbować wgrać mniejszy plik.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Token CSRF jest nieprawidłowy. Proszę spróbować wysłać formularz ponownie.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Obie wartości powinny być równe.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Este valor não é um URL válido.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Este grupo de campos não deveria conter campos adicionais.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>O arquivo enviado é muito grande. Por favor, tente enviar um ficheiro mais pequeno.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>O token CSRF é inválido.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Os dois valores deveriam ser iguais.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Este valor não é uma URL válida.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Este formulário não deve conter campos adicionais.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>O arquivo enviado é muito grande. Por favor, tente enviar um arquivo menor.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>O token CSRF é inválido. Por favor, tente reenviar o formulário.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Os dois valores devem ser iguais.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Această valoare nu reprezintă un URL (link) valid.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Aceast formular nu ar trebui să conțină câmpuri suplimentare.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Fișierul încărcat a fost prea mare. Vă rugăm sa încărcați un fișier mai mic.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>Token-ul CSRF este invalid. Vă rugăm să trimiteți formularul incă o dată.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Cele două valori ar trebui să fie egale.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Значение URL недопустимо.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Эта форма не должна содержать дополнительных полей.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Загруженный файл слишком большой. Пожалуйста, попробуйте загрузить файл меньшего размера.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF значение недопустимо. Пожалуйста, попробуйте повторить отправку формы.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Оба значения должны быть одинаковыми.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Táto hodnota nie je platnou URL adresou.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Polia by nemali obsahovať ďalšie prvky.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Odoslaný súbor je príliš veľký. Prosím odošlite súbor s menšou veľkosťou.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF token je neplatný. Prosím skúste znovu odoslať formulár.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Tieto dve hodnoty by mali byť rovnaké.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Vrednost ne vsebuje veljavnega URL naslova.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>To področje ne sme vsebovati dodatnih polj.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Naložena datoteka je prevelika. Prosim, poizkusite naložiti manjšo.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF vrednost je napačna. Prosimo, ponovno pošljite obrazec.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Vrednosti morata biti enaki.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Вредност није валидан URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Овај формулар не треба да садржи додатна поља.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Отпремљена датотека је била превелика. Молим покушајте отпремање мање датотеке.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF вредност је невалидна.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Обе вредности треба да буду једнаке.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Vrednost nije validan URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ovaj formular ne treba da sadrži dodatna polja.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Otpremljena datoteka je bila prevelika. Molim pokušajte otpremanje manje datoteke.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF vrednost je nevalidna.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Obe vrednosti treba da budu jednake.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Värdet är inte en giltig URL.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Formuläret kan inte innehålla extra fält.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Den uppladdade filen var för stor. Försök ladda upp en mindre fil.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid.</source>
<target>CSRF-symbolen är inte giltig.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>De två värdena måste vara lika.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>Значення URL недопустиме.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>Ця форма не повинна містити додаткових полів.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>Завантажений файл занадто великий. Будь-ласка, спробуйте завантажити файл меншого розміру.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF значення недопустиме. Будь-ласка, спробуйте відправити форму знову.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>Обидва занчення повинні бути одинаковими.</target>

View File

@ -110,18 +110,6 @@
<source>This value is not a valid URL.</source>
<target>该值不是一个有效的 URL 地址.</target>
</trans-unit>
<trans-unit id="28">
<source>This form should not contain extra fields.</source>
<target>该表单中不可有额外字段.</target>
</trans-unit>
<trans-unit id="29">
<source>The uploaded file was too large. Please try to upload a smaller file.</source>
<target>上传文件太大, 请重新尝试上传一个较小的文件.</target>
</trans-unit>
<trans-unit id="30">
<source>The CSRF token is invalid. Please try to resubmit the form.</source>
<target>CSRF 验证符无效, 请重新提交.</target>
</trans-unit>
<trans-unit id="31">
<source>The two values should be equal.</source>
<target>该两个变量的值应该相同.</target>