auth0-extensions / auth0-account-link-extension

An extension aimed to help link accounts easily
MIT License
28 stars 76 forks source link

Managing Locale issue #137

Open araujogo opened 2 years ago

araujogo commented 2 years ago

Tried to find more what Locale is about on the menu, but a popup with [Object] appears

keyboSlice commented 2 years ago

Hi, we're also experiencing this, did you manage to work around it?

We tried manually sending a PUT request to the locales endpoint, which does set the strings but it removes the custom HTML that we'd added for the page 🙃

bernardwolff commented 2 years ago

Hello @araujogo and @keyboSlice, as a workaround, you can get the Manage locales page to load if you copy the address of the link and paste it into the browser's address bar, but as @keyboSlice reported, this wipes out the custom HTML.

giovannetti-eric commented 1 year ago

The bug is there for month, Is there any support on this extension?

ajubin commented 1 year ago

For me, available locales are the following

image

All my users are French so I found a hack to override content this way:

/* On my custom.css file */

#message {
  font-size: 0;
}
#message::after {
  /* Original content: It looks like you have another account with the same email address. We recommend you link these accounts. You may sign in with Auth0 to link accounts. */
  content: "Nous avons détecté qu'un autre compte associé à cette adresse email existe déjà. Pour le lier à ce nouveau moyen de connexion, veuillez cliquer sur 'Continuer' pour vous authentifier avec l'autre compte.";
  /* reset to original properties */
  font-size: 16px;
  display: block;
}