How can i customize login texts in Strapi admin Login

I Found here !!!

To make this type os customizations, we can use translate with location config

In my project i translate to BR Portuguese, but you can do it with anything

import YourLogo from "./extensions/your-logo.png"
//...
{ 

//...

 auth: {
  logo: YourLogo,
 },
locales: ['pt-BR'],
 translations: {
      'pt-BR': {
        'Auth.form.email.label': 'teste',
        'Auth.form.welcome.title': 'Meu título customizado!',
        'Auth.form.welcome.subtitle': 'Entre em sua conta',
        // Translate a plugin's key/value pair by adding the plugin's name as a prefix
        // In this case, we translate the "plugin.name" key of plugin "content-type-builder"
      },
    },
//...

}

3 Likes