Fix forget page i18n

This commit is contained in:
Gucheng Wang
2023-03-03 23:49:56 +08:00
parent ef3d323f63
commit 3e6ef9e666
12 changed files with 74 additions and 97 deletions

View File

@ -19,7 +19,7 @@ export function sendTestSms(provider, phone) {
testSmsProvider(provider, phone)
.then((res) => {
if (res.status === "ok") {
Setting.showMessage("success", `${i18next.t("provider:SMS send Successfully")}`);
Setting.showMessage("success", `${i18next.t("provider:SMS sent successfully")}`);
} else {
Setting.showMessage("error", res.msg);
}