diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-07-02 20:30:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-07-02 20:30:32 +0000 |
commit | 8f2ef0760f8ed962a446f512e7d96db4f6a1bc7b (patch) | |
tree | 6b2777d2d4154d3a80d97e7c249570957eaa1cf6 /modules/cvs.module | |
parent | 8674cf0953e3be8e0eacd17734bea65f729c33c3 (diff) | |
download | brdo-8f2ef0760f8ed962a446f512e7d96db4f6a1bc7b.tar.gz brdo-8f2ef0760f8ed962a446f512e7d96db4f6a1bc7b.tar.bz2 |
- Added improvement locale.module, based on Gerhard K.'s implementation.
(Thanks Gerhard!)
- Various other small improvements.
Diffstat (limited to 'modules/cvs.module')
-rw-r--r-- | modules/cvs.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cvs.module b/modules/cvs.module index bc1206898..5097d4d45 100644 --- a/modules/cvs.module +++ b/modules/cvs.module @@ -28,8 +28,8 @@ function cvs_cron() { function cvs_conf_options() { $period = array(43200 => format_interval(43200), 86400 => format_interval(86400), 172800 => format_interval(172800), 259200 => format_interval(259200), 604800 => format_interval(604800), 1209600 => format_interval(1209600)); - $output .= form_textfield(t("Digest recepients"), "cvs_mail", variable_get("cvs_mail", "root@localhost"), 30, 55, t("The e-mail address to mail the CVS log messages to. Multiple recipients can be specified by putting a comma between each address.")); - $output .= form_select(t("Digest interval"), "cvs_cron_time" , variable_get("cvs_cron_time", 86400), $period, t("The time interval at which batched CVS digests are dispatched. Requires crontab.")); + $output .= form_textfield("Digest recepients", "cvs_mail", variable_get("cvs_mail", "root@localhost"), 30, 55, "The e-mail address to mail the CVS log messages to. Multiple recipients can be specified by putting a comma between each address."); + $output .= form_select("Digest interval", "cvs_cron_time" , variable_get("cvs_cron_time", 86400), $period, "The time interval at which batched CVS digests are dispatched. Requires crontab."); return $output; } |