mirror of
https://github.com/vrana/adminer.git
synced 2025-08-06 06:37:33 +02:00
Plugins: non-static $translations (fix #1000)
The main reason is that static properties are minified.
This commit is contained in:
@@ -3,7 +3,7 @@ namespace Adminer;
|
||||
|
||||
// the overridable methods don't use return type declarations so that plugins can be compatible with PHP 5
|
||||
abstract class Plugin {
|
||||
/** @var array<literal-string, string|list<string>>[] */ protected static $translations = array(); // key is language code
|
||||
/** @var array<literal-string, string|list<string>>[] */ protected $translations = array(); // key is language code
|
||||
|
||||
/** Get plain text plugin description; empty string means to use the first line of class doc-comment
|
||||
* @return string
|
||||
@@ -25,7 +25,7 @@ abstract class Plugin {
|
||||
*/
|
||||
protected function lang(string $idf, $number = null): string {
|
||||
$args = func_get_args();
|
||||
$args[0] = idx(static::$translations[LANG], $idf) ?: $idf;
|
||||
$args[0] = idx($this->translations[LANG], $idf) ?: $idf;
|
||||
return call_user_func_array('Adminer\lang_format', $args);
|
||||
}
|
||||
}
|
||||
|
2
externals/PhpShrink
vendored
2
externals/PhpShrink
vendored
Submodule externals/PhpShrink updated: 7a4c6ac9ac...bc2ad3a1d2
@@ -17,7 +17,7 @@ class AdminerDotJs extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Nahraje adminer.js'),
|
||||
'de' => array('' => 'Laden Sie adminer.js'),
|
||||
'pl' => array('' => 'Wczytuj adminer.js'),
|
||||
|
@@ -56,7 +56,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row
|
||||
return "https://www.adminer.org/static/plugins/backward-keys.png";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zobrazí odkazy na tabulky odkazující aktuální řádek, stejně jako Adminer Editor'),
|
||||
);
|
||||
}
|
||||
|
@@ -31,7 +31,7 @@ onbeforeunload = () => editChanged;
|
||||
<?php
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zobrazí potvrzení před odnahráním stránky, pokud bylo změněno formulářové políčko'),
|
||||
);
|
||||
}
|
||||
|
@@ -102,7 +102,7 @@ addEventListener('DOMContentLoaded', () => {
|
||||
return "https://www.adminer.org/static/plugins/codemirror.gif";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Použít CodeMirror 5 pro zvýrazňování syntaxe a <textarea> včetně našeptávání klíčových slov a tabulek'),
|
||||
);
|
||||
}
|
||||
|
@@ -60,7 +60,7 @@ class AdminerConfig extends Adminer\Plugin {
|
||||
return "https://www.adminer.org/static/plugins/config.png";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array(
|
||||
'' => 'Konfigurace možností uživateli a jejich uložení do cookie',
|
||||
'Configuration' => 'Konfigurace',
|
||||
|
@@ -43,7 +43,7 @@ if (saved) {
|
||||
return "https://www.adminer.org/static/plugins/dark-switcher.gif";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Dovoluje přepínání světlého a tmavého vzhledu'),
|
||||
);
|
||||
}
|
||||
|
@@ -26,7 +26,7 @@ class AdminerDatabaseHide extends Adminer\Plugin {
|
||||
return $return;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Skryje některé databáze z rozhraní – pouze vylepší vzhled, nikoliv bezpečnost'),
|
||||
'de' => array('' => 'Verstecken Sie einige Datenbanken vor der Benutzeroberfläche – nur um das Design zu verbessern, verbessert nicht die Sicherheit.'),
|
||||
'pl' => array('' => 'Ukryj niektóre bazy danych w interfejsie – tylko po to, aby ulepszyć motyw, a nie wtyczkę zabezpieczającą'),
|
||||
|
@@ -43,7 +43,7 @@ class AdminerDesigns extends Adminer\Plugin {
|
||||
return "https://www.adminer.org/static/plugins/designs.png";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Umožní změnit vzhled'),
|
||||
'de' => array('' => 'Designwechsel ermöglichen'),
|
||||
'pl' => array('' => 'Zezwalaj na przełączanie motywów'),
|
||||
|
@@ -168,7 +168,7 @@ DROP PROCEDURE adminer_alter;
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Exportuje jednu databázi (např. vývojovou) tak, že může být synchronizována s jinou databází (např. produkční)'),
|
||||
'de' => array('' => 'Exportiert eine Datenbank (z. B. Entwicklung), damit sie mit einer anderen Datenbank (z. B. Produktion) synchronisiert werden kann.'),
|
||||
'pl' => array('' => 'Eksportuje jedną bazę danych (np. programistyczną), aby można ją było zsynchronizować z inną bazą danych (np. produkcyjną)'),
|
||||
|
@@ -37,7 +37,7 @@ class AdminerDumpBz2 extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Export do formátu Bzip2'),
|
||||
'de' => array('' => 'Export im Bzip2-Format'),
|
||||
'pl' => array('' => 'Zrzuć do formatu Bzip2'),
|
||||
|
@@ -12,7 +12,7 @@ class AdminerDumpDate extends Adminer\Plugin {
|
||||
return Adminer\friendly_url(($identifier != "" ? $identifier : (Adminer\SERVER != "" ? Adminer\SERVER : "localhost")) . "-" . Adminer\get_val("SELECT NOW()"));
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Do názvu souboru s exportem přidá aktuální datum a čas'),
|
||||
'de' => array('' => 'Aktuelle Datum und die aktuelle Uhrzeit in den Namen der Exportdatei einfügen'),
|
||||
'pl' => array('' => 'Dołącz bieżącą datę i godzinę do nazwy pliku eksportu'),
|
||||
|
@@ -58,7 +58,7 @@ class AdminerDumpJson extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Export do formátu JSON'),
|
||||
'de' => array('' => 'Export im JSON-Format'),
|
||||
'pl' => array('' => 'Zrzuć do formatu JSON'),
|
||||
|
@@ -46,7 +46,7 @@ class AdminerDumpPhp extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Export do formátu PHP'),
|
||||
'de' => array('' => 'Export im PHP-Format'),
|
||||
'pl' => array('' => 'Zrzucaj do formatu PHP'),
|
||||
|
@@ -52,7 +52,7 @@ class AdminerDumpXml extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Export do formátu XML ve struktuře <database name=""><table name=""><column name="">value'),
|
||||
'de' => array('' => 'Export im XML-Format in der Struktur <database name="><table name=""><column name="">value'),
|
||||
'pl' => array('' => 'Zrzut do formatu XML w strukturze <database name=""><table name=""><column name="">value'),
|
||||
|
@@ -41,7 +41,7 @@ class AdminerDumpZip extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Export do formátu ZIP'),
|
||||
'de' => array('' => 'Export Im ZIP-Format'),
|
||||
'pl' => array('' => 'Zrzuć do formatu ZIP'),
|
||||
|
@@ -51,7 +51,7 @@ class AdminerEditCalendar extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zobrazí jQuery UI Timepicker pro každé datumové a časové políčko'),
|
||||
'de' => array('' => 'Zeigen Sie die jQuery-UI Timepicker für jedes Datums- und Datum/Uhrzeit-Feld an'),
|
||||
'pl' => array('' => 'Wyświetl interfejs jQuery Timepicker dla każdego pola daty i godziny'),
|
||||
|
@@ -40,7 +40,7 @@ class AdminerEditForeign extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Výběr cizího klíče v editačním formuláři'),
|
||||
'de' => array('' => 'Wählen Sie im Bearbeitungsformular den Fremdschlüssel aus'),
|
||||
'pl' => array('' => 'Wybierz klucz obcy w formularzu edycji'),
|
||||
|
@@ -14,7 +14,7 @@ class AdminerEditTextarea extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Použije <textarea> pro char a varchar'),
|
||||
'de' => array('' => 'Verwenden Sie <textarea> für char und varchar Felder'),
|
||||
'pl' => array('' => 'Użyj <textarea> dla char i varchar'),
|
||||
|
@@ -38,7 +38,7 @@ class AdminerEditorSetup extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Nastavit ovladač, server a databázi pro použití s Adminer Editorem'),
|
||||
);
|
||||
}
|
||||
|
@@ -12,7 +12,7 @@ class AdminerEditorViews extends Adminer\Plugin {
|
||||
return Adminer\h($tableStatus["Comment"] != "" ? $tableStatus["Comment"] : $tableStatus["Name"]);
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zobrazení pohledů v Adminer Editoru'),
|
||||
'de' => array('' => 'Views im Adminer Editor anzeigen'),
|
||||
'pl' => array('' => 'Wyświetlaj widoki w Adminer Editorze'),
|
||||
|
@@ -55,7 +55,7 @@ class AdminerEmailTable extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Získá předmět a zprávu e-mailu z databáze (Adminer Editor)'),
|
||||
'de' => array('' => 'E-Mail-Betreff und Nachricht aus der Datenbank abrufen (Adminer Editor)'),
|
||||
'pl' => array('' => 'Pobieraj temat i wiadomość e-mail z bazy danych (Adminer Editor)'),
|
||||
|
@@ -33,7 +33,7 @@ class AdminerEnumOption extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Editace políčka enum pomocí <select><option> místo <input type="radio">'),
|
||||
'de' => array('' => 'Verwenden Sie <select><option> für die enum-Bearbeitung anstelle von <input type="radio">'),
|
||||
'pl' => array('' => 'Użyj <select><option> do edycji enum zamiast <input type="radio">'),
|
||||
|
@@ -49,7 +49,7 @@ class AdminerFileUpload extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Políčka končící na "_path" upravuje pomocí <input type="file"> a odkazuje na nahrané soubory z výpisu'),
|
||||
'de' => array('' => 'Bearbeiten Sie Felder, die mit "_path" enden, um <input type="file"> und verknüpfen Sie sie mit den hochgeladenen Dateien beim Select'),
|
||||
'pl' => array('' => 'Edytuj pola kończące się na "_path" za pomocą <input type="file"> i link do przesłanych plików z wybierz'),
|
||||
|
@@ -106,7 +106,7 @@ class AdminerForeignSystem extends Adminer\Plugin {
|
||||
return array("table" => "COLLATIONS", "source" => array($source), "target" => array("COLLATION_NAME"));
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Propojuje systémové tabulky (v databázích "mysql" a "information_schema") pomocí cizích klíčů'),
|
||||
'de' => array('' => 'Verknüpfen Sie Systemtabellen (in "mysql"- und "information_schema"-Datenbanken) durch Fremdschlüssel'),
|
||||
'pl' => array('' => 'Połącz tabele systemowe (w bazach danych "mysql" i "information_schema") za pomocą kluczy obcych'),
|
||||
|
@@ -24,7 +24,7 @@ class AdminerFrames extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Dovolí pracovat Admineru uvnitř rámu'),
|
||||
'de' => array('' => 'Erlauben Sie die Verwendung von Adminer innerhalb eines Frames'),
|
||||
'pl' => array('' => 'Zezwalaj na używanie Adminera wewnątrz ramki'),
|
||||
|
@@ -46,7 +46,7 @@ class AdminerJsonColumn extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Hodnoty JSON v editaci zobrazí formou tabulky'),
|
||||
'de' => array('' => 'Zeigen Sie JSON-Werte als Tabelle in der Bearbeitung an'),
|
||||
'pl' => array('' => 'Wyświetl wartości JSON jako tabelę w edycji'),
|
||||
|
@@ -36,7 +36,7 @@ class AdminerLoginIp extends Adminer\Plugin {
|
||||
return false;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zkontroluje IP adresu a povolí prázdné heslo'),
|
||||
'de' => array('' => 'Überprüft die IP-Adresse und lässt ein leeres Passwort zu'),
|
||||
'pl' => array('' => 'Sprawdzaj adres IP i zezwakaj na puste hasło'),
|
||||
|
@@ -55,7 +55,7 @@ class AdminerLoginOtp extends Adminer\Plugin {
|
||||
return "https://www.adminer.org/static/login-otp.png";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Při přihlášení požaduje jednorázové heslo'),
|
||||
'de' => array('' => 'Bei der Anmeldung ist ein Einmalpasswort (Zwei-Faktor-Authentifizierung) erforderlich'),
|
||||
'pl' => array('' => 'Wymagaj jednorazowego hasła przy logowaniu'),
|
||||
|
@@ -27,7 +27,7 @@ class AdminerLoginPasswordLess extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Povolí přihlášení bez hesla'),
|
||||
'de' => array('' => 'Ermöglicht die Anmeldung ohne Passwort'),
|
||||
'pl' => array('' => 'Włącz logowanie bez hasła'),
|
||||
|
@@ -38,7 +38,7 @@ class AdminerLoginServers extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'V přihlašovacím formuláři zobrazuje předdefinovaný seznam serverů'),
|
||||
'de' => array('' => 'Anzeige einer konstanten Serverliste im Anmeldeformular'),
|
||||
'pl' => array('' => 'Wyświetlaj stałą listę serwerów w formularzu logowania'),
|
||||
|
@@ -22,7 +22,7 @@ class AdminerLoginSsl extends Adminer\Plugin {
|
||||
return $this->ssl;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Připojení k MySQL, PostgreSQL a MS SQL pomocí SSL'),
|
||||
'de' => array('' => 'Stellen Sie eine Verbindung zu MySQL, PostgreSQL, MS SQL über SSL her'),
|
||||
'pl' => array('' => 'Połącz się z MySQL, PostgreSQL, MS SQL za pomocą protokołu SSL'),
|
||||
|
@@ -27,7 +27,7 @@ class AdminerLoginTable extends Adminer\Plugin {
|
||||
return (bool) Adminer\get_val("SELECT COUNT(*) FROM " . Adminer\idf_escape($this->database) . ".login WHERE login = " . Adminer\q($login) . " AND password_sha1 = " . Adminer\q(sha1($password)));
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Autentizace uživatele podle tabulky "login'),
|
||||
'de' => array('' => 'Authentifizieren Sie einen Benutzer über die Tabelle "login'),
|
||||
'pl' => array('' => 'Uwierzytelnij użytkownika z tabeli "login'),
|
||||
|
@@ -38,7 +38,7 @@ class AdminerMasterSlave extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zápisy provádět na masteru a čtení na slave'),
|
||||
'de' => array('' => 'Schreibvorgänge auf dem Master und Lesevorgänge auf dem Slave ausführen'),
|
||||
'pl' => array('' => 'Wykonuje zapisy na komputerze głównym i odczyty na komputerze podrzędnym'),
|
||||
|
@@ -71,7 +71,7 @@ class AdminerMenuLinks extends Adminer\Plugin {
|
||||
return "https://www.adminer.org/static/plugins/menu-links.png";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array(
|
||||
'' => 'Konfigurace odkazů na tabulky v menu; kombinovatelné s AdminerConfig',
|
||||
'Menu table links' => 'Odkazy na tabulky v menu',
|
||||
|
@@ -72,7 +72,7 @@ addEventListener('DOMContentLoaded', () => {
|
||||
return true;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Použije Monaco Editor z VS Code pro zvýrazňování syntaxe a <textarea>'),
|
||||
);
|
||||
}
|
||||
|
@@ -31,7 +31,7 @@ class AdminerPrettyJsonColumn extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'V editaci zobrazí syntaxi u JSONu'),
|
||||
'de' => array('' => 'JSON-Werte in der Bearbeitung hübsch drucken'),
|
||||
'pl' => array('' => 'Ładnie drukuj wartości JSON w edycji'),
|
||||
|
@@ -60,7 +60,7 @@ if (el) {
|
||||
return true;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Použije Prism Code Editor pro zvýrazňování syntaxe a <textarea>'),
|
||||
);
|
||||
}
|
||||
|
@@ -100,7 +100,7 @@ class AdminerSelectEmail extends Adminer\Plugin {
|
||||
return mail($email, $this->emailHeader($subject), $beginning . $message . $attachments, $headers);
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'ar' => array('E-mail' => 'البريد الإلكتروني', 'From' => 'من', 'Subject' => 'الموضوع', 'Send' => 'إرسال', '%d e-mail(s) have been sent.' => 'تم إرسال %d رسالة.', 'Attachments' => 'ملفات مرفقة'),
|
||||
'bg' => array('E-mail' => 'E-mail', 'From' => 'От', 'Subject' => 'Тема', 'Attachments' => 'Прикачени', 'Send' => 'Изпращане', '%d e-mail(s) have been sent.' => array('%d писмо беше изпратено.', '%d писма бяха изпратени.')),
|
||||
'bn' => array('E-mail' => 'ই-মেইল', 'From' => 'থেকে', 'Subject' => 'বিষয়', 'Send' => 'পাঠান', '%d e-mail(s) have been sent.' => array('%d ইমেইল(গুলি) পাঠানো হয়েছে।', '%d ইমেইল(গুলি) পাঠানো হয়েছে।'), 'Attachments' => 'সংযুক্তিগুলো'),
|
||||
|
@@ -47,7 +47,7 @@ class AdminerSlugify extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Předvyplní políčko obsahující "_slug" URLizovanou hodnotou předchozího políčka (JavaScript)'),
|
||||
'de' => array('' => 'Feld, das "_slug" enthält, mit dem Slugified-Wert eines vorherigen Felds vorab füllen (JavaScript)'),
|
||||
'pl' => array('' => 'Wstępnie wypełnij pole zawierające "_slug" osłabioną wartością poprzedniego pola (JavaScript)'),
|
||||
|
@@ -96,7 +96,7 @@ geminiText.onkeydown = event => {
|
||||
}
|
||||
|
||||
// use the phrases from https://gemini.google.com/
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array(
|
||||
'' => 'Generování SQL příkazů pomocí umělé inteligence Google Gemini',
|
||||
'Ask Gemini' => 'Zeptat se Gemini',
|
||||
|
@@ -36,7 +36,7 @@ class AdminerSqlLog extends Adminer\Plugin {
|
||||
fclose($fp);
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zaznamenává všechny příkazy do souboru SQL'),
|
||||
'de' => array('' => 'Protokollieren Sie alle Abfragen in einer SQL-Datei'),
|
||||
'pl' => array('' => 'Rejestruj wszystkie zapytania do pliku SQL'),
|
||||
|
@@ -30,7 +30,7 @@ class AdminerTableIndexesStructure extends Adminer\Plugin {
|
||||
return true;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Rozšířené informace o indexech'),
|
||||
'de' => array('' => 'Erweiterte Ausgabe der Tabellenindize'),
|
||||
'pl' => array('' => 'Rozszerzona tabela wyników struktury indeksów'),
|
||||
|
@@ -38,7 +38,7 @@ class AdminerTableStructure extends Adminer\Plugin {
|
||||
return true;
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Rozšířené informace o tabulkách'),
|
||||
'de' => array('' => 'Erweiterte Ausgabe der Tabellenstruktur'),
|
||||
'pl' => array('' => 'Rozszerzone wyjście struktury tabeli'),
|
||||
|
@@ -68,7 +68,7 @@ sessionStorage && document.addEventListener('DOMContentLoaded', () => {
|
||||
<?php
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Filtruje názvy v seznamu tabulek'),
|
||||
'de' => array('' => 'Filtern Sie Namen in der Tabellenliste'),
|
||||
'pl' => array('' => 'Filtruj nazwy na liście tabel'),
|
||||
|
@@ -67,7 +67,7 @@ qs('#form').onsubmit = () => {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Upravuje všechna políčka obsahující "_html" pomocí HTML editoru TinyMCE a zobrazuje výsledné HTML ve výpisu'),
|
||||
'de' => array('' => 'Bearbeiten Sie alle Felder, die "_html" enthalten, mit dem HTML-Editor TinyMCE und zeigen Sie den HTML-Code in Select an'),
|
||||
'pl' => array('' => 'Edytuj wszystkie pola zawierające "_html" za pomocą edytora HTML TinyMCE i wyświetl kod HTML w wybranych'),
|
||||
|
@@ -51,7 +51,7 @@ class AdminerTranslation extends Adminer\Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Přeloží všechny komentáře tabulek a sloupců, hodnoty políček enum a set pomocí tabulky "translation" (automaticky vkládá nové překlady)'),
|
||||
'de' => array('' => 'Übersetzen Sie alle Tabellen- und Feldkommentare, enum- und set-Werte aus der "translation"-Tabelle (fügt automatisch neue Übersetzungen ein)'),
|
||||
'pl' => array('' => 'Przetłumacz wszystkie komentarze do tabeli i pól, wartości enum i set z tabeli "translation" (automatycznie wstawia nowe tłumaczenia)'),
|
||||
|
@@ -30,7 +30,7 @@ verifyVersion = (current, url, token) => {
|
||||
$csp[0]["connect-src"] .= " https://api.github.com/repos/vrana/adminer/releases/latest";
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Kontrola nových verzí z GitHubu'),
|
||||
);
|
||||
}
|
||||
|
@@ -12,7 +12,7 @@ class AdminerVersionNoverify extends Adminer\Plugin {
|
||||
echo Adminer\script("verifyVersion = () => { };");
|
||||
}
|
||||
|
||||
protected static $translations = array(
|
||||
protected $translations = array(
|
||||
'cs' => array('' => 'Zakáže kontrolu nových verzí'),
|
||||
'de' => array('' => 'Deaktivieren Sie die Versionsprüfung'),
|
||||
'pl' => array('' => 'Wyłącz sprawdzanie wersji'),
|
||||
|
Reference in New Issue
Block a user