This topic contains 1 reply, has 2 voices, and was last updated by ishakuta 8 years, 6 months ago.
-
Topic
-
Hi,
I tried to download latest language data via “Language settings”, but French and Japanese are failed (German is OK).
So I investigated why this error happened. The answer is “OroCRMMagentoContactUsBundle/translations/messages.ja_JP.yml” and “OroCRMMagentoContactUsBundle/translations/messages.fr_FR.yml” have wrong YAML expression “* Required Fields:”.\Symfony\Component\Yaml\Inline::evaluateScalar has this code.
123456789101112131415if (0 === strpos($scalar, '*')) {if (false !== $pos = strpos($scalar, '#')) {$value = substr($scalar, 1, $pos - 2);} else {$value = substr($scalar, 1);}if (!array_key_exists($value, $references)) {throw new ParseException(sprintf('Reference "%s" does not exist.', $value));}return $references[$value];}This code search where “*” character is in $scalar and if it is found first position, it’s removed.
So I think, the right way is,-
remove “*” from this keyword.
change this keyword.Thanks,
The forum ‘OroCRM – Installation/Technical Issues or Problems’ is closed to new topics and replies.