From: Art Cancro Date: Wed, 15 Oct 2008 03:15:39 +0000 (+0000) Subject: more recurring events editor tedium X-Git-Tag: v7.86~1850 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=0b2acc9837583fdd53f13e0f31bd61b9effafb5a more recurring events editor tedium --- diff --git a/webcit/event.c b/webcit/event.c index 0e853f758..bb1028653 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -578,7 +578,8 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, "%s onChange=\"RecurrenceShowHide();\">", ((which_rryeartype_is_preselected == 0) ? "checked" : "") ); - wprintf("every (99) (Octobuary)
"); /* FIXME */ + wprintf(_("every ")); + wprintf("%s
", _("year on this date")); wprintf("", diff --git a/webcit/static/wclib.js b/webcit/static/wclib.js index 6fc8f455f..aedf843e6 100644 --- a/webcit/static/wclib.js +++ b/webcit/static/wclib.js @@ -1050,4 +1050,5 @@ function RecurrenceShowHide() { $('yearday_selector').style.display = 'none'; } + $('ymday').innerHTML = 'XXXX-' + $('dtstart').value.substr(5); }