summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-03-02 08:14:42 +0000
committerDries Buytaert <dries@buytaert.net>2001-03-02 08:14:42 +0000
commit73de7628ed58d564dc7e5f5ae307ef9f7c08c2a6 (patch)
tree4e526004639e85a589a2430eff3da7b32dda8e23
parent728249cbc4a7a907bada7a8569d8a3d2052ab308 (diff)
downloadbrdo-73de7628ed58d564dc7e5f5ae307ef9f7c08c2a6.tar.gz
brdo-73de7628ed58d564dc7e5f5ae307ef9f7c08c2a6.tar.bz2
- forgot to wrap the links in the footer and header in t()-functions
(Is your theme 100% translatable or not?)
-rw-r--r--themes/marvin/marvin.theme10
1 files changed, 8 insertions, 2 deletions
diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme
index 00ad7184a..fad4e87a7 100644
--- a/themes/marvin/marvin.theme
+++ b/themes/marvin/marvin.theme
@@ -27,7 +27,11 @@
<TD>&nbsp;</TD>
</TR>
<TR>
- <TD ALIGN="right" COLSPAN="2"><SMALL><A HREF="index.php">home</A> | <A HREF="module.php?mod=faq">faq</A> | <A HREF="module.php?mod=diary">diary</A> | <A HREF="search.php">search</A> | <A HREF="submit.php">submit news</A> | <A HREF="account.php">user account</A></SMALL></TD>
+ <TD ALIGN="right" COLSPAN="2">
+ <?
+ print "<SMALL><A HREF=\"index.php\">". t("home") ."</A> | <A HREF=\"module.php?mod=faq\">". t("faq") ."</A> | <A HREF=\"module.php?mod=diary\">". t("diary") ."</A> | <A HREF=\"search.php\">". t("search") ."</A> | <A HREF=\"submit.php\">". t("submit news") ."</A> | <A HREF=\"account.php\">". t("user account") ."</A></SMALL>\n";
+ ?>
+ </TD>
</TR>
<TR>
<TD VALIGN="top" WIDTH="85%">
@@ -162,7 +166,9 @@
</TR>
<TR>
<TD ALIGN="center" COLSPAN="3">
- <SMALL>[ <A HREF="index.php">home</A> | <A HREF="module.php?mod=faq">faq</A> | <A HREF="module.php?mod=diary">diary</A> | <A HREF="search.php">search</A> | <A HREF="submit.php">submit news</A> | <A HREF="account.php">user account</A> ]</SMALL>
+ <?
+ print "<SMALL>[ <A HREF=\"index.php\">". t("home") ."</A> | <A HREF=\"module.php?mod=faq\">". t("faq") ."</A> | <A HREF=\"module.php?mod=diary\">". t("diary") ."</A> | <A HREF=\"search.php\">". t("search") ."</A> | <A HREF=\"submit.php\">". t("submit news") ."</A> | <A HREF=\"account.php\">". t("user account") ."</A> ]</SMALL>\n";
+ ?>
</TD>
</TR>
</TABLE>