You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by mg...@apache.org on 2015/03/29 16:01:45 UTC

svn commit: r1669911 - /isis/site/trunk/content/config/i18n-support.md

Author: mgrigorov
Date: Sun Mar 29 14:01:45 2015
New Revision: 1669911

URL: http://svn.apache.org/r1669911
Log:
It appears that the name of the translations files should use only '-', not '_'.


Modified:
    isis/site/trunk/content/config/i18n-support.md

Modified: isis/site/trunk/content/config/i18n-support.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/config/i18n-support.md?rev=1669911&r1=1669910&r2=1669911&view=diff
==============================================================================
--- isis/site/trunk/content/config/i18n-support.md (original)
+++ isis/site/trunk/content/config/i18n-support.md Sun Mar 29 14:01:45 2015
@@ -193,16 +193,16 @@ The default location of the translated `
 
 For example, assuming these translations:
 
-    /WEB-INF/translations_en-US.po    
-    /WEB-INF/translations_en.po
-    /WEB-INF/translations_fr-FR.po
+    /WEB-INF/translations-en-US.po    
+    /WEB-INF/translations-en.po
+    /WEB-INF/translations-fr-FR.po
     /WEB-INF/translations.po
 
 then:
 
-* a user with `en-US` locale will use `translations_en-US.po`
-* a user with `en-GB` locale will use `translations_en.po`
-* a user with `fr-FR` locale will use `translations_fr-FR.po`
+* a user with `en-US` locale will use `translations-en-US.po`
+* a user with `en-GB` locale will use `translations-en.po`
+* a user with `fr-FR` locale will use `translations-fr-FR.po`
 * a user with `fr-CA` locale will use `translations.po`
 
 The basename for translation files is always `translations`; this cannot be altered.