Co-authored-by: hugo.pradier2 <hugo.pradier2@etu.uca.fr> Co-authored-by: clfreville2 <clement.freville2@etu.uca.fr> Reviewed-on: #15 Reviewed-by: Clément FRÉVILLE <clement.freville2@etu.uca.fr> Co-authored-by: Hugo PRADIER <hugo.pradier2@etu.uca.fr> Co-committed-by: Hugo PRADIER <hugo.pradier2@etu.uca.fr>pull/18/head
parent
ccb2b541ea
commit
8a1edeb938
@ -1,7 +1,6 @@
|
||||
framework:
|
||||
default_locale: en
|
||||
translator:
|
||||
default_path: '%kernel.project_dir%/translations'
|
||||
fallbacks:
|
||||
- en
|
||||
providers:
|
||||
default_locale: "en"
|
||||
translator:
|
||||
default_path: "%kernel.project_dir%/translations"
|
||||
fallbacks:
|
||||
- "en"
|
||||
|
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\Routing\Attribute\Route;
|
||||
use Symfony\Component\Translation\LocaleSwitcher;
|
||||
|
||||
class SettingController extends AbstractController
|
||||
{
|
||||
#[Route('/setting/{locale}', name: 'app_setting_locale')]
|
||||
public function index(LocaleSwitcher $localeSwitcher, string $locale, Request $request): Response
|
||||
{
|
||||
$localeSwitcher->setLocale($locale);
|
||||
$request->getSession()->set('_locale', $locale);
|
||||
return $this->redirectToRoute('app_posts');
|
||||
}
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\EventListener;
|
||||
|
||||
use Symfony\Component\EventDispatcher\Attribute\AsEventListener;
|
||||
use Symfony\Component\HttpKernel\Event\RequestEvent;
|
||||
use Symfony\Component\HttpKernel\KernelEvents;
|
||||
use Symfony\Component\Translation\LocaleSwitcher;
|
||||
|
||||
final readonly class LocaleListener
|
||||
{
|
||||
public function __construct(private LocaleSwitcher $localeSwitcher)
|
||||
{
|
||||
}
|
||||
|
||||
#[AsEventListener(event: KernelEvents::REQUEST)]
|
||||
public function onKernelRequest(RequestEvent $event): void
|
||||
{
|
||||
$request = $event->getRequest();
|
||||
if ($request->attributes->getBoolean('_stateless')) {
|
||||
return;
|
||||
}
|
||||
$locale = $request->getSession()->get('_locale');
|
||||
if ($locale !== null) {
|
||||
$this->localeSwitcher->setLocale($locale);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
<form method="post" action="{{ path('app_post_delete', {'id': post.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||||
<form method="post" action="{{ path('app_post_delete', {'id': post.id}) }}" onsubmit="return confirm('{{ 'delete_confirm'|trans }}');">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ post.id) }}">
|
||||
<button class="btn btn-danger">Delete</button>
|
||||
<button class="btn btn-danger">{{ 'delete'|trans }}</button>
|
||||
</form>
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{ form_start(form) }}
|
||||
{{ form_widget(form) }}
|
||||
<button class="btn btn-primary">{{ button_label|default('Save') }}</button>
|
||||
<button class="btn">{{ button_label|default('save'|trans) }}</button>
|
||||
{{ form_end(form) }}
|
||||
|
@ -1,11 +1,11 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}New Post{% endblock %}
|
||||
{% block title %}{{ 'new_post'|trans }}{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Create new Post</h1>
|
||||
<h1>{{ 'create_new_post'|trans }}</h1>
|
||||
|
||||
{{ include('post/_form.html.twig') }}
|
||||
|
||||
<a href="{{ path('app_post_index') }}">back to list</a>
|
||||
<a href="{{ path('app_post_index') }}">{{ 'back_to_list'|trans }}</a>
|
||||
{% endblock %}
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form method="post" action="{{ path('app_species_delete', {'id': species.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||||
<form method="post" action="{{ path('app_species_delete', {'id': species.id}) }}" onsubmit="return confirm('{{ 'delete_item_confirmation'|trans }}');">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ species.id) }}">
|
||||
<button class="btn btn-danger">Delete</button>
|
||||
<button class="btn btn-danger">{{ 'delete'|trans }}</button>
|
||||
</form>
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{ form_start(form) }}
|
||||
{{ form_widget(form) }}
|
||||
<button class="btn">{{ button_label|default('Save') }}</button>
|
||||
<button class="btn">{{ button_label|default('save'|trans) }}</button>
|
||||
{{ form_end(form) }}
|
||||
|
@ -1,13 +1,12 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}Edit Species{% endblock %}
|
||||
{% block title %}{{ 'edit_species'|trans }}{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Edit Species</h1>
|
||||
<h1>{{ 'edit_species'|trans }}</h1>
|
||||
{{ include('species/_form.html.twig', {'button_label': 'update'|trans}) }}
|
||||
|
||||
{{ include('species/_form.html.twig', {'button_label': 'Update'}) }}
|
||||
|
||||
<a href="{{ path('app_species_index') }}">back to list</a>
|
||||
<a href="{{ path('app_species_index') }}">{{ 'back_to_list'|trans }}</a>
|
||||
|
||||
{{ include('species/_delete_form.html.twig') }}
|
||||
{% endblock %}
|
||||
|
@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="en" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="6N13O6N" resname="%count% year|%count% years">
|
||||
<source>%count% year|%count% years</source>
|
||||
<target>%count% year|%count% years</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JDuOYji" resname="%count% month|%count% months">
|
||||
<source>%count% month|%count% months</source>
|
||||
<target>%count% month|%count% months</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1XIoEkl" resname="%count% day|%count% days">
|
||||
<source>%count% day|%count% days</source>
|
||||
<target>%count% day|%count% days</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="KhyXNHg" resname="%count% hour|%count% hours">
|
||||
<source>%count% hour|%count% hours</source>
|
||||
<target>%count% hour|%count% hours</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pfyolJX" resname="%count% minute|%count% minutes">
|
||||
<source>%count% minute|%count% minutes</source>
|
||||
<target>%count% minute|%count% minutes</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bSCr1q0" resname="The link to verify your email has expired. Please request a new link.">
|
||||
<source>The link to verify your email has expired. Please request a new link.</source>
|
||||
<target>The link to verify your email has expired. Please request a new link.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zJ5tS45" resname="The link to verify your email is invalid. Please request a new link.">
|
||||
<source>The link to verify your email is invalid. Please request a new link.</source>
|
||||
<target>The link to verify your email is invalid. Please request a new link.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="phw35fR" resname="The link to verify your email appears to be for a different account or email. Please request a new link.">
|
||||
<source>The link to verify your email appears to be for a different account or email. Please request a new link.</source>
|
||||
<target>The link to verify your email appears to be for a different account or email. Please request a new link.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="fr" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="6N13O6N" resname="%count% year|%count% years">
|
||||
<source>%count% year|%count% years</source>
|
||||
<target>%count% année|%count% années</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JDuOYji" resname="%count% month|%count% months">
|
||||
<source>%count% month|%count% months</source>
|
||||
<target>%count% mois|%count% mois</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1XIoEkl" resname="%count% day|%count% days">
|
||||
<source>%count% day|%count% days</source>
|
||||
<target>%count% jour|%count% jours</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="KhyXNHg" resname="%count% hour|%count% hours">
|
||||
<source>%count% hour|%count% hours</source>
|
||||
<target>%count% heure|%count% heures</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pfyolJX" resname="%count% minute|%count% minutes">
|
||||
<source>%count% minute|%count% minutes</source>
|
||||
<target>%count% minute|%count% minutes</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bSCr1q0" resname="The link to verify your email has expired. Please request a new link.">
|
||||
<source>The link to verify your email has expired. Please request a new link.</source>
|
||||
<target>Le lien pour vérifier votre adresse e-mail a expiré. Veuillez refaire une demande de réinitialisation.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zJ5tS45" resname="The link to verify your email is invalid. Please request a new link.">
|
||||
<source>The link to verify your email is invalid. Please request a new link.</source>
|
||||
<target>Le lien pour vérifier votre adresse e-mail est invalide. Veuillez refaire une demande de réinitialisation.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="phw35fR" resname="The link to verify your email appears to be for a different account or email. Please request a new link.">
|
||||
<source>The link to verify your email appears to be for a different account or email. Please request a new link.</source>
|
||||
<target>Le lien permettant de vérifier votre adresse e-mail semble correspondre à un autre compte ou e-mail. Veuillez refaire une demande de réinitialisation.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,166 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="en" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="YZdZVQP" resname="delete">
|
||||
<source>delete</source>
|
||||
<target>Delete</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="UxQ6yOJ" resname="delete_confirm">
|
||||
<source>delete_confirm</source>
|
||||
<target>Are you sure you want to delete ?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HdfOyeN" resname="log_out">
|
||||
<source>log_out</source>
|
||||
<target>Log out</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9GluP_Z" resname="sign_in">
|
||||
<source>sign_in</source>
|
||||
<target>Sign in</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4KsITuF" resname="welcome_to_herbarium">
|
||||
<source>welcome_to_herbarium</source>
|
||||
<target>Welcome to Herbarium</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Sgicbu." resname="new_post">
|
||||
<source>new_post</source>
|
||||
<target>New post</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qO7xvGM" resname="create_new_post">
|
||||
<source>create_new_post</source>
|
||||
<target>Create new post</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6tlp1bV" resname="back_to_list">
|
||||
<source>back_to_list</source>
|
||||
<target>Back to list</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ciMQQ7w" resname="post">
|
||||
<source>post</source>
|
||||
<target>Post</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="kYfLlLH" resname="found_date">
|
||||
<source>found_date</source>
|
||||
<target>Found date</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9dkpsMH" resname="publication_date">
|
||||
<source>publication_date</source>
|
||||
<target>Publication date</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8aDBGnK" resname="commentary">
|
||||
<source>commentary</source>
|
||||
<target>Commentary</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JiEhxTc" resname="edit">
|
||||
<source>edit</source>
|
||||
<target>Edit</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="U_vIxYE" resname="post_index">
|
||||
<source>post_index</source>
|
||||
<target>Post index</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HGMzUJ3" resname="show">
|
||||
<source>show</source>
|
||||
<target>Show</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="oQmcLRD" resname="no_records_found">
|
||||
<source>no_records_found</source>
|
||||
<target>No records found</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gyoULLl" resname="create_new">
|
||||
<source>create_new</source>
|
||||
<target>Create new</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="h3gPpd5" resname="register">
|
||||
<source>register</source>
|
||||
<target>Register</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="wqAwPIi" resname="log_in">
|
||||
<source>log_in</source>
|
||||
<target>Log in</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ACcM9j_" resname="logout">
|
||||
<source>logout</source>
|
||||
<target>Log out</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="XohImNo" resname="password">
|
||||
<source>password</source>
|
||||
<target>Password</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cQTa6mh" resname="sign_up">
|
||||
<source>sign_up</source>
|
||||
<target>Sign up</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="FVnWqjw" resname="species">
|
||||
<source>species</source>
|
||||
<target>Species</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="58l4nOZ" resname="list_of_species">
|
||||
<source>list_of_species</source>
|
||||
<target>List of species</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3IbHCy0" resname="scientific_name">
|
||||
<source>scientific_name</source>
|
||||
<target>Scientific name</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xpfSmBv" resname="region">
|
||||
<source>region</source>
|
||||
<target>Region</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="iA_exVF" resname="create_new_species">
|
||||
<source>create_new_species</source>
|
||||
<target>Create new species</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pE8bl1F" resname="posts">
|
||||
<source>posts</source>
|
||||
<target>Posts</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="hbodWwA" resname="geolocation">
|
||||
<source>geolocation</source>
|
||||
<target>Geolocation</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PtPzXVl" resname="species_index">
|
||||
<source>species_index</source>
|
||||
<target>Species index</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WTuMcLo" resname="vernacular_name">
|
||||
<source>vernacular_name</source>
|
||||
<target>Vernacular name</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="P2Pdcsp" resname="delete_item_confirmation">
|
||||
<source>delete_item_confirmation</source>
|
||||
<target>Are you sure you want to delete this item ?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="baBjNSj" resname="previous">
|
||||
<source>previous</source>
|
||||
<target>Previous</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xsHJqch" resname="next">
|
||||
<source>next</source>
|
||||
<target>Next</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="duzbdbz" resname="post_undefined">
|
||||
<source>post_undefined</source>
|
||||
<target>Post undefined</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="adzfezg" resname="edit_species">
|
||||
<source>edit_species</source>
|
||||
<target>Edit species</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="sczbhz" resname="edit_post">
|
||||
<source>edit_post</source>
|
||||
<target>Edit post</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bczhbcbz" resname="update">
|
||||
<source>update</source>
|
||||
<target>Update</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zdhzvdhb" resname="save">
|
||||
<source>save</source>
|
||||
<target>Save</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,166 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="fr" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="YZdZVQP" resname="delete">
|
||||
<source>delete</source>
|
||||
<target>Supprimer</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="UxQ6yOJ" resname="delete_confirm">
|
||||
<source>delete_confirm</source>
|
||||
<target>Êtes-vous sûr de vouloir supprimer ?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HdfOyeN" resname="log_out">
|
||||
<source>log_out</source>
|
||||
<target>Se déconnecter</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9GluP_Z" resname="sign_in">
|
||||
<source>sign_in</source>
|
||||
<target>Se connecter</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4KsITuF" resname="welcome_to_herbarium">
|
||||
<source>welcome_to_herbarium</source>
|
||||
<target>Bienvenue sur Herbarium</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Sgicbu." resname="new_post">
|
||||
<source>new_post</source>
|
||||
<target>Nouvelle publication</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qO7xvGM" resname="create_new_post">
|
||||
<source>create_new_post</source>
|
||||
<target>Création d'une nouvelle publication</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6tlp1bV" resname="back_to_list">
|
||||
<source>back_to_list</source>
|
||||
<target>Retour à la liste</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ciMQQ7w" resname="post">
|
||||
<source>post</source>
|
||||
<target>Publication</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="kYfLlLH" resname="found_date">
|
||||
<source>found_date</source>
|
||||
<target>Date de découverte</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9dkpsMH" resname="publication_date">
|
||||
<source>publication_date</source>
|
||||
<target>Date de publication</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8aDBGnK" resname="commentary">
|
||||
<source>commentary</source>
|
||||
<target>Commentaire</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JiEhxTc" resname="edit">
|
||||
<source>edit</source>
|
||||
<target>Éditer</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="U_vIxYE" resname="post_index">
|
||||
<source>post_index</source>
|
||||
<target>Index des publications</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HGMzUJ3" resname="show">
|
||||
<source>show</source>
|
||||
<target>Montrer</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="oQmcLRD" resname="no_records_found">
|
||||
<source>no_records_found</source>
|
||||
<target>Pas d'enregistrements trouvés</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gyoULLl" resname="create_new">
|
||||
<source>create_new</source>
|
||||
<target>Création d'un nouvel enregistrement</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="h3gPpd5" resname="register">
|
||||
<source>register</source>
|
||||
<target>Créer un compte</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="wqAwPIi" resname="log_in">
|
||||
<source>log_in</source>
|
||||
<target>Se connecter</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ACcM9j_" resname="logout">
|
||||
<source>logout</source>
|
||||
<target>Se déconnecter</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="XohImNo" resname="password">
|
||||
<source>password</source>
|
||||
<target>Mot de passe</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cQTa6mh" resname="sign_up">
|
||||
<source>sign_up</source>
|
||||
<target>S'inscrire</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="FVnWqjw" resname="species">
|
||||
<source>species</source>
|
||||
<target>Espèces</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="58l4nOZ" resname="list_of_species">
|
||||
<source>list_of_species</source>
|
||||
<target>Liste des espèces</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3IbHCy0" resname="scientific_name">
|
||||
<source>scientific_name</source>
|
||||
<target>Nom scientifique</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xpfSmBv" resname="region">
|
||||
<source>region</source>
|
||||
<target>Région</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="iA_exVF" resname="create_new_species">
|
||||
<source>create_new_species</source>
|
||||
<target>Créer une nouvelle espèce</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pE8bl1F" resname="posts">
|
||||
<source>posts</source>
|
||||
<target>Publications</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="hbodWwA" resname="geolocation">
|
||||
<source>geolocation</source>
|
||||
<target>Géolocalisation</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PtPzXVl" resname="species_index">
|
||||
<source>species_index</source>
|
||||
<target>Index des espèces</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WTuMcLo" resname="vernacular_name">
|
||||
<source>vernacular_name</source>
|
||||
<target>Nom vernaculaire</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="P2Pdcsp" resname="delete_item_confirmation">
|
||||
<source>delete_item_confirmation</source>
|
||||
<target>Êtes-vous sûr de vouloir supprimer ?</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="baBjNSj" resname="previous">
|
||||
<source>previous</source>
|
||||
<target>Retour</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xsHJqch" resname="next">
|
||||
<source>next</source>
|
||||
<target>Suivant</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="duzbdbz" resname="post_undefined">
|
||||
<source>post_undefined</source>
|
||||
<target>Publication non définie</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="adzfezg" resname="edit_species">
|
||||
<source>edit_species</source>
|
||||
<target>Éditer l'espèce</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="sczbhz" resname="edit_post">
|
||||
<source>edit_post</source>
|
||||
<target>Éditer la publication</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bczhbcbz" resname="update">
|
||||
<source>update</source>
|
||||
<target>Mettre à jour</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zdhzvdhb" resname="save">
|
||||
<source>save</source>
|
||||
<target>Sauvegarder</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="en" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="baI_ZxO" resname="An authentication exception occurred.">
|
||||
<source>An authentication exception occurred.</source>
|
||||
<target>An authentication exception occurred.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="OETylMq" resname="Authentication credentials could not be found.">
|
||||
<source>Authentication credentials could not be found.</source>
|
||||
<target>Authentication credentials could not be found.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3RJINQ0" resname="Authentication request could not be processed due to a system problem.">
|
||||
<source>Authentication request could not be processed due to a system problem.</source>
|
||||
<target>Authentication request could not be processed due to a system problem.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qr0aiUo" resname="Invalid credentials.">
|
||||
<source>Invalid credentials.</source>
|
||||
<target>Invalid credentials.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zrJWK0F" resname="Cookie has already been used by someone else.">
|
||||
<source>Cookie has already been used by someone else.</source>
|
||||
<target>Cookie has already been used by someone else.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="blC0fXX" resname="Not privileged to request the resource.">
|
||||
<source>Not privileged to request the resource.</source>
|
||||
<target>Not privileged to request the resource.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="dLzMRPR" resname="Invalid CSRF token.">
|
||||
<source>Invalid CSRF token.</source>
|
||||
<target>Invalid CSRF token.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PhhlLem" resname="No authentication provider found to support the authentication token.">
|
||||
<source>No authentication provider found to support the authentication token.</source>
|
||||
<target>No authentication provider found to support the authentication token.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="v_RS21A" resname="No session available, it either timed out or cookies are not enabled.">
|
||||
<source>No session available, it either timed out or cookies are not enabled.</source>
|
||||
<target>No session available, it either timed out or cookies are not enabled.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="EYCKpDH" resname="No token could be found.">
|
||||
<source>No token could be found.</source>
|
||||
<target>No token could be found.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="z3cOUZo" resname="Username could not be found.">
|
||||
<source>Username could not be found.</source>
|
||||
<target>Username could not be found.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="By5eLYM" resname="Account has expired.">
|
||||
<source>Account has expired.</source>
|
||||
<target>Account has expired.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YfZhiuA" resname="Credentials have expired.">
|
||||
<source>Credentials have expired.</source>
|
||||
<target>Credentials have expired.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NrSSfLs" resname="Account is disabled.">
|
||||
<source>Account is disabled.</source>
|
||||
<target>Account is disabled.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="O5ZyxHr" resname="Account is locked.">
|
||||
<source>Account is locked.</source>
|
||||
<target>Account is locked.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gd.MOnZ" resname="Too many failed login attempts, please try again later.">
|
||||
<source>Too many failed login attempts, please try again later.</source>
|
||||
<target>Too many failed login attempts, please try again later.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="l9VYRj0" resname="Invalid or expired login link.">
|
||||
<source>Invalid or expired login link.</source>
|
||||
<target>Invalid or expired login link.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9qGC3hG" resname="Too many failed login attempts, please try again in %minutes% minute.">
|
||||
<source>Too many failed login attempts, please try again in %minutes% minute.</source>
|
||||
<target>Too many failed login attempts, please try again in %minutes% minute.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="fr" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="baI_ZxO" resname="An authentication exception occurred.">
|
||||
<source>An authentication exception occurred.</source>
|
||||
<target>Une exception d'authentification s'est produite.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="OETylMq" resname="Authentication credentials could not be found.">
|
||||
<source>Authentication credentials could not be found.</source>
|
||||
<target>Les identifiants d'authentification n'ont pas pu être trouvés.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3RJINQ0" resname="Authentication request could not be processed due to a system problem.">
|
||||
<source>Authentication request could not be processed due to a system problem.</source>
|
||||
<target>La requête d'authentification n'a pas pu être executée à cause d'un problème système.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qr0aiUo" resname="Invalid credentials.">
|
||||
<source>Invalid credentials.</source>
|
||||
<target>Identifiants invalides.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zrJWK0F" resname="Cookie has already been used by someone else.">
|
||||
<source>Cookie has already been used by someone else.</source>
|
||||
<target>Le cookie a déjà été utilisé par quelqu'un d'autre.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="blC0fXX" resname="Not privileged to request the resource.">
|
||||
<source>Not privileged to request the resource.</source>
|
||||
<target>Privilèges insuffisants pour accéder à la ressource.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="dLzMRPR" resname="Invalid CSRF token.">
|
||||
<source>Invalid CSRF token.</source>
|
||||
<target>Jeton CSRF invalide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PhhlLem" resname="No authentication provider found to support the authentication token.">
|
||||
<source>No authentication provider found to support the authentication token.</source>
|
||||
<target>Aucun fournisseur d'authentification n'a été trouvé pour supporter le jeton d'authentification.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="v_RS21A" resname="No session available, it either timed out or cookies are not enabled.">
|
||||
<source>No session available, it either timed out or cookies are not enabled.</source>
|
||||
<target>Aucune session disponible, celle-ci a expiré ou les cookies ne sont pas activés.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="EYCKpDH" resname="No token could be found.">
|
||||
<source>No token could be found.</source>
|
||||
<target>Aucun jeton n'a pu être trouvé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="z3cOUZo" resname="Username could not be found.">
|
||||
<source>Username could not be found.</source>
|
||||
<target>Le nom d'utilisateur n'a pas pu être trouvé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="By5eLYM" resname="Account has expired.">
|
||||
<source>Account has expired.</source>
|
||||
<target>Le compte a expiré.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YfZhiuA" resname="Credentials have expired.">
|
||||
<source>Credentials have expired.</source>
|
||||
<target>Les identifiants ont expiré.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NrSSfLs" resname="Account is disabled.">
|
||||
<source>Account is disabled.</source>
|
||||
<target>Le compte est désactivé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="O5ZyxHr" resname="Account is locked.">
|
||||
<source>Account is locked.</source>
|
||||
<target>Le compte est bloqué.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gd.MOnZ" resname="Too many failed login attempts, please try again later.">
|
||||
<source>Too many failed login attempts, please try again later.</source>
|
||||
<target>Plusieurs tentatives de connexion ont échoué, veuillez réessayer plus tard.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="l9VYRj0" resname="Invalid or expired login link.">
|
||||
<source>Invalid or expired login link.</source>
|
||||
<target>Lien de connexion invalide ou expiré.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9qGC3hG" resname="Too many failed login attempts, please try again in %minutes% minute.">
|
||||
<source>Too many failed login attempts, please try again in %minutes% minute.</source>
|
||||
<target>Plusieurs tentatives de connexion ont échoué, veuillez réessayer dans %minutes% minute.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,598 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="en" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="zh5oKD9" resname="This value should be false.">
|
||||
<source>This value should be false.</source>
|
||||
<target>This value should be false.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NN2_iru" resname="This value should be true.">
|
||||
<source>This value should be true.</source>
|
||||
<target>This value should be true.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="OjM_kpf" resname="This value should be of type {{ type }}.">
|
||||
<source>This value should be of type {{ type }}.</source>
|
||||
<target>This value should be of type {{ type }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="f0P5pBD" resname="This value should be blank.">
|
||||
<source>This value should be blank.</source>
|
||||
<target>This value should be blank.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ih.4TRN" resname="The value you selected is not a valid choice.">
|
||||
<source>The value you selected is not a valid choice.</source>
|
||||
<target>The value you selected is not a valid choice.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="u81CkP8" resname="You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices.">
|
||||
<source>You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices.</source>
|
||||
<target>You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="nIvOQ_o" resname="You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices.">
|
||||
<source>You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices.</source>
|
||||
<target>You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="87zjiHi" resname="One or more of the given values is invalid.">
|
||||
<source>One or more of the given values is invalid.</source>
|
||||
<target>One or more of the given values is invalid.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3NeQftv" resname="This field was not expected.">
|
||||
<source>This field was not expected.</source>
|
||||
<target>This field was not expected.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="SwMV4zp" resname="This field is missing.">
|
||||
<source>This field is missing.</source>
|
||||
<target>This field is missing.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="LO2vFKN" resname="This value is not a valid date.">
|
||||
<source>This value is not a valid date.</source>
|
||||
<target>This value is not a valid date.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="86dU_nv" resname="This value is not a valid datetime.">
|
||||
<source>This value is not a valid datetime.</source>
|
||||
<target>This value is not a valid datetime.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PSvNXdi" resname="This value is not a valid email address.">
|
||||
<source>This value is not a valid email address.</source>
|
||||
<target>This value is not a valid email address.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3KeHbZy" resname="The file could not be found.">
|
||||
<source>The file could not be found.</source>
|
||||
<target>The file could not be found.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="KtJhQZo" resname="The file is not readable.">
|
||||
<source>The file is not readable.</source>
|
||||
<target>The file is not readable.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JocOVM2" resname="The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}.">
|
||||
<source>The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}.</source>
|
||||
<target>The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YW21SPH" resname="The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}.">
|
||||
<source>The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}.</source>
|
||||
<target>The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NubOmrs" resname="This value should be {{ limit }} or less.">
|
||||
<source>This value should be {{ limit }} or less.</source>
|
||||
<target>This value should be {{ limit }} or less.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HX7TOFm" resname="This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.">
|
||||
<source>This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.</source>
|
||||
<target>This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qgR8M_U" resname="This value should be {{ limit }} or more.">
|
||||
<source>This value should be {{ limit }} or more.</source>
|
||||
<target>This value should be {{ limit }} or more.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ekfrU.c" resname="This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.">
|
||||
<source>This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.</source>
|
||||
<target>This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1KV4L.t" resname="This value should not be blank.">
|
||||
<source>This value should not be blank.</source>
|
||||
<target>This value should not be blank.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2G4Vepm" resname="This value should not be null.">
|
||||
<source>This value should not be null.</source>
|
||||
<target>This value should not be null.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="yDc3m6E" resname="This value should be null.">
|
||||
<source>This value should be null.</source>
|
||||
<target>This value should be null.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zKzWejA" resname="This value is not valid.">
|
||||
<source>This value is not valid.</source>
|
||||
<target>This value is not valid.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HSuBZpQ" resname="This value is not a valid time.">
|
||||
<source>This value is not a valid time.</source>
|
||||
<target>This value is not a valid time.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="snWc_QT" resname="This value is not a valid URL.">
|
||||
<source>This value is not a valid URL.</source>
|
||||
<target>This value is not a valid URL.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="jpaLsb2" resname="The two values should be equal.">
|
||||
<source>The two values should be equal.</source>
|
||||
<target>The two values should be equal.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fIlB1B_" resname="The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}.">
|
||||
<source>The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}.</source>
|
||||
<target>The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="tW7o0t9" resname="The file is too large.">
|
||||
<source>The file is too large.</source>
|
||||
<target>The file is too large.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id=".exF5Ww" resname="The file could not be uploaded.">
|
||||
<source>The file could not be uploaded.</source>
|
||||
<target>The file could not be uploaded.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="d7sS5yw" resname="This value should be a valid number.">
|
||||
<source>This value should be a valid number.</source>
|
||||
<target>This value should be a valid number.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="BS2Ez6i" resname="This file is not a valid image.">
|
||||
<source>This file is not a valid image.</source>
|
||||
<target>This file is not a valid image.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ydcT9kU" resname="This is not a valid IP address.">
|
||||
<source>This is not a valid IP address.</source>
|
||||
<target>This value is not a valid IP address.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="lDOGNFX" resname="This value is not a valid language.">
|
||||
<source>This value is not a valid language.</source>
|
||||
<target>This value is not a valid language.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="y9IdYkA" resname="This value is not a valid locale.">
|
||||
<source>This value is not a valid locale.</source>
|
||||
<target>This value is not a valid locale.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1YC0pOd" resname="This value is not a valid country.">
|
||||
<source>This value is not a valid country.</source>
|
||||
<target>This value is not a valid country.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="B5ebaMp" resname="This value is already used.">
|
||||
<source>This value is already used.</source>
|
||||
<target>This value is already used.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="L6097a6" resname="The size of the image could not be detected.">
|
||||
<source>The size of the image could not be detected.</source>
|
||||
<target>The size of the image could not be detected.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zVtJJEa" resname="The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px.">
|
||||
<source>The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px.</source>
|
||||
<target>The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="s8LFQGC" resname="The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px.">
|
||||
<source>The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px.</source>
|
||||
<target>The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Z.NgqFj" resname="The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px.">
|
||||
<source>The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px.</source>
|
||||
<target>The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="AW1lWVM" resname="The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px.">
|
||||
<source>The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px.</source>
|
||||
<target>The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PSdMNab" resname="This value should be the user's current password.">
|
||||
<source>This value should be the user's current password.</source>
|
||||
<target>This value should be the user's current password.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gYImVyV" resname="This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.">
|
||||
<source>This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.</source>
|
||||
<target>This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xJ2Bcr_" resname="The file was only partially uploaded.">
|
||||
<source>The file was only partially uploaded.</source>
|
||||
<target>The file was only partially uploaded.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HzkJDtF" resname="No file was uploaded.">
|
||||
<source>No file was uploaded.</source>
|
||||
<target>No file was uploaded.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="mHfEaB3" resname="No temporary folder was configured in php.ini.">
|
||||
<source>No temporary folder was configured in php.ini.</source>
|
||||
<target>No temporary folder was configured in php.ini, or the configured folder does not exist.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="y9K3BGb" resname="Cannot write temporary file to disk.">
|
||||
<source>Cannot write temporary file to disk.</source>
|
||||
<target>Cannot write temporary file to disk.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="kx3yHIM" resname="A PHP extension caused the upload to fail.">
|
||||
<source>A PHP extension caused the upload to fail.</source>
|
||||
<target>A PHP extension caused the upload to fail.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gTJYRl6" resname="This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more.">
|
||||
<source>This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more.</source>
|
||||
<target>This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="FFn3lVn" resname="This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less.">
|
||||
<source>This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less.</source>
|
||||
<target>This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bSdilZv" resname="This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements.">
|
||||
<source>This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements.</source>
|
||||
<target>This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="MAzmID7" resname="Invalid card number.">
|
||||
<source>Invalid card number.</source>
|
||||
<target>Invalid card number.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c3REGK3" resname="Unsupported card type or invalid card number.">
|
||||
<source>Unsupported card type or invalid card number.</source>
|
||||
<target>Unsupported card type or invalid card number.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="XSVzcbV" resname="This is not a valid International Bank Account Number (IBAN).">
|
||||
<source>This is not a valid International Bank Account Number (IBAN).</source>
|
||||
<target>This value is not a valid International Bank Account Number (IBAN).</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="yHirwNr" resname="This value is not a valid ISBN-10.">
|
||||
<source>This value is not a valid ISBN-10.</source>
|
||||
<target>This value is not a valid ISBN-10.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c_q0_ua" resname="This value is not a valid ISBN-13.">
|
||||
<source>This value is not a valid ISBN-13.</source>
|
||||
<target>This value is not a valid ISBN-13.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="M4FlD6n" resname="This value is neither a valid ISBN-10 nor a valid ISBN-13.">
|
||||
<source>This value is neither a valid ISBN-10 nor a valid ISBN-13.</source>
|
||||
<target>This value is neither a valid ISBN-10 nor a valid ISBN-13.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cuct0Ow" resname="This value is not a valid ISSN.">
|
||||
<source>This value is not a valid ISSN.</source>
|
||||
<target>This value is not a valid ISSN.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JBLs1a1" resname="This value is not a valid currency.">
|
||||
<source>This value is not a valid currency.</source>
|
||||
<target>This value is not a valid currency.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c.WxzFW" resname="This value should be equal to {{ compared_value }}.">
|
||||
<source>This value should be equal to {{ compared_value }}.</source>
|
||||
<target>This value should be equal to {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="_jdjkwq" resname="This value should be greater than {{ compared_value }}.">
|
||||
<source>This value should be greater than {{ compared_value }}.</source>
|
||||
<target>This value should be greater than {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="o8A8a0H" resname="This value should be greater than or equal to {{ compared_value }}.">
|
||||
<source>This value should be greater than or equal to {{ compared_value }}.</source>
|
||||
<target>This value should be greater than or equal to {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bOF1fpm" resname="This value should be identical to {{ compared_value_type }} {{ compared_value }}.">
|
||||
<source>This value should be identical to {{ compared_value_type }} {{ compared_value }}.</source>
|
||||
<target>This value should be identical to {{ compared_value_type }} {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="jG0QFKw" resname="This value should be less than {{ compared_value }}.">
|
||||
<source>This value should be less than {{ compared_value }}.</source>
|
||||
<target>This value should be less than {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9lWrKmm" resname="This value should be less than or equal to {{ compared_value }}.">
|
||||
<source>This value should be less than or equal to {{ compared_value }}.</source>
|
||||
<target>This value should be less than or equal to {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ftTwGs." resname="This value should not be equal to {{ compared_value }}.">
|
||||
<source>This value should not be equal to {{ compared_value }}.</source>
|
||||
<target>This value should not be equal to {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Bi22JLt" resname="This value should not be identical to {{ compared_value_type }} {{ compared_value }}.">
|
||||
<source>This value should not be identical to {{ compared_value_type }} {{ compared_value }}.</source>
|
||||
<target>This value should not be identical to {{ compared_value_type }} {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="VczCWzQ" resname="The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.">
|
||||
<source>The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.</source>
|
||||
<target>The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="v57PXhq" resname="The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.">
|
||||
<source>The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.</source>
|
||||
<target>The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="rpajj.a" resname="The image is square ({{ width }}x{{ height }}px). Square images are not allowed.">
|
||||
<source>The image is square ({{ width }}x{{ height }}px). Square images are not allowed.</source>
|
||||
<target>The image is square ({{ width }}x{{ height }}px). Square images are not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="G_lu2qW" resname="The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.">
|
||||
<source>The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.</source>
|
||||
<target>The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="sFyGx4B" resname="The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.">
|
||||
<source>The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.</source>
|
||||
<target>The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="jZgqcpL" resname="An empty file is not allowed.">
|
||||
<source>An empty file is not allowed.</source>
|
||||
<target>An empty file is not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bcfVezI" resname="The host could not be resolved.">
|
||||
<source>The host could not be resolved.</source>
|
||||
<target>The host could not be resolved.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NtzKvgt" resname="This value does not match the expected {{ charset }} charset.">
|
||||
<source>This value does not match the expected {{ charset }} charset.</source>
|
||||
<target>This value does not match the expected {{ charset }} charset.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Wi2y9.N" resname="This is not a valid Business Identifier Code (BIC).">
|
||||
<source>This is not a valid Business Identifier Code (BIC).</source>
|
||||
<target>This value is not a valid Business Identifier Code (BIC).</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="VKDowX6" resname="Error">
|
||||
<source>Error</source>
|
||||
<target>Error</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8zqt0Ik" resname="This is not a valid UUID.">
|
||||
<source>This is not a valid UUID.</source>
|
||||
<target>This value is not a valid UUID.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ru.4wkH" resname="This value should be a multiple of {{ compared_value }}.">
|
||||
<source>This value should be a multiple of {{ compared_value }}.</source>
|
||||
<target>This value should be a multiple of {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="M3vyK6s" resname="This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}.">
|
||||
<source>This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}.</source>
|
||||
<target>This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2v2xpAh" resname="This value should be valid JSON.">
|
||||
<source>This value should be valid JSON.</source>
|
||||
<target>This value should be valid JSON.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9CWVEGq" resname="This collection should contain only unique elements.">
|
||||
<source>This collection should contain only unique elements.</source>
|
||||
<target>This collection should contain only unique elements.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WdvZfq." resname="This value should be positive.">
|
||||
<source>This value should be positive.</source>
|
||||
<target>This value should be positive.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ubHMK2q" resname="This value should be either positive or zero.">
|
||||
<source>This value should be either positive or zero.</source>
|
||||
<target>This value should be either positive or zero.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="IwNTzo_" resname="This value should be negative.">
|
||||
<source>This value should be negative.</source>
|
||||
<target>This value should be negative.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="0GfwMfP" resname="This value should be either negative or zero.">
|
||||
<source>This value should be either negative or zero.</source>
|
||||
<target>This value should be either negative or zero.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fs3qQZR" resname="This value is not a valid timezone.">
|
||||
<source>This value is not a valid timezone.</source>
|
||||
<target>This value is not a valid timezone.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="40dnsod" resname="This password has been leaked in a data breach, it must not be used. Please use another password.">
|
||||
<source>This password has been leaked in a data breach, it must not be used. Please use another password.</source>
|
||||
<target>This password has been leaked in a data breach, it must not be used. Please use another password.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="VvxxWas" resname="This value should be between {{ min }} and {{ max }}.">
|
||||
<source>This value should be between {{ min }} and {{ max }}.</source>
|
||||
<target>This value should be between {{ min }} and {{ max }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="7g313cV" resname="This value is not a valid hostname.">
|
||||
<source>This value is not a valid hostname.</source>
|
||||
<target>This value is not a valid hostname.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xwtBimR" resname="The number of elements in this collection should be a multiple of {{ compared_value }}.">
|
||||
<source>The number of elements in this collection should be a multiple of {{ compared_value }}.</source>
|
||||
<target>The number of elements in this collection should be a multiple of {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="FDRZr.s" resname="This value should satisfy at least one of the following constraints:">
|
||||
<source>This value should satisfy at least one of the following constraints:</source>
|
||||
<target>This value should satisfy at least one of the following constraints:</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WwY0IGI" resname="Each element of this collection should satisfy its own set of constraints.">
|
||||
<source>Each element of this collection should satisfy its own set of constraints.</source>
|
||||
<target>Each element of this collection should satisfy its own set of constraints.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="lrbaa8g" resname="This value is not a valid International Securities Identification Number (ISIN).">
|
||||
<source>This value is not a valid International Securities Identification Number (ISIN).</source>
|
||||
<target>This value is not a valid International Securities Identification Number (ISIN).</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6akW5mb" resname="This value should be a valid expression.">
|
||||
<source>This value should be a valid expression.</source>
|
||||
<target>This value should be a valid expression.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="CQ0wfFa" resname="This value is not a valid CSS color.">
|
||||
<source>This value is not a valid CSS color.</source>
|
||||
<target>This value is not a valid CSS color.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="GAaG0KN" resname="This value is not a valid CIDR notation.">
|
||||
<source>This value is not a valid CIDR notation.</source>
|
||||
<target>This value is not a valid CIDR notation.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ddJy.XP" resname="The value of the netmask should be between {{ min }} and {{ max }}.">
|
||||
<source>The value of the netmask should be between {{ min }} and {{ max }}.</source>
|
||||
<target>The value of the netmask should be between {{ min }} and {{ max }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="O5pay9e" resname="The filename is too long. It should have {{ filename_max_length }} character or less.|The filename is too long. It should have {{ filename_max_length }} characters or less.">
|
||||
<source>The filename is too long. It should have {{ filename_max_length }} character or less.|The filename is too long. It should have {{ filename_max_length }} characters or less.</source>
|
||||
<target>The filename is too long. It should have {{ filename_max_length }} character or less.|The filename is too long. It should have {{ filename_max_length }} characters or less.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="f_lviDt" resname="The password strength is too low. Please use a stronger password.">
|
||||
<source>The password strength is too low. Please use a stronger password.</source>
|
||||
<target>The password strength is too low. Please use a stronger password.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xfCh6.k" resname="This value contains characters that are not allowed by the current restriction-level.">
|
||||
<source>This value contains characters that are not allowed by the current restriction-level.</source>
|
||||
<target>This value contains characters that are not allowed by the current restriction-level.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="x15dlan" resname="Using invisible characters is not allowed.">
|
||||
<source>Using invisible characters is not allowed.</source>
|
||||
<target>Using invisible characters is not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2NiS4YC" resname="Mixing numbers from different scripts is not allowed.">
|
||||
<source>Mixing numbers from different scripts is not allowed.</source>
|
||||
<target>Mixing numbers from different scripts is not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="W8N1HuG" resname="Using hidden overlay characters is not allowed.">
|
||||
<source>Using hidden overlay characters is not allowed.</source>
|
||||
<target>Using hidden overlay characters is not allowed.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pifGDXc" resname="The extension of the file is invalid ({{ extension }}). Allowed extensions are {{ extensions }}.">
|
||||
<source>The extension of the file is invalid ({{ extension }}). Allowed extensions are {{ extensions }}.</source>
|
||||
<target>The extension of the file is invalid ({{ extension }}). Allowed extensions are {{ extensions }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cM9fJA2" resname="The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}.">
|
||||
<source>The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}.</source>
|
||||
<target>The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gC.d7MB" resname="This value is not a valid MAC address.">
|
||||
<source>This value is not a valid MAC address.</source>
|
||||
<target>This value is not a valid MAC address.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ci.Qrc8" resname="This URL is missing a top-level domain.">
|
||||
<source>This URL is missing a top-level domain.</source>
|
||||
<target>This URL is missing a top-level domain.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id=".SEaaBa" resname="This form should not contain extra fields.">
|
||||
<source>This form should not contain extra fields.</source>
|
||||
<target>This form should not contain extra fields.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WPnLAh9" resname="The uploaded file was too large. Please try to upload a smaller file.">
|
||||
<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="fvxWW3V" resname="The CSRF token is invalid. Please try to resubmit the form.">
|
||||
<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="eo1zeih" resname="This value is not a valid HTML5 color.">
|
||||
<source>This value is not a valid HTML5 color.</source>
|
||||
<target>This value is not a valid HTML5 color.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="dN.ZVc0" resname="Please enter a valid birthdate.">
|
||||
<source>Please enter a valid birthdate.</source>
|
||||
<target>Please enter a valid birthdate.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="OPymPfZ" resname="The selected choice is invalid.">
|
||||
<source>The selected choice is invalid.</source>
|
||||
<target>The selected choice is invalid.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="GUH6TYE" resname="The collection is invalid.">
|
||||
<source>The collection is invalid.</source>
|
||||
<target>The collection is invalid.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="14il0ha" resname="Please select a valid color.">
|
||||
<source>Please select a valid color.</source>
|
||||
<target>Please select a valid color.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4AJRUCC" resname="Please select a valid country.">
|
||||
<source>Please select a valid country.</source>
|
||||
<target>Please select a valid country.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xAI5mrh" resname="Please select a valid currency.">
|
||||
<source>Please select a valid currency.</source>
|
||||
<target>Please select a valid currency.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c6v9ASZ" resname="Please choose a valid date interval.">
|
||||
<source>Please choose a valid date interval.</source>
|
||||
<target>Please choose a valid date interval.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2BR60Jg" resname="Please enter a valid date and time.">
|
||||
<source>Please enter a valid date and time.</source>
|
||||
<target>Please enter a valid date and time.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ofLBhv0" resname="Please enter a valid date.">
|
||||
<source>Please enter a valid date.</source>
|
||||
<target>Please enter a valid date.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Xsmm6Mc" resname="Please select a valid file.">
|
||||
<source>Please select a valid file.</source>
|
||||
<target>Please select a valid file.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Fka0cZD" resname="The hidden field is invalid.">
|
||||
<source>The hidden field is invalid.</source>
|
||||
<target>The hidden field is invalid.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="69ux5Ml" resname="Please enter an integer.">
|
||||
<source>Please enter an integer.</source>
|
||||
<target>Please enter an integer.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="TQbat_9" resname="Please select a valid language.">
|
||||
<source>Please select a valid language.</source>
|
||||
<target>Please select a valid language.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="vpa7l8w" resname="Please select a valid locale.">
|
||||
<source>Please select a valid locale.</source>
|
||||
<target>Please select a valid locale.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Gz8pWER" resname="Please enter a valid money amount.">
|
||||
<source>Please enter a valid money amount.</source>
|
||||
<target>Please enter a valid money amount.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PRxiOhB" resname="Please enter a number.">
|
||||
<source>Please enter a number.</source>
|
||||
<target>Please enter a number.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="seAdKJo" resname="The password is invalid.">
|
||||
<source>The password is invalid.</source>
|
||||
<target>The password is invalid.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="A5k0Q20" resname="Please enter a percentage value.">
|
||||
<source>Please enter a percentage value.</source>
|
||||
<target>Please enter a percentage value.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="rH6V.WA" resname="The values do not match.">
|
||||
<source>The values do not match.</source>
|
||||
<target>The values do not match.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Eopl1Sm" resname="Please enter a valid time.">
|
||||
<source>Please enter a valid time.</source>
|
||||
<target>Please enter a valid time.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ll14Sm9" resname="Please select a valid timezone.">
|
||||
<source>Please select a valid timezone.</source>
|
||||
<target>Please select a valid timezone.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1xP1kmd" resname="Please enter a valid URL.">
|
||||
<source>Please enter a valid URL.</source>
|
||||
<target>Please enter a valid URL.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="iMmAsrC" resname="Please enter a valid search term.">
|
||||
<source>Please enter a valid search term.</source>
|
||||
<target>Please enter a valid search term.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="GRMTXRX" resname="Please provide a valid phone number.">
|
||||
<source>Please provide a valid phone number.</source>
|
||||
<target>Please provide a valid phone number.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WkYuMDd" resname="The checkbox has an invalid value.">
|
||||
<source>The checkbox has an invalid value.</source>
|
||||
<target>The checkbox has an invalid value.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="lY5Mzyl" resname="Please enter a valid email address.">
|
||||
<source>Please enter a valid email address.</source>
|
||||
<target>Please enter a valid email address.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="TzSC4.o" resname="Please select a valid option.">
|
||||
<source>Please select a valid option.</source>
|
||||
<target>Please select a valid option.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qGRcTk7" resname="Please select a valid range.">
|
||||
<source>Please select a valid range.</source>
|
||||
<target>Please select a valid range.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PU.w6nC" resname="Please enter a valid week.">
|
||||
<source>Please enter a valid week.</source>
|
||||
<target>Please enter a valid week.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YRKYC4." resname="There is already an account with this email">
|
||||
<source>There is already an account with this email</source>
|
||||
<target>There is already an account with this email</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="IaE5GBl" resname="You should agree to our terms.">
|
||||
<source>You should agree to our terms.</source>
|
||||
<target>You should agree to our terms.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YXZ26gK" resname="Please enter a password">
|
||||
<source>Please enter a password</source>
|
||||
<target>Please enter a password</target>
|
||||
</trans-unit>
|
||||
<trans-unit id=".esazsm" resname="Your password should be at least {{ limit }} characters">
|
||||
<source>Your password should be at least {{ limit }} characters</source>
|
||||
<target>Your password should be at least {{ limit }} characters</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
@ -0,0 +1,598 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
|
||||
<file source-language="en" target-language="fr" datatype="plaintext" original="file.ext">
|
||||
<header>
|
||||
<tool tool-id="symfony" tool-name="Symfony"/>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="zh5oKD9" resname="This value should be false.">
|
||||
<source>This value should be false.</source>
|
||||
<target>Cette valeur doit être fausse.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NN2_iru" resname="This value should be true.">
|
||||
<source>This value should be true.</source>
|
||||
<target>Cette valeur doit être vraie.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="OjM_kpf" resname="This value should be of type {{ type }}.">
|
||||
<source>This value should be of type {{ type }}.</source>
|
||||
<target>Cette valeur doit être de type {{ type }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="f0P5pBD" resname="This value should be blank.">
|
||||
<source>This value should be blank.</source>
|
||||
<target>Cette valeur doit être vide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ih.4TRN" resname="The value you selected is not a valid choice.">
|
||||
<source>The value you selected is not a valid choice.</source>
|
||||
<target>Cette valeur doit être l'un des choix proposés.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="u81CkP8" resname="You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices.">
|
||||
<source>You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices.</source>
|
||||
<target>Vous devez sélectionner au moins {{ limit }} choix.|Vous devez sélectionner au moins {{ limit }} choix.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="nIvOQ_o" resname="You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices.">
|
||||
<source>You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices.</source>
|
||||
<target>Vous devez sélectionner au maximum {{ limit }} choix.|Vous devez sélectionner au maximum {{ limit }} choix.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="87zjiHi" resname="One or more of the given values is invalid.">
|
||||
<source>One or more of the given values is invalid.</source>
|
||||
<target>Une ou plusieurs des valeurs soumises sont invalides.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3NeQftv" resname="This field was not expected.">
|
||||
<source>This field was not expected.</source>
|
||||
<target>Ce champ n'a pas été prévu.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="SwMV4zp" resname="This field is missing.">
|
||||
<source>This field is missing.</source>
|
||||
<target>Ce champ est manquant.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="LO2vFKN" resname="This value is not a valid date.">
|
||||
<source>This value is not a valid date.</source>
|
||||
<target>Cette valeur n'est pas une date valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="86dU_nv" resname="This value is not a valid datetime.">
|
||||
<source>This value is not a valid datetime.</source>
|
||||
<target>Cette valeur n'est pas une date valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PSvNXdi" resname="This value is not a valid email address.">
|
||||
<source>This value is not a valid email address.</source>
|
||||
<target>Cette valeur n'est pas une adresse email valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3KeHbZy" resname="The file could not be found.">
|
||||
<source>The file could not be found.</source>
|
||||
<target>Le fichier n'a pas été trouvé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="KtJhQZo" resname="The file is not readable.">
|
||||
<source>The file is not readable.</source>
|
||||
<target>Le fichier n'est pas lisible.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JocOVM2" resname="The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}.">
|
||||
<source>The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}.</source>
|
||||
<target>Le fichier est trop volumineux ({{ size }} {{ suffix }}). Sa taille ne doit pas dépasser {{ limit }} {{ suffix }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YW21SPH" resname="The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}.">
|
||||
<source>The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}.</source>
|
||||
<target>Le type du fichier est invalide ({{ type }}). Les types autorisés sont {{ types }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NubOmrs" resname="This value should be {{ limit }} or less.">
|
||||
<source>This value should be {{ limit }} or less.</source>
|
||||
<target>Cette valeur doit être inférieure ou égale à {{ limit }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HX7TOFm" resname="This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.">
|
||||
<source>This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less.</source>
|
||||
<target>Cette chaîne est trop longue. Elle doit avoir au maximum {{ limit }} caractère.|Cette chaîne est trop longue. Elle doit avoir au maximum {{ limit }} caractères.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qgR8M_U" resname="This value should be {{ limit }} or more.">
|
||||
<source>This value should be {{ limit }} or more.</source>
|
||||
<target>Cette valeur doit être supérieure ou égale à {{ limit }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ekfrU.c" resname="This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.">
|
||||
<source>This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more.</source>
|
||||
<target>Cette chaîne est trop courte. Elle doit avoir au minimum {{ limit }} caractère.|Cette chaîne est trop courte. Elle doit avoir au minimum {{ limit }} caractères.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1KV4L.t" resname="This value should not be blank.">
|
||||
<source>This value should not be blank.</source>
|
||||
<target>Cette valeur ne doit pas être vide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2G4Vepm" resname="This value should not be null.">
|
||||
<source>This value should not be null.</source>
|
||||
<target>Cette valeur ne doit pas être nulle.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="yDc3m6E" resname="This value should be null.">
|
||||
<source>This value should be null.</source>
|
||||
<target>Cette valeur doit être nulle.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zKzWejA" resname="This value is not valid.">
|
||||
<source>This value is not valid.</source>
|
||||
<target>Cette valeur n'est pas valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HSuBZpQ" resname="This value is not a valid time.">
|
||||
<source>This value is not a valid time.</source>
|
||||
<target>Cette valeur n'est pas une heure valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="snWc_QT" resname="This value is not a valid URL.">
|
||||
<source>This value is not a valid URL.</source>
|
||||
<target>Cette valeur n'est pas une URL valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="jpaLsb2" resname="The two values should be equal.">
|
||||
<source>The two values should be equal.</source>
|
||||
<target>Les deux valeurs doivent être identiques.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fIlB1B_" resname="The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}.">
|
||||
<source>The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}.</source>
|
||||
<target>Le fichier est trop volumineux. Sa taille ne doit pas dépasser {{ limit }} {{ suffix }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="tW7o0t9" resname="The file is too large.">
|
||||
<source>The file is too large.</source>
|
||||
<target>Le fichier est trop volumineux.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id=".exF5Ww" resname="The file could not be uploaded.">
|
||||
<source>The file could not be uploaded.</source>
|
||||
<target>Le téléchargement de ce fichier est impossible.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="d7sS5yw" resname="This value should be a valid number.">
|
||||
<source>This value should be a valid number.</source>
|
||||
<target>Cette valeur doit être un nombre.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="BS2Ez6i" resname="This file is not a valid image.">
|
||||
<source>This file is not a valid image.</source>
|
||||
<target>Ce fichier n'est pas une image valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ydcT9kU" resname="This is not a valid IP address.">
|
||||
<source>This is not a valid IP address.</source>
|
||||
<target>Cette valeur n'est pas une adresse IP valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="lDOGNFX" resname="This value is not a valid language.">
|
||||
<source>This value is not a valid language.</source>
|
||||
<target>Cette langue n'est pas valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="y9IdYkA" resname="This value is not a valid locale.">
|
||||
<source>This value is not a valid locale.</source>
|
||||
<target>Ce paramètre régional n'est pas valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1YC0pOd" resname="This value is not a valid country.">
|
||||
<source>This value is not a valid country.</source>
|
||||
<target>Ce pays n'est pas valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="B5ebaMp" resname="This value is already used.">
|
||||
<source>This value is already used.</source>
|
||||
<target>Cette valeur est déjà utilisée.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="L6097a6" resname="The size of the image could not be detected.">
|
||||
<source>The size of the image could not be detected.</source>
|
||||
<target>La taille de l'image n'a pas pu être détectée.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="zVtJJEa" resname="The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px.">
|
||||
<source>The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px.</source>
|
||||
<target>La largeur de l'image est trop grande ({{ width }}px). La largeur maximale autorisée est de {{ max_width }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="s8LFQGC" resname="The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px.">
|
||||
<source>The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px.</source>
|
||||
<target>La largeur de l'image est trop petite ({{ width }}px). La largeur minimale attendue est de {{ min_width }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Z.NgqFj" resname="The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px.">
|
||||
<source>The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px.</source>
|
||||
<target>La hauteur de l'image est trop grande ({{ height }}px). La hauteur maximale autorisée est de {{ max_height }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="AW1lWVM" resname="The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px.">
|
||||
<source>The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px.</source>
|
||||
<target>La hauteur de l'image est trop petite ({{ height }}px). La hauteur minimale attendue est de {{ min_height }}px.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PSdMNab" resname="This value should be the user's current password.">
|
||||
<source>This value should be the user's current password.</source>
|
||||
<target>Cette valeur doit être le mot de passe actuel de l'utilisateur.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gYImVyV" resname="This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.">
|
||||
<source>This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters.</source>
|
||||
<target>Cette chaîne doit avoir exactement {{ limit }} caractère.|Cette chaîne doit avoir exactement {{ limit }} caractères.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xJ2Bcr_" resname="The file was only partially uploaded.">
|
||||
<source>The file was only partially uploaded.</source>
|
||||
<target>Le fichier a été partiellement transféré.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="HzkJDtF" resname="No file was uploaded.">
|
||||
<source>No file was uploaded.</source>
|
||||
<target>Aucun fichier n'a été transféré.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="mHfEaB3" resname="No temporary folder was configured in php.ini.">
|
||||
<source>No temporary folder was configured in php.ini.</source>
|
||||
<target>Aucun répertoire temporaire n'a été configuré dans le php.ini, ou le répertoire configuré n'existe pas.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="y9K3BGb" resname="Cannot write temporary file to disk.">
|
||||
<source>Cannot write temporary file to disk.</source>
|
||||
<target>Impossible d'écrire le fichier temporaire sur le disque.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="kx3yHIM" resname="A PHP extension caused the upload to fail.">
|
||||
<source>A PHP extension caused the upload to fail.</source>
|
||||
<target>Une extension PHP a empêché le transfert du fichier.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gTJYRl6" resname="This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more.">
|
||||
<source>This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more.</source>
|
||||
<target>Cette collection doit contenir {{ limit }} élément ou plus.|Cette collection doit contenir {{ limit }} éléments ou plus.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="FFn3lVn" resname="This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less.">
|
||||
<source>This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less.</source>
|
||||
<target>Cette collection doit contenir {{ limit }} élément ou moins.|Cette collection doit contenir {{ limit }} éléments ou moins.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bSdilZv" resname="This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements.">
|
||||
<source>This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements.</source>
|
||||
<target>Cette collection doit contenir exactement {{ limit }} élément.|Cette collection doit contenir exactement {{ limit }} éléments.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="MAzmID7" resname="Invalid card number.">
|
||||
<source>Invalid card number.</source>
|
||||
<target>Numéro de carte invalide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c3REGK3" resname="Unsupported card type or invalid card number.">
|
||||
<source>Unsupported card type or invalid card number.</source>
|
||||
<target>Type de carte non supporté ou numéro invalide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="XSVzcbV" resname="This is not a valid International Bank Account Number (IBAN).">
|
||||
<source>This is not a valid International Bank Account Number (IBAN).</source>
|
||||
<target>Cette valeur n'est pas un Numéro de Compte Bancaire International (IBAN) valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="yHirwNr" resname="This value is not a valid ISBN-10.">
|
||||
<source>This value is not a valid ISBN-10.</source>
|
||||
<target>Cette valeur n'est pas un code ISBN-10 valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c_q0_ua" resname="This value is not a valid ISBN-13.">
|
||||
<source>This value is not a valid ISBN-13.</source>
|
||||
<target>Cette valeur n'est pas un code ISBN-13 valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="M4FlD6n" resname="This value is neither a valid ISBN-10 nor a valid ISBN-13.">
|
||||
<source>This value is neither a valid ISBN-10 nor a valid ISBN-13.</source>
|
||||
<target>Cette valeur n'est ni un code ISBN-10, ni un code ISBN-13 valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cuct0Ow" resname="This value is not a valid ISSN.">
|
||||
<source>This value is not a valid ISSN.</source>
|
||||
<target>Cette valeur n'est pas un code ISSN valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JBLs1a1" resname="This value is not a valid currency.">
|
||||
<source>This value is not a valid currency.</source>
|
||||
<target>Cette valeur n'est pas une devise valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c.WxzFW" resname="This value should be equal to {{ compared_value }}.">
|
||||
<source>This value should be equal to {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être égale à {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="_jdjkwq" resname="This value should be greater than {{ compared_value }}.">
|
||||
<source>This value should be greater than {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être supérieure à {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="o8A8a0H" resname="This value should be greater than or equal to {{ compared_value }}.">
|
||||
<source>This value should be greater than or equal to {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être supérieure ou égale à {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bOF1fpm" resname="This value should be identical to {{ compared_value_type }} {{ compared_value }}.">
|
||||
<source>This value should be identical to {{ compared_value_type }} {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être identique à {{ compared_value_type }} {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="jG0QFKw" resname="This value should be less than {{ compared_value }}.">
|
||||
<source>This value should be less than {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être inférieure à {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9lWrKmm" resname="This value should be less than or equal to {{ compared_value }}.">
|
||||
<source>This value should be less than or equal to {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être inférieure ou égale à {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ftTwGs." resname="This value should not be equal to {{ compared_value }}.">
|
||||
<source>This value should not be equal to {{ compared_value }}.</source>
|
||||
<target>Cette valeur ne doit pas être égale à {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Bi22JLt" resname="This value should not be identical to {{ compared_value_type }} {{ compared_value }}.">
|
||||
<source>This value should not be identical to {{ compared_value_type }} {{ compared_value }}.</source>
|
||||
<target>Cette valeur ne doit pas être identique à {{ compared_value_type }} {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="VczCWzQ" resname="The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.">
|
||||
<source>The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.</source>
|
||||
<target>Le rapport largeur/hauteur de l'image est trop grand ({{ ratio }}). Le rapport maximal autorisé est {{ max_ratio }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="v57PXhq" resname="The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.">
|
||||
<source>The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.</source>
|
||||
<target>Le rapport largeur/hauteur de l'image est trop petit ({{ ratio }}). Le rapport minimal attendu est {{ min_ratio }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="rpajj.a" resname="The image is square ({{ width }}x{{ height }}px). Square images are not allowed.">
|
||||
<source>The image is square ({{ width }}x{{ height }}px). Square images are not allowed.</source>
|
||||
<target>L'image est carrée ({{ width }}x{{ height }}px). Les images carrées ne sont pas autorisées.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="G_lu2qW" resname="The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.">
|
||||
<source>The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.</source>
|
||||
<target>L'image est au format paysage ({{ width }}x{{ height }}px). Les images au format paysage ne sont pas autorisées.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="sFyGx4B" resname="The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.">
|
||||
<source>The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.</source>
|
||||
<target>L'image est au format portrait ({{ width }}x{{ height }}px). Les images au format portrait ne sont pas autorisées.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="jZgqcpL" resname="An empty file is not allowed.">
|
||||
<source>An empty file is not allowed.</source>
|
||||
<target>Un fichier vide n'est pas autorisé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="bcfVezI" resname="The host could not be resolved.">
|
||||
<source>The host could not be resolved.</source>
|
||||
<target>Le nom de domaine n'a pas pu être résolu.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="NtzKvgt" resname="This value does not match the expected {{ charset }} charset.">
|
||||
<source>This value does not match the expected {{ charset }} charset.</source>
|
||||
<target>Cette valeur ne correspond pas au jeu de caractères {{ charset }} attendu.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Wi2y9.N" resname="This is not a valid Business Identifier Code (BIC).">
|
||||
<source>This is not a valid Business Identifier Code (BIC).</source>
|
||||
<target>Cette valeur n'est pas un Code Identifiant de Business (BIC) valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="VKDowX6" resname="Error">
|
||||
<source>Error</source>
|
||||
<target>Erreur</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="8zqt0Ik" resname="This is not a valid UUID.">
|
||||
<source>This is not a valid UUID.</source>
|
||||
<target>Cette valeur n'est pas un UUID valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ru.4wkH" resname="This value should be a multiple of {{ compared_value }}.">
|
||||
<source>This value should be a multiple of {{ compared_value }}.</source>
|
||||
<target>Cette valeur doit être un multiple de {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="M3vyK6s" resname="This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}.">
|
||||
<source>This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}.</source>
|
||||
<target>Ce code d'identification d'entreprise (BIC) n'est pas associé à l'IBAN {{ iban }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2v2xpAh" resname="This value should be valid JSON.">
|
||||
<source>This value should be valid JSON.</source>
|
||||
<target>Cette valeur doit être un JSON valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="9CWVEGq" resname="This collection should contain only unique elements.">
|
||||
<source>This collection should contain only unique elements.</source>
|
||||
<target>Cette collection ne doit pas comporter de doublons.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WdvZfq." resname="This value should be positive.">
|
||||
<source>This value should be positive.</source>
|
||||
<target>Cette valeur doit être strictement positive.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ubHMK2q" resname="This value should be either positive or zero.">
|
||||
<source>This value should be either positive or zero.</source>
|
||||
<target>Cette valeur doit être supérieure ou égale à zéro.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="IwNTzo_" resname="This value should be negative.">
|
||||
<source>This value should be negative.</source>
|
||||
<target>Cette valeur doit être strictement négative.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="0GfwMfP" resname="This value should be either negative or zero.">
|
||||
<source>This value should be either negative or zero.</source>
|
||||
<target>Cette valeur doit être inférieure ou égale à zéro.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fs3qQZR" resname="This value is not a valid timezone.">
|
||||
<source>This value is not a valid timezone.</source>
|
||||
<target>Cette valeur n'est pas un fuseau horaire valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="40dnsod" resname="This password has been leaked in a data breach, it must not be used. Please use another password.">
|
||||
<source>This password has been leaked in a data breach, it must not be used. Please use another password.</source>
|
||||
<target>Ce mot de passe a été divulgué lors d'une fuite de données, il ne doit plus être utilisé. Veuillez utiliser un autre mot de passe.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="VvxxWas" resname="This value should be between {{ min }} and {{ max }}.">
|
||||
<source>This value should be between {{ min }} and {{ max }}.</source>
|
||||
<target>Cette valeur doit être comprise entre {{ min }} et {{ max }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="7g313cV" resname="This value is not a valid hostname.">
|
||||
<source>This value is not a valid hostname.</source>
|
||||
<target>Cette valeur n'est pas un nom d'hôte valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xwtBimR" resname="The number of elements in this collection should be a multiple of {{ compared_value }}.">
|
||||
<source>The number of elements in this collection should be a multiple of {{ compared_value }}.</source>
|
||||
<target>Le nombre d'éléments de cette collection doit être un multiple de {{ compared_value }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="FDRZr.s" resname="This value should satisfy at least one of the following constraints:">
|
||||
<source>This value should satisfy at least one of the following constraints:</source>
|
||||
<target>Cette valeur doit satisfaire à au moins une des contraintes suivantes :</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WwY0IGI" resname="Each element of this collection should satisfy its own set of constraints.">
|
||||
<source>Each element of this collection should satisfy its own set of constraints.</source>
|
||||
<target>Chaque élément de cette collection doit satisfaire à son propre jeu de contraintes.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="lrbaa8g" resname="This value is not a valid International Securities Identification Number (ISIN).">
|
||||
<source>This value is not a valid International Securities Identification Number (ISIN).</source>
|
||||
<target>Cette valeur n'est pas un code international de sécurité valide (ISIN).</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6akW5mb" resname="This value should be a valid expression.">
|
||||
<source>This value should be a valid expression.</source>
|
||||
<target>Cette valeur doit être une expression valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="CQ0wfFa" resname="This value is not a valid CSS color.">
|
||||
<source>This value is not a valid CSS color.</source>
|
||||
<target>Cette valeur n'est pas une couleur CSS valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="GAaG0KN" resname="This value is not a valid CIDR notation.">
|
||||
<source>This value is not a valid CIDR notation.</source>
|
||||
<target>Cette valeur n'est pas une notation CIDR valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ddJy.XP" resname="The value of the netmask should be between {{ min }} and {{ max }}.">
|
||||
<source>The value of the netmask should be between {{ min }} and {{ max }}.</source>
|
||||
<target>La valeur du masque de réseau doit être comprise entre {{ min }} et {{ max }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="O5pay9e" resname="The filename is too long. It should have {{ filename_max_length }} character or less.|The filename is too long. It should have {{ filename_max_length }} characters or less.">
|
||||
<source>The filename is too long. It should have {{ filename_max_length }} character or less.|The filename is too long. It should have {{ filename_max_length }} characters or less.</source>
|
||||
<target>Le nom du fichier est trop long. Il doit contenir au maximum {{ filename_max_length }} caractère.|Le nom de fichier est trop long. Il doit contenir au maximum {{ filename_max_length }} caractères.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="f_lviDt" resname="The password strength is too low. Please use a stronger password.">
|
||||
<source>The password strength is too low. Please use a stronger password.</source>
|
||||
<target>La robustesse du mot de passe est trop faible. Veuillez utiliser un mot de passe plus fort.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xfCh6.k" resname="This value contains characters that are not allowed by the current restriction-level.">
|
||||
<source>This value contains characters that are not allowed by the current restriction-level.</source>
|
||||
<target>Cette valeur contient des caractères qui ne sont pas autorisés par le niveau de restriction actuel.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="x15dlan" resname="Using invisible characters is not allowed.">
|
||||
<source>Using invisible characters is not allowed.</source>
|
||||
<target>Utiliser des caractères invisibles n'est pas autorisé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2NiS4YC" resname="Mixing numbers from different scripts is not allowed.">
|
||||
<source>Mixing numbers from different scripts is not allowed.</source>
|
||||
<target>Mélanger des chiffres provenant de différents scripts n'est pas autorisé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="W8N1HuG" resname="Using hidden overlay characters is not allowed.">
|
||||
<source>Using hidden overlay characters is not allowed.</source>
|
||||
<target>Utiliser des caractères de superposition cachés n'est pas autorisé.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="pifGDXc" resname="The extension of the file is invalid ({{ extension }}). Allowed extensions are {{ extensions }}.">
|
||||
<source>The extension of the file is invalid ({{ extension }}). Allowed extensions are {{ extensions }}.</source>
|
||||
<target>L'extension du fichier est invalide ({{ extension }}). Les extensions autorisées sont {{ extensions }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cM9fJA2" resname="The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}.">
|
||||
<source>The detected character encoding is invalid ({{ detected }}). Allowed encodings are {{ encodings }}.</source>
|
||||
<target>L'encodage de caractères détecté est invalide ({{ detected }}). Les encodages autorisés sont {{ encodings }}.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="gC.d7MB" resname="This value is not a valid MAC address.">
|
||||
<source>This value is not a valid MAC address.</source>
|
||||
<target>Cette valeur n'est pas une adresse MAC valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ci.Qrc8" resname="This URL is missing a top-level domain.">
|
||||
<source>This URL is missing a top-level domain.</source>
|
||||
<target>Cette URL doit contenir un domaine de premier niveau.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id=".SEaaBa" resname="This form should not contain extra fields.">
|
||||
<source>This form should not contain extra fields.</source>
|
||||
<target>Ce formulaire ne doit pas contenir de champs supplémentaires.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WPnLAh9" resname="The uploaded file was too large. Please try to upload a smaller file.">
|
||||
<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="fvxWW3V" resname="The CSRF token is invalid. Please try to resubmit the form.">
|
||||
<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="eo1zeih" resname="This value is not a valid HTML5 color.">
|
||||
<source>This value is not a valid HTML5 color.</source>
|
||||
<target>Cette valeur n'est pas une couleur HTML5 valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="dN.ZVc0" resname="Please enter a valid birthdate.">
|
||||
<source>Please enter a valid birthdate.</source>
|
||||
<target>Veuillez entrer une date de naissance valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="OPymPfZ" resname="The selected choice is invalid.">
|
||||
<source>The selected choice is invalid.</source>
|
||||
<target>Le choix sélectionné est invalide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="GUH6TYE" resname="The collection is invalid.">
|
||||
<source>The collection is invalid.</source>
|
||||
<target>La collection est invalide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="14il0ha" resname="Please select a valid color.">
|
||||
<source>Please select a valid color.</source>
|
||||
<target>Veuillez sélectionner une couleur valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="4AJRUCC" resname="Please select a valid country.">
|
||||
<source>Please select a valid country.</source>
|
||||
<target>Veuillez sélectionner un pays valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="xAI5mrh" resname="Please select a valid currency.">
|
||||
<source>Please select a valid currency.</source>
|
||||
<target>Veuillez sélectionner une devise valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="c6v9ASZ" resname="Please choose a valid date interval.">
|
||||
<source>Please choose a valid date interval.</source>
|
||||
<target>Veuillez choisir un intervalle de dates valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2BR60Jg" resname="Please enter a valid date and time.">
|
||||
<source>Please enter a valid date and time.</source>
|
||||
<target>Veuillez saisir une date et une heure valides.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ofLBhv0" resname="Please enter a valid date.">
|
||||
<source>Please enter a valid date.</source>
|
||||
<target>Veuillez entrer une date valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Xsmm6Mc" resname="Please select a valid file.">
|
||||
<source>Please select a valid file.</source>
|
||||
<target>Veuillez sélectionner un fichier valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Fka0cZD" resname="The hidden field is invalid.">
|
||||
<source>The hidden field is invalid.</source>
|
||||
<target>Le champ masqué n'est pas valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="69ux5Ml" resname="Please enter an integer.">
|
||||
<source>Please enter an integer.</source>
|
||||
<target>Veuillez saisir un entier.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="TQbat_9" resname="Please select a valid language.">
|
||||
<source>Please select a valid language.</source>
|
||||
<target>Veuillez sélectionner une langue valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="vpa7l8w" resname="Please select a valid locale.">
|
||||
<source>Please select a valid locale.</source>
|
||||
<target>Veuillez sélectionner une langue valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Gz8pWER" resname="Please enter a valid money amount.">
|
||||
<source>Please enter a valid money amount.</source>
|
||||
<target>Veuillez saisir un montant valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PRxiOhB" resname="Please enter a number.">
|
||||
<source>Please enter a number.</source>
|
||||
<target>Veuillez saisir un nombre.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="seAdKJo" resname="The password is invalid.">
|
||||
<source>The password is invalid.</source>
|
||||
<target>Le mot de passe est invalide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="A5k0Q20" resname="Please enter a percentage value.">
|
||||
<source>Please enter a percentage value.</source>
|
||||
<target>Veuillez saisir un pourcentage valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="rH6V.WA" resname="The values do not match.">
|
||||
<source>The values do not match.</source>
|
||||
<target>Les valeurs ne correspondent pas.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="Eopl1Sm" resname="Please enter a valid time.">
|
||||
<source>Please enter a valid time.</source>
|
||||
<target>Veuillez saisir une heure valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="ll14Sm9" resname="Please select a valid timezone.">
|
||||
<source>Please select a valid timezone.</source>
|
||||
<target>Veuillez sélectionner un fuseau horaire valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="1xP1kmd" resname="Please enter a valid URL.">
|
||||
<source>Please enter a valid URL.</source>
|
||||
<target>Veuillez saisir une URL valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="iMmAsrC" resname="Please enter a valid search term.">
|
||||
<source>Please enter a valid search term.</source>
|
||||
<target>Veuillez saisir un terme de recherche valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="GRMTXRX" resname="Please provide a valid phone number.">
|
||||
<source>Please provide a valid phone number.</source>
|
||||
<target>Veuillez fournir un numéro de téléphone valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="WkYuMDd" resname="The checkbox has an invalid value.">
|
||||
<source>The checkbox has an invalid value.</source>
|
||||
<target>La case à cocher a une valeur non valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="lY5Mzyl" resname="Please enter a valid email address.">
|
||||
<source>Please enter a valid email address.</source>
|
||||
<target>Veuillez saisir une adresse email valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="TzSC4.o" resname="Please select a valid option.">
|
||||
<source>Please select a valid option.</source>
|
||||
<target>Veuillez sélectionner une option valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="qGRcTk7" resname="Please select a valid range.">
|
||||
<source>Please select a valid range.</source>
|
||||
<target>Veuillez sélectionner une plage valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="PU.w6nC" resname="Please enter a valid week.">
|
||||
<source>Please enter a valid week.</source>
|
||||
<target>Veuillez entrer une semaine valide.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YRKYC4." resname="There is already an account with this email">
|
||||
<source>There is already an account with this email</source>
|
||||
<target>Il existe déjà un compte avec cet email</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="IaE5GBl" resname="You should agree to our terms.">
|
||||
<source>You should agree to our terms.</source>
|
||||
<target>Vous devez accepter nos conditions</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="YXZ26gK" resname="Please enter a password">
|
||||
<source>Please enter a password</source>
|
||||
<target>Veuillez entrer un mot de passe</target>
|
||||
</trans-unit>
|
||||
<trans-unit id=".esazsm" resname="Your password should be at least {{ limit }} characters">
|
||||
<source>Your password should be at least {{ limit }} characters</source>
|
||||
<target>Votre mot de passe doit comporter au moins {{ limite }} caractères</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
Loading…
Reference in new issue