Load resources as i18n.txt instead of i18n.properties

Upload core product.
Post Reply
User avatar
support
Posts: 1503
Joined: Sun Jan 27, 2008 6:19 pm

Load resources as i18n.txt instead of i18n.properties

Post by support »

Since 2.5 you can avoid resource file ending with .properties. You can make the applet loading i18n.txt instead of i18n.properties. Here are the required parameters:

Code: Select all

<PARAM NAME="resources" VALUE="i18n">
<PARAM NAME="localeresources" VALUE="false">
<PARAM NAME="localeresourcesextension" VALUE=".txt">
This solution allows having dynamic resource file such as PHP.

Post Reply