diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-03 14:55:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-03 14:55:27 +0000 |
commit | 058971c33b8dca63fd33b188328fc3e3ec9fb372 (patch) | |
tree | de80494d6eca73119a1ff2d3a9fe448ea0c13497 /modules/archive | |
parent | 35f3bcd0426ea207e40c4a2dd6cae8a1d26c794e (diff) | |
download | brdo-058971c33b8dca63fd33b188328fc3e3ec9fb372.tar.gz brdo-058971c33b8dca63fd33b188328fc3e3ec9fb372.tar.bz2 |
- Help improvements and translation improvements from Michael. Thanks!
Diffstat (limited to 'modules/archive')
-rw-r--r-- | modules/archive/archive.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/archive/archive.module b/modules/archive/archive.module index c12272c04..e9ce7e0fe 100644 --- a/modules/archive/archive.module +++ b/modules/archive/archive.module @@ -6,14 +6,14 @@ function archive_help($section) { switch ($section) { case 'admin/system/modules': - $output = "Displays a calendar to navigate old content."; + $output = t("Displays a calendar to navigate old content."); break; case 'admin/system/modules/archive': - $output = "Choose the starting \"day of the week\" for the displayed calendar block."; + $output = t("Choose the starting \"day of the week\" for the displayed calendar block."); break; } - return t($output); + return $output; } function archive_system($field){ $output = ""; |