cbi18n
v3.x
v3.x
  • Introduction
  • Intro
    • Release History
      • What's New With 3.0.0
    • About this Book
      • Author
  • GETTING STARTED
    • Overview
    • Installation
    • Configuration
  • Usage
    • Coding for i18n
      • Java vs JSON resources
      • Property inheritance
      • Resource Bundle Tools
      • Custom Resource Services
    • How do I change Locales?
    • Best Practices
    • Resources
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Usage

How do I change Locales?

Well, it would not make any sense to use i18n for just one locale, would it? That is why you need to be able to change the application's locale programmatically. You can do this in two ways:

  1. Using the i18n mixin method setfwLocale().

  2. Using the i18n service setfwLocale().

Below you can see an example:

function changeLocale( event, rc, prc ){
    setFWLocale( rc.locale );
    relocate('main.home');
}

Or use via injection

component{

    property name="i18n" inject="i18n@cbi18n";

    function changeLocale(){
        i18n.setFWLocale( 'en_US' );
    }

}
PreviousCustom Resource ServicesNextBest Practices

Last updated 2 years ago

Was this helpful?