留言板

How to change Liferay's culture in code

Lior Hadaya,修改在11 年前。

How to change Liferay's culture in code

Regular Member 帖子: 138 加入日期: 12-1-24 最近的帖子
Hello,

I'm using Liferay EE 6.1.20 and I need to support a flow of changing the culture/language by the user.
How can I switch Liferay's culture in code?

I found the LocaleUtil class but I'm not sure if it would help, hard to understand what each method there actually does.

Please advise,

Thanks
Lior Hadaya,修改在11 年前。

RE: How to change Liferay's culture in code

Regular Member 帖子: 138 加入日期: 12-1-24 最近的帖子
I figured out how to do it.
#set ($language_url = $portletURLFactory.create($request, "82", $themeDisplay.getPlid(), "ACTION_PHASE")) 
$language_url.setWindowState("normal") 
$language_url.setPortletMode("view") 
$language_url.setParameter("struts_action", "/language/view") 
$language_url.setParameter("languageId", "fr_FR")


and then $language_url contains a URL that redirecting to it changes the portal's locale to French.
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to change Liferay's culture in code

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
You meant "country" instead of "culture". I think your question stunned a lot of people because of it. emoticon

Nice to see that you've figured it out yourself.
thumbnail
James Falkner,修改在11 年前。

RE: How to change Liferay's culture in code

Liferay Legend 帖子: 1399 加入日期: 10-9-17 最近的帖子
Hitoshi Ozawa:
You meant "country" instead of "culture". I think your question stunned a lot of people because of it. emoticon



emoticon
thumbnail
Jack Bakker,修改在11 年前。

RE: How to change Liferay's culture in code

Liferay Master 帖子: 978 加入日期: 10-1-3 最近的帖子
unique keyword culture is

(yoda grammer)
Lior Hadaya,修改在11 年前。

RE: How to change Liferay's culture in code

Regular Member 帖子: 138 加入日期: 12-1-24 最近的帖子
Change country? that's even wierder emoticon
Language codes are also called cultrue codes
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to change Liferay's culture in code

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
Looking at the MS docs, it seems "culture code" is used to determine more than just the language used.

The CultureInfo class provides culture-specific information, such as the language, sublanguage, country/region, calendar, and conventions associated with a particular culture.


In Java, Locale is "language" and "country".
http://docs.oracle.com/javase/7/docs/api/java/util/Locale.html

Another user was posting about changing calendar (e.g. Hijri). I've also asked liferay.com to change "conventions associated with a particular culture". It's currently not supported by liferay so I had to make my own additions.

That said, Liferay doesn't support "culture codes".