Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
DCT in Multiple languages
juno
Hello ,
The items of the DCR are to be displayed in multiple language.
So the items of the DCT should be in those languages.
for ex :-A DCT item
<item name="ƒNƒŠƒbƒNˆê‚‚Å">
<text required="t" size="60" maxlength="125">
<default></default>
</text>
</item>
What do i do ? Can any one help me out.
Thanks in advance.
Juno.
Find more posts tagged with
Comments
Migrateduser
If you are just wanting to display another language in the DCT to the user then try using the ASCII representation for those characters.
example (using Japanese)
<item name="myStuff">
<label>ユーザ</label>
<text required="t" size="60" maxlength="125">
<default></default>
</text>
</item>
If you actually need the DCR elements to be in another language you can try putting the ASCII characters in the item name element (I haven't tried it)
iwovGraduate
To clarify that a little -
Keep the item name in English and use <lable> tag to dispaly that item name in a different language.
juno
Thanks for the early reply.
Will this work for languages like Japanese and Chinese?
If i have to use ASCII values then i have to find it for every character of the language,
Is there a site which actually gives me the ASCII of a Japanese and Chinese word?
Thanks once again.