πSerialization options
{
"hello": "$1",
}locale.translate('hello', 'niro you are cool.yesuppercase');
// output: NIRO YOU ARE COOLlocale.translate('hello', 'Repeat this .repeat[2]');
// output: Repeat this Repeat this{
"hello": "$1",
"speak": "Thanks for use!",
}locale.translate('hello', '.speak.space[1].repeat[2]');
// output: Thanks for use! Thanks for use!Last updated