[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_7_1-22980-g7aa52c9

The branch, master has been updated via 7aa52c9fa965f9f5cca9c851915fc470e76c8e9d (commit) from b131ec75ba6db8f33bf0f6af1190f03525e5f8a0 (commit) - Log ----------------------------------------------------------------- commit 7aa52c9fa965f9f5cca9c851915fc470e76c8e9d Author: Marc Delisle <marc@infomarc.info> Date: Sun Nov 20 06:44:29 2011 -0500 Make these messages translatable ----------------------------------------------------------------------- Summary of changes: js/messages.php | 2 ++ js/tbl_zoom_plot.js | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/js/messages.php b/js/messages.php index 5a75ece..8a64f1c 100644 --- a/js/messages.php +++ b/js/messages.php @@ -289,6 +289,8 @@ $js_messages['strDisplayHelp'] = '<ul><li>' . '</li></ul>'; $js_messages['strInputNull'] = '<strong>' . __('Select two columns') . '</strong>'; $js_messages['strSameInputs'] = '<strong>' . __('Select two different columns') . '</strong>'; +$js_messages['strQueryResults'] = __('Query results'); +$js_messages['strDataPointContent'] = __('Data point content'); /* For tbl_change.js */ $js_messages['strIgnore'] = __('Ignore'); diff --git a/js/tbl_zoom_plot.js b/js/tbl_zoom_plot.js index 4fad9c8..dac2650 100644 --- a/js/tbl_zoom_plot.js +++ b/js/tbl_zoom_plot.js @@ -456,7 +456,7 @@ $(document).ready(function() { }; $("#dataDisplay").dialog({ autoOpen: false, - title: 'Data point content', + title: PMA_messages['strDataPointContent'], modal: true, buttons: buttonOptions, width: $('#dataDisplay').width() + 24, @@ -572,7 +572,7 @@ $(document).ready(function() { return this.point.name; } }, - title: { text: 'Query Results' }, + title: { text: PMA_messages['strQueryResults'] }, xAxis: { title: { text: $('#tableid_0').val() }, events: { hooks/post-receive -- phpMyAdmin
participants (1)
-
Marc Delisle