From f1a7c0370a779ea67d13ccd9a762e8b806bcb274 Mon Sep 17 00:00:00 2001 From: Oscar Gonzalez Fernandez Date: Tue, 1 Apr 2014 20:15:59 +0200 Subject: [PATCH] Fix bug #1643 Java's Gettext Commons, http://xnap-commons.sourceforge.net/gettext-commons/, uses java.text.MessageFormat for doing the parameter substitution. MessageFormat interprets ' as an escaping character. In order to introduce ', you have to escape it, i.e., you have to type '' instead. Otherwise posterior positional parameters like {0} aren't interpreted. --- libreplan-webapp/src/main/resources/i18n/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libreplan-webapp/src/main/resources/i18n/fr.po b/libreplan-webapp/src/main/resources/i18n/fr.po index fa7080f11..02d4371fe 100644 --- a/libreplan-webapp/src/main/resources/i18n/fr.po +++ b/libreplan-webapp/src/main/resources/i18n/fr.po @@ -5170,7 +5170,7 @@ msgstr "Travail" msgid "" "Error saving the project\n" "{0}" -msgstr "Erreur lors de l'enregistrement du projet\n{0}" +msgstr "Erreur lors de l''enregistrement du projet\n{0}" #: libreplan-webapp/src/main/java/org/libreplan/web/planner/tabs/MultipleTabsPlannerController.java:220 #: libreplan-webapp/src/main/java/org/libreplan/web/planner/order/SaveCommandBuilder.java:375