Fixed the text message in the add_currency view.

This commit is contained in:
依瑪貓 2023-03-20 22:44:26 +08:00
parent 50dd6078c7
commit 116089d1d2

View File

@ -89,7 +89,7 @@ def add_currency() -> redirect:
form.populate_obj(currency)
db.session.add(currency)
db.session.commit()
flash(s(lazy_gettext("The currency is added successfully")), "success")
flash(s(lazy_gettext("The currency is added successfully.")), "success")
return redirect(inherit_next(__get_detail_uri(currency)))