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 /view_operations.php
parent86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (diff)
strings to gettext, first batch
Diffstat (limited to 'view_operations.php')
-rw-r--r--view_operations.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/view_operations.php b/view_operations.php
index 5c3257d02c..b707ca5d12 100644
--- a/view_operations.php
+++ b/view_operations.php
@@ -59,7 +59,7 @@ if (isset($result)) {
// (for example, a table rename)
$_type = 'success';
if (empty($_message)) {
- $_message = $result ? $strSuccess : $strError;
+ $_message = $result ? __('Your SQL query has been executed successfully') : __('Error');
// $result should exist, regardless of $_message
$_type = $result ? 'success' : 'error';
}
@@ -86,11 +86,11 @@ $url_params['back'] = 'view_operations.php';
<?php echo PMA_generate_common_hidden_inputs($GLOBALS['db'], $GLOBALS['table']); ?>
<input type="hidden" name="reload" value="1" />
<fieldset>
- <legend><?php echo $strOperations; ?></legend>
+ <legend><?php echo __('Operations'); ?></legend>
<table>
<!-- Change view name -->
- <tr><td><?php echo $strRenameView; ?></td>
+ <tr><td><?php echo __('Rename view to'); ?></td>
<td><input type="text" size="20" name="new_name" onfocus="this.select()"
value="<?php echo htmlspecialchars($GLOBALS['table']); ?>" />
</td>
@@ -98,7 +98,7 @@ $url_params['back'] = 'view_operations.php';
</table>
</fieldset>
<fieldset class="tblFooters">
- <input type="submit" name="submitoptions" value="<?php echo $strGo; ?>" />
+ <input type="submit" name="submitoptions" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
</div>