Is it possible to assign a Hashmap to a variable in this manner:
{% assign translations = {en: 'Hello', es: 'Hola'} %}
And then access it like this:
{{ translations.en }}
It seems possible from this question but accessing the translations
variable yields empty string.