Used localized string for the Inline Edit anchor being generated

This commit is contained in:
ninadsp
2010-08-26 22:22:39 +05:30
parent f1e72d7664
commit 8ddfb7140d
2 changed files with 11 additions and 4 deletions

View File

@@ -82,6 +82,7 @@ $js_messages['strSearching'] = __('Searching');
/* For sql.js */ /* For sql.js */
$js_messages['strToggleQueryBox'] = __('Toggle Query Box Visibility'); $js_messages['strToggleQueryBox'] = __('Toggle Query Box Visibility');
$js_messages['strInlineEdit'] = __('Inline Edit');
/* For tbl_change.js */ /* For tbl_change.js */
$js_messages['strIgnore'] = __('Ignore'); $js_messages['strIgnore'] = __('Ignore');

View File

@@ -46,10 +46,13 @@ function appendInlineAnchor(disp_mode) {
if(disp_mode == 'vertical') { if(disp_mode == 'vertical') {
var cloned_row = $('.edit_row_anchor').removeClass('edit_row_anchor').parent('tr').clone(); var cloned_row = $('.edit_row_anchor').removeClass('edit_row_anchor').parent('tr').clone();
var img_object = $(cloned_row).find('img:first').attr('title', PMA_messages['strInlineEdit']);
$(cloned_row).find('td').addClass('edit_row_anchor') $(cloned_row).find('td').addClass('edit_row_anchor')
.find('a').attr('href', '#') .find('a').attr('href', '#')
.find('img').attr('title', 'Inline Edit') .find('div')
.after("Inline"); .text(PMA_messages['strInlineEdit'])
.prepend(img_object);
$(cloned_row).insertBefore($('.where_clause').parent('tr')); $(cloned_row).insertBefore($('.where_clause').parent('tr'));
@@ -63,10 +66,13 @@ function appendInlineAnchor(disp_mode) {
var cloned_anchor = $(this).clone(); var cloned_anchor = $(this).clone();
var img_object = $(cloned_anchor).find('img').attr('title', PMA_messages['strInlineEdit']);
$(cloned_anchor).addClass('edit_row_anchor') $(cloned_anchor).addClass('edit_row_anchor')
.find('a').attr('href', '#') .find('a').attr('href', '#')
.find('img').attr('title', 'Inline Edit') .find('div')
.after("Inline"); .text(PMA_messages['strInlineEdit'])
.prepend(img_object);
$(this).siblings('.where_clause') $(this).siblings('.where_clause')
.before(cloned_anchor); .before(cloned_anchor);