Add some missing localization labels, fix some labels use
This commit is contained in:
parent
c5843388a8
commit
978b7535ed
6 changed files with 16 additions and 10 deletions
|
@ -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';
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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)';
|
||||
|
|
|
@ -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 $('<span>').append(
|
||||
$('<span>').attr({'class': 'attendee ' + status, title: tooltip}).append(name.text(dispname))
|
||||
|
|
|
@ -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...';
|
||||
|
||||
|
|
|
@ -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)';
|
||||
|
|
Loading…
Add table
Reference in a new issue