Objects and Arrays
Objects
{
"tree": {
"res": "added {{something}}"
},
"array": ['a', 'b', 'c']
}i18next.t('tree', { returnObjects: true, something: 'gold' });
// -> { res: 'added gold' }
i18next.t('array', { returnObjects: true });
// -> ['a', 'b', 'c']i18next.t($ => $.tree, { returnObjects: true, something: 'gold' });
// -> { res: 'added gold' }
i18next.t($ => $.array, { returnObjects: true });
// -> ['a', 'b', 'c']Arrays
Last updated