[Emergency] Uncaught Symfony\Component\Translation\Exception\InvalidResourceException: Error parsing YAML, invalid file "/var/www/vhosts/voelklinger-huette.org/httpdocs/dev.voelklinger-huette.org/app/lang/fr.yml". Message: Unexpected characters near "accueil'" at line 227 (near "GOTOHOME: 'Vers la page d'accueil'").

GET /fr/

Line 42 in /var/www/vhosts/voelklinger-huette.org/httpdocs/dev.voelklinger-huette.org/vendor/silverstripe/framework/src/i18n/Messages/YamlReader.php

Source

33             }
34             // Load
35             $yaml = $this->getParser()->parse(file_get_contents($path));
36             if (empty($yaml[$locale])) {
37                 return [];
38             }
39             // Normalise messages
40             return $this->normaliseMessages($yaml[$locale]);
41         } catch (ParseException $exception) {
42             throw new InvalidResourceException(sprintf('Error parsing YAML, invalid file "%s". Message: %s', $path, $exception->getMessage()), 0, $exception);
43         }
44     }
45 
46     /**
47      * Flatten [class => [ key1 => value1, key2 => value2]] into [class.key1 => value1, class.key2 => value2]
48      *

Trace