Hi!
I would like to know if i can use 'internacionalization' in LC Designer, and could anybody give me an example, please?
Thank´s
Solved! Go to Solution.
Views
Replies
Total Likes
Ok,
I have an example for this purpose.
You can find it here.
http://thelivecycle.blogspot.com/2010/01/multiligual-forms.html
Views
Replies
Total Likes
Not sure what you mean with "internationalization".
Do you want to create multilingual forms?
Views
Replies
Total Likes
Yes, I want to create multilingual forms.
Sorry I used the same term that Java jeje.
Views
Replies
Total Likes
Ok,
I have an example for this purpose.
You can find it here.
http://thelivecycle.blogspot.com/2010/01/multiligual-forms.html
Views
Replies
Total Likes
I also seek.
I want to use different XML files, following the language, to create form.
I found this: http://help.adobe.com/en_US/livecycle/9.0/programLC/help/index.htm?content=000184.html
But I have not yet exploited.
If you have a way to do this in the Designer using resources, I'll take it!
Views
Replies
Total Likes
Thank´s Radzmar!
Now only need to know if I could to take the language selected from java application, and with this, set the language on the form.
That is, that the language of the form depends on the language of the application.
accept suggestions
Views
Replies
Total Likes
You can use the locale property to change the field for the selected language through the initialize:event.
if(this.locale == "de_DE")
{
this.rawValue = "German"
}
if(this.locale == "en_EN")
{
this.rawValue = "Englisch"
}
Radzmar
Thank´s for the response
I used the locale property and worked.
But I have one last question.... I have an application Java where I can select differents idioms and depending of the language selected in the application I need to show the form in the same language, not the same system´s language. Is there any way to do this?
Some form of link or send a type parameter of the application to form
Do you know if this is possible?
thank´s
Views
Replies
Total Likes
I won't say it's not possible, but I never tested such thing you described, so I can't give you an answer for this.
Views
Replies
Total Likes