I have the following object:
translations = {
'nl': {
'Dashboard': [
{
"Today's turnover": "Omzet van vandaag",
"Get an overview directly from your receipts on location.": "Bekijk een overzicht rechtstreeks vanuit uw inkomsten op locatie.",
"Choose your POS provider": "Kies uw POS provider"
}],
'Products': [],
'Order': []
}
}
And I'm trying to access the Today's turnover
property of the Dashboard
proprty inside nl
, which, according to the question and answers here can be accessed like object['object property']
However when I try to access it, it comes as undefined for some reason:
Why is this not working?