You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

To manually switch the locale:

public final MyPage extends WebPage {

	...

	add(new Link("languageSwitch") {

		@Override
		public void onClick() {
			Locale locale = new Locale(MyPage.this.getString("header.versionLanguage"));
			this.getSession().setLocale(locale);
		}

	});

	...

}
  • No labels