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:
authorMarc Delisle <marc@infomarc.info>2010-05-03 20:57:46 +0400
committerMarc Delisle <marc@infomarc.info>2010-05-03 20:57:46 +0400
commitf55823f47fd099cbbc3717fdbf0cfec8135927ed (patch)
treeba1f8c432878264debe7559f7efe667bf0b3e46f /transformation_overview.php
parent86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (diff)
strings to gettext, first batch
Diffstat (limited to 'transformation_overview.php')
-rw-r--r--transformation_overview.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/transformation_overview.php b/transformation_overview.php
index 738896f8bb..fa7a0b0b28 100644
--- a/transformation_overview.php
+++ b/transformation_overview.php
@@ -22,7 +22,7 @@ require_once './libraries/transformations.lib.php';
$types = PMA_getAvailableMIMEtypes();
?>
-<h2><?php echo $strMIME_available_mime; ?></h2>
+<h2><?php echo __('Available MIME types'); ?></h2>
<?php
foreach ($types['mimetype'] as $key => $mimetype) {
@@ -35,17 +35,17 @@ foreach ($types['mimetype'] as $key => $mimetype) {
}
?>
<br />
-<i>(<?php echo $strMIME_without; ?>)</i>
+<i>(<?php echo __('MIME types printed in italics do not have a separate transformation function'); ?>)</i>
<br />
<br />
<br />
-<h2><?php echo $strMIME_available_transform; ?></h2>
+<h2><?php echo __('Available transformations'); ?></h2>
<table border="0" width="90%">
<thead>
<tr>
- <th><?php echo $strMIME_transformation; ?></th>
- <th><?php echo $strMIME_description; ?></th>
+ <th><?php echo __('Browser transformation'); ?></th>
+ <th><?php echo _pgettext('for MIME transformation', 'Description'); ?></th>
</tr>
</thead>
<tbody>
@@ -57,7 +57,7 @@ foreach ($types['transformation'] as $key => $transform) {
?>
<tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
<td><?php echo $transform; ?></td>
- <td><?php echo (isset($$desc) ? $$desc : '<i>' . sprintf($strMIME_nodescription, 'PMA_transformation_' . $func . '()') . '</i>'); ?></td>
+ <td><?php echo (isset($$desc) ? $$desc : '<i>' . sprintf(__('No description is available for this transformation.<br />Please ask the author what %s does.'), 'PMA_transformation_' . $func . '()') . '</i>'); ?></td>
</tr>
<?php
$odd_row = !$odd_row;