Hello again, second post here!
I have a problem with multilanguage image metadata:
{% extends 'partials/base.html.twig' %}
{% block content %}
{{ page.content }}
<ul>
{% for image in page.media.images %}
<li>
<div class="image-surround">
{{ image.cropResize(300,200).html }}
</div>
<div class="image-info">
<h2>{{ image.meta.title }}</h2>
<p>{{ image.meta.description }}</p>
</div>
</li>
{% endfor %}
</ul>
{% endblock %}
this is the gallery.html.twig as per coockbook recipe, awaiting further development of course.
This is my image1.jpg.meta.yaml
title:
en: Title
it: Titolo
description:
en: Description
it: Descrizione
This is the error I receive:

If I remove the*.meta.yaml file everything gets back to normal!
Using Grav 1.7 RC 14 with an untouched "Pure" theme for testing purposes.
Thanks!