Skip to content

Commit

Permalink
Moved french validation translators to its own file
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz committed Jul 7, 2015
1 parent df556d3 commit e291f99
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 25 deletions.
25 changes: 0 additions & 25 deletions app/Resources/translations/messages.fr.xliff
Expand Up @@ -270,31 +270,6 @@
<source>add_user</source>
<target>Si vous voulez créer de nouveaux utilisateurs, exécutez cette autre commande :</target>
</trans-unit>

<trans-unit id="entity.comment_blank">
<source>entity.comment_blank</source>
<target>Veuillez ne pas laisser votre commentaire vide.</target>
</trans-unit>
<trans-unit id="entity.comment_short">
<source>entity.comment_short</source>
<target>Votre commentaire est trop court ({{ limit }} caractères minimum)</target>
</trans-unit>
<trans-unit id="entity.comment_long">
<source>entity.comment_long</source>
<target>Votre commentaire est trop long ({{ limit }} caractères maximum)</target>
</trans-unit>
<trans-unit id="entity.comment_invalid">
<source>entity.comment_invalid</source>
<target>Le contenu de votre commentaire est considéré comme du spam.</target>
</trans-unit>
<trans-unit id="entity.summary_blank">
<source>entity.summary_blank</source>
<target>Veuillez donner un résumé à votre post.</target>
</trans-unit>
<trans-unit id="entity.post_short">
<source>entity.post_short</source>
<target>Le contenu de votre post est trop court ({{ limit }} caractères minimum)</target>
</trans-unit>
</body>
</file>
</xliff>
31 changes: 31 additions & 0 deletions app/Resources/translations/validators.fr.xliff
@@ -0,0 +1,31 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" target-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="post.blank_summary">
<source>post.blank_summary</source>
<target>Veuillez donner un résumé à votre post.</target>
</trans-unit>
<trans-unit id="post.too_short_content">
<source>post.too_short_content</source>
<target>Le contenu de votre post est trop court ({{ limit }} caractères minimum)</target>
</trans-unit>
<trans-unit id="comment.blank">
<source>comment.blank</source>
<target>Veuillez ne pas laisser votre commentaire vide.</target>
</trans-unit>
<trans-unit id="comment.too_short">
<source>comment.too_short</source>
<target>Votre commentaire est trop court ({{ limit }} caractères minimum)</target>
</trans-unit>
<trans-unit id="comment.too_long">
<source>comment.too_long</source>
<target>Votre commentaire est trop long ({{ limit }} caractères maximum)</target>
</trans-unit>
<trans-unit id="comment.is_spam">
<source>comment.is_spam</source>
<target>Le contenu de votre commentaire est considéré comme du spam.</target>
</trans-unit>
</body>
</file>
</xliff>

0 comments on commit e291f99

Please sign in to comment.