summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/clouds/footer.php4
-rw-r--r--themes/colors/footer.php2
-rw-r--r--themes/colors/header.php2
-rw-r--r--themes/fab/header.php2
-rw-r--r--themes/minimal/footer.php10
-rw-r--r--themes/webtrees/footer.php6
-rw-r--r--themes/xenea/footer.php10
7 files changed, 17 insertions, 19 deletions
diff --git a/themes/clouds/footer.php b/themes/clouds/footer.php
index 174f2ef5fc..2e61058f32 100644
--- a/themes/clouds/footer.php
+++ b/themes/clouds/footer.php
@@ -45,9 +45,9 @@ echo "\n\t<br />";
if ($SHOW_STATS || WT_DEBUG) {
echo execution_stats();
}
-echo "\n\t<br />";
+echo "<br />";
if (exists_pending_change()) {
- echo "<br />", i18n::translate('Changes have been made to this GEDCOM.'), " <a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('Accept / Reject Changes'), "</a>\n";
+ echo "<br /><a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('There are pending changes for you to moderate.'), "</a>";
}
echo "</div>";
echo "</div> <!-- close div id=\"footer\" -->\n";
diff --git a/themes/colors/footer.php b/themes/colors/footer.php
index f52d765c63..7fc3e92cdb 100644
--- a/themes/colors/footer.php
+++ b/themes/colors/footer.php
@@ -46,7 +46,7 @@ if ($SHOW_STATS || WT_DEBUG) {
}
if (exists_pending_change()) {
- echo "<br />", i18n::translate('Changes have been made to this GEDCOM.'), " <a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('Accept / Reject Changes'), "</a>\n";
+ echo "<br /><a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('There are pending changes for you to moderate.'), "</a>";
}
echo "</div>";
echo "</div> <!-- close div id=\"footer\" -->\n";
diff --git a/themes/colors/header.php b/themes/colors/header.php
index e0a7658eff..23fb07b6b2 100644
--- a/themes/colors/header.php
+++ b/themes/colors/header.php
@@ -125,7 +125,7 @@ if ($view!='simple') {
echo ' | <li><a href="admin.php" class="icon_color">', i18n::translate('Administration'), '</a></li>';
}
if (WT_USER_CAN_ACCEPT && exists_pending_change()) {
- echo ' | <li><a href="javascript:;" onclick="window.open(\'edit_changes.php\',\'_blank\',\'width=600,height=500,resizable=1,scrollbars=1\'); return false;" style="color:red;">', i18n::translate('Pending Changes'), '</a></li>';
+ echo ' | <li><a href="javascript:;" onclick="window.open(\'edit_changes.php\',\'_blank\',\'width=600,height=500,resizable=1,scrollbars=1\'); return false;" style="color:red;">', i18n::translate('Pending changes'), '</a></li>';
}
} else {
echo '<li>', login_link('class="icon_color"'), '</li>';
diff --git a/themes/fab/header.php b/themes/fab/header.php
index abd58bd15f..ae9ed888d0 100644
--- a/themes/fab/header.php
+++ b/themes/fab/header.php
@@ -105,7 +105,7 @@ if ($view!='simple') { // Use "simple" headers for popup windows
echo ' | <li><a href="admin.php" class="link">', i18n::translate('Administration'), '</a></li>';
}
if (WT_USER_CAN_ACCEPT && exists_pending_change()) {
- echo ' | <li><a href="javascript:;" onclick="window.open(\'edit_changes.php\',\'_blank\',\'width=600,height=500,resizable=1,scrollbars=1\'); return false;" style="color:red;">', i18n::translate('Pending Changes'), '</a></li>';
+ echo ' | <li><a href="javascript:;" onclick="window.open(\'edit_changes.php\',\'_blank\',\'width=600,height=500,resizable=1,scrollbars=1\'); return false;" style="color:red;">', i18n::translate('Pending changes'), '</a></li>';
}
} else {
echo '<li>', login_link(), '</li>';
diff --git a/themes/minimal/footer.php b/themes/minimal/footer.php
index e6e236e5f8..d582ecab61 100644
--- a/themes/minimal/footer.php
+++ b/themes/minimal/footer.php
@@ -34,17 +34,17 @@ if (!defined('WT_WEBTREES')) {
echo "</div><!-- closing div id=\"content\" -->";
echo "<div id=\"footer\" class=\"$TEXT_DIRECTION\">";
-echo "\n\t<br /><div align=\"center\" style=\"width:99%;\">";
+echo "<br /><div align=\"center\" style=\"width:99%;\">";
echo contact_links();
-echo "\n\t<br />";
+echo "<br />";
echo '<a href="', WT_WEBTREES_URL, '" target="_blank" alt="', WT_WEBTREES, WT_USER_IS_ADMIN? (" - " .WT_VERSION_TEXT): "" , '" title="', WT_WEBTREES , WT_USER_IS_ADMIN? (" - " .WT_VERSION_TEXT): "", '"><span style="font-size:150%; color:#888888;">', WT_WEBTREES, '</span></a>';
-echo "\n\t<br />";
+echo "<br />";
if ($SHOW_STATS || WT_DEBUG) {
echo execution_stats();
}
if (exists_pending_change()) {
- echo "<br />", i18n::translate('Changes have been made to this GEDCOM.'), " <a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('Accept / Reject Changes'), "</a>\n";
+ echo "<br /><a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('There are pending changes for you to moderate.'), "</a>";
}
echo "</div>";
-echo "</div> <!-- close div id=\"footer\" -->\n";
+echo "</div> <!-- close div id=\"footer\" -->";
?>
diff --git a/themes/webtrees/footer.php b/themes/webtrees/footer.php
index cdd0e724fe..bada6f0319 100644
--- a/themes/webtrees/footer.php
+++ b/themes/webtrees/footer.php
@@ -49,10 +49,8 @@ echo '<div id="footer" class="', $TEXT_DIRECTION, '">';
echo execution_stats();
}
if (exists_pending_change()) {
- echo '<br />';
- echo i18n::translate('Changes have been made to this GEDCOM.');
- echo ' <a href="javascript:;" onclick="window.open(\'edit_changes.php\', \'_blank\', \'width=600, height=500, resizable=1, scrollbars=1\'); return false;">';
- echo i18n::translate('Accept / Reject Changes');
+ echo '<br /><a href="javascript:;" onclick="window.open(\'edit_changes.php\', \'_blank\', \'width=600, height=500, resizable=1, scrollbars=1\'); return false;">';
+ echo i18n::translate('There are pending changes for you to moderate.');
echo '</a>';
}
echo '</div>',
diff --git a/themes/xenea/footer.php b/themes/xenea/footer.php
index bbc2743d81..1fddde9dac 100644
--- a/themes/xenea/footer.php
+++ b/themes/xenea/footer.php
@@ -32,19 +32,19 @@ if (!defined('WT_WEBTREES')) {
exit;
}
-echo "</div> <!-- closing div id=\"content\" -->\n";//FIXME uncomment as soon as ready
+echo "</div> <!-- closing div id=\"content\" -->";//FIXME uncomment as soon as ready
echo "<div id=\"footer\" class=\"$TEXT_DIRECTION\">";
-echo "\n\t<div align=\"center\" style=\"width:99%;\">";
+echo "<div align=\"center\" style=\"width:99%;\">";
echo "<br />";
echo contact_links();
echo '<br /><a href="', WT_WEBTREES_URL, '" target="_blank"><img src="', $WT_IMAGES['webtrees'], '" width="100" border="0" alt="', WT_WEBTREES, WT_USER_IS_ADMIN? (" - " .WT_VERSION_TEXT): "", '" title="', WT_WEBTREES, WT_USER_IS_ADMIN? (" - " .WT_VERSION_TEXT): "", '" /></a><br />';
-echo "\n\t<br />";
+echo "<br />";
if ($SHOW_STATS || WT_DEBUG) {
echo execution_stats();
}
if (exists_pending_change()) {
- echo "<br />", i18n::translate('Changes have been made to this GEDCOM.'), " <a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('Accept / Reject Changes'), "</a>\n";
+ echo "<br /><a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('There are pending changes for you to moderate.'), "</a>";
}
echo "</div>";
-echo "</div> <!-- close div id=\"footer\" -->\n";
+echo "</div> <!-- close div id=\"footer\" -->";
?>