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ř <michal@cihar.com>2004-09-29 19:13:44 +0400
committerMichal Čihař <michal@cihar.com>2004-09-29 19:13:44 +0400
commit5b5e82a867e0f6ec8f8cdd4ff93d8dfe5e7e6797 (patch)
treea4756328459190eeece1721ca9aae7a87321bc7f /themes.php
parent55d76b3f439992c2246db1fad25858d9c79f738b (diff)
Not translated text (bug #1016610).
Diffstat (limited to 'themes.php')
-rw-r--r--themes.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes.php b/themes.php
index c7ef143ea5..082d03db4d 100644
--- a/themes.php
+++ b/themes.php
@@ -67,7 +67,7 @@ echo "<?xml version=\"1.0\" encoding=\"" . $GLOBALS['charset'] . "\"?".">";
window.opener.document.forms['setTheme'].submit();
self.close();
} else {
- alert('No theme support, please check your configs\nand/or your themes in <?php echo './' . $cfg['ThemePath']; ?>');
+ alert('<?php echo sprintf($strNoThemeSupport, $cfg['ThemePath']); ?>');
self.close();
}
}
@@ -78,7 +78,7 @@ echo "<?xml version=\"1.0\" encoding=\"" . $GLOBALS['charset'] . "\"?".">";
<body bgcolor="<?php echo $cfg['RightBgColor']; ?>">
<table border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
- <th class="tblHeaders"><b>phpMyAdmin - <?php echo ($strTheme ? $strTheme : 'Theme / Style'); ?></b></th>
+ <th class="tblHeaders"><b>phpMyAdmin - <?php echo $strTheme; ?></b></th>
</tr>
<tr>
<td><img src="<?php echo $GLOBALS['pmaThemeImage'] . 'spacer.png'; ?>" width="1" height="1" border="0" alt="" /></td>
@@ -122,8 +122,8 @@ if ($handleThemes = opendir($path_to_themes)) { // open themes
if (document.getElementById) {
document.write('style="border: 1px solid #000000;" ');
}
- document.write('alt="<?php echo htmlspecialchars(addslashes($theme_name)); ?> - Theme" ');
- document.write('title="<?php echo htmlspecialchars(addslashes($theme_name)); ?> - Theme" />');
+ document.write('alt="<?php echo htmlspecialchars(addslashes($theme_name)); ?>" ');
+ document.write('title="<?php echo htmlspecialchars(addslashes($theme_name)); ?>" />');
document.write('</a><br />');
document.write('[ <b><a href="#top" onclick="takeThis(\'<?php echo $PMA_Theme; ?>\'); return false;">');
document.write('<?php echo addslashes($strTakeIt); ?>');