Magento – Magento 2: How to solve this {{system messages }} issue

adminnotificationmagento2messages

How can i solve this issue ? it is weird
{{{System Messages}}{{System Messages}}{{System Messages}}{{themeMagento/backend}}}

enter image description here

This issue is appearing/ visible every where in the admin almost

enter image description here

Best Answer

This is usually caused by a corrupted js-translation.json file in these two locations:

  • pub/static/adminhtml/Magento/backend/[locale]/js-translation.json
  • var/view_preprocessed/pub/static/adminhtml/Magento/backend/[locale]/js-translation.json

You should first of all try to delete these two files and then flush cache and execute

php bin/magento setup:static-content:deploy -f [locale] -a adminhtml

If the file still gets generated containing curly braces maybe you're having an issue I also had and in database table core_config_data there are records that make the system think inline translate is on. It happened to me via the migration tool. Try setting those values to 0 and retry deploying static content.

enter image description here

Notice here the 3rd row contains a row that doesn't exist in a default installation of magento 2 but appeared after migrating data. The value was 1 and I set it to 0 and it instantly generated the proper translations.

Hope it helps you