Skip to content
Snippets Groups Projects
Verified Commit e6c1395a authored by Timm Fitschen's avatar Timm Fitschen
Browse files

BUG: fix i18n key

parent d955dfc4
No related branches found
No related tags found
1 merge request!9ENH: Introduction of basic i18n (internationalization).
Pipeline #40352 failed
......@@ -83,7 +83,7 @@ export function UserComponent({onLogin, onLogout}) {
const service = new InfoService();
await service.logout();
if (onLogout()) {
show_login_form(t("You have been logged out."), "success");
show_login_form(t("You have been logged out"), "success");
}
} catch (e) {
show_login_form(t("Logout failed") + ": " + translateServerMessages(e.message), "error");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment