T1367: Fix text in "My status" field in event dialog
Was "My status: Accept", should be "My status: Accepted". Fixes T1367.
This commit is contained in:
parent
403e61004c
commit
2ed6d5ad69
2 changed files with 2 additions and 2 deletions
|
@ -565,7 +565,7 @@ function rcube_calendar_ui(settings)
|
|||
.removeClass('accepted tentative declined delegated needs-action')
|
||||
.addClass(mystatus)
|
||||
.children('.event-text')
|
||||
.html(Q(rcmail.gettext('itip' + mystatus, 'libcalendaring')));
|
||||
.text(rcmail.gettext('status' + mystatus, 'libcalendaring'));
|
||||
}
|
||||
|
||||
var show_rsvp = rsvp && !is_organizer(event) && event.status != 'CANCELLED' && has_permission(calendar, 'v');
|
||||
|
|
|
@ -2096,7 +2096,7 @@ function rcube_tasklist_ui(settings)
|
|||
.removeClass('accepted tentative declined delegated needs-action')
|
||||
.addClass(mystatus)
|
||||
.children('.task-text')
|
||||
.html(Q(rcmail.gettext('itip' + mystatus, 'libcalendaring')));
|
||||
.html(rcmail.gettext('status' + mystatus, 'libcalendaring'));
|
||||
}
|
||||
*/
|
||||
var show_rsvp = !temp && rsvp && list.editable && !is_organizer(rec) && rec.status != 'CANCELLED';
|
||||
|
|
Loading…
Add table
Reference in a new issue