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