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.
This commit is contained in:
parent
70a8013eb9
commit
f1a7c0370a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue