diff --git a/adminer/include/auth.inc.php b/adminer/include/auth.inc.php
index e8d6c828..aaa01a0b 100644
--- a/adminer/include/auth.inc.php
+++ b/adminer/include/auth.inc.php
@@ -83,7 +83,7 @@ function auth_error($exception = null) {
if ($password !== null) {
$error = h($exception ? $exception->getMessage() : (is_string($connection) ? $connection : lang('Invalid credentials.')));
if ($password === false) {
- $error .= '
' . lang('Master password expired. Implement permanentLogin() method to make it permanent.');
+ $error .= '
' . lang('Master password expired. Implement %s method to make it permanent.', 'permanentLogin()');
}
$password = null;
}
diff --git a/adminer/lang/cs.inc.php b/adminer/lang/cs.inc.php
index eb09ca64..6e679187 100644
--- a/adminer/lang/cs.inc.php
+++ b/adminer/lang/cs.inc.php
@@ -11,7 +11,7 @@ $translations = array(
'Logged as: %s' => 'Přihlášen jako: %s',
'Logout successful.' => 'Odhlášení proběhlo v pořádku.',
'Invalid credentials.' => 'Neplatné přihlašovací údaje.',
- 'Master password expired. Implement permanentLogin() method to make it permanent.' => 'Platnost hlavního hesla vypršela. Implementujte metodu permanentLogin(), aby platilo stále.',
+ 'Master password expired. Implement %s method to make it permanent.' => 'Platnost hlavního hesla vypršela. Implementujte metodu %s, aby platilo stále.',
'Language' => 'Jazyk',
'Invalid CSRF token. Send the form again.' => 'Neplatný token CSRF. Odešlete formulář znovu.',
'No extension' => 'Žádné rozšíření',
diff --git a/adminer/lang/xx.inc.php b/adminer/lang/xx.inc.php
index db2089df..d7712ee1 100644
--- a/adminer/lang/xx.inc.php
+++ b/adminer/lang/xx.inc.php
@@ -11,7 +11,7 @@ $translations = array(
'Logged as: %s' => 'xx',
'Logout successful.' => 'xx',
'Invalid credentials.' => 'xx',
- 'Master password expired. Implement permanentLogin() method to make it permanent.' => 'xx',
+ 'Master password expired. Implement %s method to make it permanent.' => 'xx',
'Language' => 'xx',
'Invalid CSRF token. Send the form again.' => 'xx',
'No extension' => 'xx',