The second word should not start with uppercase
This commit is contained in:
@@ -555,8 +555,8 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|
|||||||
|
|
||||||
echo '<div class="formelement">';
|
echo '<div class="formelement">';
|
||||||
$choices = array(
|
$choices = array(
|
||||||
'P' => __('Partial Texts'),
|
'P' => __('Partial texts'),
|
||||||
'F' => __('Full Texts')
|
'F' => __('Full texts')
|
||||||
);
|
);
|
||||||
PMA_display_html_radio('display_text', $choices, $_SESSION['tmp_user_values']['display_text']);
|
PMA_display_html_radio('display_text', $choices, $_SESSION['tmp_user_values']['display_text']);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
@@ -565,11 +565,11 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|
|||||||
if ($_SESSION['tmp_user_values']['display_text']=='F') {
|
if ($_SESSION['tmp_user_values']['display_text']=='F') {
|
||||||
// currently in fulltext mode so show the opposite link
|
// currently in fulltext mode so show the opposite link
|
||||||
$tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_partialtext.png';
|
$tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_partialtext.png';
|
||||||
$tmp_txt = __('Partial Texts');
|
$tmp_txt = __('Partial texts');
|
||||||
$url_params['display_text'] = 'P';
|
$url_params['display_text'] = 'P';
|
||||||
} else {
|
} else {
|
||||||
$tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_fulltext.png';
|
$tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_fulltext.png';
|
||||||
$tmp_txt = __('Full Texts');
|
$tmp_txt = __('Full texts');
|
||||||
$url_params['display_text'] = 'F';
|
$url_params['display_text'] = 'F';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user