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