Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Elasticsearch 7 driver #440

Closed
wants to merge 38 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2c8dbf4
Fix misaligned inputs
Roy-Orbison Jun 10, 2021
acf168a
Add Latvian language translation
krysits Sep 18, 2021
61b84ce
Bangla language corrections
saiman Nov 29, 2021
e99ed80
Update language files
peterpp Mar 15, 2024
3e94299
Update French and Italian translations
LionelLaffineur Jul 9, 2023
834380a
Update Dutch translation
gerryd Jul 18, 2023
a940f85
Update Russian translation
OmlineEditor Jul 22, 2023
2928b7b
Update Czech translation
Lumeriol Aug 2, 2023
5dddfbd
Fix and complete Slovak translation
peterpp Jan 16, 2024
367a1b9
Merge branch 'translations'
peterpp Mar 15, 2024
38f390a
Declare minimal PHP version in composer.json
peterpp Mar 15, 2024
8e848bf
Allow responsive styles on larger devices
lucas-sandery Nov 25, 2018
bf80612
Make jush and JsShring submodules available
peterpp Mar 16, 2024
20a0e4e
Release 4.8.2
peterpp Mar 15, 2024
5cfd48b
Bump version to 4.9-dev
peterpp Mar 16, 2024
1c5947d
Validate server input
peterpp Jan 18, 2024
9eb4d00
Disable redirections in HTTP based drivers
peterpp Jan 25, 2024
338c81e
Validate server connection in Elasticsearch and ClickHouse drivers
peterpp Jan 19, 2024
e69583a
Validate server connection in SimpleDB driver
peterpp Jan 25, 2024
55a7d38
Change 'Invalid credentials.' message
peterpp Jan 26, 2024
38e4b51
Update changes.txt
peterpp Mar 16, 2024
35afd4f
Merge branch 'login-fixes'
peterpp Mar 16, 2024
e8b40e3
Update hydra and pepa-lintha-dark themes
peterpp Mar 16, 2024
a5780e5
Move dependencies from submodules to Composer
peterpp Mar 16, 2024
9968851
Add support for "where" field privilege
peterpp Apr 4, 2021
9f8dadb
Add support for "order" field privilege
peterpp Apr 4, 2021
4d7642a
Merge branch 'field-privileges'
peterpp Mar 16, 2024
8ecec60
Replace deprecated "filtered" query with "bool" query
peterpp Mar 21, 2021
1aedea5
Fix searching if "anywhere" field is selected
peterpp Mar 21, 2021
44a985d
Fix version condition for deprecated mapping types
peterpp Apr 3, 2021
8b52628
Fix global search in all tables
peterpp Apr 4, 2021
1a58ee4
Compatibility with Elasticsearch 7.14
peterpp Sep 18, 2021
22665aa
Merge branch 'elastic-query-fix'
peterpp Mar 17, 2024
e5ac2e2
Fix undefined $sql variable
peterpp May 3, 2023
5d73ab8
New Elasticsearch plugin as a copy of the old one
peterpp Apr 3, 2021
4183472
Properly display list of databases, indexes, aliases and fields, fix …
peterpp Apr 3, 2021
40825eb
Move Elastic drivers to plugins, driver for Elastic 7+ is the default
peterpp Sep 18, 2021
a428b64
Improve code readability by using of empty lines
peterpp Mar 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change 'Invalid credentials.' message
  • Loading branch information
peterpp committed Mar 16, 2024
commit 55a7d3864f594d00e2702cd5fecd6620539315ce
8 changes: 4 additions & 4 deletions adminer/drivers/elastic.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ function rootQuery($path, array $content = null, $method = 'GET') {
))));

if ($file === false) {
$this->error = lang('Invalid credentials.');
$this->error = lang('Invalid server or credentials.');
return false;
}

$return = json_decode($file, true);
if ($return === null) {
$this->error = lang('Invalid credentials.');
$this->error = lang('Invalid server or credentials.');
return false;
}

if (!preg_match('~^HTTP/[0-9.]+ 2~i', $http_response_header[0])) {
if (isset($return['error']['root_cause'][0]['type'])) {
$this->error = $return['error']['root_cause'][0]['type'] . ": " . $return['error']['root_cause'][0]['reason'];
} else {
$this->error = lang('Invalid credentials.');
$this->error = lang('Invalid server or credentials.');
}
return false;
}
Expand Down Expand Up @@ -73,7 +73,7 @@ function connect($server, $username, $password) {
}

if (!isset($return['version']['number'])) {
$this->error = lang('Invalid credentials.');
$this->error = lang('Invalid server or credentials.');
return false;
}

