Having problems with i18n. properties

Upload core product.
Post Reply
agreater
Posts: 1
Joined: Thu Nov 20, 2008 4:55 am

Having problems with i18n. properties

Post by agreater »

I am having a hard time getting the i18n.proerties to work .
I need to know where to put the <PARAM NAME="resources" VALUE="i18n"> at in the file.
I have tried to put it in at the bottom next to document.writeln('<PARAM NAME="regfile" VALUE="license.oxw">');

But then when I go to use the drag and drop in says unregistered.

Any help would great

Thanks
Agreater

User avatar
support
Posts: 1503
Joined: Sun Jan 27, 2008 6:19 pm

Re: Having problems with i18n. properties

Post by support »

You get UNREGISTERED message when you add "resources" parameter ?
Something like this should work:
...
document.write('url="ftp://localhost" ');
document.write('resources="i18n" ');
document.write('regfile="license.oxw" ');
...
document.writeln('<PARAM NAME="url" VALUE="ftp://localhost">');
document.writeln('<PARAM NAME="resources" VALUE="i18n">');
document.writeln('<PARAM NAME="regfile" VALUE="license.oxw">');
...
Make sure to copy/paste and existing line and update it to avoid typo.

Also, try make sure i18n.properties will work, try to access it directly from browser such as:
http://youserver.com/something/i18n.properties
Do you see the file ?

Post Reply