summaryrefslogtreecommitdiff
path: root/modules/archive/archive.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-09 01:22:40 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-09 01:22:40 +0000
commit5bed42e8ef00736d5658cdf83e67ed68205089da (patch)
tree22e1737c2e28796a830b8dcb391a211897a11c10 /modules/archive/archive.module
parent1f273dac01429237ada147633138266a490ec378 (diff)
downloadbrdo-5bed42e8ef00736d5658cdf83e67ed68205089da.tar.gz
brdo-5bed42e8ef00736d5658cdf83e67ed68205089da.tar.bz2
- Translation fix: the date in the calendar block could not be translated. Patch by Goba.
- Translation fix: made the word 'permission' translatable in the system module' help text. Patch by Goba. - Translation fix: the ping module's help text was translated twice. Patch by Goba.
Diffstat (limited to 'modules/archive/archive.module')
-rw-r--r--modules/archive/archive.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/archive/archive.module b/modules/archive/archive.module
index 49130bdbf..a8a5e0cb8 100644
--- a/modules/archive/archive.module
+++ b/modules/archive/archive.module
@@ -83,7 +83,7 @@ function archive_calendar($original = 0) {
$output .= "\n<!-- calendar -->\n";
$output .= "<div class=\"calendar\">";
$output .= "<table>\n";
- $output .= " <tr><td colspan=\"7\" class=\"header-month\">". l("&laquo;", "archive/". date("Y/m/d", $prev)) ." ". date("F Y", $requested) ." ". ($nextmonth <= time() ? l("&raquo;", "archive/". date("Y/m/d", $next)) : "&nbsp;") ."</td></tr>\n";
+ $output .= " <tr><td colspan=\"7\" class=\"header-month\">". l("&laquo;", "archive/". date("Y/m/d", $prev)) ." ". t(date("F", $requested)) . date(" Y", $requested) ." ". ($nextmonth <= time() ? l("&raquo;", "archive/". date("Y/m/d", $next)) : "&nbsp;") ."</td></tr>\n";
// First day of week (0 => Sunday, 1 => Monday, ...)
$weekstart = variable_get("default_firstday", 0);