Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 671 Bytes

localization.md

File metadata and controls

31 lines (26 loc) · 671 Bytes

Localization

Back to README.md

You can add localized strings to your app by adding a strings property to your export:

export default {
  // ...
  strings: {
    // Your strings...
    // Example:
    en_US: {
      myCustomString: "This is my custom string",
    },
    // etc for other languages...
    es_ES: { ... },
    de_DE: { ... },
  },
  // ...
}

Strings that can't be found at all will display as their ID. Here's an example:

// logs "very_invalid_string" to the console
console.log(Root.Lib.getString("very_invalid_string"));
// logs "OK" to the console if the language is en_US
console.log(Root.Lib.getString("ok"));