[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_8-23868-g0e7c8b9

Michal Čihař nijel at users.sourceforge.net
Sun Dec 4 10:04:40 CET 2011


The branch, master has been updated
       via  0e7c8b9450413cc312487752be25af98f33ea9c8 (commit)
      from  f3e42a91ca577d08ca3162bdbb953ffd838016e7 (commit)


- Log -----------------------------------------------------------------
commit 0e7c8b9450413cc312487752be25af98f33ea9c8
Author: Yuichiro <yuichiro at pop07.odn.ne.jp>
Date:   Sun Dec 4 17:32:40 2011 +0900

    Use pgettext for chart type

-----------------------------------------------------------------------

Summary of changes:
 tbl_chart.php |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tbl_chart.php b/tbl_chart.php
index ac52bd1..223c9e1 100644
--- a/tbl_chart.php
+++ b/tbl_chart.php
@@ -85,11 +85,11 @@ url_query = '<?php echo $url_query;?>';
 <fieldset>
     <legend><?php echo __('Display chart'); ?></legend>
     <div style="float:left;">
-        <input type="radio" name="chartType" value="bar"><?php echo __('Bar'); ?>
-        <input type="radio" name="chartType" value="column"><?php echo __('Column'); ?>
-        <input type="radio" name="chartType" value="line" checked><?php echo __('Line'); ?>
-        <input type="radio" name="chartType" value="spline"><?php echo __('Spline'); ?>
-        <input type="radio" name="chartType" value="pie"><?php echo __('Pie'); ?>
+        <input type="radio" name="chartType" value="bar"><?php echo _pgettext('Chart type', 'Bar'); ?>
+        <input type="radio" name="chartType" value="column"><?php echo _pgettext('Chart type', 'Column'); ?>
+        <input type="radio" name="chartType" value="line" checked><?php echo _pgettext('Chart type', 'Line'); ?>
+        <input type="radio" name="chartType" value="spline"><?php echo _pgettext('Chart type', 'Spline'); ?>
+        <input type="radio" name="chartType" value="pie"><?php echo _pgettext('Chart type', 'Pie'); ?>
         <span class="barStacked" style="display:none;">
         <input type="checkbox" name="barStacked" value="1"><?php echo __('Stacked'); ?>
         </span>


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list