Projects
Kolab:3.4
roundcubemail-plugins-kolab
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 108
View file
roundcubemail-plugins-kolab.spec
Changed
@@ -23,8 +23,8 @@ %global tmpdir %{_var}/lib/roundcubemail Name: roundcubemail-plugins-kolab -Version: 3.2.5 -Release: 2%{?dist} +Version: 3.2.6 +Release: 1%{?dist} Summary: Kolab Groupware plugins for Roundcube Webmail Group: Applications/Internet @@ -177,6 +177,16 @@ %description -n roundcubemail-plugin-kolab_notes Plugin kolab_notes +%package -n roundcubemail-plugin-kolab_shortcuts +Summary: Plugin kolab_shortcuts +Group: Applications/Internet +Requires: roundcubemail(core) >= %{roundcube_version} +Requires: roundcubemail(plugin-kolab_shortcuts-assets) = %{?epoch:%{epoch}:}%{version}-%{release} +Provides: roundcubemail(plugin-kolab_shortcuts) = %{?epoch:%{epoch}:}%{version}-%{release} + +%description -n roundcubemail-plugin-kolab_shortcuts +Plugin kolab_shortcuts + %package -n roundcubemail-plugin-kolab_tags Summary: Plugin kolab_tags Group: Applications/Internet @@ -381,6 +391,14 @@ %description -n roundcubemail-plugin-kolab_notes-assets Plugin kolab_notes Assets +%package -n roundcubemail-plugin-kolab_shortcuts-assets +Summary: Plugin kolab_shortcuts Assets +Group: Applications/Internet +Provides: roundcubemail(plugin-kolab_shortcuts-assets) = %{?epoch:%{epoch}:}%{version}-%{release} + +%description -n roundcubemail-plugin-kolab_shortcuts-assets +Plugin kolab_shortcuts Assets + %package -n roundcubemail-plugin-kolab_tags-assets Summary: Plugin kolab_tags Assets Group: Applications/Internet @@ -1258,6 +1276,11 @@ %{__rm} -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" fi +%pre -n roundcubemail-plugin-kolab_shortcuts +if [ -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" ]; then + %{__rm} -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" +fi + %pre -n roundcubemail-plugin-kolab_tags if [ -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" ]; then %{__rm} -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" @@ -1453,6 +1476,21 @@ touch %{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted fi +%posttrans -n roundcubemail-plugin-kolab_shortcuts +if [ ! -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" ]; then + if [ -f "%{php_inidir}/apc.ini" ]; then + if [ ! -z "$(grep ^apc.enabled=1 %{php_inidir}/apc.ini)" ]; then +%if 0%{?with_systemd} + /bin/systemctl condrestart %{httpd_name}.service +%else + /sbin/service %{httpd_name} condrestart +%endif + fi + fi + %{__mkdir_p} %{_localstatedir}/lib/rpm-state/roundcubemail/ + touch %{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted +fi + %posttrans -n roundcubemail-plugin-kolab_tags if [ ! -f "%{_localstatedir}/lib/rpm-state/roundcubemail/httpd.restarted" ]; then if [ -f "%{php_inidir}/apc.ini" ]; then @@ -1674,6 +1712,9 @@ %files -n roundcubemail-plugin-kolab_notes -f plugin-kolab_notes.files %defattr(-,root,root,-) +%files -n roundcubemail-plugin-kolab_shortcuts -f plugin-kolab_shortcuts.files +%defattr(-,root,root,-) + %files -n roundcubemail-plugin-kolab_tags -f plugin-kolab_tags.files %defattr(-,root,root,-) @@ -1742,6 +1783,9 @@ %files -n roundcubemail-plugin-kolab_notes-assets -f plugin-kolab_notes-assets.files %defattr(-,root,root,-) +%files -n roundcubemail-plugin-kolab_shortcuts-assets -f plugin-kolab_shortcuts-assets.files +%defattr(-,root,root,-) + %files -n roundcubemail-plugin-kolab_tags-assets -f plugin-kolab_tags-assets.files %defattr(-,root,root,-)
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +roundcubemail-plugins-kolab (1:3.2.6-0~kolab1) unstable; urgency=low + + * Release of version 3.2.6 + + -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Sun, 22 Feb 2015 18:41:13 +0200 + roundcubemail-plugins-kolab (1:3.2.5-0~kolab2) unstable; urgency=low * Removed tmpdir+symlink for odfviewer
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/calendar.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/calendar.php
Changed
@@ -841,17 +841,21 @@ $event = rcube_utils::get_input_value('e', rcube_utils::INPUT_POST, true); $success = $reload = $got_msg = false; - // don't notify if modifying a recurring instance (really?) - if ($event['_savemode'] && in_array($event['_savemode'], array('current','future')) && $event['_notify'] && $action != 'remove') - unset($event['_notify']); // force notify if hidden + active - else if ((int)$this->rc->config->get('calendar_itip_send_option', $this->defaults['calendar_itip_send_option']) === 1) + if ((int)$this->rc->config->get('calendar_itip_send_option', $this->defaults['calendar_itip_send_option']) === 1) $event['_notify'] = 1; // read old event data in order to find changes - if (($event['_notify'] || $event['decline']) && $action != 'new') + if (($event['_notify'] || $event['_decline']) && $action != 'new') { $old = $this->driver->get_event($event); + // load main event when savemode is 'all' + if ($event['_savemode'] == 'all' && $old['recurrence_id']) { + $old['id'] = $old['recurrence_id']; + $old = $this->driver->get_event($old); + } + } + switch ($action) { case "new": // create UID for new event @@ -859,7 +863,9 @@ $this->write_preprocess($event, $action); if ($success = $this->driver->new_event($event)) { $event['id'] = $event['uid']; + $event['_savemode'] = 'all'; $this->cleanup_event($event); + $this->event_save_success($event, null, $action, true); } $reload = $success && $event['recurrence'] ? 2 : 1; break; @@ -868,21 +874,15 @@ $this->write_preprocess($event, $action); if ($success = $this->driver->edit_event($event)) { $this->cleanup_event($event); - if ($success !== true) { - $event['id'] = $success; - $old = null; - } + $this->event_save_success($event, $old, $action, $success); } - $reload = $success && ($event['recurrence'] || $event['_savemode'] || $event['_fromcalendar']) ? 2 : 1; + $reload = $success && ($event['recurrence'] || $event['_savemode'] || $event['_fromcalendar']) ? 2 : 1; break; case "resize": $this->write_preprocess($event, $action); if ($success = $this->driver->resize_event($event)) { - if ($success !== true) { - $event['id'] = $success; - $old = null; - } + $this->event_save_success($event, $old, $action, $success); } $reload = $event['_savemode'] ? 2 : 1; break; @@ -890,10 +890,7 @@ case "move": $this->write_preprocess($event, $action); if ($success = $this->driver->move_event($event)) { - if ($success !== true) { - $event['id'] = $success; - $old = null; - } + $this->event_save_success($event, $old, $action, $success); } $reload = $success && $event['_savemode'] ? 2 : 1; break; @@ -928,8 +925,14 @@ $got_msg = true; } + // send cancellation for the main event + if ($event['_savemode'] == 'all') + unset($old['_instance'], $old['recurrence_date'], $old['recurrence_id']); + else if ($event['_savemode'] == 'future') + $old['thisandfuture'] = true; + // send iTIP reply that participant has declined the event - if ($success && $event['decline']) { + if ($success && $event['_decline']) { $emails = $this->get_user_emails(); foreach ($old['attendees'] as $i => $attendee) { if ($attendee['role'] == 'ORGANIZER') @@ -939,7 +942,7 @@ $reply_sender = $attendee['email']; } } - + $itip = $this->load_itip(); $itip->set_sender_email($reply_sender); if ($organizer && $itip->send_itip_message($old, 'REPLY', $organizer, 'itipsubjectdeclined', 'itipmailbodydeclined')) @@ -947,6 +950,9 @@ else $this->rc->output->command('display_message', $this->gettext('itipresponseerror'), 'error'); } + else if ($success) { + $this->event_save_success($event, $old, $action, $success); + } break; case "undo": @@ -967,18 +973,20 @@ case "rsvp": $itip_sending = $this->rc->config->get('calendar_itip_send_option', $this->defaults['calendar_itip_send_option']); - $status = rcube_utils::get_input_value('status', rcube_utils::INPUT_GPC); + $status = rcube_utils::get_input_value('status', rcube_utils::INPUT_POST); + $attendees = rcube_utils::get_input_value('attendees', rcube_utils::INPUT_POST); $reply_comment = $event['comment']; $this->write_preprocess($event, 'edit'); $ev = $this->driver->get_event($event); $ev['attendees'] = $event['attendees']; $ev['free_busy'] = $event['free_busy']; + $ev['_savemode'] = $event['_savemode']; // send invitation to delegatee + add it as attendee if ($status == 'delegated' && $event['to']) { $itip = $this->load_itip(); - if ($itip->delegate_to($ev, $event['to'], (bool)$event['rsvp'])) { + if ($itip->delegate_to($ev, $event['to'], (bool)$event['rsvp'], $attendees)) { $this->rc->output->show_message('calendar.itipsendsuccess', 'confirmation'); $noreply = false; } @@ -986,10 +994,15 @@ $event = $ev; - if ($success = $this->driver->edit_rsvp($event, $status)) { + // compose a list of attendees affected by this change + $updated_attendees = array_filter(array_map(function($j) use ($event) { + return $event['attendees'][$j]; + }, $attendees)); + + if ($success = $this->driver->edit_rsvp($event, $status, $updated_attendees)) { $noreply = rcube_utils::get_input_value('noreply', rcube_utils::INPUT_GPC); $noreply = intval($noreply) || $status == 'needs-action' || $itip_sending === 0; - $reload = $event['calendar'] != $ev['calendar'] ? 2 : 1; + $reload = $event['calendar'] != $ev['calendar'] || $event['recurrence'] ? 2 : 1; $organizer = null; $emails = $this->get_user_emails(); @@ -1006,11 +1019,18 @@ $itip = $this->load_itip(); $itip->set_sender_email($reply_sender); $event['comment'] = $reply_comment; + $event['thisandfuture'] = $event['_savemode'] == 'future'; if ($organizer && $itip->send_itip_message($event, 'REPLY', $organizer, 'itipsubject' . $status, 'itipmailbody' . $status)) $this->rc->output->command('display_message', $this->gettext(array('name' => 'sentresponseto', 'vars' => array('mailto' => $organizer['name'] ? $organizer['name'] : $organizer['email']))), 'confirmation'); else $this->rc->output->command('display_message', $this->gettext('itipresponseerror'), 'error'); } + + // refresh all calendars + if ($event['calendar'] != $ev['calendar']) { + $this->rc->output->command('plugin.refresh_calendar', array('source' => null, 'refetch' => true)); + $reload = 0; + } } break; @@ -1122,27 +1142,6 @@ $this->rc->output->show_message('calendar.errorsaving', 'error'); } - // send out notifications - if ($success && $event['_notify'] && ($event['attendees'] || $old['attendees'])) { - // make sure we have the complete record - $event = $action == 'remove' ? $old : $this->driver->get_event($event); - - // sending notification on a recurrence instance -> re-send the main event - if ($event['recurrence_id']) { - $event = $this->driver->get_event(array('id' => $event['recurrence_id'], 'cal' => $event['calendar'])); - $action = 'edit'; - } - - // only notify if data really changed (TODO: do diff check on client already) - if (!$old || $action == 'remove' || self::event_diff($event, $old)) { - $sent = $this->notify_attendees($event, $old, $action, $event['_comment']); - if ($sent > 0) - $this->rc->output->show_message('calendar.itipsendsuccess', 'confirmation'); - else if ($sent < 0) - $this->rc->output->show_message('calendar.errornotifying', 'error'); - } - } - // unlock client $this->rc->output->command('plugin.unlock_saving'); @@ -1158,6 +1157,62 @@ }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/calendar_ui.js -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/calendar_ui.js
Changed
@@ -554,6 +554,14 @@ $('#event-rsvp a.reply-comment-toggle').show(); $('#event-rsvp .itip-reply-comment textarea').hide().val(''); + + if (event.recurrence && event.id) { + var sel = event._savemode || (event.thisandfuture ? 'future' : (event.isexception ? 'current' : 'all')); + $('#event-rsvp .rsvp-buttons').addClass('recurring'); + } + else { + $('#event-rsvp .rsvp-buttons').removeClass('recurring'); + } } var buttons = []; @@ -596,13 +604,16 @@ }, close: function() { $dialog.dialog('destroy').attr('aria-hidden', 'true').hide(); - rcmail.command('menu-close','eventoptionsmenu') + rcmail.command('menu-close','eventoptionsmenu'); + $('.libcal-rsvp-replymode').hide(); }, dragStart: function() { - rcmail.command('menu-close','eventoptionsmenu') + rcmail.command('menu-close','eventoptionsmenu'); + $('.libcal-rsvp-replymode').hide(); }, resizeStart: function() { - rcmail.command('menu-close','eventoptionsmenu') + rcmail.command('menu-close','eventoptionsmenu'); + $('.libcal-rsvp-replymode').hide(); }, buttons: buttons, minWidth: 320, @@ -683,6 +694,8 @@ // reset dialog first $('#eventtabs').get(0).reset(); + $('#event-panel-recurrence input, #event-panel-recurrence select, #event-panel-attachments input').prop('disabled', false); + $('#event-panel-recurrence, #event-panel-attachments').removeClass('disabled'); // allow other plugins to do actions when event form is opened rcmail.triggerEvent('calendar-event-init', {o: event}); @@ -742,11 +755,9 @@ // show warning if editing a recurring event if (event.id && event.recurrence) { - var allow_exceptions = !has_attendees(event) || !is_organizer(event), - sel = event._savemode || (allow_exceptions && event.thisandfuture ? 'future' : (allow_exceptions && event.isexception ? 'current' : 'all')); + var sel = event._savemode || (event.thisandfuture ? 'future' : (event.isexception ? 'current' : 'all')); $('#edit-recurring-warning').show(); - $('input.edit-recurring-savemode[value="'+sel+'"]').prop('checked', true); - $('input.edit-recurring-savemode[value="current"], input.edit-recurring-savemode[value="future"]').prop('disabled', !allow_exceptions); + $('input.edit-recurring-savemode[value="'+sel+'"]').prop('checked', true).change(); } else $('#edit-recurring-warning').hide(); @@ -797,7 +808,7 @@ // attachments var load_attachments_tab = function() { - rcmail.enable_command('remove-attachment', !calendar.readonly); + rcmail.enable_command('remove-attachment', !calendar.readonly && !event.recurrence_id); rcmail.env.deleted_attachments = []; // we're sharing some code for uploads handling with app.js rcmail.env.attachments = []; @@ -2370,19 +2381,37 @@ } // when the user accepts or declines an event invitation - var event_rsvp = function(response, delegate) + var event_rsvp = function(response, delegate, replymode) { + var btn; + if (typeof response == 'object') { + btn = $(response); + response = btn.attr('rel') + } + else { + btn = $('#event-rsvp input.button[rel='+response+']'); + } + + // show menu to select rsvp reply mode (current or all) + if (me.selected_event && me.selected_event.recurrence && !replymode) { + rcube_libcalendaring.itip_rsvp_recurring(btn, function(resp, mode) { + event_rsvp(resp, null, mode); + }); + return; + } + if (me.selected_event && me.selected_event.attendees && response) { // bring up delegation dialog if (response == 'delegated' && !delegate) { rcube_libcalendaring.itip_delegate_dialog(function(data) { data.rsvp = data.rsvp ? 1 : ''; - event_rsvp('delegated', data); + event_rsvp('delegated', data, replymode); }); return; } // update attendee status + attendees = []; for (var data, i=0; i < me.selected_event.attendees.length; i++) { data = me.selected_event.attendees[i]; if (settings.identity.emails.indexOf(';'+String(data.email).toLowerCase()) >= 0) { @@ -2391,6 +2420,7 @@ if (data.status == 'DELEGATED') { data['delegated-to'] = delegate.to; + data.rsvp = delegate.rsvp } else { if (data['delegated-to']) { @@ -2399,6 +2429,12 @@ data.role = 'REQ-PARTICIPANT'; } } + + attendees.push(i) + } + else if (response != 'DELEGATED' && data['delegated-from'] && + settings.identity.emails.indexOf(';'+String(data['delegated-from']).toLowerCase()) >= 0) { + delete data['delegated-from']; } // set free_busy status to transparent if declined (#4425) @@ -2411,7 +2447,7 @@ } // submit status change to server - var submit_data = $.extend({}, me.selected_event, { source:null, comment:$('#reply-comment-event-rsvp').val() }, (delegate || {})), + var submit_data = $.extend({}, me.selected_event, { source:null, comment:$('#reply-comment-event-rsvp').val(), _savemode: replymode || 'all' }, (delegate || {})), noreply = $('#noreply-event-rsvp:checked').length ? 1 : 0; // import event from mail (temporary iTip event) @@ -2425,15 +2461,17 @@ _to: (delegate ? delegate.to : null), _rsvp: (delegate && delegate.rsvp) ? 1 : 0, _noreply: noreply, - _comment: submit_data.comment + _comment: submit_data.comment, + _instance: submit_data._instance, + _savemode: submit_data._savemode }); } else if (settings.invitation_calendars) { - update_event('rsvp', submit_data, { status:response, noreply:noreply }); + update_event('rsvp', submit_data, { status:response, noreply:noreply, attendees:attendees }); } else { me.saving_lock = rcmail.set_busy(true, 'calendar.savingdata'); - rcmail.http_post('event', { action:'rsvp', e:submit_data, status:response, noreply:noreply }); + rcmail.http_post('event', { action:'rsvp', e:submit_data, status:response, attendees:attendees, noreply:noreply }); } event_show_dialog(me.selected_event); @@ -2501,7 +2539,7 @@ // mark all recurring instances as temp if (event.recurrence || event.recurrence_id) { - var base_id = event.recurrence_id ? event.recurrence_id.replace(/-\d+$/, '') : event.id; + var base_id = event.recurrence_id ? event.recurrence_id.replace(/-\d+(T\d{6})?$/, '') : event.id; $.each(fc.fullCalendar('clientEvents', function(e){ return e.id == base_id || e.recurrence_id == base_id; }), function(i,ev) { ev.temp = true; ev.editable = false; @@ -2565,25 +2603,19 @@ // recurring event: user needs to select the savemode if (event.recurrence) { - var disabled_state = '', message_label = (action == 'remove' ? 'removerecurringeventwarning' : 'changerecurringeventwarning'); + var future_disabled = '', message_label = (action == 'remove' ? 'removerecurringeventwarning' : 'changerecurringeventwarning'); - if (_has_attendees) { - if (action == 'remove') { - if (!_is_organizer) { - message_label = 'removerecurringallonly'; - disabled_state = ' disabled'; - } - } - else if (is_organizer(event)) { - disabled_state = ' disabled'; - } + // disable the 'future' savemode if attendees are involved + // reason: no calendaring system supports the thisandfuture range parameter + if (action == 'remove' && _has_attendees && is_organizer(event)) { + future_disabled = ' disabled'; } html += '<div class="message"><span class="ui-icon ui-icon-alert"></span>' + rcmail.gettext(message_label, 'calendar') + '</div>' + '<div class="savemode">' + - '<a href="#current" class="button' + disabled_state + '">' + rcmail.gettext('currentevent', 'calendar') + '</a>' + - '<a href="#future" class="button' + disabled_state + '">' + rcmail.gettext('futurevents', 'calendar') + '</a>' + + '<a href="#current" class="button">' + rcmail.gettext('currentevent', 'calendar') + '</a>' + + '<a href="#future" class="button' + future_disabled + '">' + rcmail.gettext('futurevents', 'calendar') + '</a>' + '<a href="#all" class="button">' + rcmail.gettext('allevents', 'calendar') + '</a>' + (action != 'remove' ? '<a href="#new" class="button">' + rcmail.gettext('saveasnew', 'calendar') + '</a>' : '') + '</div>';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Calendar plugin", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli", @@ -26,6 +26,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libcalendaring": ">=3.2.5" + "kolab/libcalendaring": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/drivers/calendar_driver.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/drivers/calendar_driver.php
Changed
@@ -50,6 +50,7 @@ * 'EXCEPTIONS' => array(<event>), list of event objects which denote exceptions in the recurrence chain * ), * 'recurrence_id' => 'ID of the recurrence group', // usually the ID of the starting event + * '_instance' => 'ID of the recurring instance', // identifies an instance within a recurrence chain * 'categories' => 'Event category', * 'free_busy' => 'free|busy|outofoffice|tentative', // Show time as * 'status' => 'TENTATIVE|CONFIRMED|CANCELLED', // event status according to RFC 2445 @@ -196,9 +197,22 @@ * * @param array Hash array with event properties * @param string New participant status + * @param array List of hash arrays with updated attendees * @return boolean True on success, False on error */ - public function edit_rsvp(&$event, $status) + public function edit_rsvp(&$event, $status, $attendees) + { + return $this->edit_event($event); + } + + /** + * Update the participant status for the given attendee + * + * @param array Hash array with event properties + * @param array List of hash arrays each represeting an updated attendee + * @return boolean True on success, False on error + */ + public function update_attendees(&$event, $attendees) { return $this->edit_event($event); } @@ -449,6 +463,7 @@ $rcmail = rcmail::get_instance(); $recurrence = new calendar_recurrence($rcmail->plugins->get_plugin('calendar'), $event); + $recurrence_id_format = $event['allday'] ? 'Ymd' : 'Ymd\THis'; // determine a reasonable end date if none given if (!$end) { @@ -464,12 +479,11 @@ $i = 0; while ($next_event = $recurrence->next_instance()) { - $next_event['uid'] = $event['uid'] . '-' . ++$i; // add to output if in range if (($next_event['start'] <= $end && $next_event['end'] >= $start)) { - $next_event['id'] = $next_event['uid']; + $next_event['_instance'] = $next_event['start']->format($recurrence_id_format); + $next_event['id'] = $next_event['uid'] . '-' . $exception['_instance']; $next_event['recurrence_id'] = $event['uid']; - $next_event['_instance'] = $i; $events[] = $next_event; } else if ($next_event['start'] > $end) { // stop loop if out of range @@ -477,7 +491,7 @@ } // avoid endless recursion loops - if ($i > 1000) { + if (++$i > 1000) { break; } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/drivers/kolab/kolab_calendar.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/drivers/kolab/kolab_calendar.php
Changed
@@ -195,7 +195,11 @@ if ($master_id != $id && ($record = $this->storage->get_object($master_id))) $this->events[$master_id] = $this->_to_rcube_event($record); - if (($master = $this->events[$master_id]) && $master['recurrence']) { + // check for match on the first instance already + if (($_instance = $this->events[$master_id]['_instance']) && $id == $master_id . '-' . $_instance) { + $this->events[$id] = $this->events[$master_id]; + } + else if (($master = $this->events[$master_id]) && $master['recurrence']) { $this->get_recurring_events($record, $master['start'], null, $id); } } @@ -236,35 +240,31 @@ $query[] = array('dtstart', '<=', $end); $query[] = array('dtend', '>=', $start); - // add query to exclude pending/declined invitations - if (empty($filter_query) && $this->get_namespace() != 'other') { - foreach ($user_emails as $email) { - $query[] = array('tags', '!=', 'x-partstat:' . $email . ':needs-action'); - $query[] = array('tags', '!=', 'x-partstat:' . $email . ':declined'); - } - } - else if (is_array($filter_query)) { + if (is_array($filter_query)) { $query = array_merge($query, $filter_query); } if (!empty($search)) { $search = mb_strtolower($search); + $words = rcube_utils::tokenize_string($search, 1); foreach (rcube_utils::normalize_string($search, true) as $word) { $query[] = array('words', 'LIKE', $word); } } + else { + $words = array(); + } + + // set partstat filter to skip pending and declined invitations + if (empty($filter_query) && $this->get_namespace() != 'other') { + $partstat_exclude = array('NEEDS-ACTION','DECLINED'); + } + else { + $partstat_exclude = array(); + } $events = array(); foreach ($this->storage->select($query) as $record) { - // post-filter events to skip pending and declined invitations - if (empty($filter_query) && is_array($record['attendees']) && $this->get_namespace() != 'other') { - foreach ($record['attendees'] as $attendee) { - if (in_array($attendee['email'], $user_emails) && in_array($attendee['status'], array('NEEDS-ACTION','DECLINED'))) { - continue 2; - } - } - } - $event = $this->_to_rcube_event($record); $this->events[$event['id']] = $event; @@ -272,35 +272,16 @@ if ($event['categories']) $this->categories[$event['categories']]++; - // filter events by search query - if (!empty($search)) { - $hits = 0; - $words = rcube_utils::tokenize_string($search, 1); - foreach ($words as $word) { - $hits += $this->_fulltext_match($event, $word); - } - - if ($hits < count($words)) // skip this event if not match with search term - continue; - } - // list events in requested time window if ($event['start'] <= $end && $event['end'] >= $start) { unset($event['_attendees']); $add = true; // skip the first instance of a recurring event if listed in exdate - if ($virtual && (!empty($event['recurrence']['EXDATE']) || !empty($event['recurrence']['EXCEPTIONS']))) { + if ($virtual && !empty($event['recurrence']['EXDATE'])) { $event_date = $event['start']->format('Ymd'); $exdates = (array)$event['recurrence']['EXDATE']; - // add dates from exceptions to list - if (is_array($event['recurrence']['EXCEPTIONS'])) { - foreach ($event['recurrence']['EXCEPTIONS'] as $exception) { - $exdates[] = clone $exception['start']; - } - } - foreach ($exdates as $exdate) { if ($exdate->format('Ymd') == $event_date) { $add = false; @@ -309,27 +290,53 @@ } } + // find and merge exception for the first instance + if ($virtual && !empty($event['recurrence']) && is_array($event['recurrence']['EXCEPTIONS'])) { + $event_date = $event['start']->format('Ymd'); + foreach ($event['recurrence']['EXCEPTIONS'] as $exception) { + $exdate = $exception['recurrence_date'] ? $exception['recurrence_date']->format('Ymd') : substr($exception['_instance'], 0, 8); + if ($exdate == $event_date) { + $event['_instance'] = $exception['_instance']; + kolab_driver::merge_exception_data($event, $exception); + } + } + } + if ($add) $events[] = $event; } - + // resolve recurring events if ($record['recurrence'] && $virtual == 1) { $events = array_merge($events, $this->get_recurring_events($record, $start, $end)); + } + } - // when searching, only recurrence exceptions may match the query so post-filter the results again - if (!empty($search) && $record['recurrence']['EXCEPTIONS']) { - $me = $this; - $events = array_filter($events, function($event) use ($words, $me) { - $hits = 0; - foreach ($words as $word) { - $hits += $me->_fulltext_match($event, $word, false); - } - return $hits >= count($words); - }); + // post-filter all events by fulltext search and partstat values + $me = $this; + $events = array_filter($events, function($event) use ($words, $partstat_exclude, $user_emails, $me) { + // fulltext search + if (count($words)) { + $hits = 0; + foreach ($words as $word) { + $hits += $me->_fulltext_match($event, $word, false); + } + if ($hits < count($words)) { + return false; + } + } + + // partstat filter + if (count($partstat_exclude) && is_array($event['attendees'])) { + foreach ($event['attendees'] as $attendee) { + if (in_array($attendee['email'], $user_emails) && in_array($attendee['status'], $partstat_exclude)) { + return false; + } } } - } + + return true; + }); // avoid session race conditions that will loose temporary subscriptions $this->cal->rc->session->nowrite = true; @@ -585,24 +592,29 @@ $rec_event['id'] = $event['uid'] . '-' . $exception['_instance']; $rec_event['isexception'] = 1; - // found the specifically requested instance, exiting... - if ($rec_event['id'] == $event_id) { + // found the specifically requested instance: register exception (single occurrence wins) + if ($rec_event['id'] == $event_id && (!$this->events[$event_id] || $this->events[$event_id]['thisandfuture'])) { $rec_event['recurrence'] = $recurrence_rule; $rec_event['recurrence_id'] = $event['uid']; - $events[] = $rec_event; $this->events[$rec_event['id']] = $rec_event; - return $events; } // remember this exception's date $exdate = substr($exception['_instance'], 0, 8); - $exdata[$exdate] = $rec_event; + if (!$exdata[$exdate] || $exdata[$exdate]['thisandfuture']) { + $exdata[$exdate] = $rec_event; + } if ($rec_event['thisandfuture']) { $futuredata[$exdate] = $rec_event; } } } + // found the specifically requested instance, exiting... + if ($event_id && !empty($this->events[$event_id])) { + return array($this->events[$event_id]); + } + // use libkolab to compute recurring events if (class_exists('kolabcalendaring')) { $recurrence = new kolab_date_recurrence($object);
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/drivers/kolab/kolab_driver.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/drivers/kolab/kolab_driver.php
Changed
@@ -534,8 +534,13 @@ public function get_event($event, $writeable = false, $active = false, $personal = false) { if (is_array($event)) { - $id = $event['id'] ? $event['id'] : $event['uid']; + $id = $event['id'] ?: $event['uid']; $cal = $event['calendar']; + + // we're looking for a recurring instance: expand the ID to our internal convention for recurring instances + if (!$event['id'] && $event['_instance']) { + $id .= '-' . $event['_instance']; + } } else { $id = $event; @@ -543,7 +548,10 @@ if ($cal) { if ($storage = $this->get_calendar($cal)) { - return $storage->get_event($id); + $result = $storage->get_event($id); + if (is_array($result)) + self::clean_rcube_event_out($result); + return $result; } // get event from the address books birthday calendar else if ($cal == self::BIRTHDAY_CALENDAR_ID) { @@ -554,6 +562,7 @@ else { foreach ($this->filter_calendars($writeable, $active, $personal) as $calendar) { if ($result = $calendar->get_event($id)) { + self::clean_rcube_event_out($result); return $result; } } @@ -614,9 +623,21 @@ * @param string New participant status * @return boolean True on success, False on error */ - public function edit_rsvp(&$event, $status) + public function edit_rsvp(&$event, $status, $attendees) { - if (($ret = $this->update_event($event)) && $this->rc->config->get('kolab_invitation_calendars')) { + $update_event = $event; + + // apply changes to master (and all exceptions) + if ($event['_savemode'] == 'all' && $event['recurrence_id']) { + if ($storage = $this->get_calendar($event['calendar'])) { + $update_event = $storage->get_event($event['recurrence_id']); + $update_event['_savemode'] = $event['_savemode']; + unset($update_event['recurrence_id']); + self::merge_attendee_data($update_event, $attendees); + } + } + + if (($ret = $this->update_attendees($update_event, $attendees)) && $this->rc->config->get('kolab_invitation_calendars')) { // re-assign to the according (virtual) calendar if (strtoupper($status) == 'DECLINED') $event['calendar'] = self::INVITATIONS_CALENDAR_DECLINED; @@ -629,6 +650,48 @@ return $ret; } + /** + * Update the participant status for the given attendees + * + * @see calendar_driver::update_attendees() + */ + public function update_attendees(&$event, $attendees) + { + // for this-and-future updates, merge the updated attendees onto all exceptions in range + if (($event['_savemode'] == 'future' && $event['recurrence_id']) || (!empty($event['recurrence']) && !$event['recurrence_id'])) { + if (!($storage = $this->get_calendar($event['calendar']))) + return false; + + // load master event + $master = $event['recurrence_id'] ? $storage->get_event($event['recurrence_id']) : $event; + + // apply attendee update to each existing exception + if ($master['recurrence'] && !empty($master['recurrence']['EXCEPTIONS'])) { + $saved = false; + foreach ($master['recurrence']['EXCEPTIONS'] as $i => $exception) { + // merge the new event properties onto future exceptions + if ($exception['_instance'] >= $event['_instance']) { + self::merge_attendee_data($master['recurrence']['EXCEPTIONS'][$i], $attendees); + } + // update a specific instance + if ($exception['_instance'] == $event['_instance'] && $exception['thisandfuture']) { + $saved = true; + } + } + + // add the given event as new exception + if (!$saved && $event['id'] != $master['id']) { + $event['thisandfuture'] = true; + $master['recurrence']['EXCEPTIONS'][] = $event; + } + + return $this->update_event($master); + } + } + + // just update the given event (instance) + return $this->update_event($event); + } /** * Move a single event @@ -640,6 +703,7 @@ { if (($storage = $this->get_calendar($event['calendar'])) && ($ev = $storage->get_event($event['id']))) { unset($ev['sequence']); + self::clear_attandee_noreply($ev); return $this->update_event($event + $ev); } @@ -656,6 +720,7 @@ { if (($storage = $this->get_calendar($event['calendar'])) && ($ev = $storage->get_event($event['id']))) { unset($ev['sequence']); + self::clear_attandee_noreply($ev); return $this->update_event($event + $ev); } @@ -687,11 +752,11 @@ // read master if deleting a recurring event if ($event['recurrence'] || $event['recurrence_id']) { $master = $event['recurrence_id'] ? $storage->get_event($event['recurrence_id']) : $event; - $savemode = $event['_savemode']; + $savemode = $event['_savemode'] ?: ($event['_instance'] ? 'current' : 'all'); } // removing an exception instance - if ($event['recurrence_id']) { + if ($event['recurrence_id'] && $master['recurrence'] && is_array($master['recurrence']['EXCEPTIONS'])) { foreach ($master['recurrence']['EXCEPTIONS'] as $i => $exception) { if ($exception['_instance'] == $event['_instance']) { unset($master['recurrence']['EXCEPTIONS'][$i]); @@ -880,7 +945,11 @@ // modify a recurring event, check submitted savemode to do the right things if ($old['recurrence'] || $old['recurrence_id']) { $master = $old['recurrence_id'] ? $fromcalendar->get_event($old['recurrence_id']) : $old; - $savemode = $event['_savemode']; + $savemode = $event['_savemode'] ?: ($old['recurrence_id'] ? 'current' : 'all'); + + // this-and-future on the first instance equals to 'all' + if (!$old['recurrence_id'] && $savemode == 'future') + $savemode = 'all'; } // check if update affects scheduling and update attendee status accordingly @@ -894,47 +963,114 @@ else if ($old['recurrence']['EXCEPTIONS']) $event['recurrence']['EXCEPTIONS'] = $old['recurrence']['EXCEPTIONS']; + // remove some internal properties which should not be saved + unset($event['_savemode'], $event['_fromcalendar'], $event['_identity'], $event['_owner'], + $event['_notify'], $event['_method'], $event['_sender'], $event['_sender_utf'], $event['_size']); + switch ($savemode) { case 'new': // save submitted data as new (non-recurring) event $event['recurrence'] = array(); + $event['_copyfrom'] = $master['_msguid']; + $event['_mailbox'] = $master['_mailbox']; $event['uid'] = $this->cal->generate_uid(); - unset($event['recurrence_id'], $event['id'], $event['_savemode'], $event['_fromcalendar'], $event['_identity'], $event['_notify']); + unset($event['recurrence_id'], $event['recurrence_date'], $event['_instance'], $event['id']); - // copy attachment data to new event - foreach ((array)$event['attachments'] as $idx => $attachment) { - if (!$attachment['content']) - $event['attachments'][$idx]['content'] = $this->get_attachment_body($attachment['id'], $master); - } + // copy attachment metadata to new event + $event = self::from_rcube_event($event, $master); + self::clear_attandee_noreply($event); if ($success = $storage->insert_event($event)) $success = $event['uid']; break; case 'future': + // create a new recurring event + $event['_copyfrom'] = $master['_msguid']; + $event['_mailbox'] = $master['_mailbox']; + $event['uid'] = $this->cal->generate_uid(); + unset($event['recurrence_id'], $event['recurrence_date'], $event['_instance'], $event['id']); + + // copy attachment metadata to new event + $event = self::from_rcube_event($event, $master); + + // remove recurrence exceptions on re-scheduling + if ($reschedule) { + unset($event['recurrence']['EXCEPTIONS'], $master['recurrence']['EXDATE']); + } + else if (is_array($event['recurrence']['EXCEPTIONS'])) { + // only keep relevant exceptions + $event['recurrence']['EXCEPTIONS'] = array_filter($event['recurrence']['EXCEPTIONS'], function($exception) use ($event) { + return $exception['start'] > $event['start'];
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/importexport.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/importexport.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/index.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/index.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/invitations.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/invitations.rst:8
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/manage.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/manage.rst:7
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/overview.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/overview.rst:6
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/settings.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/settings.rst:8
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/cs_CZ/LC_MESSAGES/sharing.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/calendar/sharing.rst:11
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/importexport.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/index.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/index.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/invitations.rst:8
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/manage.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/manage.rst:7
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/overview.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/overview.rst:6
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/settings.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/settings.rst:8
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/calendar/sharing.rst:11
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/lib/calendar_recurrence.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/lib/calendar_recurrence.php
Changed
@@ -67,7 +67,6 @@ { if ($next_start = $this->next()) { $next = $this->event; - $next['recurrence_id'] = $next_start->format('Y-m-d'); $next['start'] = $next_start; if ($this->duration) { @@ -75,6 +74,10 @@ $next['end']->add($this->duration); } + $recurrence_id_format = $next['allday'] ? 'Ymd' : 'Ymd\THis'; + $next['recurrence_date'] = clone $next_start; + $next['_instance'] = $next_start->format($recurrence_id_format); + unset($next['_formatobj']); return $next;
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/bg_BG.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/bg_BG.inc
Changed
@@ -70,12 +70,14 @@ $labels['public'] = 'публично'; $labels['private'] = 'частно'; $labels['confidential'] = 'конфиденциално'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Напомняне'; $labels['comment'] = 'Comment'; $labels['created'] = 'Created'; $labels['changed'] = 'Last Modified'; $labels['unknown'] = 'Неизвестно'; $labels['generated'] = 'генерирано в'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Печат на описанията'; $labels['parentcalendar'] = 'Внасяне вътре'; $labels['searchearlierdates'] = '« Търсене за по- стари събития';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/ca_ES.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/ca_ES.inc
Changed
@@ -80,6 +80,7 @@ $labels['public'] = 'públic'; $labels['private'] = 'privat'; $labels['confidential'] = 'confidencial'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Recordatori'; $labels['comment'] = 'Comentari'; $labels['created'] = 'Creat'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Opcions'; $labels['generated'] = 'generat a'; $labels['eventhistory'] = 'Historial'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Imprimeix descripcions'; $labels['parentcalendar'] = 'Insereix dins'; $labels['searchearlierdates'] = '« Cerca els esdeveniments d\'abans';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/cs_CZ.inc
Changed
@@ -8,7 +8,7 @@ */ $labels['default_view'] = 'Výchozí pohled'; $labels['time_format'] = 'Formát data'; -$labels['timeslots'] = 'Time slots per hour'; +$labels['timeslots'] = 'Míst v rozvrhu na hodinu'; $labels['first_day'] = 'První den v týdnu'; $labels['first_hour'] = 'První hodina k zobrazení'; $labels['workinghours'] = 'Pracovní hodiny'; @@ -25,6 +25,8 @@ $labels['afterdelete'] = 'Smazat zprávu'; $labels['afterflagdeleted'] = 'Označit jako smazané'; $labels['aftermoveto'] = 'Přesunout do...'; +$labels['itipoptions'] = 'Pozvání na událost'; +$labels['afteraction'] = 'Poté co jsou pozvání nebo aktualizace zprávy zpracovány'; $labels['calendar'] = 'Kalendář'; $labels['calendars'] = 'Kalendáře'; $labels['category'] = 'Kategorie'; @@ -50,11 +52,11 @@ $labels['title'] = 'Souhrn'; $labels['description'] = 'Popis'; $labels['all-day'] = 'celý den'; -$labels['export'] = 'Exportovat do ICS'; -$labels['exporttitle'] = 'Exportovat souhrn do ICS'; +$labels['export'] = 'Uložit jako ICS'; +$labels['exporttitle'] = 'Uložit jako iCalendar'; $labels['exportrange'] = 'Události od'; -$labels['exportattachments'] = 'With attachments'; -$labels['customdate'] = 'Custom date'; +$labels['exportattachments'] = 'S přílohami'; +$labels['customdate'] = 'Vlastní datum'; $labels['location'] = 'Místo'; $labels['url'] = 'URL'; $labels['date'] = 'Datum'; @@ -64,7 +66,7 @@ $labels['endtime'] = 'Čas konce'; $labels['repeat'] = 'Opakování'; $labels['selectdate'] = 'Vyberte datum'; -$labels['freebusy'] = 'Zobrazovat časový úsek jako'; +$labels['freebusy'] = 'Zobrazovat mě jako'; $labels['free'] = 'volno'; $labels['busy'] = 'obsazeno'; $labels['outofoffice'] = 'mimo kancelář'; @@ -73,33 +75,35 @@ $labels['status'] = 'Stav'; $labels['status-confirmed'] = 'Potvrzeno'; $labels['status-cancelled'] = 'Zrušeno'; -$labels['priority'] = 'Priorita'; +$labels['priority'] = 'Přednost'; $labels['sensitivity'] = 'Soukromí'; $labels['public'] = 'veřejné'; $labels['private'] = 'soukromé'; $labels['confidential'] = 'důvěrné'; +$labels['links'] = 'Odkaz'; $labels['alarms'] = 'Připomenutí'; $labels['comment'] = 'Poznámka'; $labels['created'] = 'Vytvořeno'; $labels['changed'] = 'Naposledy změněno'; -$labels['unknown'] = 'neznámý'; +$labels['unknown'] = 'Neznámý'; $labels['eventoptions'] = 'Volby'; -$labels['generated'] = 'vygenerováno'; +$labels['generated'] = 'vytvořeno'; $labels['eventhistory'] = 'Historie'; +$labels['removelink'] = 'Odstranit odkaz na e-mail'; $labels['printdescriptions'] = 'Vytisknout popisy'; $labels['parentcalendar'] = 'Vložit dovnitř'; $labels['searchearlierdates'] = '« Hledat dřívější události'; $labels['searchlaterdates'] = 'Hledat pozdější události »'; $labels['andnmore'] = 'dalších $nr...'; -$labels['togglerole'] = 'Klikněte k přepnutí role'; +$labels['togglerole'] = 'Klepněte k přepnutí role'; $labels['createfrommail'] = 'Uložit jako událost'; -$labels['importevents'] = 'Importovat události'; +$labels['importevents'] = 'Zavést události'; $labels['importrange'] = 'Události od'; $labels['onemonthback'] = '1 měsíc nazpátek'; $labels['nmonthsback'] = '$nr měsíců nazpátek'; -$labels['showurl'] = 'Ukázat URL kalendáře'; +$labels['showurl'] = 'Ukázat adresu (URL) kalendáře'; $labels['showurldescription'] = 'Tuto adresu použijte pro přístup (jen ke čtení) ke kalendáři z jiných aplikací. Můžete ji zkopírovat a vložit do jakéhokoli kalendářového softwaru, který podporuje formát iCal.'; -$labels['caldavurldescription'] = 'Copy this address to a <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> client application (e.g. Evolution or Mozilla Thunderbird) to fully synchronize this specific calendar with your computer or mobile device.'; +$labels['caldavurldescription'] = 'Zkopírujte tuto adresu do aplikace <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> klienta (např. Evolution nebo Mozilla Thunderbird) pro úplné synchronizování tohoto adresáře s vaším počítačem nebo mobilním zařízením.'; $labels['findcalendars'] = 'Najít kalendáře...'; $labels['searchterms'] = 'Hledané výrazy'; $labels['calsearchresults'] = 'Dostupné kalendáře'; @@ -125,7 +129,7 @@ $labels['weekofyear'] = 'Týden'; $labels['pastevents'] = 'Minulost'; $labels['futureevents'] = 'Budoucnost'; -$labels['showalarms'] = 'Show reminders'; +$labels['showalarms'] = 'Ukázat připomenutí'; $labels['defaultalarmtype'] = 'Výchozí nastavení připomenutí'; $labels['defaultalarmoffset'] = 'Výchozí čas připomenutí'; $labels['attendee'] = 'Účastník'; @@ -136,17 +140,17 @@ $labels['roleorganizer'] = 'Organizátor'; $labels['rolerequired'] = 'Povinný'; $labels['roleoptional'] = 'Nepovinný'; -$labels['rolechair'] = 'Chair'; -$labels['rolenonparticipant'] = 'Absent'; -$labels['cutypeindividual'] = 'Individual'; +$labels['rolechair'] = 'Předsednictví'; +$labels['rolenonparticipant'] = 'Nepřítomný'; +$labels['cutypeindividual'] = 'Jednotlivec'; $labels['cutypegroup'] = 'Skupina'; $labels['cutyperesource'] = 'Zdroj'; $labels['cutyperoom'] = 'Místnost'; -$labels['availfree'] = 'volno'; -$labels['availbusy'] = 'obsazeno'; -$labels['availunknown'] = 'neznámý'; -$labels['availtentative'] = 'nezávazně'; -$labels['availoutofoffice'] = 'mimo kancelář'; +$labels['availfree'] = 'Volno'; +$labels['availbusy'] = 'Obsazeno'; +$labels['availunknown'] = 'Neznámý'; +$labels['availtentative'] = 'Nezávazně'; +$labels['availoutofoffice'] = 'Mimo kancelář'; $labels['delegatedto'] = 'Pověřený:'; $labels['delegatedfrom'] = 'Pověřující:'; $labels['scheduletime'] = 'Najít dostupnost'; @@ -155,26 +159,33 @@ $labels['sendcancellation'] = 'Uvědomit účastníky o zrušení události'; $labels['onlyworkinghours'] = 'Najít dostupnost v mé pracovní době'; $labels['reqallattendees'] = 'Povinní/všichni účastníci'; -$labels['prevslot'] = 'Předchozí slot'; -$labels['nextslot'] = 'Další slot'; -$labels['noslotfound'] = 'Nelze najít volný slot'; +$labels['prevslot'] = 'Předchozí místo v rozvrhu'; +$labels['nextslot'] = 'Další místo v rozvrhu'; +$labels['suggestedslot'] = 'Navržené místo v rozvrhu'; +$labels['noslotfound'] = 'Nelze najít volné místo v rozvrhu'; $labels['invitationsubject'] = 'Byl(a) jste pozván(a) na událost "$title"'; -$labels['invitationmailbody'] = "*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees\n\nPodrobnosti o události najdete v přiloženém souboru typu iCalendar. Můžete si ho naimportovat do kalendářového programu."; +$labels['invitationmailbody'] = "*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees\n\nPodrobnosti o události najdete v přiloženém souboru typu iCalendar. Můžete si ho zavést do kalendářového programu."; $labels['invitationattendlinks'] = "Pokud váš poštovní klient nepodporuje pozvánky iTip, použijte prosím následující odkaz k potvrzení nebo odmítnutí pozvání:\n\$url"; $labels['eventupdatesubject'] = 'Událost "$title" byla aktualizována'; $labels['eventupdatesubjectempty'] = 'Událost, která se vás týká, byla aktualizována'; -$labels['eventupdatemailbody'] = "*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees\n\nPodrobnosti o aktualizované události najdete v přiloženém souboru typu iCalendar. Můžete si ho naimportovat do kalendářového programu."; +$labels['eventupdatemailbody'] = "*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees\n\nPodrobnosti o aktualizované události najdete v přiloženém souboru typu iCalendar. Můžete si ho zavést do kalendářového programu."; $labels['eventcancelsubject'] = 'Událost "$title" byla zrušena'; $labels['eventcancelmailbody'] = "*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees\n\nUdálost byla zrušena organizátorem (\$organizer).\n\nPodrobnosti najdete v přiloženém souboru ve formátu iCalendar."; +$labels['itipobjectnotfound'] = 'Událost, na který tato zpráva odkazuje, nebyl nalezen ve vašem kalendáři.'; $labels['itipmailbodyaccepted'] = "\$sender přijal(a) pozvání na tuto událost:\n\n*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees"; $labels['itipmailbodytentative'] = "\$sender nezávazně přijal(a) pozvání na tuto událost:\n\n*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees"; $labels['itipmailbodydeclined'] = "\$sender odmítl(a) pozvání na tuto událost:\n\n*\$title*\n\nKdy: \$date\n\nPozváni: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender odmítl vaši účast na následující události:\n\n*\$title*\n\nTermín: \$date"; +$labels['itipmailbodydelegated'] = "\$sender delegoval účast na následující události:\n\n*\$title*\n\nTermín: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender delegoval účast na následující události na vás:\n\n*\$title*\n\nTermín: \$date"; $labels['itipdeclineevent'] = 'Opravdu chcete odmítnout pozvání na tuto událost?'; $labels['declinedeleteconfirm'] = 'Chcete také ze svého kalendáře smazat tuto odmítnutou událost?'; $labels['itipcomment'] = 'Poznámka k pozvání/oznámení'; +$labels['itipcommenttitle'] = 'Tato poznámka bude připojena ke zprávě s pozváním/oznámením poslané účastníkům'; $labels['notanattendee'] = 'Nejste na seznamu účastníků této události'; $labels['eventcancelled'] = 'Tato událost byla zrušena'; $labels['saveincalendar'] = 'uložit do'; +$labels['updatemycopy'] = 'Aktualizovat v mém kalendáři'; $labels['savetocalendar'] = 'Uložit do kalenáře'; $labels['openpreview'] = 'Ověřit kalendář'; $labels['noearlierevents'] = 'Žádné dřívější události'; @@ -196,7 +207,7 @@ $labels['deleteventconfirm'] = 'Opravdu chcete smazat tuto událost?'; $labels['deletecalendarconfirm'] = 'Opravdu chcete smazat tento kalendář se všemi událostmi?'; $labels['deletecalendarconfirmrecursive'] = 'Do you really want to delete this calendar with all its events and sub-calendars?'; -$labels['savingdata'] = 'Ukládám data...'; +$labels['savingdata'] = 'Ukládají se data...'; $labels['errorsaving'] = 'Nelze uložit změny.'; $labels['operationfailed'] = 'Požavovaná operace selhala.'; $labels['invalideventdates'] = 'Vložená data nejsou platná! Zkontrolujte prosím zadávané údaje.'; @@ -205,7 +216,7 @@ $labels['successremoval'] = 'Událost byla úspěšně smazána.'; $labels['successrestore'] = 'Událost byla úspěšně obnovena.'; $labels['errornotifying'] = 'Nelze odeslat notifikace účastníkům události'; -$labels['errorimportingevent'] = 'Nelze naimportovat událost'; +$labels['errorimportingevent'] = 'Událost se nepodařilo zavést'; $labels['importwarningexists'] = 'Kopie této události již ve vašem kalendáři existuje.'; $labels['newerversionexists'] = 'Existuje již novější verze této události! Operace byla zrušena.'; $labels['nowritecalendarfound'] = 'Nebyl nalezen žádný kalendář, do kterého by šlo uložit tuto událost.'; @@ -216,29 +227,30 @@ $labels['itipresponseerror'] = 'Nelze odeslat odpověď na tuto pozvánku'; $labels['itipinvalidrequest'] = 'Tato pozvánka již není platná'; $labels['sentresponseto'] = 'Odpověď na pozvánku byla úspěšně odeslána na adresu $mailto'; -$labels['localchangeswarning'] = 'You are about to make changes that will only be reflected on your calendar and not be sent to the organizer of the event.'; -$labels['importsuccess'] = 'Úspěšně importováno $nr událostí'; -$labels['importnone'] = 'Nebyly nalezeny žádné události k importu'; -$labels['importerror'] = 'Při importu došlo k chybě'; +$labels['localchangeswarning'] = 'Chystáte se provést změny, které se projeví jen ve vašem vlastním kalendáři a nebudou poslány organizátorovi události.'; +$labels['importsuccess'] = 'Úspěšně zavedeno $nr událostí'; +$labels['importnone'] = 'Nebyly nalezeny žádné události k zavedení'; +$labels['importerror'] = 'Při zavádění došlo k chybě'; $labels['aclnorights'] = 'Nemáte administrátorská práva k tomuto kalendáři.'; $labels['changeeventconfirm'] = 'Změnit událost'; $labels['removeeventconfirm'] = 'Smazat událost'; $labels['changerecurringeventwarning'] = 'Toto je opakovaná událost. Chcete upravit jen toto konání, toto a všechna následující konání, úplně všechna konání nebo uložit událost jako novou?'; -$labels['currentevent'] = 'Aktuální'; +$labels['removerecurringeventwarning'] = 'Toto je opakovaná událost. Chcete smazat jen toto konání, toto a všechna následující konání, nebo úplně všechna konání?'; +$labels['currentevent'] = 'Nynější'; $labels['futurevents'] = 'Budoucí'; -$labels['allevents'] = 'Všechny'; +$labels['allevents'] = 'Vše';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/da_DK.inc
Changed
@@ -70,6 +70,7 @@ $labels['public'] = 'offentlig'; $labels['private'] = 'privat'; $labels['confidential'] = 'fortrolig'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Påmindelse'; $labels['comment'] = 'Comment'; $labels['created'] = 'Created'; @@ -77,6 +78,7 @@ $labels['unknown'] = 'Ukendt'; $labels['eventoptions'] = 'Tilvalg'; $labels['generated'] = 'oprettet per'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Udskriv beskrivelser'; $labels['parentcalendar'] = 'Indsæt indeni'; $labels['searchearlierdates'] = '« Søg efter tidligere arrangementer'; @@ -198,4 +200,5 @@ $labels['saveasnew'] = 'Gem som ny'; $labels['user'] = 'Bruger'; $labels['actiondelete'] = 'Slettet'; +$labels['compare'] = 'Sammenlign'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/de_DE.inc
Changed
@@ -74,12 +74,13 @@ $labels['mystatus'] = 'Mein Status'; $labels['status'] = 'Status'; $labels['status-confirmed'] = 'Bestätigt'; -$labels['status-cancelled'] = 'Gekündigt'; +$labels['status-cancelled'] = 'Abgesagt'; $labels['priority'] = 'Priorität'; $labels['sensitivity'] = 'Sichtbarkeit'; $labels['public'] = 'öffentlich'; $labels['private'] = 'privat'; $labels['confidential'] = 'vertraulich'; +$labels['links'] = 'Referenz'; $labels['alarms'] = 'Erinnerung'; $labels['comment'] = 'Kommentar'; $labels['created'] = 'Erstellt'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Optionen'; $labels['generated'] = 'erstellt am'; $labels['eventhistory'] = 'Historie'; +$labels['removelink'] = 'E-Mail-Referenz entfernen'; $labels['printdescriptions'] = 'Beschreibung drucken'; $labels['parentcalendar'] = 'Erstellen in'; $labels['searchearlierdates'] = '« Frühere Termine suchen'; @@ -110,7 +112,7 @@ $labels['nrcalendarsfound'] = '$nr Kalender gefunden'; $labels['quickview'] = 'Nur diesen Kalender anzeigen'; $labels['invitationspending'] = 'Ausstehende Einladungen'; -$labels['invitationsdeclined'] = 'Abgelehnte Einladunen'; +$labels['invitationsdeclined'] = 'Abgelehnte Einladungen'; $labels['changepartstat'] = 'Teilnehmerstatus ändern'; $labels['rsvpcomment'] = 'Einladungstext'; $labels['listrange'] = 'Angezeigter Bereich:'; @@ -174,6 +176,8 @@ $labels['itipmailbodytentative'] = "\$sender hat die Einladung mit Vorbehalt zum folgenden Termin angenommen:\n\n*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees"; $labels['itipmailbodydeclined'] = "\$sender hat die Einladung zum folgenden Termin abgelehnt:\n\n*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees"; $labels['itipmailbodycancel'] = "\$sender hat Deine Teilnahme bei der folgenden Veranstaltung zurückgewiesen:\n\n*\$title*\n\nam: \$date"; +$labels['itipmailbodydelegated'] = "\$sender hat die Teilnahme an folgendem Event delegiert:\n\n*\$title*\n\nWhen: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender hat die Teilnahme an folgendem Event an Sie delegiert:\n\n*\$title*\n\nWhen: \$date"; $labels['itipdeclineevent'] = 'Möchten Sie die Einladung zu diesem Termin ablehnen?'; $labels['declinedeleteconfirm'] = 'Soll der abgelehnte Termin zusätzlich aus dem Kalender gelöscht werden?'; $labels['itipcomment'] = 'Kommentar zur Einladungs-/Benachrichtigungsnachricht'; @@ -232,6 +236,7 @@ $labels['removeeventconfirm'] = 'Ereignis löschen'; $labels['changerecurringeventwarning'] = 'Dies ist eine Terminreihe. Möchten Sie nur den aktuellen, diesen und alle zukünftigen oder alle Termine bearbeiten oder die Änderungen als neuen Termin speichern?'; $labels['removerecurringeventwarning'] = 'Dies ist ein wiederkehrender Termin. Wollen Sie nur diesen Termin bearbeiten oder alle zukünftigen Vorkommen? Alternativ können auch alle Vorkommen bearbeitet werden.'; +$labels['removerecurringallonly'] = 'Dieses ist ein wiederkehrender Termin. Als ein Teilnehmer können Sie nur den gesamten Termin inklusive aller Wiederholungen löschen.'; $labels['currentevent'] = 'Aktuellen'; $labels['futurevents'] = 'Zukünftige'; $labels['allevents'] = 'Alle';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/es_ES.inc
Changed
@@ -70,6 +70,7 @@ $labels['public'] = 'public'; $labels['private'] = 'private'; $labels['confidential'] = 'confidential'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Reminder'; $labels['comment'] = 'Comentario'; $labels['created'] = 'Created'; @@ -77,6 +78,7 @@ $labels['unknown'] = 'Unknown'; $labels['eventoptions'] = 'Opciones'; $labels['generated'] = 'generated at'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Print descriptions'; $labels['parentcalendar'] = 'Insert inside'; $labels['searchearlierdates'] = '« Search for earlier events';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/et_EE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/et_EE.inc
Changed
@@ -70,12 +70,14 @@ $labels['public'] = 'public'; $labels['private'] = 'private'; $labels['confidential'] = 'confidential'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Reminder'; $labels['comment'] = 'Kommentaar'; $labels['created'] = 'Created'; $labels['changed'] = 'Last Modified'; $labels['unknown'] = 'Unknown'; $labels['generated'] = 'generated at'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Print descriptions'; $labels['parentcalendar'] = 'Insert inside'; $labels['searchearlierdates'] = '« Search for earlier events';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/fi_FI.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/fi_FI.inc
Changed
@@ -24,6 +24,7 @@ $labels['afterflagdeleted'] = 'Merkitse poistettavaksi'; $labels['aftermoveto'] = 'Siirrä...'; $labels['itipoptions'] = 'Tapahtuman kutsut'; +$labels['afteraction'] = 'Kun kutsu tai päivitysviesti on käsitelty'; $labels['calendar'] = 'Kalenteri'; $labels['calendars'] = 'Kalenterit'; $labels['category'] = 'Luokka'; @@ -77,6 +78,7 @@ $labels['public'] = 'julkinen'; $labels['private'] = 'yksityinen'; $labels['confidential'] = 'luottamuksellinen'; +$labels['links'] = 'Viittaus'; $labels['alarms'] = 'Muistutus'; $labels['comment'] = 'Kommentti'; $labels['created'] = 'Luotu'; @@ -85,6 +87,7 @@ $labels['eventoptions'] = 'Valinnat'; $labels['generated'] = 'generoitu'; $labels['eventhistory'] = 'Historia'; +$labels['removelink'] = 'Poista sähköpostiviittaus'; $labels['printdescriptions'] = 'Tulosta kuvaukset'; $labels['searchearlierdates'] = '« Etsi aiempia tapahtumia'; $labels['searchlaterdates'] = 'Etsi myöhempiä tapahtumia »'; @@ -228,6 +231,8 @@ $labels['changeeventconfirm'] = 'Vaihda tapahtuma'; $labels['removeeventconfirm'] = 'Poista tapahtuma'; $labels['changerecurringeventwarning'] = 'Tämä on tuistuva tapahtuma. Haluatko muokata vain tätä ajankohtaa, tätä ja tulevia tapahtuman ajankohtia, kaikkia tapahtuman ajankohtia vai tallentaa kokonaan uutena tapahtumana? '; +$labels['removerecurringeventwarning'] = 'Tämä on toistuva tapahtuma. Haluatko poistaa vain nykyisen tapahtuman, nykyisen tapahtuman ja tulevaisuuden tapahtumat vai kaikki tapahtumaan liittyvät merkinnät?'; +$labels['removerecurringallonly'] = 'Tämä on toistuva tapahtuma. Osallistujana voit poistaa vain koko tapahtuman kaikkine toistumiskertoineen.'; $labels['currentevent'] = 'Nykyinen'; $labels['futurevents'] = 'Tulevat'; $labels['allevents'] = 'Kaikki'; @@ -252,6 +257,7 @@ $labels['eventnotfound'] = 'Tapahtumadatan lataus epäonnistui'; $labels['eventchangelognotavailable'] = 'Tapahtuman muutoshistoria ei ole saatavilla'; $labels['eventdiffnotavailable'] = 'Vertailu ei ole saatavilla valittujen versioiden välillä'; +$labels['eventrestoreconfirm'] = 'Haluatko varmasti palauttaa tämän tapahtuman version $rev? Nykyinen tapahtuma korvataan vanhalla versiolla.'; $labels['arialabelminical'] = 'Kalenterin ajankohdan valinta'; $labels['arialabelcalendarview'] = 'Kalenterinäkymä'; $labels['arialabelsearchform'] = 'Tapahtumahaun lomake';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/fr_FR.inc
Changed
@@ -80,6 +80,7 @@ $labels['public'] = 'publique'; $labels['private'] = 'privée'; $labels['confidential'] = 'Confidentiel'; +$labels['links'] = 'Référence'; $labels['alarms'] = 'Rappel'; $labels['comment'] = 'Commentaire'; $labels['created'] = 'Créée'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Options'; $labels['generated'] = 'généré à'; $labels['eventhistory'] = 'Historique'; +$labels['removelink'] = 'Enlever référence d\'e-mail'; $labels['printdescriptions'] = 'Imprimer les descriptions'; $labels['parentcalendar'] = 'Ajouter à l\'intérieur'; $labels['searchearlierdates'] = '« Chercher des évènements plus ancien';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/hu_HU.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/hu_HU.inc
Changed
@@ -71,12 +71,14 @@ $labels['public'] = 'publikus'; $labels['private'] = 'privát'; $labels['confidential'] = 'titkos'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Emlékeztető'; $labels['comment'] = 'Megjegyzés'; $labels['created'] = 'Created'; $labels['changed'] = 'Last Modified'; $labels['unknown'] = 'Ismeretlen foglaltság'; $labels['generated'] = 'készítve:'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Leírás nyomtatása'; $labels['parentcalendar'] = 'Szülőnaptár'; $labels['searchearlierdates'] = '< Korábbi események keresése';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/it_IT.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/it_IT.inc
Changed
@@ -80,6 +80,7 @@ $labels['public'] = 'pubblico'; $labels['private'] = 'privato'; $labels['confidential'] = 'confidenziale'; +$labels['links'] = 'Riferimento'; $labels['alarms'] = 'Promemoria'; $labels['comment'] = 'Commento'; $labels['created'] = 'Creato'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Opzioni'; $labels['generated'] = 'generato il'; $labels['eventhistory'] = 'Storico'; +$labels['removelink'] = 'Rimuovi riferimento email'; $labels['printdescriptions'] = 'Stampa descrizioni'; $labels['parentcalendar'] = 'Inserisci dentro'; $labels['searchearlierdates'] = '« Cerca eventi precedenti';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/ja_JP.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/ja_JP.inc
Changed
@@ -70,6 +70,7 @@ $labels['public'] = 'パブリック'; $labels['private'] = 'プライベート'; $labels['confidential'] = '親展'; +$labels['links'] = 'Reference'; $labels['alarms'] = '通知'; $labels['comment'] = 'Comment'; $labels['created'] = 'Created'; @@ -77,6 +78,7 @@ $labels['unknown'] = '不明'; $labels['eventoptions'] = 'オプション'; $labels['generated'] = '生成'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = '説明印刷'; $labels['parentcalendar'] = '内に挿入'; $labels['searchearlierdates'] = '<< 以前のイベントを検索';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/nl_NL.inc
Changed
@@ -71,6 +71,7 @@ $labels['public'] = 'publiek'; $labels['private'] = 'prive'; $labels['confidential'] = 'vertrouwelijk'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Herinnering'; $labels['comment'] = 'Opmerking'; $labels['created'] = 'Created'; @@ -78,6 +79,7 @@ $labels['unknown'] = 'Onbekend'; $labels['eventoptions'] = 'Opties'; $labels['generated'] = 'gegenereerd op'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Print beschrijvingen'; $labels['parentcalendar'] = 'Voeg toe in'; $labels['searchearlierdates'] = '« Zoek voor eerdere afspraken';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/pl.inc
Added
@@ -0,0 +1,103 @@ +<?php +/** + * Localizations for Kolab Calendar plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ + */ +$labels['default_view'] = 'Domyślny widok'; +$labels['time_format'] = 'Format czasu'; +$labels['first_day'] = 'Pierwszy dzień tygodnia'; +$labels['first_hour'] = 'Pierwsza godzina do wyświetlenia'; +$labels['workinghours'] = 'Godziny pracy'; +$labels['add_category'] = 'Dodaj kategorię'; +$labels['remove_category'] = 'Usuń kategorię'; +$labels['afternothing'] = 'Nie rób nic'; +$labels['aftertrash'] = 'Przenieś do kosza'; +$labels['afterdelete'] = 'Usuń wiadomość'; +$labels['afterflagdeleted'] = 'Oznacz jako usunięte'; +$labels['aftermoveto'] = 'Przenieś do...'; +$labels['calendar'] = 'Kalendarz'; +$labels['calendars'] = 'Kalendarze'; +$labels['category'] = 'Kategoria'; +$labels['categories'] = 'Kategorie'; +$labels['createcalendar'] = 'Utwórz nowy kalendarz'; +$labels['editcalendar'] = 'Edytuj właściwości kalendarza'; +$labels['name'] = 'Nazwa'; +$labels['color'] = 'Kolor'; +$labels['day'] = 'Dzień'; +$labels['week'] = 'Tydzień'; +$labels['month'] = 'Miesiąc'; +$labels['new'] = 'Nowy'; +$labels['new_event'] = 'Nowe zdarzenie'; +$labels['edit_event'] = 'Edytuj zdarzenie'; +$labels['edit'] = 'Edytuj'; +$labels['save'] = 'Zapisz'; +$labels['removelist'] = 'Usuń z listy'; +$labels['cancel'] = 'Anuluj'; +$labels['print'] = 'Drukuj'; +$labels['printtitle'] = 'Drukuj kalendarze'; +$labels['title'] = 'Podsumowanie'; +$labels['description'] = 'Opis'; +$labels['export'] = 'Eksport'; +$labels['exporttitle'] = 'Eksport do iCalendar'; +$labels['url'] = 'URL'; +$labels['date'] = 'Data'; +$labels['start'] = 'Start'; +$labels['end'] = 'Koniec'; +$labels['repeat'] = 'Powtórz'; +$labels['selectdate'] = 'Wybierz datę'; +$labels['free'] = 'Wolny'; +$labels['busy'] = 'Zajęty'; +$labels['outofoffice'] = 'Poza biurem'; +$labels['status-cancelled'] = 'Anulowane'; +$labels['priority'] = 'Priorytet'; +$labels['sensitivity'] = 'Prywatność'; +$labels['created'] = 'Utworzone'; +$labels['changed'] = 'Ostatnia modyfikacja'; +$labels['unknown'] = 'Nieznane'; +$labels['eventoptions'] = 'Opcje'; +$labels['eventhistory'] = 'Historia'; +$labels['andnmore'] = '$nr więcej...'; +$labels['createfrommail'] = 'Zapisz jako zdarzenie'; +$labels['importevents'] = 'Importuj zdarzenia'; +$labels['showurl'] = 'Pokaż URL kalendarza'; +$labels['calsearchresults'] = 'Dostępne Kalendarze'; +$labels['nocalendarsfound'] = 'Nie znaleziono kalendarzy'; +$labels['quickview'] = 'Pokaż tylko ten kalendarz'; +$labels['today'] = 'Dzisiaj'; +$labels['tomorrow'] = 'Jutro'; +$labels['thisweek'] = 'Ten tydzień'; +$labels['nextweek'] = 'Następny tydzień'; +$labels['prevweek'] = 'Poprzedni tydzień'; +$labels['thismonth'] = 'Ten miesiąc'; +$labels['nextmonth'] = 'Następny miesiąc'; +$labels['weekofyear'] = 'Tydzień'; +$labels['rolerequired'] = 'Wymagane'; +$labels['availfree'] = 'Wolny'; +$labels['availbusy'] = 'Zajęty'; +$labels['availunknown'] = 'Nieznane'; +$labels['availoutofoffice'] = 'Poza biurem'; +$labels['saveincalendar'] = 'zapisz w'; +$labels['savetocalendar'] = 'Zapisz w kalendarzu'; +$labels['openpreview'] = 'Sprawdź kalendarz'; +$labels['noearlierevents'] = 'Brak wcześniejszych zdarzeń'; +$labels['nolaterevents'] = 'Brak późniejszych zdarzeń'; +$labels['resourcedetails'] = 'Szczegóły'; +$labels['resourceavailability'] = 'Dostępność'; +$labels['resourceowner'] = 'Właściciel'; +$labels['tabsummary'] = 'Podsumowanie'; +$labels['deleteobjectconfirm'] = 'Czy na pewno chcesz usunąć to zdarzenie?'; +$labels['deleteventconfirm'] = 'Czy na pewno chcesz usunąć to zdarzenie?'; +$labels['deletecalendarconfirm'] = 'Czy na pewno chcesz usunąć ten kalendarz i wszystkie jego zdarzenia?'; +$labels['changeeventconfirm'] = 'Zmodyfikuj zdarzenie'; +$labels['removeeventconfirm'] = 'Usuń zdarzenie'; +$labels['allevents'] = 'Wszystko'; +$labels['saveasnew'] = 'Zapisz jako nowy'; +$labels['birthdays'] = 'Urodziny'; +$labels['birthdayscalendar'] = 'Kalendarz urodzin'; +$labels['displaybirthdayscalendar'] = 'Wyświetl kalendarz urodzin'; +$labels['birthdayage'] = 'Wiek $age'; +$labels['user'] = 'Użytkownik'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/pl_PL.inc
Changed
@@ -44,7 +44,7 @@ $labels['edit_event'] = 'Edytuj zdarzenie'; $labels['edit'] = 'Edytuj'; $labels['save'] = 'Zapisz'; -$labels['removelist'] = 'Remove from list'; +$labels['removelist'] = 'Usuń z listy'; $labels['cancel'] = 'Anuluj'; $labels['select'] = 'Wybierz'; $labels['print'] = 'Drukuj'; @@ -80,6 +80,7 @@ $labels['public'] = 'publiczny'; $labels['private'] = 'prywatny'; $labels['confidential'] = 'poufny'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Przypomnienie'; $labels['comment'] = 'Komentarz'; $labels['created'] = 'Utworzono'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Opcje'; $labels['generated'] = 'wygenerowano'; $labels['eventhistory'] = 'Historia'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Drukuj opisy'; $labels['parentcalendar'] = 'Wstaw wewnątrz'; $labels['searchearlierdates'] = '« Szukaj wcześniejszych zdarzeń'; @@ -127,7 +129,7 @@ $labels['weekofyear'] = 'Tydzień'; $labels['pastevents'] = 'Przeszłe'; $labels['futureevents'] = 'Przyszłe'; -$labels['showalarms'] = 'Show reminders'; +$labels['showalarms'] = 'Pokaż powiadomienia'; $labels['defaultalarmtype'] = 'Domyślne powiadomienie'; $labels['defaultalarmoffset'] = 'Domyślny czas powiadomienia'; $labels['attendee'] = 'Uczestnik'; @@ -139,7 +141,7 @@ $labels['rolerequired'] = 'Wymagany'; $labels['roleoptional'] = 'Opcjonalny'; $labels['rolechair'] = 'Przewodniczący'; -$labels['rolenonparticipant'] = 'Absent'; +$labels['rolenonparticipant'] = 'Nieobecny'; $labels['cutypeindividual'] = 'Osoba'; $labels['cutypegroup'] = 'Grupa'; $labels['cutyperesource'] = 'Zasób'; @@ -183,6 +185,9 @@ $labels['saveincalendar'] = 'zapisz w'; $labels['updatemycopy'] = 'Uaktualnij w moim kalendarzu'; $labels['savetocalendar'] = 'Zapisz do kalendarza'; +$labels['openpreview'] = 'Sprawdź kalendarz'; +$labels['noearlierevents'] = 'Brak wcześniejszych zdarzeń'; +$labels['nolaterevents'] = '« Brak póżniejszych zdarzeń'; $labels['resource'] = 'Zasób'; $labels['addresource'] = 'Rezerwuj zasób'; $labels['findresources'] = 'Wyszukaj zasoby'; @@ -226,17 +231,20 @@ $labels['importerror'] = 'Wystąpił błąd podczas importu.'; $labels['aclnorights'] = 'Nie masz uprawnień administracyjnych dla tego kalendarza.'; $labels['changeeventconfirm'] = 'Zmień zdarzenie'; +$labels['removeeventconfirm'] = 'Usuń zdarzenie'; $labels['changerecurringeventwarning'] = 'To jest zdarzenie powtarzalne. Czy chcesz zmienić bieżące zdarzenie, bieżące i przyszłe, wszystkie, a może zapisać je jako nowe zdarzenie?'; +$labels['removerecurringeventwarning'] = 'Jest to zdarzenie cykliczne. Czy chcesz usunąć wyłącznie bieżące zdarzenie i jego przyszłe wystąpienia, czy wszystkie wystąpienia tego zdarzenia?'; +$labels['removerecurringallonly'] = 'Jest to zdarzenie cykliczne. Jako uczestnik, możesz jedynie usunąć całe zdarzenie ze wszystkimi jego wystąpieniami.'; $labels['currentevent'] = 'Bieżące'; $labels['futurevents'] = 'Przyszłe'; $labels['allevents'] = 'Wszystkie'; $labels['saveasnew'] = 'Zapisz jako nowe'; -$labels['birthdays'] = 'Birthdays'; -$labels['birthdayscalendar'] = 'Birthdays Calendar'; -$labels['displaybirthdayscalendar'] = 'Display birthdays calendar'; -$labels['birthdayscalendarsources'] = 'From these address books'; -$labels['birthdayeventtitle'] = '$name\'s Birthday'; -$labels['birthdayage'] = 'Age $age'; +$labels['birthdays'] = 'Uruodziny'; +$labels['birthdayscalendar'] = 'Kalendarz Urodzin'; +$labels['displaybirthdayscalendar'] = 'Wyświetl kalendarz urodzin'; +$labels['birthdayscalendarsources'] = 'Z tych książek adresowych'; +$labels['birthdayeventtitle'] = 'Urodziny $name\'s'; +$labels['birthdayage'] = 'Wiek $age'; $labels['eventchangelog'] = 'Historia zmian'; $labels['eventdiff'] = 'Zmiany od wersji $rev'; $labels['revision'] = 'Wersja';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/pt_BR.inc
Changed
@@ -71,6 +71,7 @@ $labels['public'] = 'público'; $labels['private'] = 'privado'; $labels['confidential'] = 'confidencial'; +$labels['links'] = 'Reference'; $labels['alarms'] = 'Lembrete'; $labels['comment'] = 'Comentário'; $labels['created'] = 'Created'; @@ -78,6 +79,7 @@ $labels['unknown'] = 'Desconhecido'; $labels['eventoptions'] = 'Opções'; $labels['generated'] = 'gerado em'; +$labels['removelink'] = 'Remove email reference'; $labels['printdescriptions'] = 'Descrições de impressão'; $labels['parentcalendar'] = 'Inserir dentro'; $labels['searchearlierdates'] = '« Procurar por eventos anteriores';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/pt_PT.inc
Added
@@ -0,0 +1,275 @@ +<?php +/** + * Localizations for Kolab Calendar plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ + */ +$labels['default_view'] = 'Visualização padrão'; +$labels['time_format'] = 'Formato da hora'; +$labels['timeslots'] = 'Entradas por hora'; +$labels['first_day'] = 'Primeiro dia da semana'; +$labels['first_hour'] = 'Primeira hora a mostrar'; +$labels['workinghours'] = 'Horário de trabalho'; +$labels['add_category'] = 'Adicionar categoria'; +$labels['remove_category'] = 'Remover categoria'; +$labels['defaultcalendar'] = 'Criar novos eventos em'; +$labels['eventcoloring'] = 'Cores dos eventos'; +$labels['coloringmode0'] = 'De acordo com o calendário'; +$labels['coloringmode1'] = 'De acordo com a categoria'; +$labels['coloringmode2'] = 'Calendário para esboço, categoria para conteúdo'; +$labels['coloringmode3'] = 'Categoria para esboço, calendário para conteúdo'; +$labels['afternothing'] = 'Manter'; +$labels['aftertrash'] = 'Enviar para o lixo'; +$labels['afterdelete'] = 'Eliminar a mensagem'; +$labels['afterflagdeleted'] = 'Marcar como eliminada'; +$labels['aftermoveto'] = 'Mover para...'; +$labels['itipoptions'] = 'Convites de eventos'; +$labels['afteraction'] = 'Depois do processamento de um convite ou mensagem de alteração'; +$labels['calendar'] = 'Calendário'; +$labels['calendars'] = 'Calendários'; +$labels['category'] = 'Categoria'; +$labels['categories'] = 'Categorias'; +$labels['createcalendar'] = 'Criar um novo calendário'; +$labels['editcalendar'] = 'Alterar propriedades do calendário'; +$labels['name'] = 'Nome'; +$labels['color'] = 'Cor'; +$labels['day'] = 'Dia'; +$labels['week'] = 'Semana'; +$labels['month'] = 'Mês'; +$labels['agenda'] = 'Agenda'; +$labels['new'] = 'Novo'; +$labels['new_event'] = 'Novo evento'; +$labels['edit_event'] = 'Alterar evento'; +$labels['edit'] = 'Alterar'; +$labels['save'] = 'Guardar'; +$labels['removelist'] = 'Remover da lista'; +$labels['cancel'] = 'Cancelar'; +$labels['select'] = 'Selecionar'; +$labels['print'] = 'Imprimir'; +$labels['printtitle'] = 'Imprimir calendários'; +$labels['title'] = 'Sumário'; +$labels['description'] = 'Descrição'; +$labels['all-day'] = 'dia todo'; +$labels['export'] = 'Exportar'; +$labels['exporttitle'] = 'Exportar para iCalendar'; +$labels['exportrange'] = 'Eventos de'; +$labels['exportattachments'] = 'Incluir anexos'; +$labels['customdate'] = 'Definir data'; +$labels['location'] = 'Local'; +$labels['url'] = 'Endereço web'; +$labels['date'] = 'Data'; +$labels['start'] = 'Início'; +$labels['starttime'] = 'Hora de início'; +$labels['end'] = 'Fim'; +$labels['endtime'] = 'Hora de fim'; +$labels['repeat'] = 'Repetir'; +$labels['selectdate'] = 'Escolher data'; +$labels['freebusy'] = 'Mostrar-me como'; +$labels['free'] = 'Livre'; +$labels['busy'] = 'Ocupado'; +$labels['outofoffice'] = 'Ausente'; +$labels['tentative'] = 'Tentativa'; +$labels['mystatus'] = 'O meu estado'; +$labels['status'] = 'Estado'; +$labels['status-confirmed'] = 'Confirmado'; +$labels['status-cancelled'] = 'Cancelado'; +$labels['priority'] = 'Prioridade'; +$labels['sensitivity'] = 'Privacidade'; +$labels['public'] = 'público'; +$labels['private'] = 'privado'; +$labels['confidential'] = 'confidencial'; +$labels['links'] = 'Referência'; +$labels['alarms'] = 'Lembrete'; +$labels['comment'] = 'Comentário'; +$labels['created'] = 'Criado em'; +$labels['changed'] = 'Alterado em'; +$labels['unknown'] = 'Desconhecido'; +$labels['eventoptions'] = 'Opções'; +$labels['generated'] = 'produzido a'; +$labels['eventhistory'] = 'Histórico'; +$labels['removelink'] = 'Remover referência de email '; +$labels['printdescriptions'] = 'Descrições de impressão'; +$labels['parentcalendar'] = 'Inserir dentro'; +$labels['searchearlierdates'] = '« Procurar eventos anteriores'; +$labels['searchlaterdates'] = 'Procurar eventos posteriores »'; +$labels['andnmore'] = '$nr mais...'; +$labels['togglerole'] = 'Clique para alternar o papel'; +$labels['createfrommail'] = 'Salvar como evento'; +$labels['importevents'] = 'Importar eventos'; +$labels['importrange'] = 'Eventos de'; +$labels['onemonthback'] = '1 mês atrás'; +$labels['nmonthsback'] = '$nr meses atrás'; +$labels['showurl'] = 'Mostrar URL do calendário'; +$labels['showurldescription'] = 'Use o seguinte endereço para obter acesso (somente leitura) ao seu calendário com outras aplicações. Para isso pode copiar e colar este endereço em qualquer software que suporte o formato iCal.'; +$labels['caldavurldescription'] = 'Para sincronizar este calendário com o seu computador ou dispositivos móveis deverá copiar este endereço <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> para a aplicação cliente. (ex. Evolution ou Mozilla Thunderbird)'; +$labels['findcalendars'] = 'Procurar calendários...'; +$labels['searchterms'] = 'Procurar termos'; +$labels['calsearchresults'] = 'Calendários disponíveis'; +$labels['calendarsubscribe'] = 'Listar sempre'; +$labels['nocalendarsfound'] = 'Não foram encontrados calendários'; +$labels['nrcalendarsfound'] = '$nr calendários encontrados'; +$labels['quickview'] = 'Só mostrar este calendário'; +$labels['invitationspending'] = 'Convites pendentes'; +$labels['invitationsdeclined'] = 'Convites recusados'; +$labels['changepartstat'] = 'Mudar estado de participante'; +$labels['rsvpcomment'] = 'Mensagem de convite'; +$labels['listrange'] = 'Intervalo para exibir:'; +$labels['listsections'] = 'Dividir em:'; +$labels['smartsections'] = 'Seções inteligentes'; +$labels['until'] = 'até'; +$labels['today'] = 'Hoje'; +$labels['tomorrow'] = 'Amanhã'; +$labels['thisweek'] = 'Esta semana'; +$labels['nextweek'] = 'Próxima semana'; +$labels['prevweek'] = 'Semana anterior'; +$labels['thismonth'] = 'Este mês'; +$labels['nextmonth'] = 'Próximo mês'; +$labels['weekofyear'] = 'Semana'; +$labels['pastevents'] = 'Passado'; +$labels['futureevents'] = 'Futuro'; +$labels['showalarms'] = 'Mostrar lembretes'; +$labels['defaultalarmtype'] = 'Configuração padrão de lembrete'; +$labels['defaultalarmoffset'] = 'Horário padrão de lembrete'; +$labels['attendee'] = 'Participante'; +$labels['role'] = 'Papel'; +$labels['availability'] = 'Disp.'; +$labels['confirmstate'] = 'Estado'; +$labels['addattendee'] = 'Adicionar participante'; +$labels['roleorganizer'] = 'Organizador'; +$labels['rolerequired'] = 'Obrigatório'; +$labels['roleoptional'] = 'Facultativo'; +$labels['rolechair'] = 'Responsável'; +$labels['rolenonparticipant'] = 'Ausente'; +$labels['cutypeindividual'] = 'Individual'; +$labels['cutypegroup'] = 'Grupo'; +$labels['cutyperesource'] = 'Recurso'; +$labels['cutyperoom'] = 'Sala'; +$labels['availfree'] = 'Disponível'; +$labels['availbusy'] = 'Ocupado'; +$labels['availunknown'] = 'Desconhecido'; +$labels['availtentative'] = 'Tentativa'; +$labels['availoutofoffice'] = 'Ausente'; +$labels['delegatedto'] = 'Delegado a:'; +$labels['delegatedfrom'] = 'Delegado de:'; +$labels['scheduletime'] = 'Procurar disponibilidade'; +$labels['sendinvitations'] = 'Enviar convites'; +$labels['sendnotifications'] = 'Avisar os participantes sobre as alterações'; +$labels['sendcancellation'] = 'Avisar os participantes sobre o cancelamento do evento'; +$labels['onlyworkinghours'] = 'Procurar disponibilidade dentro do meu horário de trabalho'; +$labels['reqallattendees'] = 'Necessário/todos os participantes'; +$labels['prevslot'] = 'Espaço anterior'; +$labels['nextslot'] = 'Próximo espaço'; +$labels['suggestedslot'] = 'Espaço sugerido'; +$labels['noslotfound'] = 'Incapaz de encontrar um horário disponível'; +$labels['invitationsubject'] = 'Foi convidado para "$title"'; +$labels['invitationmailbody'] = "*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees\n\nSegue em anexo um arquivo iCalendar com todos os detalhes de um evento, o qual pode importar para o seu calendário."; +$labels['invitationattendlinks'] = "No caso do seu cliente de e-mail não suportar pedidos do tipo iTIP, pode usar o seguinte link para aceitar ou recusar este convite:\n\$url"; +$labels['eventupdatesubject'] = '"$title" foi atualizado.'; +$labels['eventupdatesubjectempty'] = 'Um evento do seu interesse foi atualizado'; +$labels['eventupdatemailbody'] = "*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees\n\nSegue em anexo um arquivo iCalendar atualizado com os detalhes de um evento, o qual pode importar para o seu calendário."; +$labels['eventcancelsubject'] = '"$title" foi cancelado.'; +$labels['eventcancelmailbody'] = "*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees\n\nO evento foi cancelado por \$organizer.\n\nSegue em anexo um arquivo iCalendar com os detalhes atualizados do evento."; +$labels['itipobjectnotfound'] = 'O evento citado nesta mensagem não foi encontrado no seu calendário.'; +$labels['itipmailbodyaccepted'] = "\$sender aceitou o convite para o seguinte evento:\n\n*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender aceitou o convite como \"tentativa\" para o seguinte evento:\n\n*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender recusou o convite para o seguinte evento:\n\n*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender rejeitou a sua participação no seguinte evento:\n\n*\$title*\n\nQuando: \$date"; +$labels['itipmailbodydelegated'] = "\$sender delegou a participação no seguinte evento:\n\n*\$title*\n\nWhen: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender delegou a sua participação no seguinte evento:\n\n*\$title*\n\nWhen: \$date"; +$labels['itipdeclineevent'] = 'Deseja recusar o convite para este evento?'; +$labels['declinedeleteconfirm'] = 'Também deseja apagar o evento recusado do seu calendário?'; +$labels['itipcomment'] = 'Observações — Convite/notificação'; +$labels['itipcommenttitle'] = 'Estas observações serão enviadas com o convite/notificação aos participantes.'; +$labels['notanattendee'] = 'Não está listado como participante neste evento'; +$labels['eventcancelled'] = 'O evento foi cancelado'; +$labels['saveincalendar'] = 'guardar em'; +$labels['updatemycopy'] = 'Atualizar no meu calendário'; +$labels['savetocalendar'] = 'Guardar no calendário'; +$labels['openpreview'] = 'Verificar calendário'; +$labels['noearlierevents'] = 'Sem eventos anteriores'; +$labels['nolaterevents'] = 'Sem eventos posteriores'; +$labels['resource'] = 'Recurso'; +$labels['addresource'] = 'Livro de recursos'; +$labels['findresources'] = 'Encontrar recursos'; +$labels['resourcedetails'] = 'Detalhes'; +$labels['resourceavailability'] = 'Disponibilidade'; +$labels['resourceowner'] = 'Dono'; +$labels['resourceadded'] = 'O recurso foi adicionado ao seu evento';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/ru_RU.inc
Changed
@@ -80,6 +80,7 @@ $labels['public'] = 'общедоступная'; $labels['private'] = 'личная'; $labels['confidential'] = 'конфиденциальная'; +$labels['links'] = 'Ссылка'; $labels['alarms'] = 'Напоминание'; $labels['comment'] = 'Комментарий'; $labels['created'] = 'Создана'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Опции'; $labels['generated'] = 'создан'; $labels['eventhistory'] = 'История'; +$labels['removelink'] = 'Удалить ссылку на письмо'; $labels['printdescriptions'] = 'Печатать описания'; $labels['parentcalendar'] = 'Вставить внутри'; $labels['searchearlierdates'] = '« Искать события раньше'; @@ -234,6 +236,7 @@ $labels['removeeventconfirm'] = 'Удалить событие'; $labels['changerecurringeventwarning'] = 'Это - повторяющееся событие. Хотели бы Вы редактировать только текущее событие, это и все будущие повторения, все события или сохранять его как новое событие?'; $labels['removerecurringeventwarning'] = 'Это - повторяющееся событие. Хотели бы Вы удалить только текущее событие, это и все будущие события или все эти события?'; +$labels['removerecurringallonly'] = 'Это - повторяющееся событие. Как участник, Вы можете удалить всё событие вместе с всеми повторениями.'; $labels['currentevent'] = 'Текущее'; $labels['futurevents'] = 'Будущие'; $labels['allevents'] = 'Все';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/sk.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/sk.inc
Changed
@@ -6,7 +6,22 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ */ +$labels['default_view'] = 'Prednastavené zobrazenie'; +$labels['time_format'] = 'Formát času'; +$labels['timeslots'] = 'Časových úsekov za hodinu'; +$labels['first_day'] = 'Prvý deň v týždni'; +$labels['first_hour'] = 'Prvá hodina na zobrazenie'; +$labels['workinghours'] = 'Pracovný čas'; +$labels['add_category'] = 'Pridať kategóriu'; +$labels['remove_category'] = 'Odstrániť kategóriu'; +$labels['defaultcalendar'] = 'Vytvoriť novú udalosť v'; +$labels['eventcoloring'] = 'Farba udalosti'; +$labels['afternothing'] = 'Neurobiť nič'; +$labels['aftertrash'] = 'Presunúť do koša'; +$labels['afterdelete'] = 'Vymazať správu'; +$labels['afterflagdeleted'] = 'Označiť ako vymazané'; $labels['aftermoveto'] = 'Presunúť do...'; +$labels['itipoptions'] = 'Pozvánky na udalosť'; $labels['calendar'] = 'Kalendár'; $labels['calendars'] = 'Kalendáre'; $labels['category'] = 'Kategória'; @@ -24,5 +39,44 @@ $labels['edit_event'] = 'Upraviť udalosť'; $labels['edit'] = 'Upraviť'; $labels['save'] = 'Uložiť'; +$labels['removelist'] = 'Odstrániť zo zoznamu'; +$labels['cancel'] = 'Zrušiť'; +$labels['select'] = 'Vybrať'; +$labels['print'] = 'Vytlačiť'; +$labels['printtitle'] = 'Vytlačiť kalendáre'; +$labels['title'] = 'Sumár'; +$labels['description'] = 'Popis'; +$labels['all-day'] = 'celý deň'; +$labels['export'] = 'Exportovať'; +$labels['exporttitle'] = 'Exportovať do iCalendar'; +$labels['exportrange'] = 'Udalosti z'; +$labels['exportattachments'] = 'S prílohami'; +$labels['customdate'] = 'Používateľský dátum'; +$labels['location'] = 'Poloha'; +$labels['url'] = 'URL'; +$labels['date'] = 'Dátum'; +$labels['start'] = 'Začiatok'; +$labels['starttime'] = 'Čas začiatku'; +$labels['end'] = 'Koniec'; +$labels['endtime'] = 'Čas konca'; +$labels['repeat'] = 'Opakovať'; +$labels['selectdate'] = 'Vyberte dátum'; +$labels['freebusy'] = 'Zobraziť ako'; +$labels['free'] = 'Voľný'; +$labels['busy'] = 'Zaneprázdnený'; +$labels['outofoffice'] = 'Mimo kancelárie'; +$labels['tentative'] = 'Nezáväzne'; +$labels['mystatus'] = 'Môj stav'; +$labels['status'] = 'Stav'; +$labels['status-confirmed'] = 'Potvrdené'; +$labels['status-cancelled'] = 'Zrušené'; +$labels['priority'] = 'Priorita'; +$labels['importrange'] = 'Udalosti z'; $labels['weekofyear'] = 'Týždeň'; +$labels['confirmstate'] = 'Stav'; +$labels['availfree'] = 'Voľný'; +$labels['availbusy'] = 'Zaneprázdnený'; +$labels['availtentative'] = 'Nezáväzne'; +$labels['availoutofoffice'] = 'Mimo kancelárie'; +$labels['tabsummary'] = 'Sumár'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/sl.inc
Added
@@ -0,0 +1,274 @@ +<?php +/** + * Localizations for Kolab Calendar plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ + */ +$labels['default_view'] = 'Privzeti pogled'; +$labels['time_format'] = 'Format časa'; +$labels['timeslots'] = 'Časovnih oken na uro'; +$labels['first_day'] = 'Prvi dan v tednu'; +$labels['first_hour'] = 'Prva ura za prikaz'; +$labels['workinghours'] = 'Ure dela'; +$labels['add_category'] = 'Dodaj kategorijo'; +$labels['remove_category'] = 'Odstrani kategorijo'; +$labels['defaultcalendar'] = 'Ustvari nove dogodke v'; +$labels['eventcoloring'] = 'Barva dogodka'; +$labels['coloringmode0'] = 'Po koledarju'; +$labels['coloringmode1'] = 'Po kategoriji'; +$labels['coloringmode2'] = 'Koledar za prikaz, kategorija za vsebino'; +$labels['coloringmode3'] = 'Kategorija za prikaz, koledar za vsebino'; +$labels['afternothing'] = 'Ne naredi ničesar'; +$labels['aftertrash'] = 'Premakni v koš'; +$labels['afterdelete'] = 'Izbriši sporočilo'; +$labels['afterflagdeleted'] = 'Označi kot izbrisano'; +$labels['aftermoveto'] = 'Premakni v...'; +$labels['itipoptions'] = 'Vabila za dogodek'; +$labels['afteraction'] = 'Po obdelavi vabila ali posodobljenega sporočila'; +$labels['calendar'] = 'Koledar'; +$labels['calendars'] = 'Koledarji'; +$labels['category'] = 'Kategorija'; +$labels['categories'] = 'Kategorije'; +$labels['createcalendar'] = 'Ustvari nov koledar'; +$labels['editcalendar'] = 'Uredi nastavitve koledarja'; +$labels['name'] = 'Ime'; +$labels['color'] = 'Barva'; +$labels['day'] = 'Dan'; +$labels['week'] = 'Teden'; +$labels['month'] = 'Mesec'; +$labels['agenda'] = 'Urnik'; +$labels['new'] = 'Nov'; +$labels['new_event'] = 'Nov dogodek'; +$labels['edit_event'] = 'Uredi dogodek'; +$labels['edit'] = 'Uredi'; +$labels['save'] = 'Shrani'; +$labels['removelist'] = 'Odstrani iz seznama'; +$labels['cancel'] = 'Prekliči'; +$labels['select'] = 'Izberi'; +$labels['print'] = 'Natisni'; +$labels['printtitle'] = 'Natisni koledarje'; +$labels['title'] = 'Pregled'; +$labels['description'] = 'Opis'; +$labels['all-day'] = 'cel dan'; +$labels['export'] = 'Izvozi'; +$labels['exporttitle'] = 'Izvozi v iCalendar'; +$labels['exportrange'] = 'Dogodki od'; +$labels['exportattachments'] = 'S priponkami'; +$labels['customdate'] = 'Poljubni datum'; +$labels['location'] = 'Lokacija'; +$labels['url'] = 'URL'; +$labels['date'] = 'Datum'; +$labels['start'] = 'Začetek'; +$labels['starttime'] = 'Čas začetka'; +$labels['end'] = 'Konec'; +$labels['endtime'] = 'Čas konca'; +$labels['repeat'] = 'Ponovi'; +$labels['selectdate'] = 'Izberi datum'; +$labels['freebusy'] = 'Prikaži me kot'; +$labels['free'] = 'Prost'; +$labels['busy'] = 'Zaseden'; +$labels['outofoffice'] = 'Izven pisarne'; +$labels['tentative'] = 'Pogojno'; +$labels['mystatus'] = 'Moj status'; +$labels['status'] = 'Status'; +$labels['status-confirmed'] = 'Potrjeno'; +$labels['status-cancelled'] = 'Preklicano'; +$labels['priority'] = 'Prednost'; +$labels['sensitivity'] = 'Zasebnost'; +$labels['public'] = 'javno'; +$labels['private'] = 'zasebno'; +$labels['confidential'] = 'zaupno'; +$labels['links'] = 'Sklic'; +$labels['alarms'] = 'Opomnik'; +$labels['comment'] = 'Komentar'; +$labels['created'] = 'Ustvarjeno'; +$labels['changed'] = 'Nazadnje urejeno'; +$labels['unknown'] = 'Neznano'; +$labels['eventoptions'] = 'Nastavitve'; +$labels['generated'] = 'generirano ob'; +$labels['eventhistory'] = 'Zgodovina'; +$labels['removelink'] = 'Odstrani email povezavo'; +$labels['printdescriptions'] = 'Opis za tisk'; +$labels['parentcalendar'] = 'Vstavi'; +$labels['searchearlierdates'] = '« Išči po prejšnjih dogodkih'; +$labels['searchlaterdates'] = 'Išči po kasnejših dogodkih »'; +$labels['andnmore'] = '$nr več...'; +$labels['togglerole'] = 'Klikni za prikaz vloge'; +$labels['createfrommail'] = 'Shrani kot dogodek'; +$labels['importevents'] = 'Uvozi dogodke'; +$labels['importrange'] = 'Dogodki od'; +$labels['onemonthback'] = '1 mesec nazaj'; +$labels['nmonthsback'] = '$nr mesecev nazaj'; +$labels['showurl'] = 'Prikaži URL koledarja'; +$labels['showurldescription'] = 'Za dostop do koledarja (samo za branje) iz drugih aplikacij uporabi naslednji naslov. Funkcija kopiraj in prilepi deluje z vsakim koledarjem v iCal formatu.'; +$labels['caldavurldescription'] = 'Za sinhronizacijo tega koledarja z vašim računalnikom ali mobilno napravo, v podprto aplikacijo (npr. Evolution ali Mozilla Thunderbird) kopirajte ta naslov <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> .'; +$labels['findcalendars'] = 'Išči koledarje...'; +$labels['searchterms'] = 'Iskalni pogoji'; +$labels['calsearchresults'] = 'Razpoložljivi koledarji'; +$labels['calendarsubscribe'] = 'Označi za vedno'; +$labels['nocalendarsfound'] = 'Ni najdenih koledarjev'; +$labels['nrcalendarsfound'] = '$nr najdenih koledarjev'; +$labels['quickview'] = 'Prikaži samo ta koledar'; +$labels['invitationspending'] = 'Vabila za dogodek'; +$labels['invitationsdeclined'] = 'Zavrnjena vabila'; +$labels['changepartstat'] = 'Spremeni status sodelujočega'; +$labels['rsvpcomment'] = 'Sporočilo vabila'; +$labels['listrange'] = 'Prikaži v razponu:'; +$labels['listsections'] = 'Razdeli v:'; +$labels['smartsections'] = 'Pametni razdelki'; +$labels['until'] = 'do'; +$labels['today'] = 'Danes'; +$labels['tomorrow'] = 'Jutri'; +$labels['thisweek'] = 'Ta teden'; +$labels['nextweek'] = 'Naslednji teden'; +$labels['prevweek'] = 'Prejšnji teden'; +$labels['thismonth'] = 'Ta mesec'; +$labels['nextmonth'] = 'Naslednji mesec'; +$labels['weekofyear'] = 'Teden'; +$labels['pastevents'] = 'Pretekli'; +$labels['futureevents'] = 'Prihodnji'; +$labels['showalarms'] = 'Prikaži opomnike'; +$labels['defaultalarmtype'] = 'Privzeta nastavitev opomnika'; +$labels['defaultalarmoffset'] = 'Privzeti čas opomnika'; +$labels['attendee'] = 'Udeleženec'; +$labels['role'] = 'Vloga'; +$labels['availability'] = 'Razpol.'; +$labels['confirmstate'] = 'Status'; +$labels['addattendee'] = 'Dodaj udeleženca'; +$labels['roleorganizer'] = 'Organizator'; +$labels['rolerequired'] = 'Zahtevano'; +$labels['roleoptional'] = 'Neobvezno'; +$labels['rolechair'] = 'Vodja sestanka'; +$labels['rolenonparticipant'] = 'Odsoten'; +$labels['cutypeindividual'] = 'Osebni'; +$labels['cutypegroup'] = 'Skupina'; +$labels['cutyperesource'] = 'Vir'; +$labels['cutyperoom'] = 'Soba'; +$labels['availfree'] = 'Prost'; +$labels['availbusy'] = 'Zaseden'; +$labels['availunknown'] = 'Neznano'; +$labels['availtentative'] = 'Pogojno'; +$labels['availoutofoffice'] = 'Izven pisarne'; +$labels['delegatedto'] = 'Preneseno na:'; +$labels['delegatedfrom'] = 'Preneseno od:'; +$labels['scheduletime'] = 'Najdi razpoložljivost'; +$labels['sendinvitations'] = 'Pošlji vabila'; +$labels['sendnotifications'] = 'Sporoči udeležencem spremembe'; +$labels['sendcancellation'] = 'Sporoči udeležencem odpoved dogodka'; +$labels['onlyworkinghours'] = 'Najdi razpoložljivost med mojim delavnikom'; +$labels['reqallattendees'] = 'Zahtevano/vsi udeleženci'; +$labels['prevslot'] = 'Prejšnje mesto'; +$labels['nextslot'] = 'Naslednje mesto'; +$labels['suggestedslot'] = 'Predlagano mesto'; +$labels['noslotfound'] = 'Ne najdem prostega mesta'; +$labels['invitationsubject'] = 'Vabljeni ste v "$title"'; +$labels['invitationmailbody'] = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nProsim preglejte pripeto iCalendar datoteko z vsemi informacijami o dogodku. Datoteko lahko uvozite v vašo koledar aplikacijo."; +$labels['invitationattendlinks'] = "V kolikor vaš email klient ne podpira iTip zahtevkov lahko uporabite naslednjo povezavo za sprejem ali zavrnitev vabila:\n\$url"; +$labels['eventupdatesubject'] = '"$title" je bil posodobljen'; +$labels['eventupdatesubjectempty'] = 'Dogodek, ki vas zadeva je bil posodobljen'; +$labels['eventupdatemailbody'] = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nProsim preglejte pripeto iCalendar datoteko s posodobljenimi informacijami o dogodku. Datoteko lahko uvozite v vašo koledar aplikacijo."; +$labels['eventcancelsubject'] = '"$title" je bil preklican'; +$labels['eventcancelmailbody'] = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nDogodek je bil preklican s strani \$organizer.\n\nProsim preglejte pripeto iCalendar datoteko s posodobljenimi informacijami o dogodku."; +$labels['itipobjectnotfound'] = 'Dogodek, na katerega se nanaša to sporočilo, ni bil najden v vašem koledarju.'; +$labels['itipmailbodyaccepted'] = "\$sender je sprejel vabilo na dogodek:\n\n*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender je okvirno sprejel vabilo na dogodek:\n\n*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender ni sprejel vabila na dogodek:\n\n*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender je zavrnil vaše sodelovanje pri dogodku:\n\n*\$title*\n\nWhen: \$date"; +$labels['itipmailbodydelegated'] = "\$sender je prenesel sodelovanje na dogodku:\n\n*\$title*\n\nWhen: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender je na vas prenesel sodelovanje na dogodku:\n\n*\$title*\n\nWhen: \$date"; +$labels['itipdeclineevent'] = 'Želite zavrniti vabilo na ta dogodek?'; +$labels['declinedeleteconfirm'] = 'Ali želite tudi izbrisati zavrnjeni dogodek iz vašega koledarja?'; +$labels['itipcomment'] = 'Komentar vabila/obvestila'; +$labels['itipcommenttitle'] = 'Komentar bo dodan k vabilu/obvestilu, ki bo poslano sodelujočim'; +$labels['notanattendee'] = 'Niste označeni kot sodelujoči na tem sestanku'; +$labels['eventcancelled'] = 'Ta dogodek je bil preklican'; +$labels['saveincalendar'] = 'shrani v'; +$labels['updatemycopy'] = 'Posodobi v mojem koledarju'; +$labels['savetocalendar'] = 'Shrani v koledar'; +$labels['openpreview'] = 'Preveri Koledar'; +$labels['noearlierevents'] = 'Ni predhodnjih dogodkov'; +$labels['nolaterevents'] = 'Ni kasnejših dogodkov'; +$labels['resource'] = 'Vir'; +$labels['addresource'] = 'Označi vir'; +$labels['findresources'] = 'Poišči vire'; +$labels['resourcedetails'] = 'Podrobnosti'; +$labels['resourceavailability'] = 'Razpoložljivost'; +$labels['resourceowner'] = 'Lastnik'; +$labels['resourceadded'] = 'Vir je bil dodan v vašem dogodku';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/sv_SE.inc
Changed
@@ -80,6 +80,7 @@ $labels['public'] = 'publik'; $labels['private'] = 'privat'; $labels['confidential'] = 'konfidentiell'; +$labels['links'] = 'Referens'; $labels['alarms'] = 'Påminnelse'; $labels['comment'] = 'Kommentar'; $labels['created'] = 'Skapad'; @@ -88,6 +89,7 @@ $labels['eventoptions'] = 'Alternativ'; $labels['generated'] = 'genererad vid'; $labels['eventhistory'] = 'Historik'; +$labels['removelink'] = 'Ta bort e-postreferens'; $labels['printdescriptions'] = 'Skriv ut beskrivning'; $labels['parentcalendar'] = 'Infoga inuti'; $labels['searchearlierdates'] = '« Sök efter tidigare händelser';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/th.inc
Added
@@ -0,0 +1,258 @@ +<?php +/** + * Localizations for Kolab Calendar plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ + */ +$labels['default_view'] = 'มุมมองเริ่มต้น'; +$labels['time_format'] = 'รูปแบบของการแสดงเวลา'; +$labels['timeslots'] = 'จำนวนช่องเวลาต่อชั่วโมง'; +$labels['first_day'] = 'วันแรกของสัปดาห์'; +$labels['first_hour'] = 'ชั่วโมงแรกที่เริ่มแสดงผล'; +$labels['workinghours'] = 'ชั่วโมงทำงาน'; +$labels['add_category'] = 'เพิ่มหมวดหมู่'; +$labels['remove_category'] = 'ลบหมวดหมู่'; +$labels['defaultcalendar'] = 'เพิ่มนัดหมายใหม่ใน'; +$labels['eventcoloring'] = 'การให้สีเหตุการณ์ต่างๆ'; +$labels['coloringmode0'] = 'ตามปฎิทิน'; +$labels['coloringmode1'] = 'ตามหมวดหมู่'; +$labels['afternothing'] = 'ไม่ต้องทำอะไร'; +$labels['aftertrash'] = 'ย้ายลงถังขยะ'; +$labels['afterdelete'] = 'ลบข้อความ'; +$labels['afterflagdeleted'] = 'ติดธงว่าลบแล้ว'; +$labels['aftermoveto'] = 'ย้ายไปยัง...'; +$labels['itipoptions'] = 'เชิญเข้าร่วมนัดหมาย'; +$labels['afteraction'] = 'ภายหลังการประมวลผลข้อความ คำเชิญ หรือ ปรับปรุงสถานภาพ'; +$labels['calendar'] = 'ปฎิทิน'; +$labels['calendars'] = 'ปฎิทิน'; +$labels['category'] = 'หมวดหมู่'; +$labels['categories'] = 'หมวดหมู่'; +$labels['createcalendar'] = 'สร้างปฎิทินฉบับใหม่'; +$labels['editcalendar'] = 'แก้ไขคุณสมบัติของปฎิทิน'; +$labels['name'] = 'ชื่อ'; +$labels['color'] = 'สี'; +$labels['day'] = 'วัน'; +$labels['week'] = 'สัปดาห์'; +$labels['month'] = 'เดือน'; +$labels['new'] = 'เพิ่ม'; +$labels['new_event'] = 'เพิ่มนัดหมาย'; +$labels['edit_event'] = 'แก้ไขนัดหมาย'; +$labels['edit'] = 'แก้ไข'; +$labels['save'] = 'บันทึก'; +$labels['removelist'] = 'นำออกจากรายการ'; +$labels['cancel'] = 'ยกเลิก'; +$labels['select'] = 'เลือก'; +$labels['print'] = 'พิมพ์'; +$labels['printtitle'] = 'พิมพ์ปฎิทิน'; +$labels['title'] = 'สรุป'; +$labels['description'] = 'คำอธิบาย'; +$labels['all-day'] = 'ทั้งวัน'; +$labels['export'] = 'ส่งออก'; +$labels['exporttitle'] = 'ส่งออกไปยัง iCalendar'; +$labels['exportrange'] = 'เหตุการณ์จาก'; +$labels['exportattachments'] = 'พร้อมสิ่งที่แนบมาด้วย'; +$labels['location'] = 'สถานที่'; +$labels['date'] = 'วันที่'; +$labels['start'] = 'เริ่ม'; +$labels['starttime'] = 'เวลาเริ่ม'; +$labels['end'] = 'จบ'; +$labels['endtime'] = 'กำหนดเสร็จ'; +$labels['repeat'] = 'เกิดซ้ำ'; +$labels['selectdate'] = 'เลือกวันที่'; +$labels['free'] = 'ว่าง'; +$labels['busy'] = 'ติดธุระ'; +$labels['outofoffice'] = 'อยู่นอกออฟฟิศ'; +$labels['tentative'] = 'แนวโน้ม'; +$labels['mystatus'] = 'สถานะของฉัน'; +$labels['status'] = 'สถานะ'; +$labels['status-confirmed'] = 'ยืนยัน'; +$labels['status-cancelled'] = 'ยกเลิก'; +$labels['priority'] = 'ความสำคัญ'; +$labels['sensitivity'] = 'ความเป็นส่วนตัว'; +$labels['public'] = 'สาธารณะ'; +$labels['private'] = 'ส่วนตัว'; +$labels['confidential'] = 'ลับเฉพาะ'; +$labels['links'] = 'อ้างอิง'; +$labels['alarms'] = 'คำแจ้งเตือน'; +$labels['comment'] = 'ความคิดเห็น'; +$labels['created'] = 'สร้างเมื่อ'; +$labels['changed'] = 'แก้ไขครั้งสุดท้ายเมื่อ'; +$labels['unknown'] = 'ไม่ทราบ'; +$labels['eventoptions'] = 'ทางเลือก'; +$labels['eventhistory'] = 'ประวัติ'; +$labels['printdescriptions'] = 'พิมพ์คำอธิบาย'; +$labels['parentcalendar'] = 'เพิ่มเข้าภายใต้'; +$labels['searchearlierdates'] = '« ค้นหากำหนดการณ์ที่เกิดชึ้นก่อนหน้า'; +$labels['searchlaterdates'] = 'ค้นหากำหนดการณ์ที่เกิดขึ้นหลังจาก »'; +$labels['andnmore'] = 'มีอีก $nr'; +$labels['togglerole'] = 'กดเพื่อเปลี่ยนสลับบทบาท'; +$labels['createfrommail'] = 'บันทึกเป็นเหตุการณ์'; +$labels['importevents'] = 'นำเข้าเหตุการณ์'; +$labels['importrange'] = 'เหตุการณ์จาก'; +$labels['onemonthback'] = 'ย้อนหลัง 1 เดือน'; +$labels['nmonthsback'] = 'ย้อนหลัง $nr เดือน'; +$labels['showurl'] = 'แสดงลิงค์ปฎิทิน'; +$labels['showurldescription'] = 'ใช้ลิงค์ที่อยู่ต่อไปนี้เพื่อเข้าถึง (อ่านเท่านั้น) ปฎิทินของคุณจากโปรแกรมอื่น คุณสามารถคัดลอกและนำไปวางไว้ในซอฟท์แวร์ปฎิทินที่รับรองรูปแบบ iCal'; +$labels['caldavurldescription'] = 'คัดลอกลิงค์ที่อยู่นี้ไปยัง <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> โปรแกรมในเครื่องลูกข่าย (เช่น Evolution หรือ Mozilla Thunderbird) เพื่อซิงค์ข้อมูลปฎิทินฉบับนี้กับคอมพิวเตอร์หรืออุปกรณ์มือถือของคุณ'; +$labels['findcalendars'] = 'ค้นหาปฎิทิน...'; +$labels['searchterms'] = 'ข้อความที่ต้องการค้นหา'; +$labels['calsearchresults'] = 'ปฎิทินที่มีให้เลือก'; +$labels['calendarsubscribe'] = 'แสดงเป็นรายการถาวร'; +$labels['nocalendarsfound'] = 'ไม่พบปฎิทิน'; +$labels['nrcalendarsfound'] = 'พบปฎิทิน $nr ฉบับ'; +$labels['quickview'] = 'ดูเฉพาะปฎิทินฉบับนี้'; +$labels['invitationspending'] = 'จดหมายเชิญที่ยังค้างอยู่'; +$labels['invitationsdeclined'] = 'ปฎิเสธคำเชิญ'; +$labels['changepartstat'] = 'เปลี่ยนสถานะของผู้เข้าร่วม'; +$labels['rsvpcomment'] = 'คำเชิญ'; +$labels['listrange'] = 'ขอบเขตุที่แสดง'; +$labels['listsections'] = 'แบ่งเป็น:'; +$labels['until'] = 'จนถึง'; +$labels['today'] = 'วันนี้'; +$labels['tomorrow'] = 'พรุ่งนี้'; +$labels['thisweek'] = 'สัปดาห์นี้'; +$labels['nextweek'] = 'สัปดาห์หน้า'; +$labels['prevweek'] = 'สัปดาห์ที่แล้ว'; +$labels['thismonth'] = 'เดือนนี้'; +$labels['nextmonth'] = 'เดือนหน้า'; +$labels['weekofyear'] = 'สัปดาห์'; +$labels['pastevents'] = 'อดีต'; +$labels['futureevents'] = 'อนาคต'; +$labels['showalarms'] = 'แสดงข้อความเตือน'; +$labels['defaultalarmtype'] = 'ค่าการแจ้งเตือนเริ่มต้น'; +$labels['attendee'] = 'ผู้เข้าร่วม'; +$labels['role'] = 'บทบาท'; +$labels['confirmstate'] = 'สถานะ'; +$labels['addattendee'] = 'เพิ่มผู้เข้าร่วม'; +$labels['roleorganizer'] = 'ผู้จัดงาน'; +$labels['rolerequired'] = 'บังคับ'; +$labels['roleoptional'] = 'เลือกได้'; +$labels['rolenonparticipant'] = 'ขาด'; +$labels['cutypeindividual'] = 'บุคคล'; +$labels['cutypegroup'] = 'กลุ่ม'; +$labels['cutyperesource'] = 'ทรัพยากร'; +$labels['cutyperoom'] = 'ห้อง'; +$labels['availfree'] = 'ว่าง'; +$labels['availbusy'] = 'ติดธุระ'; +$labels['availunknown'] = 'ไม่ทราบ'; +$labels['availtentative'] = 'แนวโน้ม'; +$labels['availoutofoffice'] = 'ไม่อยู่ออฟฟิศ'; +$labels['delegatedto'] = 'มอบหมายให้'; +$labels['delegatedfrom'] = 'รับมอบจาก'; +$labels['scheduletime'] = 'ค้นหาส่วนที่ว่าง'; +$labels['sendinvitations'] = 'ส่งคำเชิญ'; +$labels['sendnotifications'] = 'แจ้งเตือนผู้เข้าร่วมสำหรับการแก้ไข'; +$labels['sendcancellation'] = 'แจ้งเตือนผู้เข้าร่วมเกี่ยวกับการยกเลิก'; +$labels['onlyworkinghours'] = 'ค้นหาเวลาว่างในช่วงชั่วโมงการทำงานของฉัน'; +$labels['reqallattendees'] = 'บังคับ/ผู้เข้าร่วมทุกคน'; +$labels['prevslot'] = 'ช่องว่างก่อนหน้านี้'; +$labels['nextslot'] = 'ช่องว่า่งถัดจากนี้'; +$labels['suggestedslot'] = 'แนะนำช่องว่าง'; +$labels['noslotfound'] = 'ไม่สามารถหาช่วงเวลาที่ว่าง'; +$labels['invitationsubject'] = 'คุณได้รับเชิญไปยัง "$title"'; +$labels['invitationattendlinks'] = "ในกรณีที่โปรแกรมอีเมล์ของคุณไม่รองรับ 'การร้องขอ iTip' คุณสามารถใช้ลิงค์ต่อไปนี้ในการตอบรับหรือปฎิเสธจดหมายเชิญฉบับนี้ :\n\$url"; +$labels['eventupdatesubject'] = '"$title" ได้รับการปรับปรุงสถานะ'; +$labels['eventupdatesubjectempty'] = 'เหตุการณ์ที่คุณเป็นห่วงได้ถูกปรับปรุงสถานะแล้ว'; +$labels['eventcancelsubject'] = '"$title" ถูกยกเลิก'; +$labels['eventcancelmailbody'] = "*\$title*\n\nเมื่อ: \$date\n\nInvitees: \$attendees\n\n เหตุการณ์ได้ถูกยกเลิกโดย \$organizer.\n\n ไฟล์ iCalendar ที่แนบมาด้วย ได้รับการปรับปรุงรายละเอียดเรียบร้อยแล้ว"; +$labels['itipobjectnotfound'] = 'เหตุการณ์ที่อ้างถึงโดยข้อความนี้ไม่ถูกตรวจพบในปฎิทินของคุณ'; +$labels['itipmailbodyaccepted'] = "\$sender ได้ตอบรับคำเชิญสำหรับเหตุการณ์ต่อไปนี้:\n\n*\$title*\n\nเมื่อ: \$date\n\nInvitees: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender มีแนวโน้มที่จะตอบรับคำเชิญสำหรับเหตุการณ์ต่อไปนี้:\n\n*\$title*\n\nเมื่อ: \$date\n\nInvitees: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender ได้ปฎิเสธคำเชิญสำหรับเหตุการณ์ต่อไปนี้ :\n\n*\$title*\n\nเมื่อ: \$date\n\nInvitees: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender ปฎิเสธการเข้าร่วมของคุณในเหตุการณ์ต่อไปนี้:\n\n*\$title*\n\nเมื่อ: \$date"; +$labels['itipmailbodydelegated'] = "\$sender ได้มอบหมายการเข้าร่วมเหตุการณ์ต่อไปนี้:\n\n*\$title*\n\nเมื่อ: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender ได้มอบหมายให้คุณเข้าร่วมเหตุการณ์ต่อไปนี้:\n\n*\$title*\n\nเมื่อ: \$date"; +$labels['itipdeclineevent'] = 'คุณต้องการปฎิเสธคำเชิญสำหรับเหตุการณ์นี้หรือไม่'; +$labels['declinedeleteconfirm'] = 'คุณต้องการลบเหตุการณ์ที่ปฎิเสธนี้ออกจากปฎิทินของคุณหรือไม่'; +$labels['itipcomment'] = 'ความคิดเห็น คำเชิญ/คำแจ้งเตือน'; +$labels['itipcommenttitle'] = 'ความคิดเห็นนี้จะถูกแนบไปพร้อมกับข้อความ คำเชิญ/คำแจ้งเตือน ไปยังผู้เข้าร่วม'; +$labels['notanattendee'] = 'คุณไม่อยู่ในรายชื่อผุ้เข้าร่วมสำหรับเหตุการณ์นี้'; +$labels['eventcancelled'] = 'เหตุการณ์ได้ถูกยกเลิก'; +$labels['saveincalendar'] = 'บันทึกใน'; +$labels['updatemycopy'] = 'ปรับปรุงปฎิทินของฉัน'; +$labels['savetocalendar'] = 'บันทึกไปยังปฎิทินของฉัน'; +$labels['openpreview'] = 'ตรวจสอบปฎิทิน'; +$labels['noearlierevents'] = 'ไม่มีเหตุการณ์ก่อนหน้า'; +$labels['nolaterevents'] = 'ไม่มีเหตุการณ์หลังจากนั้น'; +$labels['resource'] = 'ทรัพยากร'; +$labels['addresource'] = 'จองทรัพยากร'; +$labels['findresources'] = 'ค้นหาทรัพยากร'; +$labels['resourcedetails'] = 'รายละเอียด'; +$labels['resourceavailability'] = 'ยังว่างอยู่'; +$labels['resourceowner'] = 'เจ้าของ'; +$labels['resourceadded'] = 'ทรัพยากรได้ถูกเพิ่มไปยังเหตุการณ์ของคุณ'; +$labels['tabsummary'] = 'สรุป'; +$labels['tabrecurrence'] = 'การเกิดซ้ำ'; +$labels['tabattendees'] = 'ผู้เข้าร่วม'; +$labels['tabresources'] = 'ทรัพยากร'; +$labels['tabattachments'] = 'สิ่งที่แนบมาด้วย'; +$labels['tabsharing'] = 'แบ่งปัน'; +$labels['deleteobjectconfirm'] = 'คุณต้องการลบเหตุการณ์นี้หรือไม่'; +$labels['deleteventconfirm'] = 'คุณต้องการลบเหตุการณ์นี้หรือไม่'; +$labels['deletecalendarconfirm'] = 'คุณต้องการลบปฎิทินฉบับนี้พร้อมกับเหตุการณ์ทั้งหมดหรือไม่'; +$labels['deletecalendarconfirmrecursive'] = 'คุณต้องการลบปฎิทินฉบับนี้พร้อมเหตุการณ์และปฎิทินย่อยทั้งหมดหรือไม่'; +$labels['savingdata'] = 'บันทึกข้อมูล'; +$labels['errorsaving'] = 'การบันทึกการเปลี่ยนแปลงล้มเหลว'; +$labels['operationfailed'] = 'การทำตามคำร้องล้มเหลว'; +$labels['invalideventdates'] = 'วันที่ที่ป้อนเข้ามาไม่ถูกต้อง โปรดตรวจสอบการป้อนข้อมูลของท่าน';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/localization/zh_CN.inc
Changed
@@ -6,5 +6,71 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ */ +$labels['default_view'] = '默认视图'; +$labels['time_format'] = '时间格式'; +$labels['workinghours'] = '工作时间'; +$labels['add_category'] = '增加分类'; +$labels['remove_category'] = '移除分类'; +$labels['aftertrash'] = '移到回收站'; +$labels['afterdelete'] = '删除此信息'; +$labels['afterflagdeleted'] = '被删除标签'; +$labels['aftermoveto'] = '移到...'; +$labels['category'] = '分类'; +$labels['categories'] = '类别'; +$labels['name'] = '名称'; +$labels['color'] = '颜色'; +$labels['day'] = '天'; +$labels['week'] = '周'; +$labels['month'] = '月'; +$labels['agenda'] = '议程表'; +$labels['new'] = '新建'; +$labels['new_event'] = '新建事件'; +$labels['edit_event'] = '编辑事件'; +$labels['edit'] = '编辑'; +$labels['save'] = '保存'; +$labels['removelist'] = '从列表中移除'; +$labels['cancel'] = '取消'; +$labels['select'] = '选择'; +$labels['print'] = '打印'; +$labels['title'] = '汇总'; $labels['description'] = '描述'; +$labels['export'] = '导出'; +$labels['exporttitle'] = '导出到ICalendar'; +$labels['date'] = '日期'; +$labels['start'] = '开始'; +$labels['starttime'] = '开始时间'; +$labels['end'] = '结束'; +$labels['endtime'] = '结束时间'; +$labels['repeat'] = '循环'; +$labels['selectdate'] = '选择日期'; +$labels['free'] = '空闲'; +$labels['busy'] = '忙碌'; +$labels['outofoffice'] = '外出'; +$labels['tentative'] = '临时'; +$labels['mystatus'] = '我的状态'; +$labels['status'] = '状态'; +$labels['status-confirmed'] = '已确认'; +$labels['status-cancelled'] = '已取消'; +$labels['priority'] = '优先级'; +$labels['sensitivity'] = '隐私'; +$labels['public'] = '公开'; +$labels['private'] = '私人'; +$labels['confidential'] = '保密的'; +$labels['links'] = '参考'; +$labels['alarms'] = '提醒'; +$labels['comment'] = '注释'; +$labels['created'] = '已创建'; +$labels['changed'] = '最后更改'; +$labels['unknown'] = '未知'; +$labels['eventoptions'] = '选项'; +$labels['weekofyear'] = '周'; +$labels['confirmstate'] = '状态'; +$labels['availfree'] = '空闲'; +$labels['availbusy'] = '忙碌'; +$labels['availunknown'] = '未知'; +$labels['availtentative'] = '临时'; +$labels['availoutofoffice'] = '外出'; +$labels['tabsummary'] = '汇总'; +$labels['tabsharing'] = '分享'; +$labels['savingdata'] = '保存数据...'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/print.js -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/print.js
Changed
@@ -43,6 +43,9 @@ var src, event_sources = []; var add_url = (rcmail.env.search ? '&q='+escape(rcmail.env.search) : ''); for (var id in rcmail.env.calendars) { + if (!rcmail.env.calendars[id].active) + continue; + source = $.extend({ url: "./?_task=calendar&_action=load_events&source=" + escape(id) + add_url, className: 'fc-event-cal-'+id,
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/skins/larry/calendar.css -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/skins/larry/calendar.css
Changed
@@ -676,6 +676,10 @@ outline: none; } +#event-panel-attachments.disabled .attachmentslist li a.delete { + visibility: hidden; +} + .event-attendees span.attendee { padding-right: 18px; margin-right: 0.5em; @@ -1059,6 +1063,10 @@ text-align: center; } +.libcal-rsvp-replymode li a { + cursor: default; +} + #event-rsvp, #edit-attendees-notify { margin: 0.6em 0 0.3em 0; @@ -2159,6 +2167,15 @@ font-weight: bold; } +div.calendar-invitebox td.recurrence-id { + text-transform: uppercase; + font-style: italic; +} + +div.calendar-invitebox td em { + font-weight: bold; +} + #event-rsvp .rsvp-buttons, div.calendar-invitebox .itip-buttons div { margin-top: 0.5em;
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/skins/larry/print.css -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/skins/larry/print.css
Changed
@@ -1,7 +1,7 @@ /*** Printing styles for Calendar plugin ***/ body { - margin: 0; + margin: 0 0 1em 0; color: #000; background: #fff; } @@ -54,18 +54,31 @@ } #calendarlist { - list-style-type: square; + list-style: none; margin: 2em 0; padding-left: 1em; } +#calendarlist ul { + float: left; + list-style: none; + padding-left: 0; +} + #calendarlist li { + float: left; padding-left: 0; - padding-right: 3em; + padding-right: 0; margin-left: 0; font-weight: bold; } +#calendarlist li div { + float: left; + padding-right: 3em; + padding-bottom: 1em; +} + #calendarlist input, #calendarlist .handle { display: none; @@ -207,6 +220,9 @@ font-style: italic; } +.fc-view-month .fc-event-hori .fc-event-inner { + background: #fff !important; +} .fc-view-table col.fc-event-location { width: 20%;
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/calendar/skins/larry/templates/print.html -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/calendar/skins/larry/templates/print.html
Changed
@@ -19,6 +19,7 @@ <div class="calwidth"> <roundcube:object name="plugin.calendar_list" activeonly="true" id="calendarlist" /> + <br style="clear:both"> </div> <roundcube:object name="plugin.calendar_css" printmode="true" />
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_activesync/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "ActiveSync configuration utility for Kolab accounts", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli", @@ -26,6 +26,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5" + "kolab/libkolab": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/pl.inc
Added
@@ -0,0 +1,4 @@ +<?php +$labels['event'] = 'Kalendarze'; +$labels['task'] = 'Zadania'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_activesync/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/pl_PL.inc
Changed
@@ -24,7 +24,7 @@ $labels['devicenotfound'] = 'Nie można odczytać konfiguracji urządzenia'; $labels['devicetype'] = 'Typ urządzenia'; $labels['acsversion'] = 'Wersja protokołu'; -$labels['useragent'] = 'User-agent'; +$labels['useragent'] = 'Klient'; $labels['friendlyname'] = 'Przyjazna nazwa'; $labels['os'] = 'System operacyjny'; $labels['oslanguage'] = 'Język systemu';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/pt_PT.inc
Added
@@ -0,0 +1,4 @@ +<?php +$labels['event'] = 'Calendários'; +$labels['savingdata'] = 'Salvando dados...'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/sl.inc
Added
@@ -0,0 +1,9 @@ +<?php +$labels['mail'] = 'Email'; +$labels['contact'] = 'Imeniki'; +$labels['event'] = 'Koledarji'; +$labels['task'] = 'Naloge'; +$labels['note'] = 'Zapiski'; +$labels['configuration'] = 'Nastavitve'; +$labels['savingdata'] = 'Shranjujem...'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_activesync/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/sv_SE.inc
Changed
@@ -1,8 +1,33 @@ <?php +$labels['tabtitle'] = 'Activesync'; +$labels['activesynctitle'] = 'Hantera Activesync-enheter'; +$labels['devices'] = 'Enheter'; +$labels['devicealias'] = 'Enhetsnamn'; +$labels['synchronize'] = 'Synkronisera'; +$labels['withalarms'] = 'Med alarm'; +$labels['syncsettings'] = 'Synkronisera inställningar'; +$labels['deviceconfig'] = 'Enhetskonfiguration'; +$labels['folderstosync'] = 'Mappar att synkronisera'; $labels['mail'] = 'E-post'; +$labels['contact'] = 'Adressböcker'; $labels['event'] = 'Kalendrar'; $labels['task'] = 'Uppgifter'; $labels['note'] = 'Anteckningar'; $labels['configuration'] = 'Konfiguration'; +$labels['deletedevice'] = 'Ta bort enhet'; +$labels['nodevices'] = 'Det finns för närvarande inga enheter registrerade.<br/><br/>För att registrera en enhet, anslut den till servern först, enligt <a href="http://wiki.kolab.org/Setup_ActiveSync">instruktionerna i wikin </a>. Efteråt bör enheten bli tillgänglig för konfiguration här.'; $labels['savingdata'] = 'Sparar data ...'; +$labels['savingerror'] = 'Misslyckades att spara konfiguration'; +$labels['notsupported'] = 'Din server stöder inte metadata/annoteringar'; +$labels['devicedeleteconfirm'] = 'Vill du verkligen ta bort konfigurationen för denna enhet?'; +$labels['successfullydeleted'] = 'Enhetskonfigurationen togs bort'; +$labels['devicenotfound'] = 'Kan inte läsa enhetskonfiguration'; +$labels['devicetype'] = 'Enhetstyp'; +$labels['acsversion'] = 'Protokollversion'; +$labels['useragent'] = 'Användaragent'; +$labels['friendlyname'] = 'Enkelt namn'; +$labels['os'] = 'Operativsystem'; +$labels['oslanguage'] = 'OS-språk'; +$labels['phonenumber'] = 'Telefonnummer'; +$labels['arialabeldeviceframe'] = 'Inställningsformulär för enhetssynkronisering'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/th.inc
Added
@@ -0,0 +1,31 @@ +<?php +$labels['tabtitle'] = 'Activesync'; +$labels['activesynctitle'] = 'จัดการอุปกรณ์ที่ใช้ Activesync'; +$labels['devices'] = 'อุปกรณ์'; +$labels['devicealias'] = 'ชื่ออุปกรณ์'; +$labels['synchronize'] = 'ปรับปรุงให้สอดคล้องกัน'; +$labels['syncsettings'] = 'การตั้งค่าการปรับปรุงให้สอดคล้องกัน'; +$labels['deviceconfig'] = 'การตั้งค่าอุปกรณ์'; +$labels['folderstosync'] = 'แฟ้มที่ต้องการปรับปรุง'; +$labels['mail'] = 'อีเมล์'; +$labels['contact'] = 'สมุดรายชื่อ'; +$labels['event'] = 'ปฎิทิน'; +$labels['task'] = 'งาน'; +$labels['note'] = 'สมุดจด'; +$labels['configuration'] = 'ค่าคุณสมบัติ'; +$labels['deletedevice'] = 'ลบอุปกรณ์'; +$labels['nodevices'] = 'ปัจจุบันไม่มีอุปกรณ์ที่ขึ้นทะเบียนไว้<br/><br/>ในขั้นตอนการขึ้นทะเบียน กรุณาต่ออุปกรณ์เข้ากับเซิฟเวอร์ก่อน โดยใช้ <a href="http://wiki.kolab.org/Setup_ActiveSync"> ขั้นตอนปฎิบัติในวิกี</a> หลังจากนั้น อุปกรณ์ควรจะปรากฎอยู่ในรายชื่ออุปกรณ์เพื่อปรับแต่งคุณสมบัติตรงนี้'; +$labels['savingdata'] = 'บันทึกข้อมูล'; +$labels['savingerror'] = 'การบันทึกค่าคุณสมบัติล้มเหลว'; +$labels['notsupported'] = 'เซิฟเวอร์ของคุณไม่รองรับ metadata/annotations'; +$labels['devicedeleteconfirm'] = 'คุณต้องการลบค่าคุณสมบัติของอุปกรณ์นี้หรือ'; +$labels['successfullydeleted'] = 'ค่าคุณสมบัติของอุปกรณ์นี้ได้ถูกลบเรียบร้อยแล้ว'; +$labels['devicenotfound'] = 'ไม่สามารถอ่านค่าคุณสมบัติของอุปกรณ์ได้'; +$labels['devicetype'] = 'ชนิดของอุปกรณ์'; +$labels['acsversion'] = 'โปรโตคอล รุ่นที่'; +$labels['friendlyname'] = 'ชื่อที่เรียกง่าย'; +$labels['os'] = 'ระบบปฎิบัติการ'; +$labels['oslanguage'] = 'ภาษาของระบบปฎิบัติการ'; +$labels['phonenumber'] = 'หมายเลขโทรศัพท์'; +$labels['arialabeldeviceframe'] = 'ฟอร์มการตั้งค่าการปรับปรุงให้สอดคล้องของอุปกรณ์'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_activesync/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_activesync/localization/zh_CN.inc
Changed
@@ -1,2 +1,4 @@ <?php +$labels['note'] = '笔记'; +$labels['savingdata'] = '保存数据...'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab addressbook", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli", @@ -26,6 +26,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5" + "kolab/libkolab": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/helpdocs/locale/cs_CZ/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/helpdocs/locale/cs_CZ/LC_MESSAGES/addressbook.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/helpdocs/locale/es_ES/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/helpdocs/locale/es_ES/LC_MESSAGES/addressbook.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/da_DK.inc
Changed
@@ -37,8 +37,13 @@ $labels['globalfirst'] = 'Globale adressebøger først'; $labels['personalonly'] = 'Kun personlige adresse'; $labels['globalonly'] = 'Kun globale adressebøger'; +$labels['findaddressbooks'] = 'Find adressebøger'; $labels['searchterms'] = 'Search terms'; +$labels['listsearchresults'] = 'Yderligere adressebøger'; +$labels['foldersearchform'] = 'Søgeformular for adressebog'; $labels['foldersubscribe'] = 'List permanently'; +$labels['nraddressbooksfound'] = 'Der blev fundet $nr adressebøger '; +$labels['noaddressbooksfound'] = 'Fandt ingen adressebøger'; $messages['bookdeleteconfirm'] = 'Vil du virkelig slette den valgte adressebog og alle kontakterne i den?'; $messages['bookdeleting'] = 'Sletter adressebog...'; $messages['booksaving'] = 'Gemmer adressebog...';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/pl.inc
Added
@@ -0,0 +1,10 @@ +<?php +/** + * Localizations for the Kolab Address Book plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ + */ +$labels['bookremove'] = 'Usuń z listy'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/pt_PT.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab Address Book plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ + */ +$labels['bookremove'] = 'Remove from list'; +$labels['searchterms'] = 'Search terms'; +$labels['foldersubscribe'] = 'Listar permanentemente'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/localization/sk.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/sk.inc
Changed
@@ -6,4 +6,5 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ */ +$labels['bookremove'] = 'Odstrániť zo zoznamu'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/sl.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab Address Book plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ + */ +$labels['bookremove'] = 'Odstrani iz seznama'; +$labels['searchterms'] = 'Iskalni pogoji'; +$labels['foldersubscribe'] = 'Označi za vedno'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/sv_SE.inc
Changed
@@ -7,9 +7,52 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ */ $labels['initials'] = 'Initialer'; +$labels['profession'] = 'Yrke'; +$labels['officelocation'] = 'Kontorsadress'; +$labels['children'] = 'Barn'; +$labels['pgppublickey'] = 'Publik PGP-nyckel'; +$labels['pkcs7publickey'] = 'Publik S/MIME-nyckel'; +$labels['freebusyurl'] = 'Ledig-upptagen-URL'; +$labels['typebusiness'] = 'Företag'; +$labels['typebusinessfax'] = 'Företagsfax'; $labels['typecompany'] = 'Företag'; +$labels['typeprimary'] = 'Primär'; +$labels['typetelex'] = 'Telex'; +$labels['typeradio'] = 'Radio'; +$labels['typeisdn'] = 'ISDN'; +$labels['typettytdd'] = 'TTY/TDD'; +$labels['typecallback'] = 'Återuppringning'; $labels['settings'] = 'Inställningar'; +$labels['bookcreate'] = 'Skapa adressbok'; +$labels['bookedit'] = 'Redigera adressbok'; +$labels['bookdelete'] = 'Ta bort adressbok'; $labels['bookremove'] = 'Ta bort från lista'; +$labels['bookproperties'] = 'Egenskaper för adressbok'; +$labels['bookname'] = 'Bokens namn'; +$labels['parentbook'] = 'Överordnad bok'; +$labels['bookshowurl'] = 'Visa CardDAV-URL'; +$labels['carddavurldescription'] = 'Kopiera denna adress till ett <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank"> CardDAV</a>-klientprogram för att fullt ut synkronisera denna specifika adressbok med din dator eller mobila enhet .'; +$labels['addressbookprio'] = 'Val/beteenden för adressbok(böcker) '; +$labels['personalfirst'] = 'Personliga adressböcker först'; +$labels['globalfirst'] = 'Globala adressböcker först'; +$labels['personalonly'] = 'Personliga adressböcker enbart'; +$labels['globalonly'] = 'Globala adressböcker enbart'; +$labels['findaddressbooks'] = 'Hitta adressböcker'; $labels['searchterms'] = 'Sökord'; +$labels['listsearchresults'] = 'Ytterligare adressböcker'; +$labels['foldersearchform'] = 'Sökformulär för adressböcker'; $labels['foldersubscribe'] = 'Lista permanent'; +$labels['nraddressbooksfound'] = '$nr adressböcker hittades'; +$labels['noaddressbooksfound'] = 'Inga adressböcker hittades'; +$messages['bookdeleteconfirm'] = 'Vill du verkligen ta bort den valda adressboken och alla kontakter i den?'; +$messages['bookdeleting'] = 'Tar bort adressbok ...'; +$messages['booksaving'] = 'Sparar adressbok ...'; +$messages['bookdeleted'] = 'Adressbok borttagen.'; +$messages['bookupdated'] = 'Adressbok uppdaterad.'; +$messages['bookcreated'] = 'Adressbok skapad.'; +$messages['bookdeleteerror'] = 'Ett fel uppstod vid borttagning av adressbok.'; +$messages['bookupdateerror'] = 'Ett fel uppstod vid uppdatering av adressbok.'; +$messages['bookcreateerror'] = 'Ett fel uppstod vid skapandet av adressbok.'; +$messages['nobooknamewarning'] = 'Vänligen ange adressbokens namn.'; +$messages['noemailnamewarning'] = 'Vänligen ange e-postadress eller kontaktnamn.'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/th.inc
Added
@@ -0,0 +1,51 @@ +<?php +/** + * Localizations for the Kolab Address Book plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ + */ +$labels['initials'] = 'ชื่อย่อ'; +$labels['profession'] = 'อาชีพ'; +$labels['officelocation'] = 'สถานที่ที่ทำงาน'; +$labels['pgppublickey'] = 'กุญแจ PGP สาธารณะ'; +$labels['pkcs7publickey'] = 'กุญแจ S/MIME สาธารธะ'; +$labels['freebusyurl'] = 'ลิงค์ ว่าง-ติดธุระ'; +$labels['typebusiness'] = 'ธุรกิจ'; +$labels['typebusinessfax'] = 'โทรสาร ธุรกิจ'; +$labels['typecompany'] = 'บริษัท'; +$labels['typetelex'] = 'เทเลกซ์'; +$labels['typeradio'] = 'วิทยุ'; +$labels['typeisdn'] = 'รหัส ISDN'; +$labels['typecallback'] = 'บริการเรียกกลับ'; +$labels['settings'] = 'การตั้งค่า'; +$labels['bookcreate'] = 'สร้างสมุดรายชื่อ'; +$labels['bookedit'] = 'แก้ไขสมุดรายชื่อ'; +$labels['bookdelete'] = 'ลบสมุดรายชื่อ'; +$labels['bookremove'] = 'ลบออกจากรายชื่อ'; +$labels['bookproperties'] = 'คุณสมบัติของสมุดรายชื่อ'; +$labels['bookname'] = 'ชื่อสมุด'; +$labels['bookshowurl'] = 'แสดงลิงค์ CardDAV'; +$labels['carddavurldescription'] = 'คัดลอกลิงค์ที่อยู่นี้ไปยัง <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a> โปรแกรมที่เครื่องลูกข่ายเพื่อซิงค์ข้อมูลในสมุดที่อยู่ฉบับนี้กับคอมพิวเตอร์หรืออุปกรณ์มือถือของท่าน'; +$labels['personalfirst'] = 'สมุดที่อยู่ส่วนตัวก่อน'; +$labels['personalonly'] = 'สมุดที่อยู่ส่วนตัวเท่านั้น'; +$labels['findaddressbooks'] = 'ค้นหาสมุดที่อยู่'; +$labels['searchterms'] = 'ข้อความที่ต้องการค้นหา'; +$labels['listsearchresults'] = 'สมุดที่อยู่เพิ่มเติม'; +$labels['foldersearchform'] = 'ฟอร์มค้นหาสมุดที่อยู่'; +$labels['foldersubscribe'] = 'แสดงเป็นรายการถาวร'; +$labels['nraddressbooksfound'] = 'พบ สมุดที่อยุ่จำนวน $nr เล่ม'; +$labels['noaddressbooksfound'] = 'ไม่พบสมุดที่อยุ่'; +$messages['bookdeleteconfirm'] = 'คุณต้องการลบสมุดที่อยู่ดังกล่าวพร้อมรายชื่อผู้ติดต่อในนั้นหรือ'; +$messages['bookdeleting'] = 'ลบสมุดที่อยู่'; +$messages['booksaving'] = 'บันทึกสมุดที่อยุ่'; +$messages['bookdeleted'] = 'ลบสมุดที่อยู่เรียบร้อยแล้ว'; +$messages['bookupdated'] = 'ปรับปรุงสมุดที่อยู่เรียบร้อยแล้ว'; +$messages['bookcreated'] = 'สร้างสมุดที่อยู่เรียบร้อยแล้ว'; +$messages['bookdeleteerror'] = 'เกิดข้อผิดพลาดในระหว่างลบสมุดที่อยู่'; +$messages['bookupdateerror'] = 'เกิดข้อผิดพลาดในระหว่า่งปรับปรุงสมุดที่อยู่'; +$messages['bookcreateerror'] = 'เกิดข้อผิดพลาดในระหว่างสร้างสมุดที่อยุ่'; +$messages['nobooknamewarning'] = 'กรุณาป้อนชื่อสมุดบันทึกที่อยู่'; +$messages['noemailnamewarning'] = 'กรุณาป้อน อีเมล์ และ ชื่อผู้ติดต่อ'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_addressbook/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_addressbook/localization/zh_CN.inc
Changed
@@ -6,4 +6,5 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ */ +$labels['bookremove'] = '从列表中移除'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_auth/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_auth/localization/pl_PL.inc
Changed
@@ -7,4 +7,5 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ */ $labels['loginas'] = 'Zaloguj jako'; +$labels['loginasnotallowed'] = 'Brak uprawnień do zalogowania jako $user'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_auth/localization/th.inc
Added
@@ -0,0 +1,11 @@ +<?php +/** + * Localizations for the Kolab Auth plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ + */ +$labels['loginas'] = 'เข้าระบบด้วยชื่อ..'; +$labels['loginasnotallowed'] = 'ไม่มีสิทธิเข้าระบบด้วยชื่อผู้ใช้ $user'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_config/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_config/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab configuration storage", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Aleksander Machniak", @@ -21,6 +21,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5" + "kolab/libkolab": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_delegation/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab delegation feature", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Aleksander Machniak", @@ -21,7 +21,7 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5", + "kolab/libkolab": ">=3.2.6", "kolab/kolab_auth": ">=3.2.2" } }
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/localization/pl.inc
Added
@@ -0,0 +1,11 @@ +<?php +/** + * Localizations for the Kolab Delegation plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ + */ +$labels['event'] = 'Kalendarze'; +$labels['task'] = 'Zadania'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/localization/pt_PT.inc
Added
@@ -0,0 +1,11 @@ +<?php +/** + * Localizations for the Kolab Delegation plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ + */ +$labels['event'] = 'Calendários'; +$labels['savingdata'] = 'Salvando dados...'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/localization/sl.inc
Added
@@ -0,0 +1,36 @@ +<?php +/** + * Localizations for the Kolab Delegation plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ + */ +$labels['tabtitle'] = 'Prenos nalog'; +$labels['delegationtitle'] = 'Uredi sodelujoče'; +$labels['delegates'] = 'Sodelujoči'; +$labels['delegate'] = 'Sodelujoč'; +$labels['mail'] = 'Email'; +$labels['contact'] = 'Imeniki'; +$labels['event'] = 'Koledarji'; +$labels['task'] = 'Naloge'; +$labels['note'] = 'Zapiski'; +$labels['yes'] = 'Da'; +$labels['no'] = 'Ne'; +$labels['read'] = 'Samo za branje'; +$labels['write'] = 'Zapiši'; +$labels['adddelegate'] = 'Dodaj sodelujočega'; +$labels['deletedelegate'] = 'Izbriši sodelujočega'; +$labels['savingdata'] = 'Shranjujem...'; +$labels['delegatedeleteconfirm'] = 'Ali želite potrditi brisanje sodelujočega?'; +$labels['delegateremoveacl'] = 'odstrani pravice za dostop do mape za tega uporabnika'; +$labels['deleteconfirm'] = 'Potrditev'; +$labels['deletesuccess'] = 'Ta sodelujoči je bil uspešno odstranjen.'; +$labels['deleteerror'] = 'Napaka. Ne morem odstraniti sodelujočega.'; +$labels['updatesuccess'] = 'Stanje sodelujočega je bilo uspešno posodobljeno.'; +$labels['updateerror'] = 'Ne morem posodobiti stanja sodelujočega.'; +$labels['createsuccess'] = 'Sodelujoči je bil uspešno dodan.'; +$labels['createerror'] = 'Ne morem dodati sodelujočega.'; +$labels['arialabeldelegatedelete'] = 'Izbrisani dogodki s sodelujočim'; +$labels['arialabeldelegateform'] = 'Obrazec za nastavitve sodelujočih'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_delegation/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/localization/sv_SE.inc
Changed
@@ -6,10 +6,31 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ +$labels['tabtitle'] = 'Delegering'; +$labels['delegationtitle'] = 'Hantera ombud'; +$labels['delegates'] = 'Ombud'; +$labels['delegate'] = 'Delegera'; $labels['mail'] = 'E-post'; +$labels['contact'] = 'Adressböcker'; $labels['event'] = 'Kalendrar'; $labels['task'] = 'Uppgifter'; $labels['note'] = 'Anteckningar'; +$labels['yes'] = 'Ja'; +$labels['no'] = 'Nej'; +$labels['read'] = 'Endast läsbar'; $labels['write'] = 'Skriv'; +$labels['adddelegate'] = 'Lägg till ombud'; +$labels['deletedelegate'] = 'Ta bort ombud'; $labels['savingdata'] = 'Sparar data ...'; +$labels['delegatedeleteconfirm'] = 'Vill du verkligen ta bort detta ombud?'; +$labels['delegateremoveacl'] = 'ta bort åtkomsträttigheter för mappar som tilldelats denna användare'; +$labels['deleteconfirm'] = 'Bekräftelse'; +$labels['deletesuccess'] = 'Ombudet togs bort.'; +$labels['deleteerror'] = 'Ombudet kunde inte tas bort.'; +$labels['updatesuccess'] = 'Detta ombud uppdaterades.'; +$labels['updateerror'] = 'Ombudet kunde inte uppdateras.'; +$labels['createsuccess'] = 'Ombudet lades till.'; +$labels['createerror'] = 'Ombudet kunde inte läggas till.'; +$labels['arialabeldelegatedelete'] = 'Borttagningsdialog för ombud'; +$labels['arialabeldelegateform'] = 'Egenskapsformulär för ombud'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/localization/th.inc
Added
@@ -0,0 +1,32 @@ +<?php +/** + * Localizations for the Kolab Delegation plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ + */ +$labels['tabtitle'] = 'การมอบหมายงาน'; +$labels['delegationtitle'] = 'การจัดการการมอบหมายงาน'; +$labels['mail'] = 'อีเมล์'; +$labels['contact'] = 'สมุดรายชื่อ'; +$labels['event'] = 'ปฎิทิน'; +$labels['task'] = 'งาน'; +$labels['note'] = 'บันทึก'; +$labels['yes'] = 'ใช่'; +$labels['no'] = 'ไม่'; +$labels['read'] = 'อ่านเท่านั้น'; +$labels['write'] = 'เขียน'; +$labels['adddelegate'] = 'เพิ่ม(ผู้รับ/การ)มอบงาน'; +$labels['deletedelegate'] = 'ลบ(ผู้รับ/การ)มอบงาน'; +$labels['savingdata'] = 'บันทึกข้อมูล'; +$labels['delegatedeleteconfirm'] = 'คุณแน่ใจว่าต้องการยกเลิก(ผู้รับ/การ)มอบงานนี้หรือ'; +$labels['delegateremoveacl'] = 'ยกเลิกสิทธิการเข้าถึงแฟ้มของผู้ใช้รายนี้'; +$labels['deleteconfirm'] = 'การยืนยัน'; +$labels['deletesuccess'] = '(ผู้รับ/การ)มอบงานถูกลบเรียบร้อยแล้ว'; +$labels['deleteerror'] = 'ไม่สามารถลบการมอบหมายงานได้'; +$labels['updatesuccess'] = '(ผู้รับ/การ)มอบงานถูกปรับปรุงเรียบร้อยแล้ว'; +$labels['updateerror'] = 'ไม่สามารถปรับปรุง(ผู้รับ/การ)มอบงานได้'; +$labels['createsuccess'] = '(ผู้รับ/การ)มอบงานถูกเพิ่มเรียบร้อยแล้ว'; +$labels['createerror'] = 'ไม่สามารถเพิ่ม(ผู้รับ/การ)มอบงานได้'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_delegation/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_delegation/localization/zh_CN.inc
Changed
@@ -6,4 +6,6 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ +$labels['note'] = '笔记'; +$labels['savingdata'] = '保存数据...'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "User interface for Kolab File Manager (Chwala)", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Aleksander Machniak", @@ -21,6 +21,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5" + "kolab/libkolab": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/da_DK.inc
Changed
@@ -43,11 +43,13 @@ $labels['collection_document'] = 'Dokumenter'; $labels['uploading'] = 'Overfører fil(er)..'; $labels['attaching'] = 'Vedhæfter fil(er)..'; +$labels['authenticating'] = 'Godkender ...'; $labels['foldercreating'] = 'Opretter mappe...'; $labels['folderdeleting'] = 'Sletter mappe...'; $labels['folderdeleteconfirm'] = 'Er du sikker på at du vil slette valgte mappe?'; $labels['folderdeletenotice'] = 'Sletningen af mappe blev gennemført.'; $labels['foldercreatenotice'] = 'Oprettelsen af mappe blev gennemført.'; +$labels['folderauthtitle'] = 'Log på $title'; $labels['saveallnotice'] = 'Gennemførte lagring af $n fil(er).'; $labels['saveallerror'] = 'Lagringen af $n fil(er) mislykkedes.'; $labels['attacherror'] = 'Mislykkedes med at vedhæfte fil(er) fra skyen'; @@ -65,5 +67,7 @@ $labels['fileoverwrite'] = 'Overskriv'; $labels['fileoverwriteall'] = 'Overskriv alle'; $labels['filemoveconfirm'] = 'Denne handling vil overskrive destinationsfilen: <b>$file</b>.'; +$labels['storepasswords'] = 'husk adgangskode'; +$labels['storepasswordsdesc'] = 'Gemte adgangskoder vil blive krypteret. Slå dette til, hvis du ikke ønsker at blive spurgt om adgangskoden ved hvert login, eller hvis du ønsker at denne lagerplads skal være tilgængelig gennem WebDAV.'; $labels['arialabelfileprops'] = 'Filegenskaber'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/de_DE.inc
Changed
@@ -18,6 +18,8 @@ $labels['selectfiles'] = 'Datei(en) zum Anhängen auswählen...'; $labels['attachsel'] = 'Ausgewählte anhängen'; $labels['foldercreate'] = 'Ordner erstellen'; +$labels['folderedit'] = 'Verzeichnis ändern'; +$labels['foldermount'] = 'Speicher hinzufügen'; $labels['folderdelete'] = 'Ordner löschen'; $labels['folderinside'] = 'Erstellen in'; $labels['foldername'] = 'Ordnername'; @@ -44,11 +46,17 @@ $labels['collection_document'] = 'Dokumente'; $labels['uploading'] = 'Lade Datei(en) hoch...'; $labels['attaching'] = 'Hänge Datei(en) an...'; +$labels['authenticating'] = 'Authentifiziere...'; $labels['foldercreating'] = 'Erstelle Ordner...'; +$labels['folderupdating'] = 'Aktualisiere Verzeichnis...'; +$labels['foldermounting'] = 'Hinzufügen externen Speichers...'; $labels['folderdeleting'] = 'Lösche Ordner...'; $labels['folderdeleteconfirm'] = 'Sind Sie sicher, dass Sie den gewählten Ordner löschen möchten?'; $labels['folderdeletenotice'] = 'Ordner erfolgreich gelöscht.'; +$labels['folderupdatenotice'] = 'Verzeichnis erfolgreich aktualisiert.'; $labels['foldercreatenotice'] = 'Ordner erfolgreich erstellt.'; +$labels['foldermountnotice'] = 'Speicher erfolgreich hinzugefügt.'; +$labels['folderauthtitle'] = 'Einloggen zu $title'; $labels['saveallnotice'] = '$n Datei(en) erfolgreich gespeichert.'; $labels['saveallerror'] = 'Speichern von $n Datei(en) fehlgeschlagen.'; $labels['attacherror'] = 'Anhängen von Datei(en) aus der Cloud fehlgeschlagen.'; @@ -67,12 +75,17 @@ $labels['fileoverwrite'] = 'Überschreiben'; $labels['fileoverwriteall'] = 'Alle überschreiben'; $labels['filemoveconfirm'] = 'Diese Aktion wird die Zieldatei <b>$file</b> überschreiben.'; +$labels['storepasswords'] = 'Passwort merken'; +$labels['storepasswordsdesc'] = 'Gespeicherte Passwörter werden verschlüsselt. Aktivieren Sie dies, wenn Sie nicht bei jedem Login nach dem Passwort gefragt werden möchten oder wenn dieser Speicher via WebDAV verfügbar sein soll.'; $labels['arialabelsearchform'] = 'Suchformular für Dateien'; $labels['arialabelquicksearchbox'] = 'Sucheingabe'; $labels['arialabellistoptions'] = 'Dateilisten Optionen'; $labels['arialabelfolderoptions'] = 'Ordner Aktionen'; $labels['arialabelfileeditform'] = 'Datei Bearbeiten Maske'; $labels['arialabelfoldercreateform'] = 'Ordner Erstellen Maske'; +$labels['arialabelfoldereditform'] = 'Formular Verzeichnis ändern'; +$labels['arialabelfoldermountform'] = 'Formular Externer Speicher'; +$labels['arialabelfolderauthform'] = 'Formular Authentifizierung Externer Speicher'; $labels['arialabelfolderlist'] = 'Ordner / Sammlungs Auswahl'; $labels['arialabelfileselectdialog'] = 'Datei Auswahl Dialog'; $labels['arialabelattachmentoptions'] = 'Anhänge speichern Optionen';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/fr_FR.inc
Changed
@@ -45,9 +45,11 @@ $labels['uploading'] = 'Téléversement de(s) fichier(s)...'; $labels['attaching'] = 'Attachement de fichier(s)...'; $labels['foldercreating'] = 'Création d\'un répertoire...'; +$labels['folderupdating'] = 'Mise à jour d\'un répertoire...'; $labels['folderdeleting'] = 'Suppression d\'un répertoire...'; $labels['folderdeleteconfirm'] = 'Êtes-vous sûr de de vouloir supprimer le répertoire sélectionné ?'; $labels['folderdeletenotice'] = 'Le répertoire a été supprimé.'; +$labels['folderupdatenotice'] = 'Le répertoire a été mis à jour.'; $labels['foldercreatenotice'] = 'Le répertoire a été créé.'; $labels['saveallnotice'] = '$n fichier(s) ont été sauvegardé(s)'; $labels['saveallerror'] = 'La sauvegarde de $n fichier(s) a échoué.'; @@ -73,6 +75,7 @@ $labels['arialabelfolderoptions'] = 'Actions de dossier'; $labels['arialabelfileeditform'] = 'Zone d\'édition de fichier'; $labels['arialabelfoldercreateform'] = 'Zone de création de dossier'; +$labels['arialabelfoldereditform'] = 'Zone d\'édition de dossier'; $labels['arialabelfolderlist'] = 'Sélection de dossier'; $labels['arialabelfileselectdialog'] = ' Fenêtre de dialogue de sélection de fichier.'; $labels['arialabelattachmentoptions'] = 'Options d\'enregistrement des pièces jointes';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/pl.inc
Added
@@ -0,0 +1,44 @@ +<?php +/** + * Localizations for the Kolab Files plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ + */ +$labels['files'] = 'Pliki'; +$labels['filepreview'] = 'Podgląd pliku'; +$labels['saveas'] = 'Zapisz jako:'; +$labels['create'] = 'Utwórz'; +$labels['save'] = 'Zapisz'; +$labels['cancel'] = 'Anuluj'; +$labels['name'] = 'Nazwa'; +$labels['mtime'] = 'Zmodyfikowano'; +$labels['type'] = 'Typ'; +$labels['get'] = 'Pobierz'; +$labels['getfile'] = 'Pobierz plik'; +$labels['rename'] = 'Zmień nazwę'; +$labels['deletefile'] = 'Usuń plik(i)'; +$labels['edit'] = 'Edytuj'; +$labels['editfile'] = 'Edytuj plik'; +$labels['save'] = 'Zapisz'; +$labels['savefile'] = 'Zapisz plik'; +$labels['printfile'] = 'Wydrukuj plik'; +$labels['fileedit'] = 'Właściwości'; +$labels['collection_audio'] = 'Audio'; +$labels['collection_video'] = 'Video'; +$labels['collection_image'] = 'Obrazy'; +$labels['collection_document'] = 'Dokumenty'; +$labels['authenticating'] = 'Uwierzytelnianie...'; +$labels['foldercreating'] = 'Utwórz folder...'; +$labels['folderupdating'] = 'Aktualizacja folderu...'; +$labels['folderdeleting'] = 'Usuwanie folderu...'; +$labels['folderauthtitle'] = 'Zaloguj do $title'; +$labels['uploadsizeerror'] = 'Maksymalny rozmiar pliku ($size) przekroczony!'; +$labels['fileskip'] = 'Pomiń'; +$labels['fileskipall'] = 'Pomiń wszystko'; +$labels['fileoverwrite'] = 'Nadpisz'; +$labels['fileoverwriteall'] = 'Nadpisz wszystko'; +$labels['storepasswords'] = 'zapamiętaj hasło'; +$labels['arialabelfileprops'] = 'Właściwości'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/pl_PL.inc
Changed
@@ -18,6 +18,8 @@ $labels['selectfiles'] = 'Wybierz pliki do załączenia...'; $labels['attachsel'] = 'Załącz wybrane'; $labels['foldercreate'] = 'Utwórz folder'; +$labels['folderedit'] = 'Edytuj folder'; +$labels['foldermount'] = 'Dodaj przestrzeń'; $labels['folderdelete'] = 'Usuń folder'; $labels['folderinside'] = 'Wstaw wewnątrz'; $labels['foldername'] = 'Nazwa folderu'; @@ -44,11 +46,16 @@ $labels['collection_document'] = 'Dokumenty'; $labels['uploading'] = 'Zapisywanie plików...'; $labels['attaching'] = 'Załączanie plików...'; +$labels['authenticating'] = 'Uwierzytelnianie...'; $labels['foldercreating'] = 'Tworzenie folderu...'; +$labels['folderupdating'] = 'Aktualizowanie folderu...'; +$labels['foldermounting'] = 'Dodawanie przestrzeni zewnętrznej...'; $labels['folderdeleting'] = 'Usuwanie folderu...'; $labels['folderdeleteconfirm'] = 'Czy na pewno chcesz usunąć wybrany folder?'; $labels['folderdeletenotice'] = 'Folder został usunięty.'; +$labels['folderupdatenotice'] = 'Folder został zaktualizowany.'; $labels['foldercreatenotice'] = 'Folder został utworzony.'; +$labels['foldermountnotice'] = 'Przestrzeń dodana pomyślnie.'; $labels['saveallnotice'] = 'Pomyślnie zapisano $n plików.'; $labels['saveallerror'] = 'Nie można zapisać $n plików.'; $labels['attacherror'] = 'Nie udało się załączenie plików z chmury'; @@ -67,12 +74,15 @@ $labels['fileoverwrite'] = 'Nadpisz'; $labels['fileoverwriteall'] = 'Nadpisz wszystkie'; $labels['filemoveconfirm'] = 'Akcja ta nadpisze docelowy plik: <b>$file</b>.'; +$labels['storepasswords'] = 'zapamiętaj hasło'; $labels['arialabelsearchform'] = 'Formularz wyszukiwania plików'; $labels['arialabelquicksearchbox'] = 'Fraza wyszukiwania'; $labels['arialabellistoptions'] = 'Opcje listy plików'; $labels['arialabelfolderoptions'] = 'Akcje folderów'; $labels['arialabelfileeditform'] = 'Formularz edycji pliku'; $labels['arialabelfoldercreateform'] = 'Formularz tworzenia folderów'; +$labels['arialabelfoldereditform'] = 'Formularz edycji folderów'; +$labels['arialabelfoldermountform'] = 'Formularz zewnętrznego przechowywania'; $labels['arialabelfolderlist'] = 'Wybór foldera/kolekcji'; $labels['arialabelfileselectdialog'] = 'Okno wyboru pliku'; $labels['arialabelattachmentoptions'] = 'Opcje zapisu załączników';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/pt_PT.inc
Added
@@ -0,0 +1,15 @@ +<?php +/** + * Localizations for the Kolab Files plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ + */ +$labels['save'] = 'Gravar'; +$labels['cancel'] = 'Cancelar'; +$labels['folderinside'] = 'Inserir dentro'; +$labels['name'] = 'Nome'; +$labels['edit'] = 'Editar'; +$labels['save'] = 'Gravar'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/sk.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/sk.inc
Changed
@@ -7,6 +7,7 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ $labels['save'] = 'Uložiť'; +$labels['cancel'] = 'Zrušiť'; $labels['name'] = 'Meno'; $labels['edit'] = 'Upraviť'; $labels['save'] = 'Uložiť';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/sl.inc
Added
@@ -0,0 +1,16 @@ +<?php +/** + * Localizations for the Kolab Files plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ + */ +$labels['files'] = 'Dokumenti'; +$labels['save'] = 'Shrani'; +$labels['cancel'] = 'Prekliči'; +$labels['folderinside'] = 'Vstavi'; +$labels['name'] = 'Ime'; +$labels['edit'] = 'Uredi'; +$labels['save'] = 'Shrani'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/sv_SE.inc
Changed
@@ -16,6 +16,7 @@ $labels['cancel'] = 'Avbryt'; $labels['fromcloud'] = 'Från moln ...'; $labels['selectfiles'] = 'Välj fil(er) att bifoga ...'; +$labels['attachsel'] = 'Bifoga vald(a)'; $labels['foldercreate'] = 'Skapa mapp'; $labels['folderedit'] = 'Redigera mapp'; $labels['foldermount'] = 'Lägg till lagring'; @@ -43,8 +44,32 @@ $labels['collection_video'] = 'Video'; $labels['collection_image'] = 'Bilder'; $labels['collection_document'] = 'Dokument'; +$labels['uploading'] = 'Laddar upp fil(er) ...'; +$labels['attaching'] = 'Bifogar fil(er) ...'; $labels['authenticating'] = 'Autentiserar ...'; +$labels['foldercreating'] = 'Skapar mapp ...'; +$labels['folderupdating'] = 'Uppdaterar mapp ...'; +$labels['foldermounting'] = 'Lägger till extern lagring ...'; +$labels['folderdeleting'] = 'Tar bort mapp ...'; +$labels['folderdeleteconfirm'] = 'Vill du verkligen ta bort vald mapp?'; +$labels['folderdeletenotice'] = 'Mapp borttagen.'; +$labels['folderupdatenotice'] = 'Mapp uppdaterad.'; +$labels['foldercreatenotice'] = 'Mapp skapad.'; +$labels['foldermountnotice'] = 'Lagring lades till.'; $labels['folderauthtitle'] = 'Logga in på'; +$labels['saveallnotice'] = 'Sparade $n fil(er).'; +$labels['saveallerror'] = 'Sparar $n fil(er) misslyckades.'; +$labels['attacherror'] = 'Misslyckades att bifoga fil(er) från molnet'; +$labels['fileupdating'] = 'Uppdaterar fil ...'; +$labels['filemoving'] = 'Flyttar fil(er) ...'; +$labels['filecopying'] = 'Kopierar fil(er) ...'; +$labels['filedeleting'] = 'Tar bort fil(er) ...'; +$labels['filedeleteconfirm'] = 'Vill du verkligen ta bort valda filer?'; +$labels['filedeletenotice'] = 'Fil(er) borttagna.'; +$labels['filemovenotice'] = 'Fil(er) flyttade.'; +$labels['filecopynotice'] = 'Fil(er) kopierade.'; +$labels['uploadsizeerror'] = 'Maximal filstorlek ($size) överskriden!'; +$labels['allfolders'] = 'sök i alla mappar'; $labels['fileskip'] = 'Hoppa över'; $labels['fileskipall'] = 'Hoppa över alla'; $labels['fileoverwrite'] = 'Skriv över'; @@ -52,5 +77,19 @@ $labels['filemoveconfirm'] = 'Denna åtgärd kommer att skriva över målfilen: <b>$file</b>.'; $labels['storepasswords'] = 'kom ihåg lösenord'; $labels['storepasswordsdesc'] = 'Lagrade lösenord kommer att krypteras. Aktivera det här om du inte vill bli tillfrågad om lösenordet vid varje inloggning eller om du vill att denna lagring ska vara tillgänglig via WebDAV.'; +$labels['arialabelsearchform'] = 'Sökformulär för filer'; +$labels['arialabelquicksearchbox'] = 'Sökinmatning'; +$labels['arialabellistoptions'] = 'Fillistningsval'; +$labels['arialabelfolderoptions'] = 'Mappåtgärd'; +$labels['arialabelfileeditform'] = 'Filredigeringsformulär'; +$labels['arialabelfoldercreateform'] = 'Formulär för skapa-mapp'; +$labels['arialabelfoldereditform'] = 'Formulär för mappredigering'; +$labels['arialabelfoldermountform'] = 'Formulär för extern lagring'; +$labels['arialabelfolderauthform'] = 'Autentiseringsformulär för extern lagring'; +$labels['arialabelfolderlist'] = 'Mapp-/samlingsurval'; +$labels['arialabelfileselectdialog'] = 'Filurvalsdialog'; +$labels['arialabelattachmentoptions'] = 'Alternativ för att spara bilagor'; +$labels['arialabelfilesavedialog'] = 'Dialog för atta spara fil(er)'; $labels['arialabelfileprops'] = 'Filegenskaper'; +$labels['arialabelfilecontent'] = 'Filinnehåll'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/th.inc
Added
@@ -0,0 +1,90 @@ +<?php +/** + * Localizations for the Kolab Files plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ + */ +$labels['files'] = 'ไฟล์'; +$labels['filepreview'] = 'ดูไฟล์ก่อน'; +$labels['saveall'] = 'บันทึกทั้งหมดไปบนคลาวน์'; +$labels['saveto'] = 'บันทึกไปบนคลาวน์'; +$labels['saveas'] = 'บันทึกเป็น'; +$labels['create'] = 'สร้าง'; +$labels['save'] = 'บันทึก'; +$labels['cancel'] = 'ยกเลิก'; +$labels['fromcloud'] = 'จากคลาวน์'; +$labels['selectfiles'] = 'เลือกไฟล์ที่จะแนบ'; +$labels['foldercreate'] = 'สร้างแฟ้ม'; +$labels['folderedit'] = 'แก้ไขแฟ้ม'; +$labels['foldermount'] = 'เพิ่มพื้นที่จัดเก็บ'; +$labels['folderdelete'] = 'ลบแฟ้ม'; +$labels['folderinside'] = 'ใส่เข้าภายใต้'; +$labels['foldername'] = 'ชื่อแฟ้ม'; +$labels['name'] = 'ชื่อ'; +$labels['mtime'] = 'แก้ไข'; +$labels['type'] = 'ชนิด'; +$labels['upload'] = 'นำขึ้น'; +$labels['uploadfile'] = 'นำขึ้นไฟล์'; +$labels['get'] = 'นำกลับ'; +$labels['getfile'] = 'นำกลับไฟล์'; +$labels['view'] = 'มุมมอง'; +$labels['viewfile'] = 'ดูไฟล์'; +$labels['rename'] = 'เปลี่ยนชื่อไฟล์'; +$labels['deletefile'] = 'ลบไฟล์'; +$labels['edit'] = 'แก้ไข'; +$labels['editfile'] = 'แก้ไขไฟล์'; +$labels['save'] = 'บันทึก'; +$labels['savefile'] = 'บันทึกไฟล์'; +$labels['printfile'] = 'พิมพ์ไฟล์'; +$labels['fileedit'] = 'คุณสมบัติของไฟล์'; +$labels['collection_audio'] = 'เสียง'; +$labels['collection_video'] = 'วีดีโอ'; +$labels['collection_image'] = 'ภาพ'; +$labels['collection_document'] = 'เอกสาร'; +$labels['uploading'] = 'กำลังอัพโหลดไฟล์...'; +$labels['attaching'] = 'กำลังแนบไฟล์...'; +$labels['authenticating'] = 'กำลังพิสูจน์ตัวตน...'; +$labels['foldercreating'] = 'กำลังสร้างแฟ้ม...'; +$labels['folderupdating'] = 'กำลังปรับปรุงแฟ้ม...'; +$labels['foldermounting'] = 'กำลังเพิ่มพื้นที่จัดเก็บภายนอก...'; +$labels['folderdeleting'] = 'กำลังลบแฟ้ม...'; +$labels['folderdeleteconfirm'] = 'คุณแน่ใจว่าคุณต้องการลบแฟ้มที่เลือกนี้หรือ'; +$labels['folderdeletenotice'] = 'แฟ้มถูกลบเรียบร้อยแล้ว'; +$labels['folderupdatenotice'] = 'แฟ้มถูกปรับปรุงเรียบร้อยแล้ว'; +$labels['foldercreatenotice'] = 'แฟ้มถูกสร้างเรียบร้อยแล้ว'; +$labels['foldermountnotice'] = 'พื้นที่จัดเก็บถูกเพิ่มเรียบร้อยแล้ว'; +$labels['saveallnotice'] = 'บันทึกไฟล์จำนวน $n ไฟล์ เรียบร้อยแล้ว'; +$labels['saveallerror'] = 'บันทึกไฟล์จำนวน $n ไฟล์ ล้มเหลว'; +$labels['attacherror'] = 'การแนบไฟล์จากคลาวน์ล้มเหลว'; +$labels['fileupdating'] = 'กำลังปรับปรุงไฟล์...'; +$labels['filemoving'] = 'กำลังเคลื่อนย้ายไฟล์...'; +$labels['filecopying'] = 'กำลังคัดลอกไฟล์...'; +$labels['filedeleting'] = 'กำลังลบไฟล์...'; +$labels['filedeleteconfirm'] = 'คุณแน่ใจว่าคุณต้องการลบไฟล์ที่ถูกเลือกหรือ'; +$labels['filedeletenotice'] = 'ไฟล์ถูกลบเรียบร้อยแล้ว'; +$labels['filemovenotice'] = 'ไฟล์ถูกเคลื่อนย้ายเรียบร้อยแล้ว'; +$labels['filecopynotice'] = 'ไฟล์ถูกคัดลอกเรียบร้อยแล้ว'; +$labels['uploadsizeerror'] = 'ไฟล์มีขนาดเกินกว่าขนาดสูงสุด ($size)'; +$labels['allfolders'] = 'ค้นหาในทุกแฟ้ม'; +$labels['fileskip'] = 'ข้าม'; +$labels['fileskipall'] = 'ข้ามทั้งหมด'; +$labels['fileoverwrite'] = 'เขียนทับ'; +$labels['fileoverwriteall'] = 'เขียนทับทั้งหมด'; +$labels['filemoveconfirm'] = 'การดำเนินการนี้จะเขียนทับไฟล์ที่ปลายทาง <b>$file</b>'; +$labels['storepasswords'] = 'จดจำรหัสผ่าน'; +$labels['storepasswordsdesc'] = 'พาสเวิสด์ที่จัดเก็บจะถูกเข้ารหัส เปิดใช้สิ่งนี้หากคุณไม่ต้องการถูกถามพาสเวิสด์ทุกครั้งที่เข้าระบบ หรือ หากคุณต้องการให้พื้นที่จัดเก็บเข้าถึงได้จาก WebDAV'; +$labels['arialabelsearchform'] = 'ฟอร์มค้นหาไฟล์'; +$labels['arialabelquicksearchbox'] = 'ข้อมูลที่ต้องการค้นหา'; +$labels['arialabellistoptions'] = 'ทางเลือกรายชื่อไฟล์'; +$labels['arialabelfileeditform'] = 'ฟอร์มแก้ไขไฟล์'; +$labels['arialabelfoldercreateform'] = 'ฟอร์มสร้างแฟ้ม'; +$labels['arialabelfoldereditform'] = 'ฟอร์มแก้ไขแฟ้ม'; +$labels['arialabelfoldermountform'] = 'ฟอร์มพื้นที่จัดเก็บภายนอก'; +$labels['arialabelfolderauthform'] = 'ฟอร์มยืนยันตัวตนสำหรับพื้นที่จัดเก็บภายนอก'; +$labels['arialabelattachmentoptions'] = 'ทางเลือกของการบันทึกสิ่งที่แนบมาด้วย'; +$labels['arialabelfilesavedialog'] = 'dialog สำหรับการบันทึกไฟล์'; +$labels['arialabelfileprops'] = 'คุณสมบัติของไฟล์'; +$labels['arialabelfilecontent'] = 'เนื้อหาในไฟล์'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_files/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_files/localization/zh_CN.inc
Changed
@@ -6,4 +6,9 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ +$labels['save'] = '保存'; +$labels['cancel'] = '取消'; +$labels['name'] = '名称'; +$labels['edit'] = '编辑'; +$labels['save'] = '保存'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_folders/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Type-aware folder management/listing for Kolab", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Aleksander Machniak", @@ -21,6 +21,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5" + "kolab/libkolab": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/localization/pl.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ + */ +$labels['foldertypeevent'] = 'Kalendarz'; +$labels['foldertypetask'] = 'Zadania'; +$labels['foldertypefile'] = 'Pliki'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_folders/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/localization/pl_PL.inc
Changed
@@ -23,6 +23,6 @@ $labels['outbox'] = 'Poczta wychodząca'; $labels['wastebasket'] = 'Kosz'; $labels['junkemail'] = 'Spam'; -$labels['confidential'] = 'Confidential'; +$labels['confidential'] = 'Poufne'; $messages['defaultfolderexists'] = 'Folder domyślny wybranego typu już istnieje'; ?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/localization/pt_PT.inc
Added
@@ -0,0 +1,10 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ + */ +$labels['foldertypeevent'] = 'Calendário'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/localization/sl.inc
Added
@@ -0,0 +1,28 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ + */ +$labels['folderctype'] = 'Vrsta vsebine'; +$labels['foldertypemail'] = 'Pošta'; +$labels['foldertypeevent'] = 'Koledar'; +$labels['foldertypejournal'] = 'Dnevnik'; +$labels['foldertypetask'] = 'Naloge'; +$labels['foldertypenote'] = 'Zapiski'; +$labels['foldertypecontact'] = 'Kontakti'; +$labels['foldertypeconfiguration'] = 'Nastavitve'; +$labels['foldertypefile'] = 'Dokumenti'; +$labels['foldertypefreebusy'] = 'Prost-Zaseden'; +$labels['default'] = 'Privzet'; +$labels['inbox'] = 'Dohodna pošta'; +$labels['drafts'] = 'Osnutki'; +$labels['sentitems'] = 'Poslano'; +$labels['outbox'] = 'Izhodna pošta'; +$labels['wastebasket'] = 'Koš'; +$labels['junkemail'] = 'Smeti'; +$labels['confidential'] = 'Zaupno'; +$messages['defaultfolderexists'] = 'Privzeta mapa izbranega tipa že obstaja'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/localization/th.inc
Added
@@ -0,0 +1,27 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ + */ +$labels['folderctype'] = 'ชนิดของเนื่้อหา'; +$labels['foldertypemail'] = 'จดหมาย'; +$labels['foldertypeevent'] = 'ปฎิทิน'; +$labels['foldertypetask'] = 'งาน'; +$labels['foldertypenote'] = 'บันทึก'; +$labels['foldertypecontact'] = 'รายชื้อผู้ติดต่อ'; +$labels['foldertypeconfiguration'] = 'ค่าคุณสมบัติ'; +$labels['foldertypefile'] = 'ไฟล์'; +$labels['foldertypefreebusy'] = 'ว่าง-ติดธุระ'; +$labels['default'] = 'ค่าเริ่มต้น'; +$labels['inbox'] = 'กล่องขาเข้า'; +$labels['drafts'] = 'จดหมายร่าง'; +$labels['sentitems'] = 'จัดส่งแล้ว'; +$labels['outbox'] = 'กล่องขาออก'; +$labels['wastebasket'] = 'ถ้งขยะ'; +$labels['junkemail'] = 'ขยะ'; +$labels['confidential'] = 'ลับเฉพาะ'; +$messages['defaultfolderexists'] = 'มีแฟ้มสำหรับเก็บข้อมูลขนิดดังกล่าวแล้ว'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_folders/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_folders/localization/zh_CN.inc
Changed
@@ -6,4 +6,5 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ */ +$labels['foldertypenote'] = '笔记'; ?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_notes/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Notes module for Roundcube connecting to a Kolab server for storage", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli", @@ -21,7 +21,7 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5", + "kolab/libkolab": ">=3.2.6", "roundcube/jqueryui": ">=1.10.4" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_notes/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/cs_CZ.inc
Changed
@@ -33,7 +33,7 @@ $labels['nonotebooksfound'] = 'Nenalezeny žádné zápisníky'; $labels['removelist'] = 'Odstranit ze seznamu'; $labels['removelink'] = 'Odstranit odkaz na e-mail'; -$labels['savingdata'] = 'Ukládám data...'; +$labels['savingdata'] = 'Ukládají se data...'; $labels['recordnotfound'] = 'Záznam nenalezen'; $labels['norecordsfound'] = 'Nenalezeny žádné poznámky'; $labels['nochanges'] = 'Žádné změny k uložení';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_notes/localization/fi_FI.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/fi_FI.inc
Changed
@@ -11,4 +11,5 @@ $labels['abort'] = 'Keskeytä'; $labels['foldersubscribe'] = 'Luetteloi pysyvästi'; $labels['removelist'] = 'Poista listasta'; +$labels['removelink'] = 'Poista sähköpostiviittaus'; $labels['savingdata'] = 'Tallennetaan tietoja...';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/pl.inc
Added
@@ -0,0 +1,7 @@ +<?php +$labels['tags'] = 'Tagi'; +$labels['created'] = 'Utworzone'; +$labels['changed'] = 'Ostatnia modyfikacja'; +$labels['title'] = 'Tytuł'; +$labels['listname'] = 'Nazwa'; +$labels['removelist'] = 'Usuń z listy';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/pt_PT.inc
Added
@@ -0,0 +1,9 @@ +<?php +$labels['created'] = 'Created'; +$labels['changed'] = 'Last Modified'; +$labels['listname'] = 'Nome'; +$labels['tabsharing'] = 'Compartilhamento'; +$labels['foldersubscribe'] = 'Listar permanentemente'; +$labels['removelist'] = 'Remove from list'; +$labels['removelink'] = 'Remove email reference'; +$labels['savingdata'] = 'Salvando dados...';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_notes/localization/sk.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/sk.inc
Changed
@@ -1,2 +1,3 @@ <?php $labels['listname'] = 'Meno'; +$labels['removelist'] = 'Odstrániť zo zoznamu';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/sl.inc
Added
@@ -0,0 +1,55 @@ +<?php +$labels['navtitle'] = 'Zapiski'; +$labels['tags'] = 'Tagi'; +$labels['lists'] = 'Beležke'; +$labels['notes'] = 'Zapiski'; +$labels['create'] = 'Nov zapisek'; +$labels['createnote'] = 'Ustvari nov zapis'; +$labels['send'] = 'Pošlji'; +$labels['sendnote'] = 'Pošlji zapisek v emailu'; +$labels['newnote'] = 'Nov zapisek'; +$labels['notags'] = 'Ni tagov'; +$labels['removetag'] = 'Odstrani tag'; +$labels['created'] = 'Ustvarjeno'; +$labels['changed'] = 'Nazadnje urejeno'; +$labels['title'] = 'Naslov'; +$labels['now'] = 'Zdaj'; +$labels['sortby'] = 'Sortiraj po'; +$labels['newnotebook'] = 'Ustvari novo beležko'; +$labels['addnotebook'] = 'Dodaj beležko'; +$labels['editlist'] = 'Uredi beležko'; +$labels['listname'] = 'Ime'; +$labels['tabsharing'] = 'Deli z ostalimi'; +$labels['discard'] = 'Prekliči'; +$labels['abort'] = 'Prekini'; +$labels['unsavedchanges'] = 'Neshranjene Spremembe!'; +$labels['appendnote'] = 'Dodaj zapisek'; +$labels['editnote'] = 'Uredi zapisek'; +$labels['savein'] = 'Shrani v'; +$labels['foldersubscribe'] = 'Označi za vedno'; +$labels['findnotebooks'] = 'Poišči beležke...'; +$labels['listsearchresults'] = 'Dodatne beležke'; +$labels['nrnotebooksfound'] = '$nr najdenih beležk'; +$labels['nonotebooksfound'] = 'Ni najdenih beležk'; +$labels['removelist'] = 'Odstrani iz seznama'; +$labels['removelink'] = 'Odstrani email povezavo'; +$labels['savingdata'] = 'Shranjujem...'; +$labels['recordnotfound'] = 'Zapis ni bil najden'; +$labels['norecordsfound'] = 'Ni najdenih zapiskov'; +$labels['nochanges'] = 'Ni sprememb za shranjevanje'; +$labels['entertitle'] = 'Prosim vnesite naslov zapiska!'; +$labels['deletenotesconfirm'] = 'Ali želite potrditi brisanje zapiska?'; +$labels['deletenotebookconfirm'] = 'Ali želite potrditi brisanje beležke z vsemi zapiski? Izbris je dokončen.'; +$labels['discardunsavedchanges'] = 'Trenutni zapisek še ni bil shranjen. Prekličem spremembe?'; +$labels['invalidlistproperties'] = 'Napačne nastavitve beležke! Prosim vnesite pravilno ime.'; +$labels['entertitle'] = 'Prosim vnesite naslov zapiska!'; +$labels['aclnorights'] = 'Nimate administratorskih pravic na tej beležki.'; +$labels['arialabelnoteslist'] = 'Seznam zapiskov'; +$labels['arialabelnotesearchform'] = 'Obrazec za iskanje zapiskov'; +$labels['arialabelnotesquicksearchbox'] = 'Vnos iskanja po zapiskih'; +$labels['arialabelnotessortmenu'] = 'Nastavitve za sortiranje zapiskov'; +$labels['arialabelnotesoptionsmenu'] = 'Ukazni meni za beležke'; +$labels['arialabelnotebookform'] = 'Nastavitve beležke'; +$labels['arialabelmessagereferences'] = 'Povezana email sporočila'; +$labels['arialabelfolderearchform'] = 'Obrazec za iskanje beležk'; +$labels['arialabelnoteform'] = 'Obrazec za urejanje zapiska';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_notes/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/sv_SE.inc
Changed
@@ -1,12 +1,55 @@ <?php $labels['navtitle'] = 'Anteckningar'; $labels['tags'] = 'Etiketter'; +$labels['lists'] = 'Anteckningsböcker'; $labels['notes'] = 'Anteckningar'; +$labels['create'] = 'Ny anteckning'; +$labels['createnote'] = 'Skapa en ny anteckning'; +$labels['send'] = 'Skicka'; +$labels['sendnote'] = 'Skicka anteckning med e-post'; +$labels['newnote'] = 'Ny anteckning'; +$labels['notags'] = 'Inga etiketter'; +$labels['removetag'] = 'Ta bort etikett'; $labels['created'] = 'Skapad'; $labels['changed'] = 'Senast ändrad'; $labels['title'] = 'Titel'; +$labels['now'] = 'Nu'; +$labels['sortby'] = 'Sortera enligt'; +$labels['newnotebook'] = 'Skapa en ny anteckningsbok'; +$labels['addnotebook'] = 'Lägg till anteckningsbok'; +$labels['editlist'] = 'Redigera anteckningsbok'; $labels['listname'] = 'Namn'; $labels['tabsharing'] = 'Delning'; +$labels['discard'] = 'Kassera'; +$labels['abort'] = 'Avbryt'; +$labels['unsavedchanges'] = 'Ej sparade ändringar!'; +$labels['appendnote'] = 'Lägg till en anteckning'; +$labels['editnote'] = 'Redigera anteckning'; +$labels['savein'] = 'Spara i'; $labels['foldersubscribe'] = 'Lista permanent'; +$labels['findnotebooks'] = 'Hitta anteckningsböcker ...'; +$labels['listsearchresults'] = 'Ytterligare anteckningsböcker'; +$labels['nrnotebooksfound'] = '$nr anteckningsböcker hittades'; +$labels['nonotebooksfound'] = 'Inga anteckningsböcker hittades'; $labels['removelist'] = 'Ta bort från lista'; +$labels['removelink'] = 'Ta bort e-postreferens'; $labels['savingdata'] = 'Sparar data ...'; +$labels['recordnotfound'] = 'Hittade inte post'; +$labels['norecordsfound'] = 'Inga anteckningar hittades'; +$labels['nochanges'] = 'Inga ändringar att spara'; +$labels['entertitle'] = 'Vänligen ange en titel för denna anteckning!'; +$labels['deletenotesconfirm'] = 'Vill du verkligen ta bort valda anteckningar?'; +$labels['deletenotebookconfirm'] = 'Vill du verkligen ta denna anteckningsbok med alla anteckningar? Denna åtgärd kan inte ångras.'; +$labels['discardunsavedchanges'] = 'Den nuvarande anteckningen har inte sparats än. Ignorera ändringarna?'; +$labels['invalidlistproperties'] = 'Ogiltiga egenskaper för anteckningsbok! Vänligen ange ett giltigt namn.'; +$labels['entertitle'] = 'Vänligen ange en titel för denna anteckning!'; +$labels['aclnorights'] = 'Du har inte administratörsrättigheter för denna anteckningsbok.'; +$labels['arialabelnoteslist'] = 'Lista med anteckningar'; +$labels['arialabelnotesearchform'] = 'Sökformulär för anteckningar'; +$labels['arialabelnotesquicksearchbox'] = 'Sökinmatning för anteckningar'; +$labels['arialabelnotessortmenu'] = 'Sorteringsalternativ för anteckningslista'; +$labels['arialabelnotesoptionsmenu'] = 'Åtgärdsmeny för anteckningsbok'; +$labels['arialabelnotebookform'] = 'Egenskaper för anteckningsbok'; +$labels['arialabelmessagereferences'] = 'Länkade e-postmeddelanden'; +$labels['arialabelfolderearchform'] = 'Sökformulär för anteckningsböcker'; +$labels['arialabelnoteform'] = 'Redigeringsformulär för anteckning';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/th.inc
Added
@@ -0,0 +1,52 @@ +<?php +$labels['navtitle'] = 'สมุดจด'; +$labels['tags'] = 'แท็ก'; +$labels['lists'] = 'สมุดบันทึก'; +$labels['notes'] = 'บันทึก'; +$labels['create'] = 'บันทึกใหม่'; +$labels['createnote'] = 'สร้างบันทึกใหม่'; +$labels['send'] = 'จัดส่ง'; +$labels['sendnote'] = 'ส่งบันทึกทางอีเมล์'; +$labels['newnote'] = 'สร้างบันทึกใหม่'; +$labels['removetag'] = 'ยกเลิกแท็ก'; +$labels['created'] = 'สร้างเมื่อ'; +$labels['changed'] = 'แก้ไขครั้งสุดท้ายเมื่อ'; +$labels['title'] = 'หัวข้อ'; +$labels['now'] = 'ขณะนี้'; +$labels['sortby'] = 'จัดเรียงโดย'; +$labels['newnotebook'] = 'สร้างสมุดบันทึกใหม่'; +$labels['addnotebook'] = 'เพิ่่มสมุดบันทึก'; +$labels['editlist'] = 'แก้ไขสมุดบันทึก'; +$labels['listname'] = 'ชื่อ'; +$labels['tabsharing'] = 'แบ่งปัน'; +$labels['discard'] = 'โยนทิ้ง'; +$labels['abort'] = 'ยกเลิก'; +$labels['unsavedchanges'] = 'การเปลี่ยนที่ยังไม่รับรับการบันทึก'; +$labels['appendnote'] = 'เพิ่มบันทึก'; +$labels['editnote'] = 'แก้ไขบันทึก'; +$labels['savein'] = 'จัดเก็บใน'; +$labels['foldersubscribe'] = 'แสดงเป็นรายการถาวร'; +$labels['findnotebooks'] = 'ค้นหาสมุดบันทึก...'; +$labels['listsearchresults'] = 'สมุดบันทึกเพิ่มเติม'; +$labels['nrnotebooksfound'] = 'พบสมุดบันทึก $nr เล่ม'; +$labels['nonotebooksfound'] = 'ไม่พบสมุดบันทึก'; +$labels['removelist'] = 'ลบออกจากรายการ'; +$labels['savingdata'] = 'กำลังจัดเก็บข้อมูล...'; +$labels['recordnotfound'] = 'ไม่พบข้อมูล'; +$labels['norecordsfound'] = 'ไม่พบบันทึกข้อความ'; +$labels['nochanges'] = 'ไม่มีการเปลี่ยนแปลงให้บันทึก'; +$labels['entertitle'] = 'โปรดป้อนหัวข้อสำหรับบันทึกฉบับนี้'; +$labels['deletenotesconfirm'] = 'คุณต้องการลบบันทีกที่เลือกนี้จริง ๆ หรือ'; +$labels['deletenotebookconfirm'] = 'คุณต้องการลบสมุดบันทึกพร้อมบันทึกทั้งหมดหรือ การทำครั้งนี้จะไม่สามารถกู้คืนได้'; +$labels['discardunsavedchanges'] = 'บันทึกแผ่นนี้ยังไม่ถูกจัดเก็บ ยกเลิกการเปลี่ยนแปลง'; +$labels['invalidlistproperties'] = 'คุณสมบัติของสมุดบันทึกไม่ถูกต้อง โปรดตั้งชื่อให้ถูกต้อง'; +$labels['entertitle'] = 'โปรดป้อนหัวข้อสำหรับบันทึกฉบับนี้'; +$labels['aclnorights'] = 'คุณไม่มีสิทธของผู้ดูแลระบบสำหรับสมุดบันทึกเล่มนี้'; +$labels['arialabelnoteslist'] = 'รายการบันทึก'; +$labels['arialabelnotesearchform'] = 'ฟอร์มการค้นหาบันทึก'; +$labels['arialabelnotesquicksearchbox'] = 'ข้อมูลสำหรับค้นหาบันทึก'; +$labels['arialabelnotessortmenu'] = 'ทางเลือกการจัดเรียงบันทึก'; +$labels['arialabelnotebookform'] = 'คุณสมบัติของสมุดบันทึก'; +$labels['arialabelmessagereferences'] = 'ข้อความอีเมล์ที่เชื่อมต่อ'; +$labels['arialabelfolderearchform'] = 'ฟอร์มการค้นหาสมุดบันทึก'; +$labels['arialabelnoteform'] = 'ฟอร์มการแก้ไขบันทึก';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_notes/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_notes/localization/zh_CN.inc
Changed
@@ -1,1 +1,42 @@ <?php +$labels['navtitle'] = '笔记'; +$labels['tags'] = '标签'; +$labels['lists'] = '笔记本'; +$labels['notes'] = '笔记'; +$labels['create'] = '新笔记'; +$labels['createnote'] = '新建备忘录'; +$labels['send'] = '发送'; +$labels['sendnote'] = '通过邮件发送备忘录'; +$labels['newnote'] = '新备忘录'; +$labels['notags'] = '无标签'; +$labels['removetag'] = '移除标签'; +$labels['created'] = '已创建'; +$labels['changed'] = '最后更改'; +$labels['title'] = '标题'; +$labels['now'] = '现在'; +$labels['sortby'] = '按此排序'; +$labels['newnotebook'] = '创建新笔记本'; +$labels['addnotebook'] = '增加笔记本'; +$labels['editlist'] = '编辑笔记本'; +$labels['listname'] = '名称'; +$labels['tabsharing'] = '分享'; +$labels['discard'] = '放弃'; +$labels['abort'] = '退出'; +$labels['unsavedchanges'] = '更改未保存'; +$labels['appendnote'] = '增加新笔记'; +$labels['editnote'] = '编辑笔记'; +$labels['savein'] = '保存为'; +$labels['removelist'] = '从列表中移除'; +$labels['savingdata'] = '保存数据...'; +$labels['recordnotfound'] = '未找到记录'; +$labels['norecordsfound'] = '未找到笔记'; +$labels['nochanges'] = '未更改内容'; +$labels['entertitle'] = '请为此笔记输入标题'; +$labels['deletenotesconfirm'] = '是否删除所选笔记?'; +$labels['deletenotebookconfirm'] = '是否删除所选笔记下的所有记录?此步骤无法恢复。'; +$labels['discardunsavedchanges'] = '当前笔记未保存。是否放弃更改?'; +$labels['invalidlistproperties'] = '无效的笔记本属性!请输入一个有效的名称。'; +$labels['entertitle'] = '请为此笔记输入标题'; +$labels['aclnorights'] = '您无此笔记本的管理权限。'; +$labels['arialabelnoteslist'] = '列出笔记'; +$labels['arialabelnotebookform'] = '笔记本属性';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_shortcuts
Added
+(directory)
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_shortcuts/LICENSE
Added
@@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_shortcuts/composer.json
Added
@@ -0,0 +1,25 @@ +{ + "name": "kolab/kolab_shortcuts", + "type": "roundcube-plugin", + "description": "Keyboard shortcuts compatible with Kontact", + "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", + "license": "AGPLv3", + "version": "3.2.6", + "authors": [ + { + "name": "Aleksander Machniak", + "email": "machniak@kolabsys.com", + "role": "Lead" + } + ], + "repositories": [ + { + "type": "composer", + "url": "http://plugins.roundcube.net" + } + ], + "require": { + "php": ">=5.3.0", + "roundcube/plugin-installer": ">=0.1.3" + } +}
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_shortcuts/kolab_shortcuts.js
Added
@@ -0,0 +1,249 @@ +/** + * Kolab keyboard shortcuts + * + * @author Aleksander Machniak <machniak@kolabsys.com> + * + * @licstart The following is the entire license notice for the + * JavaScript code in this file. + * + * Copyright (C) 2015, Kolab Systems AG <contact@kolabsys.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + * @licend The above is the entire license notice + * for the JavaScript code in this file. + */ + +var kolab_shortcuts = { + 'mail.refresh': { + key: 108, // Ctrl+L + ctrl: true, + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { return rcmail.command('checkmail', '', e.target, e); } + }, + 'mail.copy': { + key: 99, // c + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + e = kolab_shortcuts_menu_target(e); + e.rcmail.command('copy', '', e.target, e); + e.target.remove(); + } + }, + 'mail.edit': { + key: 116, // t + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + var mode = rcmail.env.mailbox == rcmail.env.drafts_mailbox ? '' : 'new'; + return rcmail.command('edit', mode, e.target, e); + } + }, + 'mail.expand-all-threads': { + key: 46, // Ctrl+. + ctrl: true, + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + return rcmail.command('expand-all', '', e.target, e); + } + }, + 'mail.expand-thread': { + key: 46, // . + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + if (rcmail.message_list) { + var row, uid = rcmail.message_list.get_single_selection(); + if (uid && (row = rcmail.message_list.rows[uid])) { + rcmail.message_list.expand_all(row); + } + } + } + }, + 'mail.collapse-all-threads': { + key: 44, // Ctrl+, + ctrl: true, + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + return rcmail.command('collapse-all', '', e.target, e); + } + }, + 'mail.collapse-thread': { + key: 44, // , + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + if (rcmail.message_list) { + var row, uid = rcmail.message_list.get_single_selection(); + if (uid && (row = rcmail.message_list.rows[uid])) { + rcmail.message_list.collapse_all(row); + } + } + } + }, + 'search.focus': { + key: 115, // s + active: function(e) { return true; }, + action: function(e) { + if (!rcmail.is_framed()) + $('#quicksearchbox').focus(); + else if (window.parent && window.parent.$) + window.parent.$('#quicksearchbox').focus(); + } + }, + 'mail.move': { + key: 109, // m + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + e = kolab_shortcuts_menu_target(e); + e.rcmail.command('move', '', e.target, e); + e.target.remove(); + } + }, + 'mail.next-msg': { + key: 110, // n + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + if (rcmail.message_list) + return rcmail.message_list.select_next(); + else + return rcmail.command('nextmessage', '', '', e); + } + }, + 'mail.prev-msg': { + key: 112, // p + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + if (rcmail.message_list) + return rcmail.message_list.use_arrow_key(38, false); + else + return rcmail.command('previousmessage', '', '', e); + } + }, + 'mail.replyall': { + key: 97, // a + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { return rcmail.command('reply-all', 'sub', e.target, e); } + }, + 'mail.replylist': { + key: 108, // l + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + return rcmail.commands['reply-list'] ? rcmail.command('reply-list', '', e.target, e) : false; + } + }, + 'mail.reply': { + key: 114, // r + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { return rcmail.command('reply', '', e.target, e); } + }, + 'mail.forward-attachment': { + key: 102, // f + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { return rcmail.command('forward-attachment', 'sub', e.target, e); } + }, + 'mail.forward-inline': { + key: 70, // F + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { return rcmail.command('forward-inline', 'sub', e.target, e); } + }, + 'mail.html2text': { + key: 72, // H + active: function(e) { return rcmail.task == 'mail'; }, + action: function(e) { + var rc = rcmail; + + // we're in list mode, get reference to preview window + if (rc.env.contentframe) { + var win = rc.get_frame_window(rc.env.contentframe); + if (!win || !win.rcmail) + return false; + rc = win.rcmail; + } + + if (rc.env.optional_format) { + var format = rc.env.optional_format == 'html' ? 'html' : 'text'; + return rc.command('change-format', format, e.target, e); + } + } + } +}; + +// create a fake element centered on the page, +// so folder selector popupup appears in the center +var kolab_shortcuts_menu_target = function(e) +{ + var rc, target, + css = {visibility: 'hidden', width: 10, height: 10, margin: 'auto'}; + + if (rcmail.is_framed()) { + rc = parent.rcmail; + target = parent.$('<div>').css(css).appendTo(parent.$('body')); + } + else { + rc = rcmail; + target = $('<div>').css(css).appendTo($('body')); + } + + e.target = target; + e.rcmail = rc; + + return e;
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_shortcuts/kolab_shortcuts.php
Added
@@ -0,0 +1,36 @@ +<?php + +/** + * Kolab keyboard shortcuts + * + * @author Aleksander Machniak <machniak@kolabsys.com> + * + * Copyright (C) 2015, Kolab Systems AG <contact@kolabsys.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +class kolab_shortcuts extends rcube_plugin +{ + // all task excluding 'login' and 'logout' + public $task = '?(?!login|logout).*'; + // we've got no ajax handlers + public $noajax = true; + + + function init() + { + $this->include_script('kolab_shortcuts.js'); + } +}
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_tags/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Email tags plugin", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Aleksander Machniak", @@ -21,6 +21,6 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libkolab": ">=3.2.5" + "kolab/libkolab": ">=3.2.6" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_tags/localization/en_US.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/en_US.inc
Changed
@@ -21,8 +21,6 @@ $labels['delete'] = 'Delete'; $labels['tagname'] = 'Name'; $labels['tagcolor'] = 'Color'; -$labels['newtag'] = 'New tag'; -$labels['tagsearchnew'] = 'Enter text to search or create a new tag'; $labels['nameempty'] = 'Tag name cannot be empty!'; $labels['nameexists'] = 'Tag with specified name already exists!'; $labels['colorinvalid'] = 'Invalid color specification!';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/pl.inc
Added
@@ -0,0 +1,13 @@ +<?php +/** + * Localizations for the Kolab Tags plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ + */ +$labels['tags'] = 'Tagi'; +$labels['edit'] = 'Edytuj'; +$labels['delete'] = 'Usuń'; +$labels['tagname'] = 'Nazwa'; +$labels['tagcolor'] = 'Kolor';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/pt_PT.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab Tags plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ + */ +$labels['edit'] = 'Editar'; +$labels['tagname'] = 'Nome'; +$labels['tagcolor'] = 'Cor'; +$labels['saving'] = 'Salvando dados...';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/sl.inc
Added
@@ -0,0 +1,31 @@ +<?php +/** + * Localizations for the Kolab Tags plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ + */ +$labels['tags'] = 'Tagi'; +$labels['unset'] = 'Odznači vse'; +$labels['manage'] = 'Uredi tage...'; +$labels['tagactions'] = 'Možnosti taga...'; +$labels['tagadd'] = 'Označi kot tag...'; +$labels['tagremove'] = 'Odstrani tag...'; +$labels['untag'] = 'Odstrani tag'; +$labels['tagremoveall'] = 'Odstrani vse tage'; +$labels['add'] = 'Dodaj'; +$labels['edit'] = 'Uredi'; +$labels['delete'] = 'Izbriši'; +$labels['tagname'] = 'Ime'; +$labels['tagcolor'] = 'Barva'; +$labels['nameempty'] = 'Ime taga ne more biti prazno!'; +$labels['nameexists'] = 'Tag z izbranim imenom že obstaja!'; +$labels['colorinvalid'] = 'Napačna izbira barve!'; +$labels['saving'] = 'Shranjujem...'; +$labels['updatesuccess'] = 'Tagi so bili uspešno posodobljeni.'; +$labels['updateerror'] = 'Napaka. Posodabljanje tagov ni uspelo.'; +$labels['taggingsuccess'] = 'Tagi so bili uspešno dodeljeni.'; +$labels['taggingerror'] = 'Napaka. Tagi niso bili dodeljeni.'; +$labels['untaggingsuccess'] = 'Tag(i) so bili uspešno odstranjeni.'; +$labels['untaggingerror'] = 'Napaka. Tagi nalog niso bili odstranjeni.';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_tags/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/sv_SE.inc
Changed
@@ -7,9 +7,25 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ */ $labels['tags'] = 'Etiketter'; +$labels['unset'] = 'Avmarkera alla'; +$labels['manage'] = 'Hantera etiketter ...'; +$labels['tagactions'] = 'Åtgärder för etiketter ...'; +$labels['tagadd'] = 'Etikettera som ...'; +$labels['tagremove'] = 'Ta bort etikett ...'; +$labels['untag'] = 'Ta bort etikett'; +$labels['tagremoveall'] = 'Ta bort alla etiketter'; $labels['add'] = 'Lägg till'; $labels['edit'] = 'Redigera'; $labels['delete'] = 'Ta bort'; $labels['tagname'] = 'Namn'; $labels['tagcolor'] = 'Färg'; +$labels['nameempty'] = 'Etikettens namn kan inte vara tomt!'; +$labels['nameexists'] = 'Etikett med angivet namn finns redan!'; +$labels['colorinvalid'] = 'Ogiltig färgspecifikation!'; $labels['saving'] = 'Sparar data ...'; +$labels['updatesuccess'] = 'Etiketter har uppdaterats.'; +$labels['updateerror'] = 'Misslyckades att uppdatera etikettinformation.'; +$labels['taggingsuccess'] = 'Etiketter har blivit tilldelade.'; +$labels['taggingerror'] = 'Misslyckades att tilldela etiketter.'; +$labels['untaggingsuccess'] = 'Etikett(er) har tagits bort.'; +$labels['untaggingerror'] = 'Misslyckades att ta bort etikettilldelningar.';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/th.inc
Added
@@ -0,0 +1,28 @@ +<?php +/** + * Localizations for the Kolab Tags plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ + */ +$labels['tags'] = 'แท็ก'; +$labels['unset'] = 'ยกเลิกการเลือกทั้งหมด'; +$labels['manage'] = 'จัดการ แท็ก...'; +$labels['tagremove'] = 'ยกเลิก แท็ก...'; +$labels['untag'] = 'ยกเลิกแท็ก'; +$labels['tagremoveall'] = 'ยกเลิกแท็กทั้งหมด'; +$labels['add'] = 'เพิ่ม'; +$labels['edit'] = 'แก้ไข'; +$labels['delete'] = 'ลบ'; +$labels['tagname'] = 'ชื่อ'; +$labels['tagcolor'] = 'สี'; +$labels['nameempty'] = 'ชื่อของแท็กต้องไม่ว่างเปล่า'; +$labels['nameexists'] = 'แท็กชื่อนี้มีอยู่แล้ว'; +$labels['colorinvalid'] = 'ข้อมูลสีไม่ถูกต้อง'; +$labels['saving'] = 'กำลังจัดเก็บข้อมูล...'; +$labels['updatesuccess'] = 'แท็กถูกปรับปรุงเรียบร้อยแล้ว'; +$labels['updateerror'] = 'การปรับปรุงข้อมูลแท็กล้มเหลว'; +$labels['taggingsuccess'] = 'การติดตั้งแท็กเรียบร้อยแล้ว'; +$labels['taggingerror'] = 'การติดตั้งแท็กล้มเหลว'; +$labels['untaggingsuccess'] = 'แท็กถูกลบเรียบร้อยแล้ว';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/kolab_tags/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/kolab_tags/localization/zh_CN.inc
Changed
@@ -6,3 +6,9 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ */ +$labels['tags'] = '标签'; +$labels['untag'] = '移除标签'; +$labels['edit'] = '编辑'; +$labels['tagname'] = '名称'; +$labels['tagcolor'] = '颜色'; +$labels['saving'] = '保存数据...';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Library providing common functions for calendaring plugins", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/lib/libcalendaring_itip.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/lib/libcalendaring_itip.php
Changed
@@ -98,8 +98,10 @@ if (!$this->sender['name']) $this->sender['name'] = $this->sender['email']; - if (!$message) + if (!$message) { + libcalendaring::identify_recurrence_instance($event); $message = $this->compose_itip_message($event, $method, $rsvp); + } $mailto = rcube_idn_to_ascii($recipient['email']); @@ -121,12 +123,19 @@ ($attendee['name'] ? $attendee['name'] : $attendee['email']); } + $recurrence_info = ''; + if (!empty($event['recurrence_id'])) { + $recurrence_info = "\n\n** " . $this->gettext($event['thisandfuture'] ? 'itipmessagefutureoccurrence' : 'itipmessagesingleoccurrence') . ' **'; + } + else if (!empty($event['recurrence'])) { + $recurrence_info = sprintf("\n%s: %s", $this->gettext('recurring'), $this->lib->recurrence_text($event['recurrence'])); + } + $mailbody = $this->gettext(array( 'name' => $bodytext, 'vars' => array( 'title' => $event['title'], - 'date' => $this->lib->event_date_text($event, true) . - (empty($event['recurrence']) ? '' : sprintf("\n%s: %s", $this->gettext('recurring'), $this->lib->recurrence_text($event['recurrence']))), + 'date' => $this->lib->event_date_text($event, true) . $recurrence_info, 'attendees' => join(",\n ", $attendees_list), 'sender' => $this->sender['name'], 'organizer' => $this->sender['name'], @@ -151,6 +160,10 @@ $message->headers($headers, true); $message->setTXTBody(rcube_mime::format_flowed($mailbody, 79)); + if ($this->rc->config->get('libcalendaring_itip_debug', false)) { + console('iTip ' . $method, $message->txtHeaders() . "\n\r" . $message->get()); + } + // finally send the message $this->itip_send = true; $sent = $this->rc->deliver_message($message, $headers['X-Sender'], $mailto, $smtp_error); @@ -230,15 +243,23 @@ array_unshift($reply_attendees, $replying_attendee); $event['attendees'] = $reply_attendees; } + if ($event['recurrence']) { + unset($event['recurrence']['EXCEPTIONS']); + } } // set RSVP for every attendee else if ($method == 'REQUEST') { foreach ($event['attendees'] as $i => $attendee) { if ($attendee['status'] != 'DELEGATED') { - $event['attendees'][$i]['rsvp']= $rsvp ? true : null; + $event['attendees'][$i]['rsvp']= (bool)$rsvp; } } } + else if ($method == 'CANCEL') { + if ($event['recurrence']) { + unset($event['recurrence']['EXCEPTIONS']); + } + } // compose multipart message using PEAR:Mail_Mime $message = new Mail_mime("\r\n"); @@ -276,9 +297,10 @@ * @param array Event object to delegate * @param mixed Delegatee as string or hash array with keys 'name' and 'mailto' * @param boolean The delegator's RSVP flag + * @param array List with indexes of new/updated attendees * @return boolean True on success, False on failure */ - public function delegate_to(&$event, $delegate, $rsvp = false) + public function delegate_to(&$event, $delegate, $rsvp = false, &$attendees = array()) { if (is_string($delegate)) { $delegates = rcube_mime::decode_address_list($delegate, 1, false); @@ -324,6 +346,8 @@ $delegate_attendee['delegated-from'] = $me['email']; $event['attendees'][$delegate_index] = $delegate_attendee; + $attendees[] = $delegate_index; + $this->set_sender_email($me['email']); return $this->send_itip_message($event, 'REQUEST', $delegate_attendee, 'itipsubjectdelegatedto', 'itipmailbodydelegatedto'); } @@ -343,7 +367,7 @@ // check if the given itip object matches the last state if ($existing) { - $latest = (isset($event['sequence']) && $existing['sequence'] == $event['sequence']) || + $latest = (isset($event['sequence']) && intval($existing['sequence']) == intval($event['sequence'])) || (!isset($event['sequence']) && $existing['changed'] && $existing['changed'] >= $event['changed']); } @@ -453,6 +477,7 @@ $changed = is_object($event['changed']) ? $event['changed'] : $message_date; $metadata = array( 'uid' => $event['uid'], + '_instance' => $event['_instance'], 'changed' => $changed ? $changed->format('U') : 0, 'sequence' => intval($event['sequence']), 'method' => $method, @@ -580,12 +605,17 @@ // for CANCEL messages, we can: else if ($method == 'CANCEL') { $title = $this->gettext('itipcancellation'); + $event_prop = array_filter(array( + 'uid' => $event['uid'], + '_instance' => $event['_instance'], + '_savemode' => $event['_savemode'], + )); // 1. remove the event from our calendar $button_remove = html::tag('input', array( 'type' => 'button', 'class' => 'button', - 'onclick' => "rcube_libcalendaring.remove_from_itip('" . JQ($event['uid']) . "', '$task', '" . JQ($event['title']) . "')", + 'onclick' => "rcube_libcalendaring.remove_from_itip(" . rcube_output::json_serialize($event_prop) . ", '$task', '" . JQ($event['title']) . "')", 'value' => $this->gettext('removefromcalendar'), )); @@ -646,8 +676,6 @@ )); } - $buttons .= html::div('itip-reply-controls', $this->itip_rsvp_options_ui($attrib['id'])); - // add localized texts for the delegation dialog if (in_array('delegated', $actions)) { foreach (array('itipdelegated','itipcomment','delegateinvitation', @@ -656,9 +684,19 @@ } } + foreach (array('all','current','future') as $mode) { + $this->rc->output->command('add_label', "rsvpmode$mode", $this->gettext("rsvpmode$mode")); + } + + $savemode_radio = new html_radiobutton(array('name' => '_rsvpmode', 'class' => 'rsvp-replymode')); + return html::div($attrib, html::div('label', $this->gettext('acceptinvitation')) . - html::div('rsvp-buttons', $buttons)); + html::div('rsvp-buttons', + $buttons . + html::div('itip-reply-controls', $this->itip_rsvp_options_ui($attrib['id'])) + ) + ); } /** @@ -705,7 +743,11 @@ $table->add('label', $this->gettext('date')); $table->add('date', Q($this->lib->event_date_text($event))); } - if (!empty($event['recurrence'])) { + if (!empty($event['recurrence_date'])) { + $table->add('label', ''); + $table->add('recurrence-id', $this->gettext($event['thisandfuture'] ? 'itipfutureoccurrence' : 'itipsingleoccurrence')); + } + else if (!empty($event['recurrence'])) { $table->add('label', $this->gettext('recurring')); $table->add('recurrence', $this->lib->recurrence_text($event['recurrence'])); }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/libcalendaring.js -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/libcalendaring.js
Changed
@@ -959,13 +959,47 @@ }; /** + * Show a menu for selecting the RSVP reply mode + */ +rcube_libcalendaring.itip_rsvp_recurring = function(btn, callback) +{ + var mnu = $('<ul></ul>').addClass('popupmenu libcal-rsvp-replymode'); + + $.each(['all','current'/*,'future'*/], function(i, mode) { + $('<li><a>' + rcmail.get_label('rsvpmode'+mode, 'libcalendaring') + '</a>') + .addClass('ui-menu-item') + .attr('rel', mode) + .appendTo(mnu); + }); + + var action = btn.attr('rel'); + + // open the mennu + mnu.menu({ + select: function(event, ui) { + callback(action, ui.item.attr('rel')); + } + }) + .appendTo(document.body) + .position({ my: 'left top', at: 'left bottom+2', of: btn }) + .data('action', action); + + setTimeout(function() { + $(document).one('click', function() { + mnu.menu('destroy'); + mnu.remove(); + }); + }, 100); +}; + +/** * */ -rcube_libcalendaring.remove_from_itip = function(uid, task, title) +rcube_libcalendaring.remove_from_itip = function(event, task, title) { if (confirm(rcmail.gettext('itip.deleteobjectconfirm').replace('$title', title))) { rcmail.http_post(task + '/itip-remove', - { uid: uid }, + event, rcmail.set_busy(true, 'itip.savingdata') ); }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/libcalendaring.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/libcalendaring.php
Changed
@@ -1310,6 +1310,9 @@ $charset = $part->ctype_parameters['charset'] ?: RCMAIL_CHARSET; $this->mail_ical_parser->import($this->ical_message->get_part_body($mime_id, true), $charset); + // check if the parsed object is an instance of a recurring event/task + array_walk($this->mail_ical_parser->objects, 'libcalendaring::identify_recurrence_instance'); + // stop on the part that has an iTip method specified if (count($this->mail_ical_parser->objects) && $this->mail_ical_parser->method) { $this->mail_ical_parser->message_date = $this->ical_message->headers->date; @@ -1374,6 +1377,9 @@ $object['_sender'] = preg_match(self::$email_regex, $headers->from, $m) ? $m[1] : ''; $object['_sender_utf'] = rcube_utils::idn_to_utf8($object['_sender']); + // check if this is an instance of a recurring event/task + self::identify_recurrence_instance($object); + return $object; } @@ -1395,6 +1401,34 @@ ); } + /** + * Single occourrences of recurring events are identified by their RECURRENCE-ID property + * in iCal which is represented as 'recurrence_date' in our internal data structure. + * + * Check if such a property exists and derive the '_instance' identifier and '_savemode' + * attributes which are used in the storage backend to identify the nested exception item. + */ + public static function identify_recurrence_instance(&$object) + { + // for savemode=all, remove recurrence instance identifiers + if (!empty($object['_savemode']) && $object['_savemode'] == 'all' && $object['recurrence']) { + unset($object['_instance'], $object['recurrence_date']); + } + // set instance and 'savemode' according to recurrence-id + else if (!empty($object['recurrence_date']) && is_a($object['recurrence_date'], 'DateTime')) { + $recurrence_id_format = $object['allday'] ? 'Ymd' : 'Ymd\THis'; + $object['_instance'] = $object['recurrence_date']->format($recurrence_id_format); + $object['_savemode'] = $object['thisandfuture'] ? 'future' : 'current'; + } + else if (!empty($object['recurrence_id']) || !empty($object['_instance'])) { + if (strlen($object['_instance']) > 4) { + $object['recurrence_date'] = rcube_utils::anytodatetime($object['_instance'], $object['start']->getTimezone()); + } + else { + $object['recurrence_date'] = clone $object['start']; + } + } + } /********* Attendee handling functions *********/
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/libvcalendar.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/libvcalendar.php
Changed
@@ -41,7 +41,7 @@ { private $timezone; private $attach_uri = null; - private $prodid = '-//Roundcube//Roundcube libcalendaring//Sabre//Sabre VObject//EN'; + private $prodid = '-//Roundcube libcalendaring//Sabre//Sabre VObject//EN'; private $type_component_map = array('event' => 'VEVENT', 'task' => 'VTODO'); private $attendee_keymap = array('name' => 'CN', 'status' => 'PARTSTAT', 'role' => 'ROLE', 'cutype' => 'CUTYPE', 'rsvp' => 'RSVP', 'delegated-from' => 'DELEGATED-FROM', 'delegated-to' => 'DELEGATED-TO'); @@ -64,7 +64,7 @@ function __construct($tz = null) { $this->timezone = $tz; - $this->prodid = '-//Roundcube//Roundcube libcalendaring ' . RCUBE_VERSION . '//Sabre//Sabre VObject ' . VObject\Version::VERSION . '//EN'; + $this->prodid = '-//Roundcube libcalendaring ' . RCUBE_VERSION . '//Sabre//Sabre VObject ' . VObject\Version::VERSION . '//EN'; } /** @@ -502,7 +502,7 @@ case 'ATTENDEE': case 'ORGANIZER': - $params = array(); + $params = array('rsvp' => false); foreach ($prop->parameters as $param) { switch ($param->name) { case 'RSVP': $params[$param->name] = strtolower($param->value) == 'true'; break; @@ -948,6 +948,13 @@ if (!empty($event['due'])) $ve->add($this->datetime_prop('DUE', $event['due'], false)); + // we're exporting a recurrence instance only + if (!$recurrence_id && $event['recurrence_date'] && $event['recurrence_date'] instanceof DateTime) { + $recurrence_id = $this->datetime_prop('RECURRENCE-ID', $event['recurrence_date'], false, (bool)$event['allday']); + if ($event['thisandfuture']) + $recurrence_id->add('RANGE', 'THISANDFUTURE'); + } + if ($recurrence_id) $ve->add($recurrence_id); @@ -1081,7 +1088,7 @@ } else if (!empty($attendee['email'])) { if (isset($attendee['rsvp'])) - $attendee['rsvp'] = $attendee['rsvp'] ? 'TRUE' : 'FALSE'; + $attendee['rsvp'] = $attendee['rsvp'] ? 'TRUE' : null; $ve->add('ATTENDEE', 'mailto:' . $attendee['email'], array_filter(self::map_keys($attendee, $this->attendee_keymap))); } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/da_DK.inc
Changed
@@ -35,6 +35,7 @@ $labels['repeattomorrow'] = 'Gentag i morgen'; $labels['repeatinweek'] = 'Gentag om en uge'; $labels['showmore'] = 'Vis mere ...'; +$labels['recurring'] = 'Gentages'; $labels['frequency'] = 'Gentag'; $labels['never'] = 'aldrig'; $labels['daily'] = 'dagligt';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/de_DE.inc
Changed
@@ -35,6 +35,7 @@ $labels['repeattomorrow'] = 'Wiederholung morgen'; $labels['repeatinweek'] = 'Wiederholung in einer Woche'; $labels['showmore'] = 'Mehr anzeigen...'; +$labels['recurring'] = 'Wiederholungen'; $labels['frequency'] = 'Wiederholung'; $labels['never'] = 'nie'; $labels['daily'] = 'täglich'; @@ -84,6 +85,8 @@ $labels['itipsubjectin-process'] = '"$title" ist nun in Bearbeitung von $name'; $labels['itipsubjectcompleted'] = '"$title" wurde vom $name fertiggestellt'; $labels['itipsubjectcancel'] = 'Ihre Teilnahme in "$title" wurde aufgehoben'; +$labels['itipsubjectdelegated'] = '"$title" wurde durch $name delegiert'; +$labels['itipsubjectdelegatedto'] = '"$title" wurde durch $name an Sie delegiert'; $labels['itipnewattendee'] = 'Dies ist eine Antwort von einem neuen Teilnehmer'; $labels['updateattendeestatus'] = 'Teilnehmerstatus aktualisieren'; $labels['acceptinvitation'] = 'Möchten Sie die Einladung zu diesem Termin annehmen?'; @@ -118,6 +121,10 @@ $labels['openpreview'] = 'Vorschau öffnen'; $labels['deleteobjectconfirm'] = 'Möchten Sie dieses Objekt wirklich löschen?'; $labels['declinedeleteconfirm'] = 'Soll das abgelehnte Objekt ebenfalls aus Ihrem Konto gelöscht werden?'; +$labels['delegateinvitation'] = 'Einladung delegieren'; +$labels['delegateto'] = 'Delegieren an'; +$labels['delegatersvpme'] = 'Informiere mich über Aktualisierungen dieses Termins'; +$labels['delegateinvalidaddress'] = 'Geben Sie eine gültige E-Mail-Adresse für den Delegierten ein'; $labels['savingdata'] = 'Speichere...'; $labels['expandattendeegroup'] = 'Mit Gruppenmitgliedern ersetzen'; $labels['expandattendeegroupnodata'] = 'Diese Gruppe konnte nicht ersetzt werden. Keine Gruppenmitglieder gefunden.';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/en_US.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/en_US.inc
Changed
@@ -108,6 +108,14 @@ $labels['acceptattendee'] = 'Accept participant'; $labels['declineattendee'] = 'Decline participant'; $labels['declineattendeeconfirm'] = 'Enter a message to the declined participant (optional):'; +$labels['rsvpmodeall'] = 'The entire series'; +$labels['rsvpmodecurrent'] = 'This occurrence only'; +$labels['rsvpmodefuture'] = 'This and future occurrences'; + +$labels['itipsingleoccurrence'] = 'This is a <em>single occurrence</em> out of a series of events'; +$labels['itipfutureoccurrence'] = 'Refers to <em>this and all future occurrences</em> of a series of events'; +$labels['itipmessagesingleoccurrence'] = 'The message only refers to this single occurrence'; +$labels['itipmessagefutureoccurrence'] = 'The message refers to this and all future occurrences'; $labels['youhaveaccepted'] = 'You have accepted this invitation'; $labels['youhavetentative'] = 'You have tentatively accepted this invitation';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/fi_FI.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/fi_FI.inc
Changed
@@ -13,9 +13,17 @@ $labels['alarmdisplayoption'] = 'Viesti'; $labels['alarmemailoption'] = 'Sähköposti'; $labels['alarmaudiooption'] = 'Ääni'; +$labels['alarmat'] = '$datetime'; +$labels['trigger@'] = 'päivänä'; $labels['trigger-M'] = 'minuuttia ennen'; $labels['trigger-H'] = 'tuntia ennen'; $labels['trigger-D'] = 'päivää ennen'; +$labels['trigger+M'] = 'minuuttia jälkeen'; +$labels['trigger+H'] = 'tuntia jälkeen'; +$labels['trigger+D'] = 'päivää jälkeen'; +$labels['triggerattime'] = 'kellonaikana'; +$labels['addalarm'] = 'Lisää heräte'; +$labels['removealarm'] = 'Poista heräte'; $labels['alarmtitle'] = 'Tulevat tapahtumat'; $labels['dismissall'] = 'Hylkää kaikki'; $labels['dismiss'] = 'Hylkää'; @@ -26,30 +34,96 @@ $labels['repeattomorrow'] = 'Toista huomenna'; $labels['repeatinweek'] = 'Toista viikon päästä'; $labels['showmore'] = 'Näytä lisää...'; +$labels['recurring'] = 'Toistuu'; $labels['frequency'] = 'Toista'; $labels['never'] = 'ei koskaan'; $labels['daily'] = 'päivittäin'; $labels['weekly'] = 'viikottain'; $labels['monthly'] = 'kuukausittain'; $labels['yearly'] = 'vuosittain'; +$labels['rdate'] = 'päivinä'; +$labels['every'] = 'Joka'; +$labels['days'] = 'päivä(ä)'; +$labels['weeks'] = 'viikko(a)'; +$labels['months'] = 'kuukausi(-tta)'; +$labels['years'] = 'vuosi(-tta)'; +$labels['each'] = 'Joka'; +$labels['onevery'] = 'Jokaisena'; +$labels['onsamedate'] = 'Samana päivänä'; $labels['forever'] = 'ikuisesti'; $labels['recurrencend'] = 'kunnes'; +$labels['untilenddate'] = 'pvm saakka'; +$labels['forntimes'] = '$nr kerta(a)'; +$labels['first'] = 'ensimmäinen'; +$labels['second'] = 'toinen'; +$labels['third'] = 'kolmas'; +$labels['fourth'] = 'neljäs'; +$labels['last'] = 'viimeinen'; +$labels['dayofmonth'] = 'Kuukaudenpäivä'; +$labels['addrdate'] = 'Lisää toiston pvm'; +$labels['except'] = 'paitsi'; +$labels['itipinvitation'] = 'Kutsu'; +$labels['itipupdate'] = 'Päivitys'; $labels['itipcancellation'] = 'Peruttu:'; +$labels['itipreply'] = 'Vastaus'; $labels['itipaccepted'] = 'Hyväksy'; $labels['itiptentative'] = 'Ehkä'; $labels['itipdeclined'] = 'Kieltäydy'; $labels['itipdelegated'] = 'Edustaja'; +$labels['itipneeds-action'] = 'Viivästetty'; $labels['itipcomment'] = 'Oma vastaus'; $labels['itipeditresponse'] = 'Kirjoita vastausteksti'; $labels['itipsendercomment'] = 'Lähettäjän kommentti:'; $labels['itipsuppressreply'] = 'Älä lähetä vastausta'; +$labels['itipobjectnotfound'] = 'Tässä viestissä viittattua kohdetta ei löydy tunnuksestasi'; $labels['itipsubjectaccepted'] = '$name on hyväksynyt tapahtuman "$title"'; $labels['itipsubjecttentative'] = '$name on alustavasti hyväkstynyt tapahtuman "$title"'; $labels['itipsubjectdeclined'] = '$name on kieltäytynyt osallistumasta tapahtumaan "$title"'; +$labels['itipsubjectin-process'] = '"$title" on prosessissa $name kautta'; +$labels['itipsubjectcompleted'] = '$title on valmis $name kautta'; +$labels['itipsubjectcancel'] = 'Osallistumisesi "$title" on peruttu'; +$labels['itipsubjectdelegated'] = '"$title" on delegoitu $name kautta'; +$labels['itipsubjectdelegatedto'] = '"$title" on delegoitu sinulle $name kautta'; +$labels['itipnewattendee'] = 'Tämä on vastaus uudelta osallistujalta'; +$labels['updateattendeestatus'] = 'Päivitä osallistujien status'; $labels['acceptinvitation'] = 'Hyväksytkö tämän kutsun?'; +$labels['acceptattendee'] = 'Hyväksy osallistuja'; +$labels['declineattendee'] = 'Estä osallistuja'; +$labels['declineattendeeconfirm'] = 'Anna viesti estetylle osallistujalle (vaihtoehtoinen):'; $labels['youhaveaccepted'] = 'Olet hyväksynyt tämän kutsun'; $labels['youhavetentative'] = 'Olet hyväksynyt tämän kutsun alustavasti'; $labels['youhavedeclined'] = 'Olet kieltäytynyt tästä kutsusta'; +$labels['youhavedelegated'] = 'Olet delegoitu tähän kutsuun'; +$labels['youhavein-process'] = 'Työskentelet tämän tehtävän parissa'; +$labels['youhavecompleted'] = 'Olet suorittanut tämän tehtävän'; +$labels['youhaveneeds-action'] = 'Vastauksesi tähän kutsuun on yhä jonossa'; +$labels['youhavepreviouslyaccepted'] = 'Olet aiemmin hyväksynyt tämän kutsun'; +$labels['youhavepreviouslytentative'] = 'Olet aiemmin hyväksynyt tämän kutsun varauksella'; +$labels['youhavepreviouslydeclined'] = 'Sinut on aiemmin estetty tästä kutsusta'; +$labels['youhavepreviouslydelegated'] = 'Sinut on aiemmin delegoitu tähän kutsuun'; +$labels['youhavepreviouslyin-process'] = 'Sinut on aiemmin raportoitu työskentelevän tämän tehtävän parissa'; +$labels['youhavepreviouslycompleted'] = 'Olet aiemmin suorittanut tämän tehtävän'; +$labels['youhavepreviouslyneeds-action'] = 'Vastauksesi tähän kutsuun on yhä jonossa'; +$labels['attendeeaccepted'] = 'Osallistuja on hyväksynyt'; +$labels['attendeetentative'] = 'Osallistuja on hyväksynyt varauksella'; +$labels['attendeedeclined'] = 'Osallistuja on hylännyt'; +$labels['attendeedelegated'] = 'Osallistuja on delegoitu $delegatedto'; +$labels['attendeein-process'] = 'Osallistuja on prosessissa'; +$labels['attendeecompleted'] = 'Osallistuja on suorittanut'; +$labels['notanattendee'] = 'Sinua ei ole listattu osallistujaksi tähän kohteeseen'; +$labels['outdatedinvitation'] = 'Kutsu on korvattu uudemmalla versiolla'; $labels['importtocalendar'] = 'Tallenna omaan kalenteriin'; $labels['removefromcalendar'] = 'Poista omasta kalenterista'; +$labels['updatemycopy'] = 'Päivitä kopioni'; +$labels['openpreview'] = 'Avaa esikatselu'; +$labels['deleteobjectconfirm'] = 'Haluatko todella poistaa tämän kohteen?'; +$labels['declinedeleteconfirm'] = 'Haluatko poistaa tämän hylätyn kohteen tunnukseltasi?'; +$labels['delegateinvitation'] = 'Delegoi kutsu'; +$labels['delegateto'] = 'Delegoi henkilölle'; +$labels['delegatersvpme'] = 'Pidä minut ajan tasalla tämän tapauksen päivityksistä'; +$labels['delegateinvalidaddress'] = 'Anna valiidi sähköpostiosoite delegoiaksesi'; $labels['savingdata'] = 'Tallennetaan tietoja...'; +$labels['expandattendeegroup'] = 'Korvaa ryhmän jäsenillä'; +$labels['expandattendeegroupnodata'] = 'Korvaaminen ryhmän jäsenillä ei onnistu. Yhtään jäsentä ei löydy.'; +$labels['expandattendeegrouperror'] = 'Korvaaminen ryhmän jäsenillä ei onnistu. Tämä saattaa sisältää liian monta jäsentä.'; +$labels['expandattendeegroupsizelimit'] = 'Tämä ryhmä sisältää liian monta jäsentä korvaamiseen';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/fr_FR.inc
Changed
@@ -84,6 +84,8 @@ $labels['itipsubjectin-process'] = '"$title" est en cours de traitement par $name'; $labels['itipsubjectcompleted'] = '"$title" a été traité par $name'; $labels['itipsubjectcancel'] = 'Votre affectation à "$title" a été annulée'; +$labels['itipsubjectdelegated'] = '"$title$ a été délégué par $name'; +$labels['itipsubjectdelegatedto'] = '"$title" vous a été délégué par $name'; $labels['itipnewattendee'] = 'Ceci est une réponse d\'un nouveau participant'; $labels['updateattendeestatus'] = 'Modifier le statut des participants'; $labels['acceptinvitation'] = 'Acceptez-vous cette invitation?'; @@ -118,6 +120,10 @@ $labels['openpreview'] = 'Ouvrir la prévisualisation'; $labels['deleteobjectconfirm'] = 'Voulez-vous vraiment supprimer cet objet ?'; $labels['declinedeleteconfirm'] = 'Voulez-vous supprimer cet objet décliné de votre compte ?'; +$labels['delegateinvitation'] = 'Invitation à déléguer'; +$labels['delegateto'] = 'Déléguer à '; +$labels['delegatersvpme'] = 'Me tenir informé des mises à jours de cet effet'; +$labels['delegateinvalidaddress'] = 'Entrer une adresse électronique valide pour le délégué'; $labels['savingdata'] = 'Enregistrer...'; $labels['expandattendeegroup'] = 'Remplacement par les membres du groupe'; $labels['expandattendeegroupnodata'] = 'Impossible de substituer ce groupe, il ne contient aucun membre.';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/pl_PL.inc
Changed
@@ -35,6 +35,7 @@ $labels['repeattomorrow'] = 'Powtórz jutro'; $labels['repeatinweek'] = 'Powtórz za tydzień'; $labels['showmore'] = 'Pokaż więcej...'; +$labels['recurring'] = 'Powtórzenia'; $labels['frequency'] = 'Powtórz'; $labels['never'] = 'nigdy'; $labels['daily'] = 'codziennie'; @@ -110,18 +111,18 @@ $labels['attendeetentative'] = 'Uczestnik zaakceptował warunkowo'; $labels['attendeedeclined'] = 'Uczestnik odrzucił'; $labels['attendeedelegated'] = 'Uczestnik oddelegował do $delegatedto'; -$labels['attendeein-process'] = 'Participant is in-process'; -$labels['attendeecompleted'] = 'Participant has completed'; +$labels['attendeein-process'] = 'Uczestnik pracuje'; +$labels['attendeecompleted'] = 'Uczestnik ukończył'; $labels['notanattendee'] = 'Nie jesteś na liście uczestników tego zdarzenia'; $labels['outdatedinvitation'] = 'To zaproszenie zostało zastąpione nową wersją'; $labels['importtocalendar'] = 'Zapisz w moim kalendarzu'; $labels['removefromcalendar'] = 'Usuń z mojego kalendarza'; $labels['updatemycopy'] = 'Uaktualnij moją kopię'; -$labels['openpreview'] = 'Open Preview'; +$labels['openpreview'] = 'Otwórz podgląd'; $labels['deleteobjectconfirm'] = 'Czy na pewno chcesz usunąć ten obiekt?'; -$labels['declinedeleteconfirm'] = 'Do you also want to delete this declined object from your account?'; +$labels['declinedeleteconfirm'] = 'Czy chcesz także usunąć ten odrzucony obiekt ze swojego konta?'; $labels['delegateinvitation'] = 'Delegate Invitation'; -$labels['delegateto'] = 'Delegate to'; +$labels['delegateto'] = 'Oddeleguj do'; $labels['delegatersvpme'] = 'Keep me informed about updates of this incidence'; $labels['delegateinvalidaddress'] = 'Please enter a valid email address for the delegate'; $labels['savingdata'] = 'Zapisuję dane...';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/pt_PT.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab calendaring utilities plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ + */ +$labels['until'] = 'até'; +$labels['frequency'] = 'Repetir'; +$labels['recurrencend'] = 'até'; +$labels['savingdata'] = 'Salvando dados...';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/ru_RU.inc
Changed
@@ -35,6 +35,7 @@ $labels['repeattomorrow'] = 'Повторить завтра'; $labels['repeatinweek'] = 'Повторить через неделю'; $labels['showmore'] = 'Показать больше...'; +$labels['recurring'] = 'Совпадения'; $labels['frequency'] = 'Повторить'; $labels['never'] = 'никогда'; $labels['daily'] = 'ежедневно';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/sk.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/sk.inc
Changed
@@ -6,3 +6,4 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ */ +$labels['frequency'] = 'Opakovať';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/sl.inc
Added
@@ -0,0 +1,15 @@ +<?php +/** + * Localizations for the Kolab calendaring utilities plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ + */ +$labels['until'] = 'do'; +$labels['at'] = 'ob'; +$labels['alarmemailoption'] = 'Email'; +$labels['frequency'] = 'Ponovi'; +$labels['recurrencend'] = 'do'; +$labels['itipdelegated'] = 'Sodelujoč'; +$labels['savingdata'] = 'Shranjujem...';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/sv_SE.inc
Changed
@@ -7,7 +7,125 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ */ $labels['until'] = 'tills'; +$labels['at'] = ' '; +$labels['alarmemail'] = 'Skicka e-post'; +$labels['alarmdisplay'] = 'Visa meddelande'; +$labels['alarmaudio'] = 'Spela ljud'; +$labels['alarmdisplayoption'] = 'Meddelande'; $labels['alarmemailoption'] = 'E-post'; +$labels['alarmaudiooption'] = 'Ljud'; +$labels['alarmat'] = '$datetime'; +$labels['trigger@'] = 'datum'; +$labels['trigger-M'] = 'minuter före'; +$labels['trigger-H'] = 'timmar före'; +$labels['trigger-D'] = 'dagar före'; +$labels['trigger+M'] = 'minuter efter'; +$labels['trigger+H'] = 'timmar efter'; +$labels['trigger+D'] = 'dagar efter'; +$labels['triggerattime'] = 'tid'; +$labels['addalarm'] = 'Lägg till alarm'; +$labels['removealarm'] = 'Ta bort alarm'; +$labels['alarmtitle'] = 'Kommande händelser'; +$labels['dismissall'] = 'Avvisa alla'; +$labels['dismiss'] = 'Avvisa'; +$labels['snooze'] = 'Vila'; +$labels['repeatinmin'] = 'Upprepa om $min minuter'; +$labels['repeatinhr'] = 'Upprepa om 1 timme'; +$labels['repeatinhrs'] = 'Upprepa om $hrs timmar'; +$labels['repeattomorrow'] = 'Upprepa imorgon'; +$labels['repeatinweek'] = 'Upprepa om en vecka'; +$labels['showmore'] = 'Visa fler ...'; $labels['frequency'] = 'Upprepa'; +$labels['never'] = 'aldrig'; +$labels['daily'] = 'dagligen'; +$labels['weekly'] = 'veckovis'; +$labels['monthly'] = 'månadsvis'; +$labels['yearly'] = 'årligen'; +$labels['rdate'] = 'på datum'; +$labels['every'] = 'Varje'; +$labels['days'] = 'dag(ar)'; +$labels['weeks'] = 'vecka(or)'; +$labels['months'] = 'månad(er)'; +$labels['years'] = 'år'; +$labels['bydays'] = 'På'; +$labels['untildate'] = 'den'; +$labels['each'] = 'Varje'; +$labels['onevery'] = 'På varje'; +$labels['onsamedate'] = 'På samma datum'; +$labels['forever'] = 'för alltid'; $labels['recurrencend'] = 'tills'; +$labels['untilenddate'] = 'tills datum'; +$labels['forntimes'] = '$nr gång(er)'; +$labels['first'] = 'första'; +$labels['second'] = 'andra'; +$labels['third'] = 'tredje'; +$labels['fourth'] = 'fjärde'; +$labels['last'] = 'sista'; +$labels['dayofmonth'] = 'Dag i månad'; +$labels['addrdate'] = 'Lägg till datum för upprepning'; +$labels['except'] = 'Förutom'; +$labels['itipinvitation'] = 'Inbjudan till'; +$labels['itipupdate'] = 'Uppdatering av'; +$labels['itipcancellation'] = 'Ställts in:'; +$labels['itipreply'] = 'Svara till'; +$labels['itipaccepted'] = 'Acceptera'; +$labels['itiptentative'] = 'Kanske'; +$labels['itipdeclined'] = 'Avböj'; +$labels['itipdelegated'] = 'Delegera'; +$labels['itipneeds-action'] = 'Skjut upp'; +$labels['itipcomment'] = 'Ditt svar'; +$labels['itipeditresponse'] = 'Ange ett svar'; +$labels['itipsendercomment'] = 'Avsändarens kommentar:'; +$labels['itipsuppressreply'] = 'Skicka inget svar'; +$labels['itipobjectnotfound'] = 'Objektet som refererats av detta meddelande hittades inte i ditt konto.'; +$labels['itipsubjectaccepted'] = '"$title" har accepterats av $name'; +$labels['itipsubjecttentative'] = '"$title" har preliminärt accepterats av $name'; +$labels['itipsubjectdeclined'] = '$name har tackat nej till "$title"'; +$labels['itipsubjectin-process'] = '"$title" bearbetas av $name'; +$labels['itipsubjectcompleted'] = '"$title" har slutförts av $name'; +$labels['itipsubjectcancel'] = 'Ditt deltagande i "$title" har ställts in'; +$labels['itipsubjectdelegated'] = '"$title" har delegerats av $name'; +$labels['itipsubjectdelegatedto'] = '"$title" har delegerats till dig av $name'; +$labels['itipnewattendee'] = 'Detta är ett svar från en ny deltagare'; +$labels['updateattendeestatus'] = 'Uppdatera deltagarens status'; +$labels['acceptinvitation'] = 'Accepterar du denna inbjudan?'; +$labels['acceptattendee'] = 'Acceptera deltagare'; +$labels['declineattendee'] = 'Neka deltagare'; +$labels['declineattendeeconfirm'] = 'Skriv ett meddelande till den nekade deltagaren (valfritt):'; +$labels['youhaveaccepted'] = 'Du har accepterat denna inbjudan'; +$labels['youhavetentative'] = 'Du har preliminärt accepterat denna inbjudan'; +$labels['youhavedeclined'] = 'Du har tackat nej till denna inbjudan'; +$labels['youhavedelegated'] = 'Du har delegerat denna inbjudan'; +$labels['youhavein-process'] = 'Du arbetar med denna uppgift'; +$labels['youhavecompleted'] = 'Du har slutfört denna uppgift'; +$labels['youhaveneeds-action'] = 'Ditt svar till denna inbjudan har ännu inte skickats'; +$labels['youhavepreviouslyaccepted'] = 'Du har tidigare accepterat denna inbjudan'; +$labels['youhavepreviouslytentative'] = 'Du har tidigare preliminärt accepterat denna inbjudan'; +$labels['youhavepreviouslydeclined'] = 'Du har tidigare tackat nej till denna inbjudan'; +$labels['youhavepreviouslydelegated'] = 'Du har tidigare delegerat denna inbjudan'; +$labels['youhavepreviouslyin-process'] = 'Du har tidigare rapporterat att du arbetar med denna uppgift'; +$labels['youhavepreviouslycompleted'] = 'Du har tidigare slutfört denna uppgift'; +$labels['youhavepreviouslyneeds-action'] = 'Ditt svar på denna inbjudan har ännu inte skickats'; +$labels['attendeeaccepted'] = 'Deltagare har accepterat'; +$labels['attendeetentative'] = 'Deltagare har preliminärt accepterat'; +$labels['attendeedeclined'] = 'Deltagare har tackat nej'; +$labels['attendeedelegated'] = 'Deltagare har delegerat till $delegatedto'; +$labels['attendeein-process'] = 'Deltagare är i bearbetningsfas'; +$labels['attendeecompleted'] = 'Deltagare har slutfört'; +$labels['notanattendee'] = 'Du är inte listad som en deltagare av detta objekt'; +$labels['outdatedinvitation'] = 'Denna inbjudan har ersatts av en nyare version'; +$labels['importtocalendar'] = 'Spara till min kalender'; +$labels['removefromcalendar'] = 'Ta bort från min kalender'; +$labels['updatemycopy'] = 'Uppdatera min kopia'; +$labels['openpreview'] = 'Öppna förhandsgranskning'; +$labels['deleteobjectconfirm'] = 'Vill du verkligen ta bort detta objekt?'; +$labels['declinedeleteconfirm'] = 'Vill du också vill ta bort detta objekt, som du tackat nej till, från ditt konto?'; +$labels['delegateinvitation'] = 'Delegera inbjudan'; +$labels['delegateto'] = 'Delegera till'; +$labels['delegatersvpme'] = 'Håll mig informerad om uppdateringar angående denna incident'; +$labels['delegateinvalidaddress'] = 'Vänligen ange en giltig e-postadress för ombudet'; $labels['savingdata'] = 'Sparar data ...'; +$labels['expandattendeegroup'] = 'Ersättare med gruppmedlemmar'; +$labels['expandattendeegroupnodata'] = 'Det går inte att ersätta denna grupp. Inga medlemmar hittades.'; +$labels['expandattendeegrouperror'] = 'Det går inte att ersätta denna grupp. Den kan innehålla för många medlemmar.'; +$labels['expandattendeegroupsizelimit'] = 'Denna grupp innehåller för många medlemmar för att ersätta.';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/th.inc
Added
@@ -0,0 +1,80 @@ +<?php +/** + * Localizations for the Kolab calendaring utilities plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ + */ +$labels['until'] = 'จนถึง'; +$labels['alarmemail'] = 'ส่ง อีเมล์'; +$labels['alarmdisplay'] = 'แสดงข้อความ'; +$labels['alarmaudio'] = 'เล่นเสียง'; +$labels['alarmdisplayoption'] = 'ข้อความ'; +$labels['alarmemailoption'] = 'อีเมล์'; +$labels['alarmaudiooption'] = 'เสียง'; +$labels['alarmat'] = 'เมื่อ $datetime'; +$labels['trigger@'] = 'ณ วันที่'; +$labels['trigger-M'] = 'นาที ก่อน'; +$labels['trigger-H'] = 'ชั่วโมง ก่อน'; +$labels['trigger-D'] = 'วัน ก่อน'; +$labels['trigger+M'] = 'นาที หลัง'; +$labels['trigger+H'] = 'ชั่วโมง หลัง'; +$labels['trigger+D'] = 'วัน หลัง'; +$labels['triggerattime'] = 'เมื่อเวลา'; +$labels['addalarm'] = 'เพิ่มการเตือน'; +$labels['removealarm'] = 'ลบการเตือน'; +$labels['alarmtitle'] = 'เหตุการณ์ที่กำลังจะถึง'; +$labels['dismissall'] = 'ยกเลิกทั้งหมด'; +$labels['dismiss'] = 'ยกเลิก'; +$labels['snooze'] = 'ปิดชั่วคราว'; +$labels['repeatinmin'] = 'ทำซ้ำใน $min นาที'; +$labels['repeatinhr'] = 'ทำซ้ำใน 1 ชั่วโมง'; +$labels['repeatinhrs'] = 'ทำซ้ำใน $hrs ชั่วโมง'; +$labels['repeattomorrow'] = 'ทำซ้ำพรุ่งนี้'; +$labels['repeatinweek'] = 'ทำซ้ำใน 1 สัปดาห์'; +$labels['showmore'] = 'แสดง มากกว่านี้...'; +$labels['recurring'] = 'ทำซ้ำ'; +$labels['frequency'] = 'ทำซ้ำ'; +$labels['never'] = 'ไม่มีทาง'; +$labels['daily'] = 'ทุกวัน'; +$labels['weekly'] = 'ทุกสัปดาห์'; +$labels['monthly'] = 'ทุกเดือน'; +$labels['yearly'] = 'ทุกปี'; +$labels['rdate'] = 'ณ วันที่'; +$labels['every'] = 'ทุก ๆ'; +$labels['days'] = 'วัน'; +$labels['weeks'] = 'สัปดาห์'; +$labels['months'] = 'เดือน'; +$labels['years'] = 'ปี'; +$labels['each'] = 'แต่ละ'; +$labels['forever'] = 'ตลอดไป'; +$labels['recurrencend'] = 'จนถึง'; +$labels['untilenddate'] = 'จนถึงวันที่'; +$labels['forntimes'] = 'จำนวน $nr ครั้ง'; +$labels['first'] = 'ครั้งที่ 1'; +$labels['second'] = 'ครั้งที่ 2'; +$labels['third'] = 'ครั้งที่ 3'; +$labels['fourth'] = 'ครั้งที่ 4'; +$labels['last'] = 'ครั้งสุดท้าย'; +$labels['addrdate'] = 'เพิ่มวันที่ทำซ้ำ'; +$labels['except'] = 'ยกเว้น'; +$labels['itipinvitation'] = 'คำเชิญถึง'; +$labels['itipcancellation'] = 'ยกเลิก:'; +$labels['itipreply'] = 'ตอบกลับไปยัง'; +$labels['itipaccepted'] = 'ยอมรับ'; +$labels['itiptentative'] = 'อาจจะ'; +$labels['itipdeclined'] = 'ปฎิเสธ'; +$labels['itipneeds-action'] = 'เลื่อน'; +$labels['itipcomment'] = 'ข้อความตอบกลับของคุณ'; +$labels['itipeditresponse'] = 'ป้อนข้อความตอบกลับ'; +$labels['itipsendercomment'] = 'ความคิดเห็นของผู้ส่ง:'; +$labels['itipsuppressreply'] = 'ไม่ส่งข้อความตอบกลับ'; +$labels['itipobjectnotfound'] = 'ไม่พบวัตถุที่อ้างถึงโดยข้อความนี้ในบัญชีของคุณ'; +$labels['itipsubjectaccepted'] = '"$title" ถูกตอบรับโดย $name'; +$labels['itipsubjecttentative'] = '"$title" มีแนวโน้มที่จะได้รับการตอบรับโดย $name'; +$labels['itipsubjectdeclined'] = '"$title" ถูกปฎิเสธโดย $name'; +$labels['itipsubjectin-process'] = '"$title" อยู่ระหว่างการจัดเตรียมโดย $name'; +$labels['itipsubjectcompleted'] = '"$title" ถูกทำให้สมบูรณ์โดย $name'; +$labels['itipsubjectcancel'] = 'การเข้าร่วมของคุณใน "$title" ถูกยกเลิก'; +$labels['savingdata'] = 'บันทึกข้อมูล';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libcalendaring/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libcalendaring/localization/zh_CN.inc
Changed
@@ -6,3 +6,5 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ */ +$labels['frequency'] = '循环'; +$labels['savingdata'] = '保存数据...';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Plugin to setup a basic environment for the interaction with a Kolab server.", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/config.inc.php.dist -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/config.inc.php.dist
Changed
@@ -41,7 +41,7 @@ // These event properties contribute to a significant revision to the calendar component // and if changed will increment the sequence number relevant for scheduling according to RFC 5545 -$config['kolab_event_scheduling_properties'] = array('start', 'end', 'allday', 'location', 'status', 'cancelled'); +$config['kolab_event_scheduling_properties'] = array('start', 'end', 'allday', 'recurrence', 'location', 'status', 'cancelled'); // These task properties contribute to a significant revision to the calendar component // and if changed will increment the sequence number relevant for scheduling according to RFC 5545
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/lib/kolab_date_recurrence.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/lib/kolab_date_recurrence.php
Changed
@@ -87,9 +87,13 @@ $next_end->add($this->duration); $next = $this->object->to_array(); - $next['recurrence_id'] = $next_start->format('Y-m-d'); $next['start'] = $next_start; $next['end'] = $next_end; + + $recurrence_id_format = $next['allday'] ? 'Ymd' : 'Ymd\THis'; + $next['recurrence_date'] = clone $next_start; + $next['_instance'] = $next_start->format($recurrence_id_format); + unset($next['_formatobj']); return $next;
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/lib/kolab_format_event.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/lib/kolab_format_event.php
Changed
@@ -26,7 +26,7 @@ { public $CTYPEv2 = 'application/x-vnd.kolab.event'; - public static $scheduling_properties = array('start', 'end', 'allday', 'location', 'status', 'cancelled'); + public static $scheduling_properties = array('start', 'end', 'allday', 'recurrence', 'location', 'status', 'cancelled'); protected $objclass = 'Event'; protected $read_func = 'readEvent'; @@ -44,6 +44,9 @@ $this->obj = $data; $this->loaded = true; } + + // copy static property overriden by this class + $this->_scheduling_properties = self::$scheduling_properties; } /** @@ -115,10 +118,13 @@ $vexceptions->push($exevent->obj); // write cleaned-up exception data back to memory/cache - $object['recurrence']['EXCEPTIONS'][$i] = $this->expand_exception($compacted, $object); + $object['recurrence']['EXCEPTIONS'][$i] = $this->expand_exception($exevent->data, $object); } $this->obj->setExceptions($vexceptions); } + else if ($object['recurrence_date'] && $object['recurrence_date'] instanceof DateTime) { + $this->obj->setRecurrenceID(self::get_datetime($object['recurrence_date'], null, $object['allday']), (bool)$object['thisandfuture']); + } // cache this data $this->data = $object; @@ -220,15 +226,16 @@ * * @return array List of tags to save in cache */ - public function get_tags() + public function get_tags($obj = null) { - $tags = parent::get_tags(); + $tags = parent::get_tags($obj); + $object = $obj ?: $this->data; - foreach ((array)$this->data['categories'] as $cat) { + foreach ((array)$object['categories'] as $cat) { $tags[] = rcube_utils::normalize_string($cat); } - return $tags; + return array_unique($tags); } /** @@ -244,12 +251,6 @@ } } - foreach ($master as $prop => $value) { - if (isset($exception[$prop]) && gettype($exception[$prop]) == gettype($value) && $exception[$prop] == $value) { - unset($exception[$prop]); - } - } - // preserve this property for date serialization $exception['allday'] = $master['allday'];
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/lib/kolab_format_task.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/lib/kolab_format_task.php
Changed
@@ -32,6 +32,16 @@ protected $read_func = 'readTodo'; protected $write_func = 'writeTodo'; + /** + * Default constructor + */ + function __construct($data = null, $version = 3.0) + { + parent::__construct(is_string($data) ? $data : null, $version); + + // copy static property overriden by this class + $this->_scheduling_properties = self::$scheduling_properties; + } /** * Set properties to the kolabformat object @@ -111,19 +121,21 @@ * * @return array List of tags to save in cache */ - public function get_tags() + public function get_tags($obj = null) { - $tags = parent::get_tags(); + $tags = parent::get_tags($obj); + $object = $obj ?: $this->data; - if ($this->data['status'] == 'COMPLETED' || ($this->data['complete'] == 100 && empty($this->data['status']))) + if ($object['status'] == 'COMPLETED' || ($object['complete'] == 100 && empty($object['status']))) $tags[] = 'x-complete'; - if ($this->data['priority'] == 1) + if ($object['priority'] == 1) $tags[] = 'x-flagged'; - if ($this->data['parent_id']) - $tags[] = 'x-parent:' . $this->data['parent_id']; + if ($object['parent_id']) + $tags[] = 'x-parent:' . $object['parent_id']; - return $tags; + return array_unique($tags); } + }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/lib/kolab_format_xcal.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/lib/kolab_format_xcal.php
Changed
@@ -32,6 +32,8 @@ public static $scheduling_properties = array('start', 'end', 'location'); + protected $_scheduling_properties = null; + protected $sensitivity_map = array( 'public' => kolabformat::ClassPublic, 'private' => kolabformat::ClassPrivate, @@ -317,21 +319,11 @@ } else { $object['sequence'] = $old_sequence; - $old = $this->data['uid'] ? $this->data : $this->to_array(); // increment sequence when updating properties relevant for scheduling. // RFC 5545: "It is incremented [...] each time the Organizer makes a significant revision to the calendar component." - foreach (self::$scheduling_properties as $prop) { - $a = $old[$prop]; - $b = $object[$prop]; - if ($object['allday'] && ($prop == 'start' || $prop == 'end') && $a instanceof DateTime && $b instanceof DateTime) { - $a = $a->format('Y-m-d'); - $b = $b->format('Y-m-d'); - } - if ($a != $b) { - $object['sequence']++; - break; - } + if ($this->check_rescheduling($object)) { + $object['sequence']++; } } } @@ -365,7 +357,7 @@ // set attendee RSVP if missing if (!isset($attendee['rsvp'])) { - $object['attendees'][$i]['rsvp'] = $attendee['rsvp'] = true; + $object['attendees'][$i]['rsvp'] = $attendee['rsvp'] = $reschedule; } $att = new Attendee; @@ -619,22 +611,75 @@ * * @return array List of tags to save in cache */ - public function get_tags() + public function get_tags($obj = null) { $tags = array(); + $object = $obj ?: $this->data; - if (!empty($this->data['valarms'])) { + if (!empty($object['valarms'])) { $tags[] = 'x-has-alarms'; } // create tags reflecting participant status - if (is_array($this->data['attendees'])) { - foreach ($this->data['attendees'] as $attendee) { + if (is_array($object['attendees'])) { + foreach ($object['attendees'] as $attendee) { if (!empty($attendee['email']) && !empty($attendee['status'])) $tags[] = 'x-partstat:' . $attendee['email'] . ':' . strtolower($attendee['status']); } } - return $tags; + // collect tags from recurrence exceptions + if (is_array($object['recurrence']) && $object['recurrence']['EXCEPTIONS']) { + foreach((array)$object['recurrence']['EXCEPTIONS'] as $exception) { + $tags = array_merge($tags, $this->get_tags($exception)); + } + } + + return array_unique($tags); + } + + /** + * Identify changes considered relevant for scheduling + * + * @param array Hash array with NEW object properties + * @param array Hash array with OLD object properties + * + * @return boolean True if changes affect scheduling, False otherwise + */ + public function check_rescheduling($object, $old = null) + { + $reschedule = false; + + if (!is_array($old)) { + $old = $this->data['uid'] ? $this->data : $this->to_array(); + } + + foreach ($this->_scheduling_properties ?: self::$scheduling_properties as $prop) { + $a = $old[$prop]; + $b = $object[$prop]; + if ($object['allday'] && ($prop == 'start' || $prop == 'end') && $a instanceof DateTime && $b instanceof DateTime) { + $a = $a->format('Y-m-d'); + $b = $b->format('Y-m-d'); + } + if ($prop == 'recurrence' && is_array($a) && is_array($b)) { + unset($a['EXCEPTIONS'], $b['EXCEPTIONS']); + $a = array_filter($a); + $b = array_filter($b); + + // advanced rrule comparison: no rescheduling if series was shortened + if ($a['COUNT'] && $b['COUNT'] && $b['COUNT'] < $a['COUNT']) { + unset($a['COUNT'], $b['COUNT']); + } + else if ($a['UNTIL'] && $b['UNTIL'] && $b['UNTIL'] < $a['UNTIL']) { + unset($a['UNTIL'], $b['UNTIL']); + } + } + if ($a != $b) { + $reschedule = true; + break; + } + } + + return $reschedule; } } \ No newline at end of file
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/lib/kolab_storage_folder.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/lib/kolab_storage_folder.php
Changed
@@ -616,7 +616,8 @@ $type = $this->type; // copy attachments from old message - if (!empty($object['_msguid']) && ($old = $this->cache->get($object['_msguid'], $type, $object['_mailbox']))) { + $copyfrom = $object['_copyfrom'] ?: $object['_msguid']; + if (!empty($copyfrom) && ($old = $this->cache->get($copyfrom, $type, $object['_mailbox']))) { foreach ((array)$old['_attachments'] as $key => $att) { if (!isset($object['_attachments'][$key])) { $object['_attachments'][$key] = $old['_attachments'][$key]; @@ -628,7 +629,7 @@ // load photo.attachment from old Kolab2 format to be directly embedded in xcard block else if ($type == 'contact' && ($key == 'photo.attachment' || $key == 'kolab-picture.png') && $att['id']) { if (!isset($object['photo'])) - $object['photo'] = $this->get_attachment($object['_msguid'], $att['id'], $object['_mailbox']); + $object['photo'] = $this->get_attachment($copyfrom, $att['id'], $object['_mailbox']); unset($object['_attachments'][$key]); } } @@ -1010,7 +1011,7 @@ foreach ((array)$object['_attachments'] as $key => $att) { if (empty($att['content']) && !empty($att['id'])) { // @TODO: use IMAP CATENATE to skip attachment fetch+push operation - $msguid = !empty($object['_msguid']) ? $object['_msguid'] : $object['uid']; + $msguid = $object['_copyfrom'] ?: ($object['_msguid'] ?: $object['uid']); if ($is_file) { $att['path'] = tempnam($temp_dir, 'rcmAttmnt'); if (($fp = fopen($att['path'], 'w')) && $this->get_attachment($msguid, $att['id'], $object['_mailbox'], false, $fp, true)) {
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/libkolab/libkolab.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/libkolab/libkolab.php
Changed
@@ -92,6 +92,10 @@ $http_config = array_merge($http_config, $config); } + // force CURL adapter, this allows to handle correctly + // compressed responses with SplObserver registered (kolab_files) (#4507) + $http_config['adapter'] = 'HTTP_Request2_Adapter_Curl'; + $key = md5(serialize($http_config)); if (!($request = self::$http_requests[$key])) {
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/owncloud/localization/pl.inc
Added
@@ -0,0 +1,3 @@ +<?php +$labels['owncloud'] = 'Pliki'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/owncloud/localization/sl.inc
Added
@@ -0,0 +1,3 @@ +<?php +$labels['owncloud'] = 'Dokumenti'; +?>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/owncloud/localization/th.inc
Added
@@ -0,0 +1,3 @@ +<?php +$labels['owncloud'] = 'ไฟล์'; +?>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/composer.json -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Task management plugin", "homepage": "http://git.kolab.org/roundcubemail-plugins-kolab/", "license": "AGPLv3", - "version": "3.2.5", + "version": "3.2.6", "authors": [ { "name": "Thomas Bruederli", @@ -21,7 +21,7 @@ "require": { "php": ">=5.3.0", "roundcube/plugin-installer": ">=0.1.3", - "kolab/libcalendaring": ">=3.2.5", + "kolab/libcalendaring": ">=3.2.6", "roundcube/jqueryui": ">=1.10.4" } }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/drivers/kolab/tasklist_kolab_driver.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/drivers/kolab/tasklist_kolab_driver.php
Changed
@@ -1064,10 +1064,10 @@ } // allow sequence increments if I'm the organizer - if ($this->plugin->is_organizer($object)) { + if ($this->plugin->is_organizer($object) && empty($object['_method'])) { unset($object['sequence']); } - else if (isset($old['sequence'])) { + else if (isset($old['sequence']) && empty($object['_method'])) { $object['sequence'] = $old['sequence']; }
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/helpdocs/locale/cs_CZ/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/helpdocs/locale/cs_CZ/LC_MESSAGES/index.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/tasks/index.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/helpdocs/locale/cs_CZ/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/helpdocs/locale/cs_CZ/LC_MESSAGES/manage.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/tasks/manage.rst:7
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/helpdocs/locale/cs_CZ/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/helpdocs/locale/cs_CZ/LC_MESSAGES/overview.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/kolab-documentation/language/cs_CZ/)\n" +"Language-Team: Czech (http://www.transifex.com/projects/p/kolab-documentation/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../../en_US/_plugins/tasks/overview.rst:6
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/index.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/tasks/index.rst:9
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/manage.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/tasks/manage.rst:7
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/overview.po
Changed
@@ -10,11 +10,11 @@ "POT-Creation-Date: 2014-11-26 23:28+0100\n" "PO-Revision-Date: 2014-11-27 23:34+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/kolab-documentation/language/es_ES/)\n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../en_US/_plugins/tasks/overview.rst:6
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/cs_CZ.inc
Changed
@@ -120,12 +120,18 @@ $labels['sendnotifications'] = 'Uvědomit pověřence o změnách'; $labels['sendcancellation'] = 'Uvědomit pověřence o zrušení úkolu'; $labels['invitationsubject'] = 'Byl(a) jste přidělen(a) k "$title"'; +$labels['invitationmailbody'] = "*\$title*\n\nDokdy: \$date\n\nPřiděleno: \$attendees\n\nPodrobnosti o úkolu najdete v přiloženém souboru typu iCalendar. Můžete si ho nahrát do programu na úkoly."; $labels['itipupdatesubject'] = 'Událost "$title" byla aktualizována'; $labels['itipupdatesubjectempty'] = 'Úkol, který se vás týká, byl aktualizován'; +$labels['itipupdatemailbody'] = "*\$title*\n\nDokdy: \$date\n\nPřiděleno: \$attendees\n\nAktualizované podrobnosti o úkolu najdete v přiloženém souboru typu iCalendar. Můžete si ho nahrát do programu na úkoly."; $labels['itipcancelsubject'] = 'Událost "$title" byla zrušena'; +$labels['itipcancelmailbody'] = "*\$title*\n\nDokdy: \$date\n\nPřiděleno: \$attendees\n\nÚkol byl zrušen \$organizer.\n\nAktualizované podrobnosti o úkolu najdete v přiloženém souboru typu iCalendar."; $labels['saveintasklist'] = 'uložit do'; $labels['itipobjectnotfound'] = 'Úkol, na který tato zpráva odkazuje nebyl nalezen ve vašem seznamu úkolů.'; $labels['itipmailbodyaccepted'] = "\$sender přijal přidělení úkolu:\n\n*\$title*\n\nTermín: \$date\n\nZadávající: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender předběžně přijal přidělení k následujícímu úkolu:\n\n*\$title*\n\nTermín: \$date\n\nPřiděleno: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender odmítl přidělení k následujícímu úkolu:\n\n*\$title*\n\nTermín: \$date\n\nPřiděleno: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender odmítl vaše přidělení k následujícímu úkolu:\n\n*\$title*\n\nTermín: \$date"; $labels['itipmailbodyin-process'] = "\$sender nastavil stav následujícího úkolu na probíhající:\n\n*\$title*\n\nTermín: \$date"; $labels['itipmailbodycompleted'] = "\$sender dokončil tento úkol:\n\n*\$title*\n\nTermín: \$date"; $labels['itipmailbodydelegated'] = "\$sender delegoval následující úkol:\n\n*\$title*\n\nTermín: \$date";
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/de_DE.inc
Changed
@@ -37,8 +37,8 @@ $labels['status'] = 'Status'; $labels['status-needs-action'] = 'Braucht Aktion'; $labels['status-in-process'] = 'In Bearbeitung'; -$labels['status-completed'] = 'Erledigt'; -$labels['status-cancelled'] = 'Gekündigt'; +$labels['status-completed'] = 'Abgeschlossen'; +$labels['status-cancelled'] = 'Hinfällig'; $labels['assignedto'] = 'Zugewiesen an'; $labels['created'] = 'Erstellt'; $labels['changed'] = 'Geändert'; @@ -119,19 +119,53 @@ $labels['sendinvitations'] = 'Einladungen versenden'; $labels['sendnotifications'] = 'Beauftragte Teilnehmer über die Änderung informieren'; $labels['sendcancellation'] = 'Beauftragte Teilnehmer über die Stornierung informieren'; +$labels['invitationsubject'] = 'Ihnen wurde "$title" zugewiesen'; +$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit allen Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann."; $labels['itipupdatesubject'] = '"$title" wurde aktualisiert'; +$labels['itipupdatesubjectempty'] = 'Eine ihrer Aufgabe wurde aktualisiert'; +$labels['itipupdatemailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann."; $labels['itipcancelsubject'] = '"$title" wurde abgesagt'; +$labels['itipcancelmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nDie Aufgabe wurde durch \$organizer storniert.\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails."; $labels['saveintasklist'] = 'speichern in'; +$labels['itipobjectnotfound'] = 'Die Aufgabe, auf welche sich diese Nachricht bezieht, wurde nicht in Ihrer Aufgabenliste gefunden.'; +$labels['itipmailbodyaccepted'] = "\$sender hat die Zuweisung folgender Aufgabe akzeptiert:\n\n*\$title*\n\nFällig: \$date\n\nVerantwortlich: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender hat die Zuweisung folgender Aufgabe unter Vorbehalt akzeptiert:\n\n*\$title*\n\nFällig: \$date\n\nVerantwortlich: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender hat die Zuweisung folgender Aufgabe abgeleht:\n\n*\$title*\n\nFällig: \$date\n\nVerantwortlich: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender hat die Zuweisung folgender Aufgabe abgeleht:\n\n*\$title*\n\nFällig: \$date"; +$labels['itipmailbodyin-process'] = "\$sender hat den Status folgender Aufgabe auf in-Bearbeitung gesetzt:\n\n*\$title*\n\nFällig: \$date"; +$labels['itipmailbodycompleted'] = "\$sender hat folgende Aufgabe abgeschlossen:\n\n*\$title*\n\nFällig: \$date"; +$labels['itipmailbodydelegated'] = "\$sender hat folgende Aufgabe delegiert:\n\n*\$title*\n\nFällig: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender hat folgende Aufgabe an Sie delegiert:\n\n*\$title*\n\nFällig: \$date"; +$labels['attendeeaccepted'] = 'Delegierter hat akzeptiert'; +$labels['attendeetentative'] = 'Delegierter hat unter Vorbehalt akzeptiert'; +$labels['attendeedeclined'] = 'Delegierter hat abgelehnt'; +$labels['attendeedelegated'] = 'Zugewiesener hat zu $delegatedto delegiert'; +$labels['attendeein-process'] = 'Delegierter ist in Bearbeitung '; +$labels['attendeecompleted'] = 'Delegierter hat abgeschlossen'; +$labels['acceptinvitation'] = 'Akzeptieren Sie die Zuweisung?'; +$labels['itipdeclinetask'] = 'Lehnen Sie to Zuweisung dieser Aufgabe ab'; +$labels['declinedeleteconfirm'] = 'Möchten Sie diese abgelehnete Aufgabe aus Ihrer Aufgabenliste löschen?'; $labels['itipcomment'] = 'Kommentar zur Einladungs-/Benachrichtigungsnachricht'; +$labels['itipcommenttitle'] = 'Dieser Kommentar wird der Benachrichtigung an andere Delegierte hinzugefügt'; +$labels['itipsendsuccess'] = 'Benachrichtigung an Delegierte gesendet'; +$labels['errornotifying'] = 'Senden der Benachrichtigung an Delegierte fehlgeschlagen'; $labels['removefromcalendar'] = 'Aus meinen Aufgaben entfernen'; +$labels['delegateinvitation'] = 'Zuweisung delegieren'; $labels['andnmore'] = '$nr weitere...'; $labels['delegatedto'] = 'Delegiert an:'; $labels['delegatedfrom'] = 'Delegiert von:'; $labels['savetotasklist'] = 'In den Aufgaben speichern'; $labels['comment'] = 'Kommentar'; $labels['errorimportingtask'] = 'Fehler beim Importieren der Aufgabe(n)'; +$labels['importwarningexists'] = 'Eine Kopie dieser Aufgabe exisistiert bereits in Ihrer Aufgabenliste'; $labels['importsuccess'] = '$nr Aufgaben erfolgreich importiert'; +$labels['newerversionexists'] = 'Eine neuere Version dieser Aufgabe existiert bereits! Abbruch.'; +$labels['nowritetasklistfound'] = 'Keine Aufgabenliste zum Speichern der Aufgabe gefunden'; +$labels['importedsuccessfully'] = 'Die Aufgabe wurde erfolgreich unter \'$list\' gespeichert'; +$labels['updatedsuccessfully'] = 'Die Aufgabe wurde erfolgreich in \'$list\' aktualisiert'; $labels['attendeupdateesuccess'] = 'Teilnehmerstatus erfolgreich aktualisiert'; +$labels['itipresponseerror'] = 'Senden der Antwort auf diese Aufgabenzuweisung fehlgeschlagen'; $labels['itipinvalidrequest'] = 'Diese Einladung ist nicht mehr gültig.'; +$labels['sentresponseto'] = 'Antwort auf Aufgabenzuweisung erfolgreich an $mailto versendet'; $labels['successremoval'] = 'Diese Aufgabe wurde erfolgreich gelöscht.'; $labels['arialabelsortmenu'] = 'Aufgaben-Sortierungsoptionen';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/fi_FI.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/fi_FI.inc
Changed
@@ -33,6 +33,7 @@ $labels['starttime'] = 'Aloitusaika'; $labels['alarms'] = 'Muistutus'; $labels['repeat'] = 'Toista'; +$labels['links'] = 'Viittaus'; $labels['status'] = 'Tila'; $labels['status-cancelled'] = 'Peruttu'; $labels['created'] = 'Luotu'; @@ -50,6 +51,7 @@ $labels['mytaskstitle'] = 'Sinulle määritetyt tehtävät'; $labels['nodate'] = 'ei päivää'; $labels['removetag'] = 'Poista'; +$labels['removelink'] = 'Poista sähköpostiviittaus'; $labels['taskdetails'] = 'Tiedot'; $labels['newtask'] = 'Uusi tehtävä'; $labels['edittask'] = 'Muokkaa tehtävää';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/it_IT.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/it_IT.inc
Changed
@@ -127,7 +127,20 @@ $labels['itipcancelsubject'] = '"$title" è stato annullato'; $labels['itipcancelmailbody'] = "*\$title*\n\nScadenza: \$date\n\nAssegnatari: \$attendees\n\nL'attività è stata cancellata da \$organizer.\n\nIn allegato un file iCalendar con i dettagli dell'attività aggiornati "; $labels['saveintasklist'] = 'Salva in'; +$labels['itipobjectnotfound'] = 'L\'attività riportata da questo messaggio non è stata trovata nella tua lista attività.'; +$labels['itipmailbodyaccepted'] = "\$sender ha accettato l'assegnazione alla seguente attività:\n\n*\$title*\n\nScadenza: \$date\n\nAssegnatari: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender ha provvisoriamente accettato l'assegnazione alla seguente attività:\n\n*\$title*\n\nScadenza:\$date\n\nAssegnatari: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender ha rifiutato l'assegnazione alla seguente attività:\n\n*\$title*\n\nScadenza: \$date\n\nAssegnatari: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender ha rifiutato la tua assegnazione alla seguente attività:\n\n*\$title*\n\nScadenza: \$date"; +$labels['itipmailbodyin-process'] = "\$sender ha impostato lo stato della seguente attività a in corso:\n\n*\$title*\n\nScadenza: \$date"; +$labels['itipmailbodycompleted'] = "\$sender ha completato la seguente attività:\n\n*\$title*\n\nScadenza: \$date"; +$labels['itipmailbodydelegated'] = "\$sender ha delegato la seguente attività:\n\n*\$title*\n\nScadenza: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender ha delegato a te la seguente attività:\n\n*\$title*\n\nScadenza: \$date"; $labels['attendeeaccepted'] = 'L\'assegnatario ha accettato'; +$labels['attendeetentative'] = 'L\'assegnatario ha provvisoriamente accettato'; +$labels['attendeedeclined'] = 'L\'assegnatario ha rifiutato'; +$labels['attendeedelegated'] = 'L\'assegnatario ha delegato a $delegatedto'; +$labels['acceptinvitation'] = 'Accetti questa assegnazione?'; $labels['itipcomment'] = 'Commento all\'invito/notifica'; $labels['itipcommenttitle'] = 'Questo commento verrà allegato al messaggio di invito/notifica inviato agli assegnatari'; $labels['itipsendsuccess'] = 'Notifica inviata agli assegnatari'; @@ -141,9 +154,12 @@ $labels['errorimportingtask'] = 'Impossibile importare attività'; $labels['importwarningexists'] = 'Una copia di questa attività esiste già nella tua lista attività.'; $labels['importsuccess'] = 'Importate con successo $nr attività'; +$labels['newerversionexists'] = 'Una versione più recente di questa attività esiste già! Interrotto.'; +$labels['nowritetasklistfound'] = 'Nessuna lista attività trovata nella quale salvare l\'attività'; $labels['importedsuccessfully'] = 'L\'attività è stata aggiunta con successo a \'$list\''; $labels['updatedsuccessfully'] = 'L\'attività è stata aggiornata con successo in \'$list\''; $labels['attendeupdateesuccess'] = 'Stato dei partecipanti aggiornato correttamente'; +$labels['itipresponseerror'] = 'Impossibile spedire la risposta a questa assegnazione attività'; $labels['itipinvalidrequest'] = 'Questo invito non è più valido'; $labels['successremoval'] = 'L\'attività è stata cancellata con successo.'; $labels['arialabelsortmenu'] = 'Opzioni ordinamento attività';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/pl.inc
Added
@@ -0,0 +1,58 @@ +<?php +/** + * Localizations for the Kolab Tasks plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ + */ +$labels['navtitle'] = 'Zadania'; +$labels['lists'] = 'Lista zadań'; +$labels['list'] = 'Lista zadań'; +$labels['tags'] = 'Tagi'; +$labels['listsearchresults'] = 'Dostępne listy zadań'; +$labels['findlists'] = 'Szukaj list zadań...'; +$labels['notasklistsfound'] = 'Nie znaleziono list zadań'; +$labels['removelist'] = 'Usuń z listy'; +$labels['newtask'] = 'Nowe zadanie'; +$labels['createtask'] = 'Utwórz zadanie <Enter>'; +$labels['createnewtask'] = 'Utwórz nowe zadanie (np sobota, zrobić zakupy)'; +$labels['createfrommail'] = 'Zapisz jako zadanie'; +$labels['edit'] = 'Edytuj'; +$labels['delete'] = 'Usuń'; +$labels['title'] = 'Tytuł'; +$labels['description'] = 'Opis'; +$labels['start'] = 'Start'; +$labels['repeat'] = 'Powtórz'; +$labels['status-cancelled'] = 'Anulowane'; +$labels['created'] = 'Utworzone'; +$labels['changed'] = 'Ostatnia modyfikacja'; +$labels['all'] = 'Wszystko'; +$labels['today'] = 'Dzisiaj'; +$labels['tomorrow'] = 'Jutro'; +$labels['next7days'] = 'Następne 7 dni'; +$labels['later'] = 'Później'; +$labels['assigned'] = 'Przydzielone'; +$labels['mytasks'] = 'Moje zadania'; +$labels['mytaskstitle'] = 'Zadania przypisane do Ciebie'; +$labels['nodate'] = 'brak daty'; +$labels['removetag'] = 'Usuń'; +$labels['auto'] = 'Auto'; +$labels['taskdetails'] = 'Szczegóły'; +$labels['newtask'] = 'Nowe zadanie'; +$labels['edittask'] = 'Edytuj zadanie'; +$labels['save'] = 'Zapisz'; +$labels['cancel'] = 'Anuluj'; +$labels['addsubtask'] = 'Dodaj podzadanie'; +$labels['deletetask'] = 'Usuń zadanie'; +$labels['deletethisonly'] = 'Usuń tylko to zadanie'; +$labels['deletewithchilds'] = 'Usuń wraz z podzadaniami'; +$labels['taskactions'] = 'Opcje zadania'; +$labels['tabsummary'] = 'Podsumowanie'; +$labels['editlist'] = 'Edytuj listę'; +$labels['createlist'] = 'Dodaj listę'; +$labels['listactions'] = 'Opcje listy...'; +$labels['listname'] = 'Nazwa'; +$labels['import'] = 'Importuj'; +$labels['rolerequired'] = 'Wymagane'; +$labels['andnmore'] = '$nr więcej...';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/pl_PL.inc
Changed
@@ -16,7 +16,7 @@ $labels['searchterms'] = 'Szukana fraza'; $labels['notasklistsfound'] = 'Nie znaleziono żanych list zadań'; $labels['nrtasklistsfound'] = 'Znaleziono $nr list zadań'; -$labels['removelist'] = 'Remove from list'; +$labels['removelist'] = 'Usuń z listy'; $labels['newtask'] = 'Nowe zadanie'; $labels['createtask'] = 'Utwórz zadanie <Enter>'; $labels['createnewtask'] = 'Utwórz nowe zadanie (n.p. sobota, skosić trawnik)'; @@ -35,9 +35,9 @@ $labels['repeat'] = 'Powtórz'; $labels['links'] = 'Reference'; $labels['status'] = 'Status'; -$labels['status-needs-action'] = 'Needs action'; -$labels['status-in-process'] = 'In process'; -$labels['status-completed'] = 'Completed'; +$labels['status-needs-action'] = 'Wymagane działanie'; +$labels['status-in-process'] = 'W trakcie'; +$labels['status-completed'] = 'Ukończone'; $labels['status-cancelled'] = 'Anulowany'; $labels['assignedto'] = 'Przypisane do'; $labels['created'] = 'Utworzono'; @@ -57,7 +57,7 @@ $labels['mytaskstitle'] = 'Zadania przypisane do ciebie'; $labels['nodate'] = 'Bez daty'; $labels['removetag'] = 'Usuń'; -$labels['removelink'] = 'Remove email reference'; +$labels['removelink'] = 'Usuń odnośnik e-mail'; $labels['auto'] = 'Automatycznie'; $labels['taskdetails'] = 'Szczegóły'; $labels['newtask'] = 'Nowe zadanie'; @@ -79,7 +79,7 @@ $labels['createlist'] = 'Dodaj listę'; $labels['listactions'] = 'Opcje listy...'; $labels['listname'] = 'Nazwa'; -$labels['showalarms'] = 'Show reminders'; +$labels['showalarms'] = 'Pokaż powiadomienia'; $labels['import'] = 'Importuj'; $labels['viewactions'] = 'Podgląd akcji'; $labels['focusview'] = 'Pokaż tylko tę listę'; @@ -122,50 +122,50 @@ $labels['invitationsubject'] = 'Zostałeś przypisany do "$title"'; $labels['invitationmailbody'] = "*\$title*\n\nDo kiedy: \$date\n\nPrzypisani: \$attendees\n\nW załączeniu plik w formacie iCalendar ze szczegółami zadania, który możesz zaimportować do twojej aplikacji listy zadań."; $labels['itipupdatesubject'] = '"$title" zostało zaktualizowane'; -$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated'; +$labels['itipupdatesubjectempty'] = 'Zadanie które cię dotyczy zostało zaktualizowane'; $labels['itipupdatemailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with the updated task details which you can import to your tasks application."; $labels['itipcancelsubject'] = '"$title" zostało anulowane'; $labels['itipcancelmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nThe task has been cancelled by \$organizer.\n\nPlease find attached an iCalendar file with the updated task details."; -$labels['saveintasklist'] = 'save in '; -$labels['itipobjectnotfound'] = 'The task referred by this message was not found in your tasks list.'; -$labels['itipmailbodyaccepted'] = "\$sender has accepted the assignment to the following task:\n\n*\$title*\n\nDue: \$date\n\nAssignees: \$attendees"; -$labels['itipmailbodytentative'] = "\$sender has tentatively accepted the assignment to the following task:\n\n*\$title*\n\nDue: \$date\n\nAssignees: \$attendees"; -$labels['itipmailbodydeclined'] = "\$sender has declined the assignment to the following task:\n\n*\$title*\n\nDue: \$date\n\nAssignees: \$attendees"; -$labels['itipmailbodycancel'] = "\$sender has rejected your assignment to the following task:\n\n*\$title*\n\nDue: \$date"; -$labels['itipmailbodyin-process'] = "\$sender has set the status of the following task to in-process:\n\n*\$title*\n\nDue: \$date"; +$labels['saveintasklist'] = 'zapisz w'; +$labels['itipobjectnotfound'] = 'W twojej liście zadań nie znaleziono zadania związanego z tą wiadomością'; +$labels['itipmailbodyaccepted'] = "\$sender zaakceptował przydzielenie do następującego zadania:\n\n*\$title*\n\nTermin: \$date\n\nUczestnicy: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender wstęnie zaakceptował przydzielenie do następującego zadania:\n\n*\$title*\n\nTermin: \$date\n\nUczestnicy: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender obniżył przydzielenie do następującego zadania:\n\n*\$title*\n\nTermin: \$date\n\nUczestnicy: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender odrzucił przydzielenie do następującego zadania:\n\n*\$title*\n\nTermin: \$date"; +$labels['itipmailbodyin-process'] = "\$sender ustanowił status następującego zadania na w trakcie:\n\n*\$title*\n\nTermin: \$date"; $labels['itipmailbodycompleted'] = "\$sender has completed the following task:\n\n*\$title*\n\nDue: \$date"; $labels['itipmailbodydelegated'] = "\$sender has delegated the following task:\n\n*\$title*\n\nDue: \$date"; $labels['itipmailbodydelegatedto'] = "\$sender has delegated the following task to you:\n\n*\$title*\n\nDue: \$date"; -$labels['attendeeaccepted'] = 'Assignee has accepted'; -$labels['attendeetentative'] = 'Assignee has tentatively accepted'; -$labels['attendeedeclined'] = 'Assignee has declined'; -$labels['attendeedelegated'] = 'Assignee has delegated to $delegatedto'; -$labels['attendeein-process'] = 'Assignee is in-process'; -$labels['attendeecompleted'] = 'Assignee has completed'; -$labels['acceptinvitation'] = 'Do you accept this assignment?'; +$labels['attendeeaccepted'] = 'Przydzielenie zaakceptowane'; +$labels['attendeetentative'] = 'Przydzielenie warunkowo zaakceptowane'; +$labels['attendeedeclined'] = 'Przydzielenie obniżone'; +$labels['attendeedelegated'] = 'Przydzielenie oddelegowane do $delegatedto'; +$labels['attendeein-process'] = 'Przydzielenie w trakcie'; +$labels['attendeecompleted'] = 'Przydzielenie zakończone'; +$labels['acceptinvitation'] = 'Zatwierdzasz to przydzielenie?'; $labels['itipdeclinetask'] = 'Decline your assignment to this task to the organizer'; $labels['declinedeleteconfirm'] = 'Do you also want to delete this declined task from your tasks list?'; $labels['itipcomment'] = 'Komentarz zaproszenia/powiadomienia'; $labels['itipcommenttitle'] = 'This comment will be attached to the invitation/notification message sent to assignees'; -$labels['itipsendsuccess'] = 'Notification sent to assignees'; -$labels['errornotifying'] = 'Failed to send notifications to task assignees'; -$labels['removefromcalendar'] = 'Remove from my tasks'; -$labels['delegateinvitation'] = 'Delegate assignment'; +$labels['itipsendsuccess'] = 'Powiadomienie wysłane do beneficjentów'; +$labels['errornotifying'] = 'Nie można wysłać wiadomości do beneficjentów zadania'; +$labels['removefromcalendar'] = 'Usuń z moich zadań'; +$labels['delegateinvitation'] = 'Oddelegowanie przydzieleń'; $labels['andnmore'] = '$nr więcej...'; $labels['delegatedto'] = 'Oddelegowany do:'; $labels['delegatedfrom'] = 'Oddelegowany z:'; -$labels['savetotasklist'] = 'Save to tasks'; +$labels['savetotasklist'] = 'Zapisz w zadaniach'; $labels['comment'] = 'Komentarz'; -$labels['errorimportingtask'] = 'Failed to import task(s)'; -$labels['importwarningexists'] = 'A copy of this task already exists in your tasklist.'; -$labels['importsuccess'] = 'Successfully imported $nr tasks'; -$labels['newerversionexists'] = 'A newer version of this task already exists! Aborted.'; -$labels['nowritetasklistfound'] = 'No tasklist found to save the task'; -$labels['importedsuccessfully'] = 'The task was successfully added to \'$list\''; -$labels['updatedsuccessfully'] = 'The task was successfully updated in \'$list\''; +$labels['errorimportingtask'] = 'Nie można dokonać importu zadań(ia) '; +$labels['importwarningexists'] = 'Kopia tego zadania już istnieje w twojej liście zadań'; +$labels['importsuccess'] = 'Pomyślnie zaimportowano $nr zadań'; +$labels['newerversionexists'] = 'Nowsza wersja tego zadania już istnieje! Przerwano'; +$labels['nowritetasklistfound'] = 'Nie znaleziono listy zadań do zapisu zadania.'; +$labels['importedsuccessfully'] = 'Zadanie zostało pomyślnie dodane do \'$list\''; +$labels['updatedsuccessfully'] = 'Zadanie zostało pomyślnie zaktualizowane w \'$list\''; $labels['attendeupdateesuccess'] = 'Zaktualizowano status uczestnika.'; $labels['itipresponseerror'] = 'Failed to send the response to this task assignment'; $labels['itipinvalidrequest'] = 'To zaproszenie nie jest już aktualne.'; $labels['sentresponseto'] = 'Successfully sent assignment response to $mailto'; -$labels['successremoval'] = 'The task has been deleted successfully.'; -$labels['arialabelsortmenu'] = 'Tasks sorting options'; +$labels['successremoval'] = 'Zadanie zostało pomyślnie usunięte.'; +$labels['arialabelsortmenu'] = 'Opcje sortowania zadań';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/pt_PT.inc
Added
@@ -0,0 +1,53 @@ +<?php +/** + * Localizations for the Kolab Tasks plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ + */ +$labels['tasklistsubscribe'] = 'Listar permanentemente'; +$labels['searchterms'] = 'Search terms'; +$labels['removelist'] = 'Remove from list'; +$labels['edit'] = 'Editar'; +$labels['description'] = 'Descrição'; +$labels['start'] = 'Início'; +$labels['starttime'] = 'Start time'; +$labels['alarms'] = 'Lembrete'; +$labels['repeat'] = 'Repetir'; +$labels['links'] = 'Reference'; +$labels['status'] = 'Situação'; +$labels['status-cancelled'] = 'Cancalado'; +$labels['created'] = 'Created'; +$labels['changed'] = 'Last Modified'; +$labels['all'] = 'Todos'; +$labels['today'] = 'Hoje'; +$labels['tomorrow'] = 'Amanhã'; +$labels['removelink'] = 'Remove email reference'; +$labels['taskdetails'] = 'Detalhes'; +$labels['save'] = 'Gravar'; +$labels['cancel'] = 'Cancelar'; +$labels['tabsummary'] = 'Sumário'; +$labels['tabrecurrence'] = 'Repetição'; +$labels['tabattachments'] = 'Anexos'; +$labels['tabsharing'] = 'Compartilhamento'; +$labels['listname'] = 'Nome'; +$labels['showalarms'] = 'Show reminders'; +$labels['savingdata'] = 'Salvando dados...'; +$labels['role'] = 'Papel'; +$labels['availability'] = 'Disp.'; +$labels['confirmstate'] = 'Situação'; +$labels['roleorganizer'] = 'Organizador'; +$labels['rolerequired'] = 'Obrigatório'; +$labels['roleoptional'] = 'Opcional'; +$labels['rolechair'] = 'Chair'; +$labels['sendinvitations'] = 'Enviar convites'; +$labels['itipupdatesubject'] = '"$title" foi atualizado'; +$labels['itipcancelsubject'] = '"$title" foi cancelado'; +$labels['itipcomment'] = 'Invitation/notification comment'; +$labels['andnmore'] = '$nr mais...'; +$labels['delegatedto'] = 'Delegado para:'; +$labels['delegatedfrom'] = 'Delegado de:'; +$labels['comment'] = 'Comentário'; +$labels['attendeupdateesuccess'] = 'O status do participante foi atualizado com sucesso.'; +$labels['itipinvalidrequest'] = 'Este convite não é mais válido';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/sk.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/sk.inc
Changed
@@ -6,6 +6,16 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ */ +$labels['removelist'] = 'Odstrániť zo zoznamu'; $labels['edit'] = 'Upraviť'; +$labels['description'] = 'Popis'; +$labels['start'] = 'Začiatok'; +$labels['starttime'] = 'Čas začiatku'; +$labels['repeat'] = 'Opakovať'; +$labels['status'] = 'Stav'; +$labels['status-cancelled'] = 'Zrušené'; $labels['save'] = 'Uložiť'; +$labels['cancel'] = 'Zrušiť'; +$labels['tabsummary'] = 'Sumár'; $labels['listname'] = 'Meno'; +$labels['confirmstate'] = 'Stav';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/sl.inc
Added
@@ -0,0 +1,171 @@ +<?php +/** + * Localizations for the Kolab Tasks plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ + */ +$labels['navtitle'] = 'Naloge'; +$labels['lists'] = 'Seznami nalog'; +$labels['list'] = 'Seznam nalog'; +$labels['tags'] = 'Tagi'; +$labels['tasklistsubscribe'] = 'Označi za vedno'; +$labels['listsearchresults'] = 'Seznami nalog na voljo'; +$labels['findlists'] = 'Poišči sezname nalog...'; +$labels['searchterms'] = 'Iskalni pogoji'; +$labels['notasklistsfound'] = 'Ne najdem seznamov nalog'; +$labels['nrtasklistsfound'] = '$nr najdenih seznamov'; +$labels['removelist'] = 'Odstrani iz seznama'; +$labels['newtask'] = 'Nova naloga'; +$labels['createtask'] = 'Nova naloga <Enter>'; +$labels['createnewtask'] = 'Nova naloga (npr. Sobota, Košnja trave)'; +$labels['createfrommail'] = 'Shrani kot nalogo'; +$labels['mark'] = 'Označi'; +$labels['unmark'] = 'Odznači'; +$labels['edit'] = 'Uredi'; +$labels['delete'] = 'Izbriši'; +$labels['title'] = 'Naslov'; +$labels['description'] = 'Opis'; +$labels['datetime'] = 'Poteklo'; +$labels['duetime'] = 'Datum poteka'; +$labels['start'] = 'Začetek'; +$labels['starttime'] = 'Čas začetka'; +$labels['alarms'] = 'Opomnik'; +$labels['repeat'] = 'Ponovi'; +$labels['links'] = 'Sklic'; +$labels['status'] = 'Status'; +$labels['status-needs-action'] = 'Potrebuje pozornost'; +$labels['status-in-process'] = 'V procesu'; +$labels['status-completed'] = 'Opravljeno'; +$labels['status-cancelled'] = 'Preklicano'; +$labels['assignedto'] = 'Dodeljeno osebi'; +$labels['created'] = 'Ustvarjeno'; +$labels['changed'] = 'Nazadnje urejeno'; +$labels['all'] = 'Vsi'; +$labels['flagged'] = 'Označeno z zastavico'; +$labels['complete'] = 'Opravi'; +$labels['completeness'] = 'Napredek'; +$labels['overdue'] = 'Poteče'; +$labels['today'] = 'Danes'; +$labels['tomorrow'] = 'Jutri'; +$labels['next7days'] = 'V naslednjih 7 dneh'; +$labels['later'] = 'Kasneje'; +$labels['assigned'] = 'Dodeljeno'; +$labels['assignedtitle'] = 'Naloge, ki ste jih dodelili ostalim'; +$labels['mytasks'] = 'Moje naloge'; +$labels['mytaskstitle'] = 'Naloge, ki so dodeljene vam'; +$labels['nodate'] = 'brez datuma'; +$labels['removetag'] = 'Odstrani'; +$labels['removelink'] = 'Odstrani email povezavo'; +$labels['auto'] = 'Auto'; +$labels['taskdetails'] = 'Podrobnosti'; +$labels['newtask'] = 'Nova naloga'; +$labels['edittask'] = 'Uredi nalogo'; +$labels['save'] = 'Shrani'; +$labels['cancel'] = 'Prekliči'; +$labels['saveandnotify'] = 'Shrani in pošlji obvestila'; +$labels['addsubtask'] = 'Dodatna naloga'; +$labels['deletetask'] = 'Izbriši nalogo'; +$labels['deletethisonly'] = 'Izbriši samo to nalogo'; +$labels['deletewithchilds'] = 'Izbriši skupaj z vsemi dodanimi nalogami'; +$labels['taskactions'] = 'Nastavitve naloge...'; +$labels['tabsummary'] = 'Pregled'; +$labels['tabrecurrence'] = 'Ponovitev'; +$labels['tabassignments'] = 'Dodeljene naloge'; +$labels['tabattachments'] = 'Priponke'; +$labels['tabsharing'] = 'Deli z ostalimi'; +$labels['editlist'] = 'Uredi seznam'; +$labels['createlist'] = 'Dodaj seznam'; +$labels['listactions'] = 'Nastavitve seznama...'; +$labels['listname'] = 'Ime'; +$labels['showalarms'] = 'Prikaži opomnike'; +$labels['import'] = 'Uvozi'; +$labels['viewactions'] = 'Prikaži možnosti'; +$labels['focusview'] = 'Prikaži samo ta seznam'; +$labels['on'] = 'dne'; +$labels['at'] = 'ob'; +$labels['this'] = 'ta'; +$labels['next'] = 'naslednji'; +$labels['savingdata'] = 'Shranjujem...'; +$labels['errorsaving'] = 'Napaka pri shranjevanju podatkov.'; +$labels['notasksfound'] = 'Ne najdem nalog z izbranimi iskalnimi kriteriji'; +$labels['invalidstartduedates'] = 'Datum začetka ne sme biti poznejši od datuma konca.'; +$labels['deletetasktconfirm'] = 'Potrdi izbris naloge?'; +$labels['deleteparenttasktconfirm'] = 'Potrdi izbris naloge in vseh dodanih nalog?'; +$labels['deletelistconfirm'] = 'Potrdi izbris seznama z vsemi nalogami?'; +$labels['deletelistconfirmrecursive'] = 'Potrdi izbris seznama z vsemi pod seznami in nalogami?'; +$labels['aclnorights'] = 'Nimate administratorskih pravic na tem seznamu.'; +$labels['changetaskconfirm'] = 'Posodobi nalogo'; +$labels['changeconfirmnotifications'] = 'Ali želite o spremembi obvestiti udeležence?'; +$labels['partstatupdatenotification'] = 'Ali želite o spremembah obvestiti organizatorja dogodka?'; +$labels['quickaddinput'] = 'Nov datum naloge in naslov'; +$labels['arialabelquickaddbox'] = 'Hitro dodajanje nove naloge'; +$labels['arialabelsearchform'] = 'Obrazec za iskanje nalog'; +$labels['arialabelquicksearchbox'] = 'Vnos iskanja po nalogah'; +$labels['arialabellistsearchform'] = 'Obrazec za iskanje po seznamih'; +$labels['arialabeltaskselector'] = 'Način seznama'; +$labels['arialabeltasklisting'] = 'Prikaz seznamov nalog'; +$labels['attendee'] = 'Dodeljeno osebi'; +$labels['role'] = 'Vloga'; +$labels['availability'] = 'Razpol.'; +$labels['confirmstate'] = 'Status'; +$labels['addattendee'] = 'Dodaj osebo'; +$labels['roleorganizer'] = 'Organizator'; +$labels['rolerequired'] = 'Zahtevano'; +$labels['roleoptional'] = 'Neobvezno'; +$labels['rolechair'] = 'Vodja sestanka'; +$labels['rolenonparticipant'] = 'Opazovalec'; +$labels['sendinvitations'] = 'Pošlji vabila'; +$labels['sendnotifications'] = 'Pošlji dodanim osebam obvestila o spremembah'; +$labels['sendcancellation'] = 'Pošlji dodanim osebam obvestila o preklicu naloge'; +$labels['invitationsubject'] = 'Dodani ste bili nalogi "$title"'; +$labels['invitationmailbody'] = "*\$title*\n\nPoteče: \$date\n\nAssignees: \$attendees\n\nProsim preglejte iCalendar datoteko v priponki z vsemi podrobnostmi naloge. Datoteko lahko uvozite v vašo aplikacijo."; +$labels['itipupdatesubject'] = '"$title" je bil posodobljen'; +$labels['itipupdatesubjectempty'] = 'Zadevna naloga je bila posodobljena'; +$labels['itipupdatemailbody'] = "*\$title*\n\nPoteče: \$date\n\nAssignees: \$attendees\n\nProsim preglejte iCalendar datoteko v priponki z vsemi podrobnostmi glede naloge. Datoteko lahko uvozite v vašo aplikacijo."; +$labels['itipcancelsubject'] = '"$title" je bil preklican'; +$labels['itipcancelmailbody'] = "*\$title*\n\nPoteče: \$date\n\nAssignees: \$attendees\n\nNaloga je bila preklicana s strani \$organizer.\n\nProsim preglejte iCalendar datoteko z posodobljenimi podrobnostmi naloge."; +$labels['saveintasklist'] = 'shrani v'; +$labels['itipobjectnotfound'] = 'Naloga, na katero se nanaša to sporočilo, ni bila najdena na vašem seznamu.'; +$labels['itipmailbodyaccepted'] = "\$sender je sprejel vabilo na nalogo:\n\n*\$title*\n\nPoteče: \$date\n\nDodeljeno: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender je okvirno sprejel vabilo na nalogo:\n\n*\$title*\n\nPoteče: \$date\n\nDodeljeno: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender ni sprejel vabila na nalogo:\n\n*\$title*\n\nPoteče: \$date\n\nDodeljeno: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender je zavrnil vašo dodelitev k nalogi:\n\n*\$title*\n\nPoteče: \$date"; +$labels['itipmailbodyin-process'] = "\$sender je spremenil stanje naloge na: v obdelavi:\n\n*\$title*\n\nPoteče: \$date"; +$labels['itipmailbodycompleted'] = "\$sender je opravil nalogo:\n\n*\$title*\n\nPoteče: \$date"; +$labels['itipmailbodydelegated'] = "\$sender je prenesel nalogo:\n\n*\$title*\n\nPoteče: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender je prenesel nalogo na vas:\n\n*\$title*\n\nPoteče: \$date"; +$labels['attendeeaccepted'] = 'Dodeljena oseba je sprejela'; +$labels['attendeetentative'] = 'Dodeljena oseba je okvirno sprejela'; +$labels['attendeedeclined'] = 'Dodeljena oseba je preklicala'; +$labels['attendeedelegated'] = 'Dodeljena oseba je prenesla sodelovanje na $delegatedto'; +$labels['attendeein-process'] = 'Dodeljena oseba je v procesu'; +$labels['attendeecompleted'] = 'Dodeljena oseba je opravila nalogo'; +$labels['acceptinvitation'] = 'Ali sprejmete to nalogo?'; +$labels['itipdeclinetask'] = 'Zavrnite dodelitev k tej nalogi'; +$labels['declinedeleteconfirm'] = 'Ali želite tudi izbrisati zavrnjeno nalogo iz vašega seznama?'; +$labels['itipcomment'] = 'Komentar vabila/obvestila'; +$labels['itipcommenttitle'] = 'Komentar bo dodan k vabilu/obvestilu, ki bo poslano sodelujočim'; +$labels['itipsendsuccess'] = 'Vabilo sodelujočim poslano'; +$labels['errornotifying'] = 'Napaka. Pošiljanje obvestil sodelujočim ni bilo uspešno.'; +$labels['removefromcalendar'] = 'Odstrani iz seznama'; +$labels['delegateinvitation'] = 'Prenesi nalogo'; +$labels['andnmore'] = '$nr več...'; +$labels['delegatedto'] = 'Preneseno na:'; +$labels['delegatedfrom'] = 'Preneseno od:'; +$labels['savetotasklist'] = 'Shrani kot nalogo'; +$labels['comment'] = 'Komentar'; +$labels['errorimportingtask'] = 'Napaka pri uvozu nalog(e)'; +$labels['importwarningexists'] = 'Različica te naloge že obstaja na vašem seznamu.'; +$labels['importsuccess'] = 'Uspešno uvoženih $nr nalog'; +$labels['newerversionexists'] = 'Obstaja novejša verzija te naloge!'; +$labels['nowritetasklistfound'] = 'Za shranitev naloge ne najdem seznamov'; +$labels['importedsuccessfully'] = 'Naloga je bila uspešno dodana na \'$list\''; +$labels['updatedsuccessfully'] = 'Naloga je bila uspešno posodobljena na \'$list\''; +$labels['attendeupdateesuccess'] = 'Posodabljanje statusa sodelujočega uspešno'; +$labels['itipresponseerror'] = 'Napaka. Pošiljanje odgovora na dodelitev naloge ni bilo uspešno.'; +$labels['itipinvalidrequest'] = 'To vabilo ni več veljavno'; +$labels['sentresponseto'] = 'Odgovor je bil uspešno poslan na naslov $mailto'; +$labels['successremoval'] = 'Naloga je bila uspešno izbrisana.'; +$labels['arialabelsortmenu'] = 'Nastavitve za sortiranje';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/sv_SE.inc
Changed
@@ -21,6 +21,8 @@ $labels['createtask'] = 'Skapa uppgift'; $labels['createnewtask'] = 'Skapa ny uppgift (t.ex. lördag, klipp gräsmattan)'; $labels['createfrommail'] = 'Spara som uppgift'; +$labels['mark'] = 'Märk'; +$labels['unmark'] = 'Avmarkera'; $labels['edit'] = 'Redigera'; $labels['delete'] = 'Ta bort'; $labels['title'] = 'Titel'; @@ -31,6 +33,7 @@ $labels['starttime'] = 'Starttid'; $labels['alarms'] = 'Påminnelse'; $labels['repeat'] = 'Upprepa'; +$labels['links'] = 'Referens'; $labels['status'] = 'Status'; $labels['status-needs-action'] = 'Kräver åtgärd'; $labels['status-in-process'] = 'Pågående'; @@ -42,6 +45,7 @@ $labels['all'] = 'Alla'; $labels['flagged'] = 'Markerade'; $labels['complete'] = 'Slutförda'; +$labels['completeness'] = 'Förlopp'; $labels['overdue'] = 'Försenade'; $labels['today'] = 'Idag'; $labels['tomorrow'] = 'Imorgon'; @@ -53,6 +57,7 @@ $labels['mytaskstitle'] = 'Uppgifter tilldelade dig'; $labels['nodate'] = 'inget datum'; $labels['removetag'] = 'Ta bort'; +$labels['removelink'] = 'Ta bort e-postreferens'; $labels['auto'] = 'Automatisk'; $labels['taskdetails'] = 'Detaljer'; $labels['newtask'] = 'Ny uppgift'; @@ -62,37 +67,105 @@ $labels['saveandnotify'] = 'Spara och notifiera'; $labels['addsubtask'] = 'Lägg till deluppgift'; $labels['deletetask'] = 'Ta bort uppgift'; +$labels['deletethisonly'] = 'Ta endast bort denna uppgift'; +$labels['deletewithchilds'] = 'Ta bort med alla deluppgifter'; +$labels['taskactions'] = 'Alternativ för uppgift'; $labels['tabsummary'] = 'Sammanfattning'; $labels['tabrecurrence'] = 'Återkommande'; $labels['tabassignments'] = 'Tilldelningar'; $labels['tabattachments'] = 'Bilagor'; $labels['tabsharing'] = 'Delning'; +$labels['editlist'] = 'Redigera lista'; +$labels['createlist'] = 'Lägg till lista'; +$labels['listactions'] = 'Alternativ för lista'; $labels['listname'] = 'Namn'; $labels['showalarms'] = 'Visa påminnelser'; $labels['import'] = 'Importera'; +$labels['viewactions'] = 'Visa åtgärder'; $labels['focusview'] = 'Visa endast denna lista'; +$labels['on'] = 'på'; +$labels['at'] = ' '; +$labels['this'] = 'denna'; +$labels['next'] = 'nästa'; $labels['savingdata'] = 'Sparar data ...'; +$labels['errorsaving'] = 'Misslyckades att spara data.'; +$labels['notasksfound'] = 'Inga uppgifter hittades med angivna kriterier'; +$labels['invalidstartduedates'] = 'Startdatum måste vara större än förfallodatum'; +$labels['deletetasktconfirm'] = 'Vill du verkligen ta bort denna uppgift?'; +$labels['deleteparenttasktconfirm'] = 'Vill du verkligen ta bort denna uppgift och alla dess deluppgifter?'; +$labels['deletelistconfirm'] = 'Vill du verkligen ta bort denna lista med alla dess uppgifter?'; +$labels['deletelistconfirmrecursive'] = 'Vill du verkligen ta bort denna lista med alla dellistor och uppgifter?'; +$labels['aclnorights'] = 'Du har inte administratörsrättigheter för denna uppgiftslista.'; $labels['changetaskconfirm'] = 'Uppdatera uppgift'; +$labels['changeconfirmnotifications'] = 'Vill du meddela deltagarna om ändringen?'; +$labels['partstatupdatenotification'] = 'Vill du meddela organisatören om statusförändringen?'; +$labels['quickaddinput'] = 'Nytt uppgiftsdatum och ny titel'; +$labels['arialabelquickaddbox'] = 'Snabb-lägg-till ny uppgift'; +$labels['arialabelsearchform'] = 'Sökformulär för uppgifter'; +$labels['arialabelquicksearchbox'] = 'Sökinmatning för uppgifter'; +$labels['arialabellistsearchform'] = 'Sökformulär för uppgiftslistor'; +$labels['arialabeltaskselector'] = 'Listläge'; +$labels['arialabeltasklisting'] = 'Uppgiftslistning'; +$labels['attendee'] = 'Tilldelad'; $labels['role'] = 'Roll'; $labels['availability'] = 'Tillg.'; $labels['confirmstate'] = 'Status'; +$labels['addattendee'] = 'Lägg till förvärvare'; $labels['roleorganizer'] = 'Organisatör'; $labels['rolerequired'] = 'Obligatorisk'; $labels['roleoptional'] = 'Valfritt'; $labels['rolechair'] = 'Stol'; +$labels['rolenonparticipant'] = 'Observatör'; $labels['sendinvitations'] = 'Skicka inbjudningar'; +$labels['sendnotifications'] = 'Meddela förvärvare om ändringar'; +$labels['sendcancellation'] = 'Meddela förvärvare om annullering av uppgift'; +$labels['invitationsubject'] = 'Du har blivit tilldelad "$title"'; +$labels['invitationmailbody'] = "*\$title*\n\nFörfaller: \$date\n\nTilldelade: \$attendees\n\nVänligen se bifogad iCalendar-fil, med alla detaljer om uppgiften, som du kan importera till ditt program för uppgifter."; $labels['itipupdatesubject'] = '"$title" har uppdaterats'; $labels['itipupdatesubjectempty'] = 'En uppgift som berör dig har uppdaterats'; +$labels['itipupdatemailbody'] = "*\$title*\n\nFörfaller: \$date\n\nTilldelade: \$attendees\n\nVänligen se bifogad iCalendar-fil, med uppdaterade detaljer om uppgiften, som du kan importera till ditt program för uppgifter."; $labels['itipcancelsubject'] = '"$title" har ställts in'; +$labels['itipcancelmailbody'] = "*\$title*\n\nFörfaller: \$date\n\nTilldelade: \$attendees\n\nUppgiften har ställts in av \$organizer.\n\nVänligen se bifogad iCalendar-fil med uppdaterade detaljer angående uppgiften."; +$labels['saveintasklist'] = 'spara i'; +$labels['itipobjectnotfound'] = 'Uppgiften som refererats av detta meddelande hittades inte i din uppgiftslista.'; +$labels['itipmailbodyaccepted'] = "\$sender har accepterat att tilldelas följande uppgift:\n\n*\$title*\n\nFörfaller: \$date\n\nTilldelade: \$attendees"; +$labels['itipmailbodytentative'] = "\$sender har preliminärt accepterat att tilldelas följande uppgift:\n\n*\$title*\n\nFörfaller: \$date\n\nTilldelade: \$attendees"; +$labels['itipmailbodydeclined'] = "\$sender har avböjt att tilldelas följande uppgift:\n\n*\$title*\n\nFörfaller: \$date\n\nTilldelade: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender har avvisat din tilldelning av följande uppgift:\n\n*\$title*\n\nFörfaller: \$date"; +$labels['itipmailbodyin-process'] = "\$sender har satt status för följande uppgift till i bearbetningsfas:\n\n*\$title*\n\nFörfaller: \$date"; +$labels['itipmailbodycompleted'] = "\$sender har slutfört följande uppgift:\n\n*\$title*\n\nFörfaller: \$date"; +$labels['itipmailbodydelegated'] = "\$sender har delegerat följande uppgift:\n\n*\$title*\n\nFörfaller: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender har delegerat följande uppgift till dig:\n\n*\$title*\n\nFörfaller: \$date"; +$labels['attendeeaccepted'] = 'Den tilldelade har accepterat'; +$labels['attendeetentative'] = 'Den tilldelade har preliminärt accepterat'; +$labels['attendeedeclined'] = 'Den tilldelade har tackat nej'; +$labels['attendeedelegated'] = 'Den tilldelade har delegerat till $delegatedto'; +$labels['attendeein-process'] = 'Den tilldelade är i bearbetningsfas'; +$labels['attendeecompleted'] = 'Förvärvare har slutfört'; +$labels['acceptinvitation'] = 'Accepterar du denna tilldelade uppgift?'; +$labels['itipdeclinetask'] = 'Avböj denna, till dig tilldelade, uppgift till organisatören'; +$labels['declinedeleteconfirm'] = 'Vill du även ta bort denna avböjda uppgift från din uppgiftslista?'; $labels['itipcomment'] = 'Kommentar till inbjudan/meddelande'; +$labels['itipcommenttitle'] = 'Denna kommentar kommer att bifogas till inbjudnings-/notifieringsmeddelandet som skickas till de tilldelade'; +$labels['itipsendsuccess'] = 'Meddelande har skickats till förvärvare'; +$labels['errornotifying'] = 'Misslyckades att skicka notifieringar till uppgiftsförvärvare'; $labels['removefromcalendar'] = 'Ta bort från mina uppgifter'; +$labels['delegateinvitation'] = 'Delegera uppgift'; $labels['andnmore'] = '$nr fler ...'; $labels['delegatedto'] = 'Delegerad till:'; $labels['delegatedfrom'] = 'Delegerad från:'; $labels['savetotasklist'] = 'Spara till uppgifter'; $labels['comment'] = 'Kommentar'; $labels['errorimportingtask'] = 'Det gick inte att importera uppgift(er)'; +$labels['importwarningexists'] = 'En kopia av denna uppgift finns redan i din uppgiftslista.'; $labels['importsuccess'] = '$nr uppgifter har importerats'; +$labels['newerversionexists'] = 'En nyare version av denna uppgift finns redan! Åtgärd avbruten.'; +$labels['nowritetasklistfound'] = 'Ingen uppgiftslista hittades att spara uppgiften till'; +$labels['importedsuccessfully'] = 'Uppgiften lades till \'$list\''; +$labels['updatedsuccessfully'] = 'Uppgiften uppdaterades i \'$list\''; $labels['attendeupdateesuccess'] = 'Uppdaterade deltagarens status'; +$labels['itipresponseerror'] = 'Misslyckades att skicka ett svar på tilldelandet av denna uppgift'; $labels['itipinvalidrequest'] = 'Denna inbjudan är inte längre giltig'; +$labels['sentresponseto'] = 'Skickade respons på uppgift till $mailto'; $labels['successremoval'] = 'Uppgiften har tagits bort.'; +$labels['arialabelsortmenu'] = 'Alternativ för sortering av uppgifter';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/th.inc
Added
@@ -0,0 +1,162 @@ +<?php +/** + * Localizations for the Kolab Tasks plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ + */ +$labels['navtitle'] = 'งาน'; +$labels['lists'] = 'รายการงาน'; +$labels['list'] = 'รายการงาน'; +$labels['tags'] = 'แท๊ก'; +$labels['tasklistsubscribe'] = 'จัดแสดงถาวร'; +$labels['listsearchresults'] = 'รายการงานที่มีอยู่'; +$labels['findlists'] = 'ค้นหารายการงาน'; +$labels['searchterms'] = 'ข้อความที่ต้องการค้นหา'; +$labels['notasklistsfound'] = 'ไม่พบรายการงานที่ค้นหา'; +$labels['nrtasklistsfound'] = 'พบรายการงานจำนวน $nr รายการ'; +$labels['removelist'] = 'ลบออกจากรายการ'; +$labels['newtask'] = 'งานใหม่'; +$labels['createtask'] = 'สร้างงาน<เอนเตอร์>'; +$labels['createnewtask'] = 'สร้างงานใหม่ (เช่น วันเสาร์, ตัดหญ้าในสนาม)'; +$labels['createfrommail'] = 'บันทึกเป็นงาน'; +$labels['mark'] = 'ทำเครื่องหมาย'; +$labels['unmark'] = 'ยกเลิกการทำเครื่องหมาย'; +$labels['edit'] = 'แก้ไข'; +$labels['delete'] = 'ลบ'; +$labels['title'] = 'หัวข้อ'; +$labels['description'] = 'คำอธิบาย'; +$labels['datetime'] = 'ครบกำหนด'; +$labels['duetime'] = 'กำหนดเสร็จ'; +$labels['start'] = 'เริ่ม'; +$labels['starttime'] = 'เวลาเริ่มต้น'; +$labels['alarms'] = 'แจ้งเตือน'; +$labels['repeat'] = 'ทำซ้ำ'; +$labels['links'] = 'อ้างอิง'; +$labels['status'] = 'สถานะ'; +$labels['status-needs-action'] = 'ต้องทำอะไรสักอย่าง'; +$labels['status-in-process'] = 'อยุ่ระหว่างดำเนินการ'; +$labels['status-completed'] = 'เสร็จเรียบร้อย'; +$labels['status-cancelled'] = 'ยกเลิก'; +$labels['assignedto'] = 'มอบหมายให้'; +$labels['created'] = 'สร้าง'; +$labels['changed'] = 'แก้ไขครั้งสุดท้าย'; +$labels['all'] = 'ทั้งหมด'; +$labels['flagged'] = 'ติดธง'; +$labels['complete'] = 'เสร็จ'; +$labels['completeness'] = 'ความคืบหน้า'; +$labels['overdue'] = 'เลยกำหนด'; +$labels['today'] = 'วันนี้'; +$labels['tomorrow'] = 'พรุ่งนี้'; +$labels['next7days'] = 'อีก 7 วัน'; +$labels['later'] = 'ภายหลัง'; +$labels['assigned'] = 'มอบหมายแล้ว'; +$labels['assignedtitle'] = 'งานที่ท่านมอบหมายให้ผู้อื่น'; +$labels['mytasks'] = 'งานของฉัน'; +$labels['mytaskstitle'] = 'งานที่ท่านได้รับมอบหมาย'; +$labels['nodate'] = 'ไม่มีกำหนด'; +$labels['removetag'] = 'เอาออก'; +$labels['auto'] = 'อัตโนมัติ'; +$labels['taskdetails'] = 'รายละเอียด'; +$labels['newtask'] = 'งานใหม่'; +$labels['edittask'] = 'แก้ไขงาน'; +$labels['save'] = 'บันทึก'; +$labels['cancel'] = 'ยกเลิก'; +$labels['saveandnotify'] = 'บันทึกและแจ้งเตือน'; +$labels['addsubtask'] = 'เพิ่มงานย่อย'; +$labels['deletetask'] = 'ลบงาน'; +$labels['deletethisonly'] = 'ลบงานนี้เท่านั้น'; +$labels['deletewithchilds'] = 'ลบพร้อมงานย่อย'; +$labels['taskactions'] = 'งาน ทางเลือก...'; +$labels['tabsummary'] = 'สรุป'; +$labels['tabrecurrence'] = 'การเกิดซ้ำ'; +$labels['tabassignments'] = 'งานที่ได้รับมอบหมาย'; +$labels['tabattachments'] = 'สิ่งที่แนบมาด้วย'; +$labels['tabsharing'] = 'แบ่งปัน'; +$labels['editlist'] = 'แก้ไขรายการ'; +$labels['createlist'] = 'เพิ่มรายการ'; +$labels['listactions'] = 'แสดงรายการทางเลือก...'; +$labels['listname'] = 'ชื่อ'; +$labels['showalarms'] = 'แสดงการแจ้งเตือน'; +$labels['import'] = 'นำเข้า'; +$labels['viewactions'] = 'แสดงการปฎิบัติ'; +$labels['focusview'] = 'ดูเฉพาะรายการนี้'; +$labels['on'] = 'เปิด'; +$labels['at'] = 'ที่'; +$labels['this'] = 'นี้'; +$labels['next'] = 'ถัดไป'; +$labels['savingdata'] = 'บันทึกข้อมูล'; +$labels['errorsaving'] = 'การบันทึกข้อมูลเกิดข้อผิดพลาด'; +$labels['notasksfound'] = 'ไม่พบงานสำหรับเงื่อนไขที่กำหนด'; +$labels['invalidstartduedates'] = 'กำหนดเริ่มต้องมาก่อนกำหนดเสร็จ'; +$labels['deletetasktconfirm'] = 'ท่านต้องการลบงานนี้ใช่ไหม'; +$labels['deleteparenttasktconfirm'] = 'ท่านต้องการลบงานนี้พร้อมงานย่อยทั้งหมดใช่ไหม'; +$labels['deletelistconfirm'] = 'ท่านต้องการลบรายการงานนี้พร้อมงานทั้งหมดใช่ไหม'; +$labels['deletelistconfirmrecursive'] = 'ท่านต้องการลบรายการงานพร้อมรายการย่อยและงานทั้งหมดใช่ไหม'; +$labels['aclnorights'] = 'ท่านไม่มีสิทธิของผู้ดูแลระบบสำหรับรายการงานชุดนี้'; +$labels['changetaskconfirm'] = 'ปรับปรุงงาน'; +$labels['changeconfirmnotifications'] = 'ท่านต้องการแจ้งเตือนผู้เข้าร่วมทั้งหมดสำหรับการแก้ไขนี้หรือไม่'; +$labels['partstatupdatenotification'] = 'ท่านต้องการแจ้งเตือนผู้จัดงานสำหรับการเปลี่ยนสถานะครั้งนี้หรือไม่'; +$labels['quickaddinput'] = 'งานใหม่ วันที่และหัวข้อ'; +$labels['arialabelquickaddbox'] = 'เพิ่มงานใหม่อย่างรวดเร็ว'; +$labels['arialabelsearchform'] = 'ฟอร์มสำหรับค้นหางาน'; +$labels['arialabelquicksearchbox'] = 'การป้อนข้อมูลค้นหางาน'; +$labels['arialabellistsearchform'] = 'ฟอร์มสำหรับค้นหารายการงาน'; +$labels['arialabeltaskselector'] = 'รูปแบบการแสดงรายการ'; +$labels['attendee'] = 'ผู้รับมอบ'; +$labels['role'] = 'บทบาท'; +$labels['confirmstate'] = 'สถานะ'; +$labels['addattendee'] = 'เพิ่มผู้รับมอบงาน'; +$labels['roleorganizer'] = 'ผู้จัดงาน'; +$labels['rolerequired'] = 'บังคับ'; +$labels['roleoptional'] = 'ทางเลือก'; +$labels['rolenonparticipant'] = 'ผู้เฝ้าติดตาม'; +$labels['sendinvitations'] = 'ส่งบัตรเชิญ'; +$labels['sendnotifications'] = 'แจ้งเตือนผู้รับมอบเกี่ยวกับการแก้ไข'; +$labels['sendcancellation'] = 'แจ้งเตือนผู้รับมอบเกี่ยวกับการยกเลิกงาน'; +$labels['invitationsubject'] = 'ท่านได้รับมอบหมายให้เป็น "$title"'; +$labels['itipupdatesubject'] = '"$title" ได้รับการปรับปรุงสถานะ'; +$labels['itipupdatesubjectempty'] = 'งานที่ทำให้คุณกังวลได้รับการปรับปรุงสถานะ'; +$labels['itipcancelsubject'] = '"$title" ถูกยกเลิก'; +$labels['saveintasklist'] = 'บันทึกใน'; +$labels['itipobjectnotfound'] = 'งานที่ถูกอ้างถึงในข้อความนี้ไม่ถูกตรวจพบในรายการงานของคุณ'; +$labels['itipmailbodyaccepted'] = "\$sender ยอมรับการมอบหมายงานหัวข้อ\n\n*\$title*\n\nมีกำหนดเสร็จ \$date\n\nผู้รับผิด่ชอบงาน: \$attendees"; +$labels['itipmailbodycancel'] = "\$sender ปฎิเสธการมอบหมายงานของคุณสำหรับงานต่อไปนี้ :\n\n*\$title*\n\nกำหนดเสร็จ: \$date"; +$labels['itipmailbodyin-process'] = "\$sender เปลี่ยนสถานะของงานต่อไปนี้เป็น\"อยู่ระหว่าดำเนินการ\":\n\n*\$title*\n\nกำหนดเสร็จ: \$date"; +$labels['itipmailbodycompleted'] = "\$sender ได้ทำงานต่อไปนี้เสร็จเรียบร้อยแล้ว:\n\n*\$title*\n\nมีกำหนดเสร็จ: \$date"; +$labels['itipmailbodydelegated'] = "\$sender ได้มอบหมายงานต่อไปนี้:\n\n*\$title*\n\nกำหนดเสร็จ: \$date"; +$labels['itipmailbodydelegatedto'] = "\$sender ได้มอบหมายงานต่อไปนี้ให้คุณ:\n\n*\$title*\n\nมีกำหนดเสร็จ: \$date"; +$labels['attendeeaccepted'] = 'ผู้รับมอบตกลงรับงานแล้ว'; +$labels['attendeetentative'] = 'ผู้รับมอบมีแนวโน้มที่จะรับงาน'; +$labels['attendeedeclined'] = 'ผู้รับมอบปฎิเสธรับงาน'; +$labels['attendeedelegated'] = 'ผู้รับมอบได้มอบงานต่อให้ $delegatedto'; +$labels['attendeein-process'] = 'ผู้รรับมอบอยู่ระหว่างดำเนินการ'; +$labels['attendeecompleted'] = 'ผู้รับมอบได้ทำงานเสร็จเรียบร้อย'; +$labels['acceptinvitation'] = 'คุณจะรับมอบงานหรือไม่'; +$labels['itipdeclinetask'] = 'ปฎิเสธการมอบหมายงานนี้ให้คุณไปยังผู้จัด'; +$labels['declinedeleteconfirm'] = 'คุณต้องการลบงานที่ปฎิเสธออกจากรายการงานของคุณหรือไม่'; +$labels['itipcomment'] = 'ความคิดเห็น คำเชิญ/คำแจ้งเตือน'; +$labels['itipcommenttitle'] = 'ความคิดเห็นนี้จะถูกแนบไปกับข้อความ คำเชิญ/คำแจ้งเตือน ที่ส่งไปยังผู้รับมอบ'; +$labels['itipsendsuccess'] = 'คำแจ้งเตือนถูกส่งไปให้ผู้รับมอบแล้ว'; +$labels['errornotifying'] = 'การจัดส่งคำแจ้งเตือนไปยังผู้รับมอบงานเกิดข้อผิดพลาด'; +$labels['removefromcalendar'] = 'ลบออกจากงานของฉัน'; +$labels['delegateinvitation'] = 'มอบหมายงาน'; +$labels['andnmore'] = 'มีอีก $nr รายการ'; +$labels['delegatedto'] = 'มอบหมายให้'; +$labels['delegatedfrom'] = 'รับมอบจาก'; +$labels['savetotasklist'] = 'บันทึกเป็นงาน'; +$labels['comment'] = 'ความคิดเห็น'; +$labels['errorimportingtask'] = 'การนำเข้างานเกิดข้อผิดพลาด'; +$labels['importwarningexists'] = 'สำเนาของงานนี้มีอยู่ในรายการงานของคุณแล้ว'; +$labels['importsuccess'] = 'การนำเข้างานจำนวน $nr รายการเรียบร้อยแล้ว'; +$labels['newerversionexists'] = ' มีข้อมูลงานที่ทันสมัยกว่าอยู่แล้ว...ยกเลิก'; +$labels['nowritetasklistfound'] = 'ไม่พบรายการงานที่จะบันทึกงาน'; +$labels['importedsuccessfully'] = 'งานได้ถูกเพิ่มไปยัง \'$list\' เรียบร้อยแล้ว'; +$labels['updatedsuccessfully'] = 'งานได้ถูกปรับปรุงไปยัง \'$list\' เรียบร้อยแล้ว'; +$labels['attendeupdateesuccess'] = 'การปรับปรุงสถานะของผู้เข้าร่วมเรียบร้อยแล้ว'; +$labels['itipresponseerror'] = 'การส่งคำตอบสำหรับงานที่ได้รับมอบหมายนี้เกิดข้อผิดพลาด'; +$labels['itipinvalidrequest'] = 'คำเชิญนี้ถูกยกเลิก'; +$labels['sentresponseto'] = 'คำตอบเรื่องการรับมอบงานได้ถูกส่งไปยัง $mailto เรียบร้อยแล้ว'; +$labels['successremoval'] = 'งานถูกลบเรียบร้อยแล้ว'; +$labels['arialabelsortmenu'] = 'ทางเลือกการจัดเรียงงาน';
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/localization/zh_CN.inc
Changed
@@ -6,4 +6,25 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ */ +$labels['tags'] = '标签'; +$labels['removelist'] = '从列表中移除'; +$labels['edit'] = '编辑'; +$labels['title'] = '标题'; $labels['description'] = '描述'; +$labels['start'] = '开始'; +$labels['starttime'] = '开始时间'; +$labels['alarms'] = '提醒'; +$labels['repeat'] = '循环'; +$labels['links'] = '参考'; +$labels['status'] = '状态'; +$labels['status-cancelled'] = '已取消'; +$labels['created'] = '已创建'; +$labels['changed'] = '最后更改'; +$labels['save'] = '保存'; +$labels['cancel'] = '取消'; +$labels['tabsummary'] = '汇总'; +$labels['tabsharing'] = '分享'; +$labels['listname'] = '名称'; +$labels['savingdata'] = '保存数据...'; +$labels['confirmstate'] = '状态'; +$labels['comment'] = '注释';
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/skins/larry/print.css
Added
@@ -0,0 +1,94 @@ +/*** Printing styles for Tasklist plugin ***/ + +body { + margin: 0; + color: #000; + background: #fff; +} + +body, td, th, div, p, h3, select, input, textarea { + font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; + font-size: 8pt; +} + +#tasks { + position: relative; + top: 0; + left: 0; + height: auto; + margin: 5em auto 0 auto; + overflow: visible; +} + +#printconfig { + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 10000; + padding: 0.5em; + background: #ebebeb; + border-bottom: 1px solid #999; + box-shadow: 0 3px 4px #ccc; + -moz-box-shadow: 0 3px 4px #ccc; + -webkit-box-shadow: 0 3px 4px #ccc; +} + +#printconfig .prop { + padding-right: 2em; +} + +#message { + position: absolute; + top: 5.5em; + left: 1em; +} + +#message div.loading { + color: #666; + font-style: italic; +} + +#tasklist { + margin: 0; + padding: 0 10px; +} + +.pagewidth { + width: 700px; + margin: 0 auto; +} + +.rightalign { + float: right; + padding-top: 0.3em; +} + +@media print { + .noprint, + .fc-header-right span { + display: none; + } + + #tasks { + margin-top: 0; + } +} + +#tasklist .description { + display: block; + white-space: pre; +} + +#tasklist .title { + font-weight: bold; +} + +.taskhead { + border-radius: 0; + border: 0; + border-bottom: 1px solid #bbb; + box-shadow: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; +}
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/skins/larry/templates/mainview.html -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/skins/larry/templates/mainview.html
Changed
@@ -16,6 +16,7 @@ <h2 id="aria-label-toolbar" class="voice"><roundcube:label name="arialabeltoolbar" /></h2> <div id="taskstoolbar" class="toolbar" role="toolbar" aria-labelledby="aria-label-toolbar"> <roundcube:button command="newtask" type="link" class="button newtask disabled" classAct="button newtask" classSel="button newtask pressed" label="tasklist.newtask" title="tasklist.newtask" /> + <roundcube:button command="print" type="link" class="button print disabled" classAct="button print" classSel="button print pressed" label="print" title="tasklist.printtitle" /> <roundcube:container name="toolbar" id="taskstoolbar" /> </div>
View file
roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/skins/larry/templates/print.html
Added
@@ -0,0 +1,23 @@ +<roundcube:object name="doctype" value="html5" /> +<html> +<head> +<title><roundcube:object name="pagetitle" /></title> +</head> +<body class="taskprint"> + +<div id="printconfig" class="noprint"> + <div class="pagewidth"> + <a href="#close" onclick="window.close()" class="rightalign"><roundcube:label name="close" /></a> + <span class="prop"><input type="button" id="printme" value="<roundcube:label name='print' />" onclick="window.print()"></span> + <span class="prop"><label><input type="checkbox" id="propdescription" checked="checked" onclick="$('#tasklist .description')[this.checked ? 'show' : 'hide']()" /> <roundcube:label name="tasklist.printdescriptions" /></label></span> + </div> +</div> + +<roundcube:object name="message" id="message" class="noprint" /> + +<div id="tasks" class="pagewidth"> + <roundcube:object name="plugin.tasklist_print" id="tasklist" /> +</div> + +</body> +</html>
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/tasklist.js -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/tasklist.js
Changed
@@ -112,6 +112,7 @@ /* public methods */ this.init = init; this.edit_task = task_edit_dialog; + this.print_tasks = print_tasks; this.delete_task = delete_task; this.add_childtask = add_childtask; this.quicksearch = quicksearch; @@ -136,6 +137,11 @@ */ function init() { + if (rcmail.env.action == 'print' && rcmail.task == 'tasks') { + data_ready({data: rcmail.env.tasks}); + return; + } + // initialize task list selectors for (var id in me.tasklists) { if (settings.selected_list && me.tasklists[settings.selected_list] && !me.tasklists[settings.selected_list].active) { @@ -846,6 +852,11 @@ id = listindex[i]; rec = listdata[id]; if (match_filter(rec, cache)) { + if (rcmail.env.action == 'print') { + render_task_printmode(rec); + continue; + } + render_task(rec); count++; @@ -859,6 +870,9 @@ } } + if (rcmail.env.action == 'print') + return; + fix_tree_toggles(); update_tagcloud(activetags); @@ -1315,6 +1329,37 @@ } /** + * Render the given task into the tasks list (in print mode) + */ + function render_task_printmode(rec) + { + var label_id = rcmail.html_identifier(rec.id) + '-title', + div = $('<div>').addClass('taskhead') + .append($('<span class="title">').attr('id', label_id).text(rec.title)), + parent = rec.parent_id ? $('li[rel="'+rec.parent_id+'"] > ul.childtasks', rcmail.gui_objects.resultlist) : null, + li = $('<li role="treeitem">').attr('rel', rec.id).addClass('taskitem') + .append(div) + .append('<ul class="childtasks" role="group"></ul>'); + + if (rec.description) + div.append($('<span class="description">').text(rec.description)); +/* + if (is_complete(rec)) + div.addClass('complete'); + if (rec.flagged) + div.addClass('flagged'); + if (!rec.date) + div.addClass('nodate'); + if (rec.mask & FILTER_MASK_OVERDUE) + div.addClass('overdue'); +*/ + if (!parent || !parent.length) + li.appendTo(rcmail.gui_objects.resultlist); + else + li.appendTo(parent); + } + + /** * Move the given task item to the right place in the list */ function resort_task(rec, li, animated) @@ -2835,6 +2880,18 @@ } + // method to show the print dialog. + function print_tasks() + { + var param = {}, active = active_lists(); + + if (active.length) { + param = {filter: filtermask, lists: active.join(','), q: search_query}; + rcmail.open_window(rcmail.url('print', param), true, true); + } + }; + + /**** Utility functions ****/ // same as str.split(delimiter) but it ignores delimiters within quoted strings @@ -3010,7 +3067,7 @@ // register button commands rcmail.register_command('newtask', function(){ rctasks.edit_task(null, 'new', {}); }, true); - //rcmail.register_command('print', function(){ rctasks.print_list(); }, true); + rcmail.register_command('print', function(){ rctasks.print_tasks(); }, true); rcmail.register_command('list-create', function(){ rctasks.list_edit_dialog(null); }, true); rcmail.register_command('list-edit', function(){ rctasks.list_edit_dialog(rctasks.selected_list); }, false);
View file
roundcubemail-plugins-kolab-3.2.5.tar.gz/plugins/tasklist/tasklist.php -> roundcubemail-plugins-kolab-3.2.6.tar.gz/plugins/tasklist/tasklist.php
Changed
@@ -112,6 +112,7 @@ $this->register_action('tasklist', array($this, 'tasklist_action')); $this->register_action('counts', array($this, 'fetch_counts')); $this->register_action('fetch', array($this, 'fetch_tasks')); + $this->register_action('print', array($this, 'print_tasks')); $this->register_action('inlineui', array($this, 'get_inline_ui')); $this->register_action('mail2task', array($this, 'mail_message2task')); $this->register_action('get-attachment', array($this, 'attachment_get')); @@ -614,6 +615,12 @@ if (isset($rec['attendees']) && !is_array($rec['attendees'])) $rec['attendees'] = array(); + foreach ((array)$rec['attendees'] as $i => $attendee) { + if (is_string($attendee['rsvp'])) { + $rec['attendees'][$i]['rsvp'] = $attendee['rsvp'] == 'true' || $attendee['rsvp'] == '1'; + } + } + // copy the task status to my attendee partstat if (!empty($rec['_reportpartstat'])) { if (($idx = $this->is_attendee($rec)) !== false) { @@ -1010,6 +1017,44 @@ } /** + * Handler for printing calendars + */ + public function print_tasks() + { + // Add CSS stylesheets to the page header + $skin_path = $this->local_skin_path(); + + $this->include_stylesheet($skin_path . '/print.css'); + $this->include_script('tasklist.js'); + + $this->rc->output->add_handlers(array( + 'plugin.tasklist_print' => array($this, 'print_tasks_list'), + )); + + $this->rc->output->set_pagetitle($this->gettext('print')); + $this->rc->output->send('tasklist.print'); + } + + /** + * Handler for printing calendars + */ + public function print_tasks_list($attrib) + { + $f = intval(rcube_utils::get_input_value('filter', rcube_utils::INPUT_GPC)); + $search = rcube_utils::get_input_value('q', rcube_utils::INPUT_GPC); + $lists = rcube_utils::get_input_value('lists', rcube_utils::INPUT_GPC); + $filter = array('mask' => $f, 'search' => $search); + + $data = $this->tasks_data($this->driver->list_tasks($filter, $lists), $f); + + // we'll build the tasks table in javascript on page load + // where we have sorting methods, etc. + $this->rc->output->set_env('tasks', $data); + + return $this->ui->tasks_resultview($attrib); + } + + /** * Prepare and sort the given task records to be sent to the client */ private function tasks_data($records, $f)
View file
roundcubemail-plugins-kolab.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail-plugins-kolab Binary: roundcubemail-plugins-kolab Architecture: all -Version: 1:3.2.5-0~kolab2 +Version: 1:3.2.6-0~kolab1 Maintainer: Christoph Wickert <wickert@kolabsys.com> Uploaders: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>, Paul Klos <kolab@klos2day.nl> Standards-Version: 3.9.3 @@ -10,5 +10,5 @@ Package-List: roundcubemail-plugins-kolab deb web extra Files: - 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.2.5.tar.gz + 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.2.6.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.