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

Use plural for index columns

This commit is contained in:
Jakub Vrana
2025-04-06 06:55:54 +02:00
parent fb32c10f94
commit b36bd12291
3 changed files with 3 additions and 1 deletions

View File

@@ -106,7 +106,7 @@ $show_options = ($_POST ? $_POST["options"] : get_setting("index_options"));
<thead><tr> <thead><tr>
<th id="label-type"><?php echo lang('Index Type'); ?> <th id="label-type"><?php echo lang('Index Type'); ?>
<th><input type="submit" class="wayoff"><?php <th><input type="submit" class="wayoff"><?php
echo lang('Column') . ($lengths ? "<span class='idxopts" . ($show_options ? "" : " hidden") . "'> (" . lang('length') . ")</span>" : ""); echo lang('Columns') . ($lengths ? "<span class='idxopts" . ($show_options ? "" : " hidden") . "'> (" . lang('length') . ")</span>" : "");
if ($lengths || support("descidx")) { if ($lengths || support("descidx")) {
echo checkbox("options", 1, $show_options, lang('Options'), "indexOptionsShow(this.checked)", "jsonly") . "\n"; echo checkbox("options", 1, $show_options, lang('Options'), "indexOptionsShow(this.checked)", "jsonly") . "\n";
} }

View File

@@ -45,6 +45,7 @@ Lang::$translations = array(
'User has been created.' => 'Uživatel byl vytvořen.', 'User has been created.' => 'Uživatel byl vytvořen.',
'Hashed' => 'Zahašované', 'Hashed' => 'Zahašované',
'Column' => 'Sloupec', 'Column' => 'Sloupec',
'Columns' => 'Sloupce',
'Routine' => 'Procedura', 'Routine' => 'Procedura',
'Grant' => 'Povolit', 'Grant' => 'Povolit',
'Revoke' => 'Zakázat', 'Revoke' => 'Zakázat',

View File

@@ -46,6 +46,7 @@ Lang::$translations = array(
'User has been created.' => 'Xx.', 'User has been created.' => 'Xx.',
'Hashed' => 'Xx', 'Hashed' => 'Xx',
'Column' => 'Xx', 'Column' => 'Xx',
'Columns' => 'Xx',
'Routine' => 'Xx', 'Routine' => 'Xx',
'Grant' => 'Xx', 'Grant' => 'Xx',
'Revoke' => 'Xx', 'Revoke' => 'Xx',