1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-18 04:11:27 +02:00

AdminerTablesFilter: Add title

This commit is contained in:
Jakub Vrana
2025-06-18 08:08:06 +02:00
parent 1cc3fdf915
commit 9ba4b86916

View File

@@ -64,15 +64,26 @@ sessionStorage && document.addEventListener('DOMContentLoaded', () => {
sessionStorage.setItem('adminer_tables_filter_db', db);
});
</script>
<p class="jsonly"><input id="filter-field" autocomplete="off" type="search"><?php echo Adminer\script("qs('#filter-field').oninput = tablesFilterInput;"); ?>
<p class="jsonly"><?php echo $this->lang('Filter'); ?>: <input id="filter-field" autocomplete="off" type="search"><?php echo Adminer\script("qs('#filter-field').oninput = tablesFilterInput;"); ?>
<?php
}
protected $translations = array(
'cs' => array('' => 'Filtruje názvy v seznamu tabulek'),
'de' => array('' => 'Filtern Sie Namen in der Tabellenliste'),
'pl' => array('' => 'Filtruj nazwy na liście tabel'),
'ro' => array('' => 'Nume de filtre în lista de tabele'),
'ja' => array('' => 'テーブル一覧をテーブル名でフィルタリング'),
'cs' => array(
'' => 'Filtruje názvy v seznamu tabulek',
'Filter' => 'Filtr',
),
'de' => array(
'' => 'Filtern Sie Namen in der Tabellenliste',
),
'pl' => array(
'' => 'Filtruj nazwy na liście tabel',
),
'ro' => array(
'' => 'Nume de filtre în lista de tabele',
),
'ja' => array(
'' => 'テーブル一覧をテーブル名でフィルタリング',
),
);
}