Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sao/locale/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ msgstr "Pas trouvé."
msgid "Send you an email to reset your password."
msgstr "Envoyez-vous un email pour réinitialiser votre mot de passe."

msgid "Reset forgotten password"
msgstr "Réinitialiser le mot de passe oublié"

msgid ""
"A request to reset your password has been sent.\n"
"Please check your mailbox."
Expand Down
3 changes: 3 additions & 0 deletions sao/locale/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ msgstr ""
msgid "Send you an email to reset your password."
msgstr ""

msgid "Reset forgotten password"
msgstr ""

msgid ""
"A request to reset your password has been sent.\n"
"Please check your mailbox."
Expand Down
2 changes: 1 addition & 1 deletion sao/src/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@
'type': 'button',
'title': Sao.i18n.gettext(
"Send you an email to reset your password."),
}).text("Reset forgotten password").click(() => {
}).text(Sao.i18n.gettext("Reset forgotten password")).click(() => {
session.do_reset_password().then(() => {
return Sao.common.message.run(Sao.i18n.gettext(
"A request to reset your password has been sent.\n" +
Expand Down