Jesway / flutter_translate

Flutter Translate is a fully featured localization / internationalization (i18n) library for Flutter.
MIT License
401 stars 118 forks source link

Translate object #23

Closed erperejildo closed 4 years ago

erperejildo commented 4 years ago

How could I translate something like this in my json?

  "test": {
    "test1": "hi"
  },
erperejildo commented 4 years ago

Found it:

Translate with pluralization:

translatePlural('plural.demo', yourNumericValue);
JSON:

"plural": {
    "demo": {
        "0": "Please start pushing the 'plus' button.",
        "1": "You have pushed the button one time.",
        "else": "You have pushed the button {{value}} times."
    }
}