Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuichiro <yuichiro@pop07.odn.ne.jp>2011-12-04 12:32:40 +0400
committerMichal Čihař <michal@cihar.com>2011-12-04 13:04:23 +0400
commit0e7c8b9450413cc312487752be25af98f33ea9c8 (patch)
tree1bb63eb7afe0f74dce07bfa58a7ec545521cbb90 /tbl_chart.php
parentf3e42a91ca577d08ca3162bdbb953ffd838016e7 (diff)
Use pgettext for chart type
Diffstat (limited to 'tbl_chart.php')
-rw-r--r--tbl_chart.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tbl_chart.php b/tbl_chart.php
index ac52bd1fad..223c9e11d8 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>