pub / rememori

Simple file-based bookmarking and notes application
git clone https://src.jayvii.de/pub/rememori.git
Home | Log | Files | Exports | Refs | README | RSS

commit 0a17c392f0d9f4d2cd04f1ac8112ea40a2cb50ce
parent a9fa46fb25038720253fff2127b2f70d1d88ba61
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Thu, 31 Oct 2024 21:54:01 +0100

fix: tell user to login again

Diffstat:
Mconfig/i18n.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/i18n.php b/config/i18n.php @@ -23,7 +23,7 @@ if ($lang == "en") { $GLOBALS["i18n_login"] = "Login"; $GLOBALS["i18n_user"] = "Username"; $GLOBALS["i18n_pass"] = "Password"; - $GLOBALS["i18n_noauth"] = "You could not be authenticated"; + $GLOBALS["i18n_noauth"] = "You could not be authenticated. Please login and try again!"; $GLOBALS["i18n_logout"] = "Logout"; $GLOBALS["i18n_categories"] = "Categories"; $GLOBALS["i18n_delete"] = "Delete"; @@ -58,7 +58,7 @@ if ($lang == "de") { $GLOBALS["i18n_logout"] = "Logout"; $GLOBALS["i18n_user"] = "Name der:die Nutzer:in"; $GLOBALS["i18n_pass"] = "Passwort"; - $GLOBALS["i18n_noauth"] = "Authentifizierung gescheitert"; + $GLOBALS["i18n_noauth"] = "Authentifizierung gescheitert. Bitte nach erneutem Login nochmals versuchen."; $GLOBALS["i18n_cookie"] = "Eingelogged bleiben (das setzt einen Cookie)"; $GLOBALS["i18n_cookie_session"] = "Nein, nur temporär"; $GLOBALS["i18n_cookie_long"] = "Ja, lass mich für 30 Tage eingelogged";