aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-02-12 12:00:49 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-02-12 12:00:49 +0100
commit55da765e11608e852bf197a01c164e442e635f2e (patch)
treeea358d1dea43d7d527e9fcd44240a6110056cb45
parentc7a4f74f9fe225275c8c2e68269b1f86cc31da6e (diff)
downloadwallabag-55da765e11608e852bf197a01c164e442e635f2e.tar.gz
wallabag-55da765e11608e852bf197a01c164e442e635f2e.tar.zst
wallabag-55da765e11608e852bf197a01c164e442e635f2e.zip
Add missing translations
-rw-r--r--src/Wallabag/CoreBundle/Controller/ConfigController.php2
-rw-r--r--src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/ConfigController.php b/src/Wallabag/CoreBundle/Controller/ConfigController.php
index 5ccf5a56..e7fb5ad0 100644
--- a/src/Wallabag/CoreBundle/Controller/ConfigController.php
+++ b/src/Wallabag/CoreBundle/Controller/ConfigController.php
@@ -144,7 +144,7 @@ class ConfigController extends Controller
144 144
145 $this->get('session')->getFlashBag()->add( 145 $this->get('session')->getFlashBag()->add(
146 'notice', 146 'notice',
147 sprintf('User "%s" added', $newUser->getUsername()) 147 $this->get('translator')->trans('User "%username%" added', array('%username%' => $newUser->getUsername()))
148 ); 148 );
149 149
150 return $this->redirect($this->generateUrl('config').'#set6'); 150 return $this->redirect($this->generateUrl('config').'#set6');
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
index a98b7b7a..b66ef538 100644
--- a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
+++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml
@@ -111,7 +111,7 @@ to: 'à'
111website.com: 'website.com' 111website.com: 'website.com'
112Domain name: 'Nom de domaine' 112Domain name: 'Nom de domaine'
113Creation date: 'Date de création' 113Creation date: 'Date de création'
114dd/mm/yyyy: 'dd/mm/aaaa' 114dd/mm/yyyy: 'jj/mm/aaaa'
115Clear: 'Effacer' 115Clear: 'Effacer'
116Filter: 'Filtrer' 116Filter: 'Filtrer'
117website.com: "siteweb.com" 117website.com: "siteweb.com"
@@ -162,6 +162,9 @@ Entry unstarred: "Article retiré des favoris"
162Entry archived: "Article marqué comme lu" 162Entry archived: "Article marqué comme lu"
163Entry unarchived: "Article marqué comme non lu" 163Entry unarchived: "Article marqué comme non lu"
164Entry deleted: "Article supprimé" 164Entry deleted: "Article supprimé"
165Tagging rule deleted: "Règle supprimée"
166Tagging rules updated: "Règles mis à jour"
167User "%username%" added: 'Utilisateur "%username%" ajouté'
165 168
166# Entry 169# Entry
167Mark as read: 'Marquer comme lu' 170Mark as read: 'Marquer comme lu'