1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 23:27:17 +02:00

Plugins: Translate descriptions (fix #994)

This commit is contained in:
Jakub Vrana
2025-04-07 17:00:59 +02:00
parent 3e455a4787
commit 3dd040abd1
48 changed files with 282 additions and 2 deletions

View File

@@ -50,4 +50,11 @@ class AdminerTranslation extends Adminer\Plugin {
$val = $this->translate($val);
}
}
protected static $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)'),
'ro' => array('' => 'Traduceți toate comentariile tabelelor și câmpurilor, valorile enum și set din tabelul "translation" (inserează automat noi traduceri)'),
);
}