How to Change Manufacturer Title to Brand Throughout the Admin Panel in Shopware 6?
Have a look at Setting > Snippets here you would be able to change this.
i asked for admin snippets
Setting > Snippets all are storefront snippets
admin snippets are in code files en-GB.json file for each components
path : shopware/administration/Resources/app/administration
I have got the solution
i used Shopware.Component.Override
// use en-GB.json to change the snippets what you want to change for the component
index.js
import enGB from ‚./snippet/en-GB.json‘;
Shopware.Component.override(‚sw-manufacturer-list‘, {
created() {
Shopware.Locale.extend(‚en-GB‘, enGB);
}
});
first find the snippet what you want to change and identify the component what you want change for the snippet use override component to change the manufacture to brand in admin panel
is anyone have better solution then me, please share with me here