Expand Down
12 changes: 6 additions & 6 deletions adminer/include/auth.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ function validate_server_input() {

$parts = parse_url(SERVER);
if (!$parts) {
auth_error(lang('Invalid credentials.'));
auth_error(lang('Invalid server or credentials.'));
}

// Check proper URL parts.
if (isset($parts['user']) || isset($parts['pass']) || isset($parts['query']) || isset($parts['fragment'])) {
auth_error(lang('Invalid credentials.'));
auth_error(lang('Invalid server or credentials.'));
}

// Allow only HTTP/S scheme.
if (isset($parts['scheme']) && !preg_match('~^(https?)$~i', $parts['scheme'])) {
auth_error(lang('Invalid credentials.'));
auth_error(lang('Invalid server or credentials.'));
}

// Allow only host without a path. Note that "localhost" is parsed as path.
$host = (isset($parts['host']) ? $parts['host'] : '') . (isset($parts['path']) ? $parts['path'] : '');
if (strpos(rtrim($host, '/'), '/') !== false) {
auth_error(lang('Invalid credentials.'));
auth_error(lang('Invalid server or credentials.'));
}

// Check privileged ports.
Expand All @@ -57,7 +57,7 @@ function validate_server_input() {
*/
function build_http_url($server, $username, $password, $defaultServer, $defaultPort = null) {
if (!preg_match('~^(https?:https://)?([^:]*)(:\d+)?$~', rtrim($server, '/'), $matches)) {
$this->error = lang('Invalid credentials.');
$this->error = lang('Invalid server or credentials.');
return false;
}

Expand Down Expand Up @@ -216,7 +216,7 @@ function auth_error($error) {

$login = null;
if (!is_object($connection) || ($login = $adminer->login($_GET["username"], get_password())) !== true) {
$error = (is_string($connection) ? h($connection) : (is_string($login) ? $login : lang('Invalid credentials.')));
$error = (is_string($connection) ? h($connection) : (is_string($login) ? $login : lang('Invalid server or credentials.')));
auth_error($error . (preg_match('~^ | $~', get_password()) ? '<br>' . lang('There is a space in the input password which might be the cause.') : ''));
}

Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ar.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'تسجيل الدخول',
'Logout successful.' => 'تم تسجيل الخروج بنجاح.',
'Invalid credentials.' => 'بيانات الدخول غير صالحة.',
'Invalid server or credentials.' => null,
'Server' => 'الخادم',
'Username' => 'اسم المستخدم',
'Password' => 'كلمة المرور',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/bg.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Изход',
'Logged as: %s' => 'Текущ потребител: %s',
'Logout successful.' => 'Излизането е успешно.',
'Invalid credentials.' => 'Невалидни потребителски данни.',
'Invalid server or credentials.' => null,
'Too many unsuccessful logins, try again in %d minute(s).' => array('Прекалено много неуспешни опити за вход, опитайте пак след %d минута.', 'Прекалено много неуспешни опити за вход, опитайте пак след %d минути.'),
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Главната парола вече е невалидна. <a href="https://www.adminer.org/en/extension/"%s>Изберете</a> %s метод, за да я направите постоянна.',
'Language' => 'Език',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/bn.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'লগইন',
'Logout successful.' => 'সফলভাবে লগআউট হয়েছে।',
'Invalid credentials.' => 'ভুল পাসওয়ার্ড।',
'Invalid server or credentials.' => null,
'Server' => 'সার্ভার',
'Username' => 'ইউজারের নাম',
'Password' => 'পাসওয়ার্ড',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/bs.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Odjava',
'Logged as: %s' => 'Prijavi se kao: %s',
'Logout successful.' => 'Uspešna odjava.',
'Invalid credentials.' => 'Nevažeće dozvole.',
'Invalid server or credentials.' => null,
'Language' => 'Jezik',
'Invalid CSRF token. Send the form again.' => 'Nevažeći CSRF kod. Proslijedite ponovo formu.',
'No extension' => 'Bez dodataka',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ca.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Inicia la sessió',
'Logout successful.' => 'Desconnexió correcta.',
'Invalid credentials.' => 'Credencials invàlides.',
'Invalid server or credentials.' => null,
'Server' => 'Servidor',
'Username' => 'Nom d\'usuari',
'Password' => 'Contrasenya',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/cs.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'Logged as: %s' => 'Přihlášen jako: %s',
'Logout successful.' => 'Odhlášení proběhlo v pořádku.',
'Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.' => 'Díky za použití Admineru, <a href="https://www.adminer.org/cs/donation/">přispějte</a> na vývoj.',
'Invalid credentials.' => 'Neplatné přihlašovací údaje.',
'Invalid server or credentials.' => 'Neplatný server nebo přihlašovací údaje.',
'There is a space in the input password which might be the cause.' => 'Problém může být, že je v zadaném hesle mezera.',
'Adminer does not support accessing a database without a password, <a href="https://www.adminer.org/en/password/"%s>more information</a>.' => 'Adminer nepodporuje přístup k databázi bez hesla, <a href="https://www.adminer.org/cs/password/"%s>více informací</a>.',
'Database does not support password.' => 'Databáze nepodporuje heslo.',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/da.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'Logout' => 'Log ud',
'Logged as: %s' => 'Logget ind som: %s',
'Logout successful.' => 'Log af vellykket.',
'Invalid credentials.' => 'Ugyldige log ind oplysninger.',
'Invalid server or credentials.' => null,
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Master-kodeordet er udløbet. <a href="https://www.adminer.org/en/extension/"%s>Implementer</a> en metode for %s for at gøre det permanent.',
'Language' => 'Sprog',
'Invalid CSRF token. Send the form again.' => 'Ugyldigt CSRF-token - Genindsend formen.',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/de.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'Login' => 'Login',
'Logout successful.' => 'Abmeldung erfolgreich.',
'Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.' => 'Danke, dass Sie Adminer genutzt haben. <a href="https://www.adminer.org/de/donation/">Spenden willkommen!</a>',
'Invalid credentials.' => 'Ungültige Anmelde-Informationen.',
'Invalid server or credentials.' => 'Ungültige Server oder Anmelde-Informationen.',
'Server' => 'Server',
'Username' => 'Benutzer',
'Password' => 'Passwort',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/el.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Αποσύνδεση',
'Logged as: %s' => 'Συνδεθήκατε ως %s',
'Logout successful.' => 'Αποσυνδεθήκατε με επιτυχία.',
'Invalid credentials.' => 'Εσφαλμένα Διαπιστευτήρια.',
'Invalid server or credentials.' => null,
'Too many unsuccessful logins, try again in %d minute(s).' => array('Επανειλημμένες ανεπιτυχείς προσπάθειες σύνδεσης, δοκιμάστε ξανά σε %s λεπτό.', 'Επανειλημμένες ανεπιτυχείς προσπάθειες σύνδεσης, δοκιμάστε ξανά σε %s λεπτά.'),
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Έληξε ο Κύριος Κωδικός. <a href="https://www.adminer.org/en/extension/"%s>Ενεργοποιήστε</a> τη μέθοδο %s για να τον κάνετε μόνιμο.',
'Language' => 'Γλώσσα',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/es.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Login',
'Logout successful.' => 'Sesión finalizada con éxito.',
'Invalid credentials.' => 'Usuario y/o clave de acceso incorrecta.',
'Invalid server or credentials.' => null,
'Server' => 'Servidor',
'Username' => 'Usuario',
'Password' => 'Contraseña',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/et.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Logi sisse',
'Logout successful.' => 'Väljalogimine õnnestus.',
'Invalid credentials.' => 'Ebakorrektsed andmed.',
'Invalid server or credentials.' => null,
'Server' => 'Server',
'Username' => 'Kasutajanimi',
'Password' => 'Parool',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/fa.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'خروج',
'Logged as: %s' => 'ورود به عنوان: %s',
'Logout successful.' => 'با موفقیت خارج شدید.',
'Invalid credentials.' => 'اعتبار سنجی نامعتبر.',
'Invalid server or credentials.' => null,
'Too many unsuccessful logins, try again in %d minute(s).' => array('ورودهای ناموفق بیش از حد، %d دقیقه دیگر تلاش نمایید.', 'ورودهای ناموفق بیش از حد، %d دقیقه دیگر تلاش نمایید.'),
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'رمز اصلی باطل شده است. روش %s را <a href="https://www.adminer.org/en/extension/"%s>پیاده سازی</a> کرده تا آن را دائمی سازید.',
'Language' => 'زبان',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/fi.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Kirjaudu ulos',
'Logged as: %s' => 'Olet kirjautunut käyttäjänä: %s',
'Logout successful.' => 'Uloskirjautuminen onnistui.',
'Invalid credentials.' => 'Virheelliset kirjautumistiedot.',
'Invalid server or credentials.' => null,
'Too many unsuccessful logins, try again in %d minute(s).' => array('Liian monta epäonnistunutta sisäänkirjautumisyritystä, kokeile uudestaan %d minuutin kuluttua.', 'Liian monta epäonnistunutta sisäänkirjautumisyritystä, kokeile uudestaan %d minuutin kuluttua.'),
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Master-salasana ei ole enää voimassa. <a href="https://www.adminer.org/en/extension/"%s>Toteuta</a> %s-metodi sen tekemiseksi pysyväksi.',
'Language' => 'Kieli',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/fr.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Authentification',
'Logout successful.' => 'Au revoir !',
'Invalid credentials.' => 'Authentification échouée.',
'Invalid server or credentials.' => null,
'Server' => 'Serveur',
'Username' => 'Utilisateur',
'Password' => 'Mot de passe',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/gl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Conectar',
'Logout successful.' => 'Pechouse a sesión con éxito.',
'Invalid credentials.' => 'Credenciais (usuario e/ou contrasinal) inválidos.',
'Invalid server or credentials.' => null,
'Server' => 'Servidor',
'Username' => 'Usuario',
'Password' => 'Contrasinal',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/he.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'התחברות',
'Logout successful.' => 'ההתחברות הצליחה',
'Invalid credentials.' => 'פרטי התחברות שגויים',
'Invalid server or credentials.' => null,
'Server' => 'שרת',
'Username' => 'שם משתמש',
'Password' => 'סיסמה',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/hu.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Belépés',
'Logout successful.' => 'Sikeres kilépés.',
'Invalid credentials.' => 'Érvénytelen adatok.',
'Invalid server or credentials.' => null,
'Server' => 'Szerver',
'Username' => 'Felhasználó',
'Password' => 'Jelszó',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/id.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Keluar',
'Logged as: %s' => 'Masuk sebagai: %s',
'Logout successful.' => 'Berhasil keluar.',
'Invalid credentials.' => 'Akses tidak sah.',
'Invalid server or credentials.' => null,
'Language' => 'Bahasa',
'Invalid CSRF token. Send the form again.' => 'Token CSRF tidak sah. Kirim ulang formulir.',
'No extension' => 'Ekstensi tidak ada',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/it.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Autenticazione',
'Logout successful.' => 'Uscita effettuata con successo.',
'Invalid credentials.' => 'Credenziali non valide.',
'Invalid server or credentials.' => 'Server o credenziali non valide.',
'Server' => 'Server',
'Username' => 'Utente',
'Password' => 'Password',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ja.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'ログイン',
'Logout successful.' => 'ログアウト',
'Invalid credentials.' => '不正なログイン',
'Invalid server or credentials.' => null,
'Server' => 'サーバ',
'Username' => 'ユーザ名',
'Password' => 'パスワード',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ka.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'შესვლა',
'Logout successful.' => 'გამოხვედით სისტემიდან.',
'Invalid credentials.' => 'არასწორი მომხმარებელი ან პაროლი.',
'Invalid server or credentials.' => null,
'Server' => 'სერვერი',
'Username' => 'მომხმარებელი',
'Password' => 'პაროლი',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ko.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
'Indexes have been altered.' => '색인을 변경했습니다.',
'Indexes' => '색인',
'Insert' => '삽입',
'Invalid credentials.' => '잘못된 로그인',
'Invalid server or credentials.' => null,
'Invalid CSRF token. Send the form again.' => '잘못된 CSRF 토큰입니다. 다시 보내주십시오.',
'Invalid database.' => '잘못된 데이터베이스입니다.',
'Invalid schema.' => '잘못된 스키마입니다.',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/lt.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Atsijungti',
'Logged as: %s' => 'Prisijungęs kaip: %s',
'Logout successful.' => 'Jūs atsijungėte nuo sistemos.',
'Invalid credentials.' => 'Neteisingi prisijungimo duomenys.',
'Invalid server or credentials.' => null,
'Language' => 'Kalba',
'Invalid CSRF token. Send the form again.' => 'Neteisingas CSRF tokenas. Bandykite siųsti formos duomenis dar kartą.',
'No extension' => 'Nėra plėtiio',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/lv.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Ieiet',
'Logout successful.' => 'Jūs veiksmīgi izgājāt no sistēmas.',
'Invalid credentials.' => 'Nepareizs lietotāja vārds vai parole.',
'Invalid server or credentials.' => null,
'Server' => 'Serveris',
'Username' => 'Lietotājs',
'Password' => 'Parole',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ms.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'Logged as: %s' => 'Log masuk sebagai: %s',
'Logout successful.' => 'Log keluar berjaya.',
'Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.' => 'Terima kasih kerana menggunakan Adminer, pertimbangkan untuk <a href="https://www.adminer.org/en/donation/">menderma</a>.',
'Invalid credentials.' => 'Akses tidak sah.',
'Invalid server or credentials.' => null,
'Too many unsuccessful logins, try again in %d minute(s).' => 'Terlalu banyak percubaan log masuk yang gagal, sila cuba lagi dalam masa %d minit.',
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Kata laluan utama telah luput. <a href="https://www.adminer.org/en/extension/"%s>Gunakan</a> cara %s untuk mengekalkannya.',
'Language' => 'Bahasa',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/nl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Aanmelden',
'Logout successful.' => 'Successvol afgemeld.',
'Invalid credentials.' => 'Ongeldige gebruikersgegevens.',
'Invalid server or credentials.' => null,
'Server' => 'Server',
'Username' => 'Gebruikersnaam',
'Password' => 'Wachtwoord',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/no.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'Logout' => 'Logg ut',
'Logged as: %s' => 'Logget inn som: %s',
'Logout successful.' => 'Utlogging vellykket.',
'Invalid credentials.' => 'Ugylding innloggingsinformasjon.',
'Invalid server or credentials.' => null,
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Master-passord er utløpt. <a href="https://www.adminer.org/en/extension/"%s>Implementer</a> en metode for %s for å gjøre det permanent.',
'Language' => 'Språk',
'Invalid CSRF token. Send the form again.' => 'Ugylding CSRF-token - Send inn skjemaet igjen.',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/pl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'Logged as: %s' => 'Zalogowany jako: %s',
'Logout successful.' => 'Wylogowano pomyślnie.',
'Thanks for using Adminer, consider <a href="https://www.adminer.org/en/donation/">donating</a>.' => 'Dziękujemy za używanie Adminera, rozważ proszę <a href="https://www.adminer.org/pl/donation/">dotację</a>.',
'Invalid credentials.' => 'Nieprawidłowe dane logowania.',
'Invalid server or credentials.' => 'Nieprawidłowy serwer lub dane logowania.',
'Too many unsuccessful logins, try again in %d minute(s).' => array('Za dużo nieudanych prób logowania, spróbuj ponownie za %d minutę.', 'Za dużo nieudanych prób logowania, spróbuj ponownie za %d minuty.', 'Za dużo nieudanych prób logowania, spróbuj ponownie za %d minut.'),
'Master password expired. <a href="https://www.adminer.org/en/extension/"%s>Implement</a> %s method to make it permanent.' => 'Ważność hasła głównego wygasła. <a href="https://www.adminer.org/pl/extension/"%s>Zaimplementuj</a> własną metodę %s, aby ustawić je na stałe.',
'Language' => 'Język',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/pt-br.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Entrar',
'Logout successful.' => 'Saída bem sucedida.',
'Invalid credentials.' => 'Identificação inválida.',
'Invalid server or credentials.' => null,
'Server' => 'Servidor',
'Username' => 'Usuário',
'Password' => 'Senha',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/pt.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Entrar',
'Logout successful.' => 'Sessão terminada com sucesso.',
'Invalid credentials.' => 'Identificação inválida.',
'Invalid server or credentials.' => null,
'Server' => 'Servidor',
'Username' => 'Nome de utilizador',
'Password' => 'Senha',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ro.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Intră',
'Logout successful.' => 'Ați ieșit cu succes.',
'Invalid credentials.' => 'Numele de utilizator sau parola este greșită.',
'Invalid server or credentials.' => null,
'Server' => 'Server',
'Username' => 'Nume de utilizator',
'Password' => 'Parola',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/ru.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Войти',
'Logout successful.' => 'Вы успешно покинули систему.',
'Invalid credentials.' => 'Неправильное имя пользователя или пароль.',
'Invalid server or credentials.' => null,
'Server' => 'Сервер',
'Username' => 'Имя пользователя',
'Password' => 'Пароль',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/sk.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$translations = array(
'Login' => 'Prihlásiť sa',
'Logout successful.' => 'Odhlásenie prebehlo v poriadku.',
'Invalid credentials.' => 'Neplatné prihlasovacie údaje.',
'Invalid server or credentials.' => 'Neplatný server alebo prihlasovacie údaje.',
'Server' => 'Server',
'Username' => 'Používateľ',
'Password' => 'Heslo',
Expand Down
2 changes: 1 addition & 1 deletion adminer/lang/sl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'Logout' => 'Odjavi se',
'Logged as: %s' => 'Prijavljen kot: %s',
'Logout successful.' => 'Prijava uspešna.',
'Invalid credentials.' => 'Neveljavne pravice.',
'Invalid server or credentials.' => 'Neveljaven strežnik ali pravice.',
'Language' => 'Jezik',
'Invalid CSRF token. Send the form again.' => 'Neveljaven token CSRF. Pošljite formular še enkrat.',
'No extension' => 'Brez dodatkov',
Expand Down
Loading