Translating Vanilla/dashboard translation
Translating Vanilla encountered such problem: on the page "Banner", translation description for "Favicon" was the same.
For example:
-Favicon Your site's favicon appears in your browser's title bar. It will be scaled to 16x16 pixels.
-The shortcut icon that shows up in your browser's bookmark menu (16x16 px).
Had follows:
Shortcut icon that appears in your browser's bookmarks menu (16x16 px).
Shortcut icon that appears in your browser's bookmarks menu (16x16 px).
Here is an excerpt of the code: t ('FaviconDescription', "Your site's favicon appears in your browser's title bar. It will be scaled to 16x16 pixels."), And t ('FaviconDescription', "The shortcut icon that shows up in your browser's bookmark menu (16x16 px). "),
by experiment, found a solution, add a number that gives the sequence for each description 'FaviconDescription1 and' FaviconDescription2
Translated it looks like this:
$ Definition ['FaviconDescription1'] = '';
$ Definition ['FaviconDescription2'] = '';
if there are other solutions to the problem - write here