Patch #3302313 Show a translated label

This commit is contained in:
Yuichiro
2011-05-15 13:23:51 -04:00
committed by Marc Delisle
parent e5826013d7
commit 6923ccab3e
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
3.4.1.0 (not yet released) 3.4.1.0 (not yet released)
- bug #3301108 [interface] Synchronize and already configured host - bug #3301108 [interface] Synchronize and already configured host
- Bug #3302457 Inline edit and $cfg['PropertiesIconic'] - Bug #3302457 Inline edit and $cfg['PropertiesIconic']
- Patch #3302313 Show a translated label
3.4.0.0 (2011-05-11) 3.4.0.0 (2011-05-11)
+ rfe #2890226 [view] Enable VIEW rename + rfe #2890226 [view] Enable VIEW rename

View File

@@ -38,7 +38,7 @@ if (isset($plugin_list)) {
} else { } else {
$hint = new PMA_Message(__('If the data in each row of the file is not in the same order as in the database, list the corresponding column names here. Column names must be separated by commas and not enclosed in quotations.')); $hint = new PMA_Message(__('If the data in each row of the file is not in the same order as in the database, list the corresponding column names here. Column names must be separated by commas and not enclosed in quotations.'));
$plugin_list['csv']['options'][] = $plugin_list['csv']['options'][] =
array('type' => 'text', 'name' => 'columns', 'text' => __('Column names: ' . PMA_showHint($hint))); array('type' => 'text', 'name' => 'columns', 'text' => __('Column names: ') . PMA_showHint($hint));
} }
$plugin_list['csv']['options'][] = array('type' => 'end_group'); $plugin_list['csv']['options'][] = array('type' => 'end_group');