diff --git a/plugins/calendar/localization/en_US.inc b/plugins/calendar/localization/en_US.inc index 2e2952c2..496b1e5c 100644 --- a/plugins/calendar/localization/en_US.inc +++ b/plugins/calendar/localization/en_US.inc @@ -165,8 +165,6 @@ $labels['availbusy'] = 'Busy'; $labels['availunknown'] = 'Unknown'; $labels['availtentative'] = 'Tentative'; $labels['availoutofoffice'] = 'Out of Office'; -$labels['delegatedto'] = 'Delegated to: '; -$labels['delegatedfrom'] = 'Delegated from: '; $labels['scheduletime'] = 'Find availability'; $labels['sendinvitations'] = 'Send invitations'; $labels['sendnotifications'] = 'Notify participants about modifications'; diff --git a/plugins/kolab_files/lib/kolab_files_engine.php b/plugins/kolab_files/lib/kolab_files_engine.php index 5d98a146..341f7535 100644 --- a/plugins/kolab_files/lib/kolab_files_engine.php +++ b/plugins/kolab_files/lib/kolab_files_engine.php @@ -992,7 +992,7 @@ class kolab_files_engine protected function action_index() { $this->plugin->add_label( - 'uploading', 'attaching', 'searching', 'uploadsizeerror', + 'uploading', 'attaching', 'uploadsizeerror', 'filedeleting', 'filedeletenotice', 'filedeleteconfirm', 'filemoving', 'filemovenotice', 'filemoveconfirm', 'filecopying', 'filecopynotice', 'fileskip', 'fileskipall', 'fileoverwrite', 'fileoverwriteall' diff --git a/plugins/kolab_files/localization/en_US.inc b/plugins/kolab_files/localization/en_US.inc index 5c131e1c..12a0211e 100644 --- a/plugins/kolab_files/localization/en_US.inc +++ b/plugins/kolab_files/localization/en_US.inc @@ -23,6 +23,7 @@ $labels['foldercreate'] = 'Create folder'; $labels['folderedit'] = 'Edit folder'; $labels['foldermount'] = 'Add storage'; $labels['folderdelete'] = 'Delete folder'; +$labels['folderoptions'] = 'Folder options'; $labels['folderinside'] = 'Insert inside'; $labels['foldername'] = 'Folder name'; @@ -50,6 +51,7 @@ $labels['copyfile'] = 'Copy a file'; $labels['copyandedit'] = 'Copy and Edit'; $labels['documenttitle'] = 'Title:'; $labels['close'] = 'Close'; +$labels['docedit'] = 'Document editing'; $labels['collection_audio'] = 'Audio'; $labels['collection_video'] = 'Video'; @@ -143,9 +145,9 @@ $labels['comment'] = 'Comment'; $labels['open'] = 'Open'; $labels['request'] = 'Request an invitation'; $labels['invitationtitle'] = 'Invitation for $file'; -$labels['ivitationaccepting'] = 'Accepting an invitation...'; -$labels['ivitationdeclining'] = 'Declining an invitation...'; -$labels['ivitationrequesting'] = 'Requesting an invitation...'; +$labels['invitationaccepting'] = 'Accepting an invitation...'; +$labels['invitationdeclining'] = 'Declining an invitation...'; +$labels['invitationrequesting'] = 'Requesting an invitation...'; $labels['storepasswords'] = 'remember password'; $labels['storepasswordsdesc'] = 'Stored passwords will be encrypted. Enable this if you do not want to be asked for the password on every login or you want this storage to be available via WebDAV.'; @@ -168,6 +170,12 @@ $labels['arialabelfilesavedialog'] = 'File(s) saving dialog'; $labels['arialabelfileprops'] = 'File properties'; $labels['arialabelfilecontent'] = 'File content'; $labels['arialabelfileeditdialog'] = 'File editing dialog'; +$labels['arialabelsessionslist'] = 'List of document editing sessions'; +$labels['arialabelfilerenameform'] = 'File rename form'; +$labels['arialabelfilesessiondialog'] = 'Document editing session'; +$labels['arialabelcollaborators'] = 'List of document editors'; +$labels['arialabelexportoptions'] = 'Export options'; +$labels['arialabeldoceditorsdialog'] = 'Document editors (invitations)'; $labels['type.plain'] = 'Plain Text Document'; $labels['type.vndoasisopendocumenttext'] = 'Text Document (ODF)'; diff --git a/plugins/libcalendaring/libcalendaring.js b/plugins/libcalendaring/libcalendaring.js index c6bee178..caae913b 100644 --- a/plugins/libcalendaring/libcalendaring.js +++ b/plugins/libcalendaring/libcalendaring.js @@ -1090,9 +1090,9 @@ rcube_libcalendaring.attendee_html = function(data) } if (data['delegated-to']) - tooltip = rcmail.gettext('delegatedto', context) + ' ' + data['delegated-to']; + tooltip = rcmail.gettext('libcalendaring.delegatedto') + ' ' + data['delegated-to']; else if (data['delegated-from']) - tooltip = rcmail.gettext('delegatedfrom', context) + ' ' + data['delegated-from']; + tooltip = rcmail.gettext('libcalendaring.delegatedfrom') + ' ' + data['delegated-from']; return $('').append( $('').attr({'class': 'attendee ' + status, title: tooltip}).append(name.text(dispname)) diff --git a/plugins/libcalendaring/localization/en_US.inc b/plugins/libcalendaring/localization/en_US.inc index bbdcc2bd..8dfd340a 100644 --- a/plugins/libcalendaring/localization/en_US.inc +++ b/plugins/libcalendaring/localization/en_US.inc @@ -175,6 +175,8 @@ $labels['delegateinvitation'] = 'Delegate Invitation'; $labels['delegateto'] = 'Delegate to'; $labels['delegatersvpme'] = 'Keep me informed about updates of this incidence'; $labels['delegateinvalidaddress'] = 'Please enter a valid email address for the delegate'; +$labels['delegatedto'] = 'Delegated to:'; +$labels['delegatedfrom'] = 'Delegated from:'; $labels['savingdata'] = 'Saving data...'; diff --git a/plugins/tasklist/localization/en_US.inc b/plugins/tasklist/localization/en_US.inc index e42194c4..d34f17de 100644 --- a/plugins/tasklist/localization/en_US.inc +++ b/plugins/tasklist/localization/en_US.inc @@ -197,8 +197,6 @@ $labels['removefromcalendar'] = 'Remove from my tasks'; $labels['delegateinvitation'] = 'Delegate assignment'; $labels['andnmore'] = '$nr more...'; -$labels['delegatedto'] = 'Delegated to: '; -$labels['delegatedfrom'] = 'Delegated from: '; $labels['savetotasklist'] = 'Save to tasks'; $labels['comment'] = 'Comment'; $labels['errorimportingtask'] = 'Failed to import task(s)';