1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-14 02:23:59 +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

@@ -48,4 +48,11 @@ class AdminerFileUpload extends Adminer\Plugin {
$link = "$this->displayPath$_GET[select]/$regs[1]-$val";
}
}
protected static $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'),
'ro' => array('' => 'Modificați câmpurile care se termină cu "_path" prin <input type="file"> și creați un link către fișierele încărcate din select'),
);
}