mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 07:06:45 +02:00
Plugins: non-static $translations (fix #1000)
The main reason is that static properties are minified.
This commit is contained in:
@@ -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)'),
|
||||
|
Reference in New Issue
Block a user