Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Internacionalization

Avatar

Level 2

Hi!

I would like to know if i can use 'internacionalization' in LC Designer, and could anybody give me an example, please?

Thank´s

1 Accepted Solution

Avatar

Correct answer by
Level 10

Ok,

I have an example for this purpose.

You can find it here.

http://thelivecycle.blogspot.com/2010/01/multiligual-forms.html

View solution in original post

8 Replies

Avatar

Level 10

Not sure what you mean with "internationalization".

Do you want to create multilingual forms?

Avatar

Level 2

Yes, I want to create multilingual forms.

Sorry I used the same term that Java jeje.

Avatar

Correct answer by
Level 10

Ok,

I have an example for this purpose.

You can find it here.

http://thelivecycle.blogspot.com/2010/01/multiligual-forms.html

Avatar

Former Community Member

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!

Avatar

Level 2

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

Avatar

Level 10

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"

     }

Avatar

Level 2

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

Avatar

Level 10

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.