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:
authorMichal Čihař <mcihar@novell.com>2010-05-24 12:55:18 +0400
committerMichal Čihař <mcihar@novell.com>2010-05-24 12:55:18 +0400
commit72c82d8acff71035b7f7cd4a81ec31ad00f2e24a (patch)
tree4df40b669c9e56f5e696cdf7b82f1ad457f68e4c /import_status.php
parenta04e9abd3f3cf92dc167a7ea341e9a3cade8a727 (diff)
Convert to gettext and adjust coding style.
Diffstat (limited to 'import_status.php')
-rw-r--r--import_status.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/import_status.php b/import_status.php
index dccd41fddd..4125eadeab 100644
--- a/import_status.php
+++ b/import_status.php
@@ -18,14 +18,17 @@ if (isset($GLOBALS["message"]) && $GLOBALS["message"]) {
header('Content-type: text/html');
- usleep(300000); // wait 0.3 sec before we check for $_SESSION variable, which is set inside import.php
- while ($_SESSION['Import_message']['message'] == null) { // wait until message is available
+ // wait 0.3 sec before we check for $_SESSION variable, which is set inside import.php
+ usleep(300000);
+
+ // wait until message is available
+ while ($_SESSION['Import_message']['message'] == null) {
usleep(250000); // 0.25 sec
}
echo $_SESSION['Import_message']['message'];
echo '<fieldset class="tblFooters">' . "\n";
- echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url'] . '">' . $GLOBALS["strBack"] . '</a> ]' . "\n";
+ echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url'] . '">' . __('Back') . '</a> ]' . "\n";
echo '</fieldset>'."\n";
} else {