You're not reviewing the full diff of
request 2176
, but the diff to the superseded
request 2162
(Show full diff)
Overview
Request 2176 (accepted)
Repack of 3.3.5
- Created by vanmeeuwen about 7 years ago
- In state accepted
- Supersedes 2162
-
Open review for
Admin
Submit package Kolab:Winterfell / roundcubema...gins-kolab to package Kolab:16 / roundcubemail-plugins-kolab
roundcubemail-plugins-kolab.spec
Changed
x
1
2
%global tmpdir %{_var}/lib/roundcubemail
3
4
Name: roundcubemail-plugins-kolab
5
-Version: 3.3.5
6
+Version: 3.3.4
7
Release: 1%{?dist}
8
Summary: Kolab Groupware plugins for Roundcube Webmail
9
10
11
Source102: plesk.kolab_folders.inc.php
12
Source103: plesk.libkolab.inc.php
13
14
+Patch0001: 0001-Fix-regression-when-startup-method-of-some-by-role-p.patch
15
+Patch0002: 0002-Workaround-libkolabxml-error-on-Etc-UTC-timezone-Bif.patch
16
+
17
Patch1001: roundcubemail-plugins-kolab-3.3-kolab-files-manticore-api.patch
18
19
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
20
21
cp -af %{SOURCE103} plugins/libkolab/config.inc.php.dist
22
%endif
23
24
+%patch0001 -p1
25
+%patch0002 -p1
26
+
27
%patch1001 -p1
28
29
find -type d -name "helpdocs" -exec rm -rvf {} \; 2>/dev/null || :
30
31
%defattr(-,root,root,-)
32
33
%changelog
34
-* Tue Nov 28 2017 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.3.5-1
35
-- Release of version 3.3.5
36
-
37
* Fri Oct 6 2017 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.3.4-2
38
- Fix Etc/UTC timezone
39
40
0001-Fix-regression-when-startup-method-of-some-by-role-p.patch
Added
30
1
2
+From 1abc73cf345ea5167a63b4e246f0c5bdd84eaf94 Mon Sep 17 00:00:00 2001
3
+From: Aleksander Machniak <machniak@kolabsys.com>
4
+Date: Tue, 3 Oct 2017 10:13:10 +0200
5
+Subject: [PATCH] Fix regression when startup() method of some "by role
6
+ plugins" could be called when not expected, causing PHP errors
7
+
8
+---
9
+ plugins/kolab_auth/kolab_auth.php | 4 ++--
10
+ 1 file changed, 2 insertions(+), 2 deletions(-)
11
+
12
+diff --git a/plugins/kolab_auth/kolab_auth.php b/plugins/kolab_auth/kolab_auth.php
13
+index 654ccc88..a2db8fe8 100644
14
+--- a/plugins/kolab_auth/kolab_auth.php
15
++++ b/plugins/kolab_auth/kolab_auth.php
16
+@@ -331,8 +331,8 @@ class kolab_auth extends rcube_plugin
17
+ // Some plugins e.g. kolab_2fa use 'startup' hook to
18
+ // register other hooks, but when called on 'authenticate' hook
19
+ // we're already after 'startup', so we'll call it directly
20
+- if ($loaded && $startup && ($plugin = $this->api->get_plugin($plugin))
21
+- && method_exists($plugin, 'startup')
22
++ if ($loaded && $startup && $plugin == 'kolab_2fa'
23
++ && ($plugin = $this->api->get_plugin($plugin))
24
+ ) {
25
+ $plugin->startup(array('task' => $rcmail->task, 'action' => $rcmail->action));
26
+ }
27
+--
28
+2.14.1
29
+
30
0002-Workaround-libkolabxml-error-on-Etc-UTC-timezone-Bif.patch
Added
28
1
2
+From 02d375972470e30b487532a0ba663a7851af7290 Mon Sep 17 00:00:00 2001
3
+From: Aleksander Machniak <machniak@kolabsys.com>
4
+Date: Fri, 6 Oct 2017 08:32:58 +0200
5
+Subject: [PATCH 2/2] Workaround libkolabxml error on Etc/UTC timezone
6
+ (Bifrost#T43830)
7
+
8
+---
9
+ plugins/libkolab/lib/kolab_format.php | 2 +-
10
+ 1 file changed, 1 insertion(+), 1 deletion(-)
11
+
12
+diff --git a/plugins/libkolab/lib/kolab_format.php b/plugins/libkolab/lib/kolab_format.php
13
+index 814800d2..4f55a502 100644
14
+--- a/plugins/libkolab/lib/kolab_format.php
15
++++ b/plugins/libkolab/lib/kolab_format.php
16
+@@ -235,7 +235,7 @@ abstract class kolab_format
17
+ $result->setTime($datetime->format('G'), $datetime->format('i'), $datetime->format('s'));
18
+
19
+ // libkolabxml throws errors on some deprecated timezone names
20
+- $utc_aliases = array('UTC', 'GMT', '+00:00', 'Z', 'Etc/GMT');
21
++ $utc_aliases = array('UTC', 'GMT', '+00:00', 'Z', 'Etc/GMT', 'Etc/UTC');
22
+
23
+ if ($tz && in_array($tz->getName(), $utc_aliases)) {
24
+ $result->setUTC(true);
25
+--
26
+2.14.1
27
+
28
debian.changelog
Changed
11
1
2
-roundcubemail-plugins-kolab (1:3.3.5-0~kolab1) unstable; urgency=low
3
-
4
- * Release 3.3.5
5
-
6
- -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Tue, 28 Nov 2017 11:11:11 +0200
7
-
8
roundcubemail-plugins-kolab (1:3.3.4-0~kolab3) unstable; urgency=low
9
10
* Fix Etc/UTC timezone
11
debian.series
Changed
5
1
2
roundcubemail-plugins-kolab-3.3-kolab-files-manticore-api.patch -p1
3
+0001-Fix-regression-when-startup-method-of-some-by-role-p.patch -p1
4
+0002-Workaround-libkolabxml-error-on-Etc-UTC-timezone-Bif.patch -p1
5
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/composer.json
Changed
10
1
2
"description": "Calendar plugin",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.4",
7
"authors": [
8
{
9
"name": "Thomas Bruederli",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/config.inc.php.dist -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/config.inc.php.dist
Changed
12
1
2
$config['calendar_include_freebusy_data'] = 1;
3
4
// SMTP server host used to send (anonymous) itip messages.
5
+// Set to '' in order to use PHP's mail() function for email delivery.
6
// To override the SMTP port or connection method, provide a full URL like 'tls://somehost:587'
7
-// This will add a link to invitation messages to allow users from outside
8
-// to reply when their mail clients do not support iTip format.
9
$config['calendar_itip_smtp_server'] = null;
10
11
// SMTP username used to send (anonymous) itip messages
12
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/importexport.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/invitations.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/manage.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/settings.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/sharing.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-12-13 09:46+0000\n"
7
"Last-Translator: Max Hellwig <max.hellwig@translating-energy.de>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/importexport.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:33+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:33+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/invitations.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:33+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/manage.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:33+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/settings.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/en_US/LC_MESSAGES/sharing.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_AR/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_AR/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2016-06-30 12:22+0000\n"
7
"Last-Translator: alfvicente <alfvicente@yahoo.com.ar>\n"
8
"Language-Team: Spanish (Argentina) (http://www.transifex.com/kolab/kolab-documentation/language/es_AR/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:08+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 12:39+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:14+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/manage.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:15+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:16+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/settings.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:17+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:18+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/fr_FR/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/fr_FR/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:47+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: French (http://www.transifex.com/kolab/kolab-documentation/language/fr/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/fr_FR/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/fr_FR/LC_MESSAGES/settings.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-28 00:17+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: French (http://www.transifex.com/kolab/kolab-documentation/language/fr/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/importexport.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/importexport.rst:9
9
msgid "Import/Export"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/index.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/index.rst:9
9
msgid "Calendar"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/invitations.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/invitations.rst:8
9
msgid "Handle Event Invitations"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/manage.rst:7
9
msgid "Manage Your Schedule"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/overview.rst:6
9
msgid "Overview"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/settings.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/settings.rst:8
9
msgid "Calendar Preferences"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/sharing.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/calendar/sharing.rst:11
9
msgid "Sharing Calendars"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/ru_RU/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/ru_RU/LC_MESSAGES/importexport.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2015-04-05 16:01+0000\n"
7
"Last-Translator: Katherine Sidorova <ya-na-provode@yandex.ru>\n"
8
"Language-Team: Russian (Russia) (http://www.transifex.com/kolab/kolab-documentation/language/ru_RU/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/ru_RU/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/ru_RU/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2015-04-05 15:14+0000\n"
7
"Last-Translator: Katherine Sidorova <ya-na-provode@yandex.ru>\n"
8
"Language-Team: Russian (Russia) (http://www.transifex.com/kolab/kolab-documentation/language/ru_RU/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/helpdocs/locale/ru_RU/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/helpdocs/locale/ru_RU/LC_MESSAGES/invitations.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2015-04-10 13:14+0000\n"
7
"Last-Translator: Katherine Sidorova <ya-na-provode@yandex.ru>\n"
8
"Language-Team: Russian (Russia) (http://www.transifex.com/kolab/kolab-documentation/language/ru_RU/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/bg_BG.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/bg_BG.inc
Changed
18
1
2
$labels['status'] = 'Статус';
3
$labels['status-confirmed'] = 'Потвърдено';
4
$labels['status-cancelled'] = 'Отхвърлено';
5
-$labels['status-tentative'] = 'Предварително';
6
$labels['priority'] = 'Приоритет';
7
$labels['sensitivity'] = 'Поверителност';
8
$labels['public'] = 'публично';
9
10
$labels['availunknown'] = 'Няма информация';
11
$labels['availtentative'] = 'Предварително';
12
$labels['availoutofoffice'] = 'Извън офиса';
13
+$labels['delegatedto'] = 'Делегирано към:';
14
+$labels['delegatedfrom'] = 'Делегирано от:';
15
$labels['sendinvitations'] = 'Изпращане на покани';
16
$labels['sendnotifications'] = 'Известяване на участниците относно промените';
17
$labels['sendcancellation'] = 'Известяване на участниците относно отмяна на събития';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/ca_ES.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/ca_ES.inc
Changed
26
1
2
$labels['status'] = 'Estat';
3
$labels['status-confirmed'] = 'Confirmat';
4
$labels['status-cancelled'] = 'Cancel·lat';
5
-$labels['status-tentative'] = 'Provisional';
6
$labels['priority'] = 'Prioritat';
7
$labels['sensitivity'] = 'Privadesa';
8
$labels['public'] = 'públic';
9
10
$labels['availunknown'] = 'Desconegut';
11
$labels['availtentative'] = 'Provisional';
12
$labels['availoutofoffice'] = 'Fora de l\'oficina';
13
+$labels['delegatedto'] = 'Delegat a:';
14
+$labels['delegatedfrom'] = 'Delegat de:';
15
$labels['scheduletime'] = 'Cerca disponibilitat';
16
$labels['sendinvitations'] = 'Envia invitacions';
17
$labels['sendnotifications'] = 'Notifica als participants quan hi hagi modificacions';
18
19
$labels['suggestedslot'] = 'Lloc suggerit';
20
$labels['noslotfound'] = 'No s\'ha pogut trobar un espai de temps lliure';
21
$labels['invitationsubject'] = 'Heu estat convidats a "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nQuan: \$date\n\nConvidats: \$attendees\n\nSi us plau cerqueu el fitxer iCalendar adjunt dins dels detalls de l'esdeveniment per poder-lo importar a la vostra aplicació de calendari.";
23
$labels['invitationattendlinks'] = "En cas que el vostre client de correu electrònic no suporti peticions de tipus iTip, podeu fer servir el següent enllaç per acceptar o declinar aquesta invitació:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" ha estat actualitzat';
25
$labels['eventupdatesubjectempty'] = 'Un esdeveniment que us afecta ha estat actualitzat';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/cs_CZ.inc
Changed
26
1
2
$labels['status'] = 'Stav';
3
$labels['status-confirmed'] = 'Potvrzeno';
4
$labels['status-cancelled'] = 'Zrušeno';
5
-$labels['status-tentative'] = 'Nezávazně';
6
$labels['priority'] = 'Přednost';
7
$labels['sensitivity'] = 'Soukromí';
8
$labels['public'] = 'veřejné';
9
10
$labels['availunknown'] = 'Neznámý';
11
$labels['availtentative'] = 'Nezávazně';
12
$labels['availoutofoffice'] = 'Mimo kancelář';
13
+$labels['delegatedto'] = 'Pověřený:';
14
+$labels['delegatedfrom'] = 'Pověřující:';
15
$labels['scheduletime'] = 'Najít dostupnost';
16
$labels['sendinvitations'] = 'Poslat pozvánky';
17
$labels['sendnotifications'] = 'Uvědomit účastníky o změnách';
18
19
$labels['suggestedslot'] = 'Navržené místo v rozvrhu';
20
$labels['noslotfound'] = 'Nelze najít volné místo v rozvrhu';
21
$labels['invitationsubject'] = 'Byl(a) jste pozván(a) na událost "$title"';
22
+$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.";
23
$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";
24
$labels['eventupdatesubject'] = 'Událost "$title" byla aktualizována';
25
$labels['eventupdatesubjectempty'] = 'Událost, která se vás týká, byla aktualizována';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/da_DK.inc
Changed
26
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Bekræftet';
4
$labels['status-cancelled'] = 'Annulleret';
5
-$labels['status-tentative'] = 'Forsøgsvis';
6
$labels['priority'] = 'Prioritet';
7
$labels['sensitivity'] = 'Privatliv';
8
$labels['public'] = 'offentlig';
9
10
$labels['availunknown'] = 'Ukendt';
11
$labels['availtentative'] = 'Forsøgsvis';
12
$labels['availoutofoffice'] = 'Ikke på kontoret';
13
+$labels['delegatedto'] = 'Delegere til:';
14
+$labels['delegatedfrom'] = 'Delegere fra:';
15
$labels['scheduletime'] = 'Find ledigt tidspunkt';
16
$labels['sendinvitations'] = 'Send invitationer';
17
$labels['sendnotifications'] = 'Gør deltagere opmærksom på ændringer';
18
19
$labels['suggestedslot'] = 'Foreslået blok';
20
$labels['noslotfound'] = 'Kunne ikke finde en ledig tidsblok';
21
$labels['invitationsubject'] = 'Du er blevet inviteret til "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nTidspunkt: \$date\n\nInviterede: \$attendees\n\nBemærk venligst vedhæftede iCalendar-fil med alle detaljer om arrangementet, som du kan importere til dit kalenderprogram.";
23
$labels['invitationattendlinks'] = "Hvis dit e-postprogram ikke understøtter iTip-forespørgsler, så kan du benytte følgende henvisning til enten at acceptere eller afvise denne invitation:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" er blevet opdateret';
25
$labels['eventupdatesubjectempty'] = 'Et arrangement der vedrører dig er blevet opdateret';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/de_CH.inc
Changed
27
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Bestätigt';
4
$labels['status-cancelled'] = 'Gekündigt';
5
-$labels['status-tentative'] = 'Mit Vorbehalt';
6
$labels['priority'] = 'Priorität';
7
$labels['sensitivity'] = 'Sichtbarkeit';
8
$labels['public'] = 'öffentlich';
9
10
$labels['availunknown'] = 'Unbekannt';
11
$labels['availtentative'] = 'Mit Vorbehalt';
12
$labels['availoutofoffice'] = 'Abwesend';
13
+$labels['delegatedto'] = 'Delegiert an:';
14
+$labels['delegatedfrom'] = 'Delegiert von:';
15
$labels['scheduletime'] = 'Verfügbarkeit anzeigen';
16
$labels['sendinvitations'] = 'Einladungen versenden';
17
$labels['sendnotifications'] = 'Teilnehmer über die Änderungen informieren';
18
19
$labels['suggestedslot'] = 'Empfohlener Terminplatz';
20
$labels['noslotfound'] = 'Es konnten keine freien Zeiten gefunden werden';
21
$labels['invitationsubject'] = 'Sie wurden zu "$title" eingeladen';
22
-$labels['invitationmailbody'] = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\n\$description\n\nIm Anhang finden Sie eine iCalendar-Datei mit allen Details des Termins. Diese können Sie in Ihre Kalenderanwendung importieren.";
23
+$labels['invitationmailbody'] = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\nIm Anhang finden Sie eine iCalendar-Datei mit allen Details des Termins. Diese können Sie in Ihre Kalenderanwendung importieren.";
24
$labels['invitationattendlinks'] = "Falls Ihr E-Mail-Programm keine iTip-Anfragen unterstützt, können Sie den folgenden Link verwenden, um den Termin zu bestätigen oder abzulehnen:\n\$url";
25
$labels['eventupdatesubject'] = '"$title" wurde aktualisiert';
26
$labels['eventupdatesubjectempty'] = 'Termin wurde aktualisiert';
27
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/de_DE.inc
Changed
27
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Bestätigt';
4
$labels['status-cancelled'] = 'Abgesagt';
5
-$labels['status-tentative'] = 'Mit Vorbehalt';
6
$labels['priority'] = 'Priorität';
7
$labels['sensitivity'] = 'Sichtbarkeit';
8
$labels['public'] = 'öffentlich';
9
10
$labels['availunknown'] = 'Unbekannt';
11
$labels['availtentative'] = 'Mit Vorbehalt';
12
$labels['availoutofoffice'] = 'Abwesend';
13
+$labels['delegatedto'] = 'Delegiert an:';
14
+$labels['delegatedfrom'] = 'Delegiert von:';
15
$labels['scheduletime'] = 'Verfügbarkeit anzeigen';
16
$labels['sendinvitations'] = 'Einladungen versenden';
17
$labels['sendnotifications'] = 'Teilnehmer über die Änderungen informieren';
18
19
$labels['suggestedslot'] = 'Empfohlener Slot';
20
$labels['noslotfound'] = 'Es konnten keine freien Zeiten gefunden werden';
21
$labels['invitationsubject'] = 'Sie wurden zu »$title« eingeladen';
22
-$labels['invitationmailbody'] = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\n\$description\n\nIm Anhang finden Sie eine iCalendar-Datei mit allen Details des Termins. Diese können Sie in Ihre Kalenderanwendung importieren.";
23
+$labels['invitationmailbody'] = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\nIm Anhang finden Sie eine iCalendar-Datei mit allen Details des Termins. Diese können Sie in Ihre Kalenderanwendung importieren.";
24
$labels['invitationattendlinks'] = "Falls Ihr E-Mail-Programm keine iTip-Anfragen unterstützt, können Sie den folgenden Link verwenden, um den Termin zu bestätigen oder abzulehnen:\n\$url";
25
$labels['eventupdatesubject'] = '»$title« wurde aktualisiert';
26
$labels['eventupdatesubjectempty'] = 'Termin wurde aktualisiert';
27
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/en_US.inc
Changed
10
1
2
$labels['suggestedslot'] = 'Suggested Slot';
3
$labels['noslotfound'] = 'Unable to find a free time slot';
4
$labels['invitationsubject'] = 'You\'ve been invited to "$title"';
5
-$labels['invitationmailbody'] = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\n\$description\n\nPlease find attached an iCalendar file with all the event details which you can import to your calendar application.";
6
+$labels['invitationmailbody'] = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nPlease find attached an iCalendar file with all the event details which you can import to your calendar application.";
7
$labels['invitationattendlinks'] = "In case your email client doesn't support iTip requests you can use the following link to either accept or decline this invitation:\n\$url";
8
$labels['eventupdatesubject'] = '"$title" has been updated';
9
$labels['eventupdatesubjectempty'] = 'An event that concerns you has been updated';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/es_AR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/es_AR.inc
Changed
26
1
2
$labels['status'] = 'Estado';
3
$labels['status-confirmed'] = 'Confirmado';
4
$labels['status-cancelled'] = 'Cancelado';
5
-$labels['status-tentative'] = 'Tentativo';
6
$labels['priority'] = 'Prioridad';
7
$labels['sensitivity'] = 'Privacidad';
8
$labels['public'] = 'público';
9
10
$labels['availunknown'] = 'Desconocido';
11
$labels['availtentative'] = 'Tentativo';
12
$labels['availoutofoffice'] = 'Fuera de la oficina';
13
+$labels['delegatedto'] = 'Delegado a:';
14
+$labels['delegatedfrom'] = 'Delegado de:';
15
$labels['scheduletime'] = 'Buscar disponibilidad';
16
$labels['sendinvitations'] = 'Enviar invitaciones';
17
$labels['sendnotifications'] = 'Notificar a los participantes sobre las modificaciones';
18
19
$labels['suggestedslot'] = 'Espacio sugerido';
20
$labels['noslotfound'] = 'Imposible encontrar un espacio libre';
21
$labels['invitationsubject'] = 'Ha sido invitado a "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nCuándo: \$date\n\nInvitados: \$attendees\n\nEncontrará adjunto un archivo iCalendar con todos los detalles del evento, el cual puede importar a su aplicación de calendario.";
23
$labels['invitationattendlinks'] = "En caso que su cliente de correo electrónico no soporte peticiones iTip puede usar el siguiente link para aceptar o declinar esta invitación:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" ha sido actualizado';
25
$labels['eventupdatesubjectempty'] = 'Un evento que le interesa ha sido actualizado';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/es_ES.inc
Changed
26
1
2
$labels['status'] = 'Estado';
3
$labels['status-confirmed'] = 'Confirmado';
4
$labels['status-cancelled'] = 'Cancelado';
5
-$labels['status-tentative'] = 'Provisional';
6
$labels['priority'] = 'Prioridad';
7
$labels['sensitivity'] = 'Privacidad';
8
$labels['public'] = 'Pública';
9
10
$labels['availunknown'] = 'Desconocido';
11
$labels['availtentative'] = 'Provisional';
12
$labels['availoutofoffice'] = 'Fuera de la oficina';
13
+$labels['delegatedto'] = 'Delegar a: ';
14
+$labels['delegatedfrom'] = 'Delegado de:';
15
$labels['scheduletime'] = 'Buscar disponibilidad';
16
$labels['sendinvitations'] = 'Enviar invitaciones';
17
$labels['sendnotifications'] = 'Notificar a los participantes acerca de las modificaciones';
18
19
$labels['suggestedslot'] = 'Ranura sugerida';
20
$labels['noslotfound'] = 'Incapaz de encontrar un intervalo de tiempo libre';
21
$labels['invitationsubject'] = 'Usted sido invitado a "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nSe adjunta un archivo iCalendar con todos los detalles del evento que se puede importar a la aplicación de calendario.";
23
$labels['invitationattendlinks'] = "En caso de que su cliente de correo electrónico no admite solicitudes iTIP que puede utilizar el siguiente enlace para aceptar o rechazar esta invitación:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" Ha sido actualizado';
25
$labels['eventupdatesubjectempty'] = 'Un evento que le concierne ha sido actualizado';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/fi_FI.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/fi_FI.inc
Changed
26
1
2
$labels['status'] = 'Tila';
3
$labels['status-confirmed'] = 'Vahvistettu';
4
$labels['status-cancelled'] = 'Peruttu';
5
-$labels['status-tentative'] = 'Alustava';
6
$labels['priority'] = 'Tärkeys';
7
$labels['sensitivity'] = 'Yksityisyys';
8
$labels['public'] = 'julkinen';
9
10
$labels['availunknown'] = 'Tuntematon';
11
$labels['availtentative'] = 'Alustava';
12
$labels['availoutofoffice'] = 'Ei toimistolla';
13
+$labels['delegatedto'] = 'Delegoitu henkilölle:';
14
+$labels['delegatedfrom'] = 'Delegoitus henkilöltä:';
15
$labels['scheduletime'] = 'Etsi saatavuus';
16
$labels['sendinvitations'] = 'Lähetä kutsut';
17
$labels['sendnotifications'] = 'Ilmoita osallistujille muutoksista';
18
19
$labels['suggestedslot'] = 'Ehdotettu ajankohta';
20
$labels['noslotfound'] = 'Vapaata ajankohtaa ei löytynyt';
21
$labels['invitationsubject'] = 'Sinut on kutsuttu tapahtumaan "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nMilloin: \$date\n\nKutsutut: \$attendees\n\nOhessa iCalendar -tiedosto mistä löytyvät kaikki tapahtuman yksityistiedot. Voit tuoda tämän tiedoston kalenteriohjelmaasi.";
23
$labels['invitationattendlinks'] = "Mikäli sähköpostiohjelmasi ei tue iTip pyyntöjä, voit aina käyttää ao. osoitetta kutsun hyväksymiseen / hylkäämiseen:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" on päivitetty';
25
$labels['eventupdatesubjectempty'] = 'Sinua koskeva tapahtuma on päivitetty';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/fr_FR.inc
Changed
26
1
2
$labels['status'] = 'Statut';
3
$labels['status-confirmed'] = 'Confirmé';
4
$labels['status-cancelled'] = 'Annulé';
5
-$labels['status-tentative'] = 'Provisoire';
6
$labels['priority'] = 'Priorité';
7
$labels['sensitivity'] = 'Diffusion';
8
$labels['public'] = 'publique';
9
10
$labels['availunknown'] = 'Inconnu';
11
$labels['availtentative'] = 'Provisoire';
12
$labels['availoutofoffice'] = 'Absent';
13
+$labels['delegatedto'] = 'Délégué à :';
14
+$labels['delegatedfrom'] = 'Délégué de :';
15
$labels['scheduletime'] = 'Trouver les disponibilités';
16
$labels['sendinvitations'] = 'Envoyer les invitations';
17
$labels['sendnotifications'] = 'Informer les participants des modifications';
18
19
$labels['suggestedslot'] = 'Emplacement suggéré';
20
$labels['noslotfound'] = 'Impossible de trouver un créneau disponible';
21
$labels['invitationsubject'] = 'Vous avez été invité à "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nVous trouverez ci-joint un fichier iCalendar avec tous les détails de l'événement que vous pourrez importer dans votre calendrier électronique.";
23
$labels['invitationattendlinks'] = "Dans le cas où votre application de messagerie ne gère pas les demandes \"iTip\", vous pouvez utiliser ce lien pour accepter ou refuser l'invitation : \n\$url";
24
$labels['eventupdatesubject'] = '"$title" a été modifié';
25
$labels['eventupdatesubjectempty'] = 'Un événement vous concernant a été modifié';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/hr_HR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/hr_HR.inc
Changed
7
1
2
$labels['calendars'] = 'Kalendari';
3
$labels['category'] = 'Kategorija';
4
$labels['categories'] = 'Kategorije';
5
-$labels['status-tentative'] = 'Tentative';
6
?>
7
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/hu_HU.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/hu_HU.inc
Changed
26
1
2
$labels['status'] = 'Stát.';
3
$labels['status-confirmed'] = 'Confirmed';
4
$labels['status-cancelled'] = 'Cancelled';
5
-$labels['status-tentative'] = 'Feltételes';
6
$labels['priority'] = 'Prioritás';
7
$labels['sensitivity'] = 'Manánszféra';
8
$labels['public'] = 'publikus';
9
10
$labels['availunknown'] = 'Ismeretlen foglaltság';
11
$labels['availtentative'] = 'Feltételes';
12
$labels['availoutofoffice'] = 'Házon kívül';
13
+$labels['delegatedto'] = 'Beosztva ide: ';
14
+$labels['delegatedfrom'] = 'Beosztva innen: ';
15
$labels['scheduletime'] = 'Elérhetőség';
16
$labels['sendinvitations'] = 'Meghívók küldése';
17
$labels['sendnotifications'] = 'Résztvevők értesítése a változásokról';
18
19
$labels['nextslot'] = 'Következő idősáv';
20
$labels['noslotfound'] = 'Nem sikerült szabad idősávot találni';
21
$labels['invitationsubject'] = '$title';
22
+$labels['invitationmailbody'] = "Meghívó érkezett '\$title' eseményre.\n\nIdőpont: \$date\nSzervező: \$organizer\nRésztvevők: \$attendees\n\n\nMellékletben egy iCalendar naptárbejegyzés, mely tetszőleges naptárprogramba importálható.";
23
$labels['invitationattendlinks'] = "Amennyiben a levelezőben nem lát elfogadó/elutasító gombokat (a levelező program nem támogatja az iTip üzeneteket), kattintson ide a meghívó elfogadására, vagy elutasítására:\n\$url";
24
$labels['eventupdatesubject'] = '$title - módosítva';
25
$labels['eventupdatesubjectempty'] = 'Egy Önt érintő esemény módosítva lett';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/it_IT.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/it_IT.inc
Changed
26
1
2
$labels['status'] = 'Stato';
3
$labels['status-confirmed'] = 'Confermato';
4
$labels['status-cancelled'] = 'Cancellato';
5
-$labels['status-tentative'] = 'Provvisorio';
6
$labels['priority'] = 'Priorità';
7
$labels['sensitivity'] = 'Privacy';
8
$labels['public'] = 'pubblico';
9
10
$labels['availunknown'] = 'Sconosciuto';
11
$labels['availtentative'] = 'Provvisorio';
12
$labels['availoutofoffice'] = 'Fuori sede';
13
+$labels['delegatedto'] = 'Delegato a:';
14
+$labels['delegatedfrom'] = 'Delegato da:';
15
$labels['scheduletime'] = 'Trova disponibilità';
16
$labels['sendinvitations'] = 'Manda inviti';
17
$labels['sendnotifications'] = 'Notifica le modifiche ai partecipanti';
18
19
$labels['suggestedslot'] = 'Spazio suggerito';
20
$labels['noslotfound'] = 'Impossibile trovare uno spazio di tempo libero';
21
$labels['invitationsubject'] = 'Sei stato invitato a "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nQuando: \$date\n\nInvitati: \$attendees\n\nIn allegato un file iCalendar con tutti i dettagli dell'evento, che puoi importare nella tua applicazione calendario.";
23
$labels['invitationattendlinks'] = "Se il tuo client di posta elettronica non supporta le richieste iTip, puoi seguire il seguente collegamento per accettare o rifiutare l'invito:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" è stato aggiornato';
25
$labels['eventupdatesubjectempty'] = 'Un evento che ti riguarda è stato aggiornato';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/ja_JP.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/ja_JP.inc
Changed
26
1
2
$labels['status'] = '状態';
3
$labels['status-confirmed'] = '確認済';
4
$labels['status-cancelled'] = 'キャンセル済';
5
-$labels['status-tentative'] = '仮';
6
$labels['priority'] = '優先度';
7
$labels['sensitivity'] = 'プライバシー';
8
$labels['public'] = 'パブリック';
9
10
$labels['availunknown'] = '不明';
11
$labels['availtentative'] = '仮';
12
$labels['availoutofoffice'] = '外出';
13
+$labels['delegatedto'] = '委任先:';
14
+$labels['delegatedfrom'] = '委任元:';
15
$labels['scheduletime'] = '利用可検索';
16
$labels['sendinvitations'] = '招待を送る';
17
$labels['sendnotifications'] = '変更を参加者へ通知する';
18
19
$labels['suggestedslot'] = '指示されたスロット';
20
$labels['noslotfound'] = '空スロットを見つけられません';
21
$labels['invitationsubject'] = '"$title" に招待されました';
22
+$labels['invitationmailbody'] = "*\$title*\n\nいつ: \$date\n\n招待者: \$attendees\n\nあなたのカレンダーアプリケーションにインポートできる全イベントの詳細がインポートできる添付されたiカレンダーファイルを見つけてください。";
23
$labels['invitationattendlinks'] = "この場合あなたのメールクライアントはiTip リクエストをサポートしてません、以下のリンクからこの招待を承諾もしくは辞退してください:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" はアップデートされました';
25
$labels['eventupdatesubjectempty'] = 'あなたに関連するイベントが更新されました';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/ko_KR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/ko_KR.inc
Changed
18
1
2
$labels['status'] = '상태';
3
$labels['status-confirmed'] = '확인됨';
4
$labels['status-cancelled'] = '취소됨';
5
-$labels['status-tentative'] = '임시';
6
$labels['priority'] = '우선순위';
7
$labels['sensitivity'] = '프라이버시';
8
$labels['public'] = '공개';
9
10
$labels['availunknown'] = '알 수 없는';
11
$labels['availtentative'] = '임시';
12
$labels['availoutofoffice'] = '부재중';
13
+$labels['delegatedto'] = '위임 :';
14
+$labels['delegatedfrom'] = '위임받음 :';
15
$labels['scheduletime'] = '가능여부 확인';
16
$labels['sendinvitations'] = '초대장 보내기';
17
$labels['sendnotifications'] = '변경 사항을 참가자에게 알림';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/lv.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/lv.inc
Changed
26
1
2
$labels['status'] = 'Statuss';
3
$labels['status-confirmed'] = 'Apstiprināts';
4
$labels['status-cancelled'] = 'Atcelts';
5
-$labels['status-tentative'] = 'Varbūt';
6
$labels['priority'] = 'Prioritāte';
7
$labels['sensitivity'] = 'Privātums';
8
$labels['public'] = 'publisks';
9
10
$labels['availunknown'] = 'Nezināms';
11
$labels['availtentative'] = 'Varbūt';
12
$labels['availoutofoffice'] = 'Ārpus biroja';
13
+$labels['delegatedto'] = 'Deleģēt:';
14
+$labels['delegatedfrom'] = 'Deleģēts no:';
15
$labels['scheduletime'] = 'Atrast brīvu laiku';
16
$labels['sendinvitations'] = 'Nosūtīt uzaicinājumus';
17
$labels['sendnotifications'] = 'Apziņot dalībniekus par izmaiņām';
18
19
$labels['suggestedslot'] = 'Ieteicamā iedaļa';
20
$labels['noslotfound'] = 'Nav brīvas laika iedaļas';
21
$labels['invitationsubject'] = 'Jūs esat uzaicināts uz "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nKad: \$date\n\nUzaicinātie: \$attendees\n\nLūdzu skatiet pievienoto iCalendar failu ar notikuma informācij, kuru jūs varat importēt savā kalendāra aplikācijā.";
23
$labels['invitationattendlinks'] = "Gadījumā ja jūsu e-pasta praogramma neatbalsta iTip pieprasījumus, tad jūs varat izmantot šo saiti, lai pieņemtu vai noraidītu šo uzaicinājumu:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" ir mainīts';
25
$labels['eventupdatesubjectempty'] = 'Pasākums, kas attiecas uz jums ir mainīts';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/nl_NL.inc
Changed
26
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Bevestigd';
4
$labels['status-cancelled'] = 'Geannuleerd';
5
-$labels['status-tentative'] = 'Misschien';
6
$labels['priority'] = 'Prioriteit';
7
$labels['sensitivity'] = 'Privacy';
8
$labels['public'] = 'openbaar';
9
10
$labels['availunknown'] = 'Onbekend';
11
$labels['availtentative'] = 'Misschien';
12
$labels['availoutofoffice'] = 'Niet aanwezig';
13
+$labels['delegatedto'] = 'Gedelegeerd aan:';
14
+$labels['delegatedfrom'] = 'Gedelegeerd door:';
15
$labels['scheduletime'] = 'Beschikbaarheid zoeken';
16
$labels['sendinvitations'] = 'Uitnodigingen versturen';
17
$labels['sendnotifications'] = 'Wijzigingen melden aan deelnemers';
18
19
$labels['suggestedslot'] = 'Voorgesteld tijdstip';
20
$labels['noslotfound'] = 'Geen beschikbaar tijdstip gevonden';
21
$labels['invitationsubject'] = 'U bent uitgenodigd voor "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nWanneer: \$date\n\nGenodigden: \$attendees\n\nAls bijlage vindt u een iCalendar-bestand met alle gegevens van de activiteit die u in uw agendaprogramma kunt importeren.";
23
$labels['invitationattendlinks'] = "In het geval dat uw e-mailprogramma geen iTip-verzoeken ondersteunt, kunt u de volgende koppeling gebruiken om deze uitnodiging te accepteren or af te slaan:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" is bijgewerkt';
25
$labels['eventupdatesubjectempty'] = 'Een activiteit die u aangaat is bijgewerkt';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/pl_PL.inc
Changed
27
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Potwierdzony';
4
$labels['status-cancelled'] = 'Anulowany';
5
-$labels['status-tentative'] = 'Niepewny';
6
$labels['priority'] = 'Priorytet';
7
$labels['sensitivity'] = 'Poufność';
8
$labels['public'] = 'publiczny';
9
10
$labels['availunknown'] = 'Nieznany';
11
$labels['availtentative'] = 'Niepewny';
12
$labels['availoutofoffice'] = 'Poza biurem';
13
+$labels['delegatedto'] = 'Oddelegowany do:';
14
+$labels['delegatedfrom'] = 'Oddelegowany z:';
15
$labels['scheduletime'] = 'Sprawdź dostępność';
16
$labels['sendinvitations'] = 'Wyślij zaproszenia';
17
$labels['sendnotifications'] = 'Powiadom uczestników o zmianach';
18
19
$labels['suggestedslot'] = 'Sugerowany przedział';
20
$labels['noslotfound'] = 'Nie znaleziono wolnego przedziału czasu';
21
$labels['invitationsubject'] = 'Zostałeś zaproszony do "$title"';
22
-$labels['invitationmailbody'] = "*\$title*\n\nKiedy: \$date\n\nZaproszeni: \$attendees\n\n\$description\n\nW załączeniu plik w formacie iCalendar ze szczegółami zdarzenia, który możesz zaimportować do twojej aplikacji kalendarza.";
23
+$labels['invitationmailbody'] = "*\$title*\n\nKiedy: \$date\n\nZaproszeni: \$attendees\n\nW załączeniu plik w formacie iCalendar ze szczegółami zdarzenia, który możesz zaimportować do twojej aplikacji kalendarza.";
24
$labels['invitationattendlinks'] = "W przypadku gdy klient poczty elektronicznej nie obsługuje rządań w formacie iTip, aby zaakceptować lub odrzucić to zaproszenie, można skorzystać z następującego linku:\n\$url ";
25
$labels['eventupdatesubject'] = '"$title" zostało zaktualizowane';
26
$labels['eventupdatesubjectempty'] = 'Zdarzenie które cię dotyczy zostało zaktualizowane';
27
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/pt_BR.inc
Changed
26
1
2
$labels['status'] = 'Situação';
3
$labels['status-confirmed'] = 'Confirmado';
4
$labels['status-cancelled'] = 'Cancalado';
5
-$labels['status-tentative'] = 'Tentativa';
6
$labels['priority'] = 'Prioridade';
7
$labels['sensitivity'] = 'Privacidade';
8
$labels['public'] = 'público';
9
10
$labels['availunknown'] = 'Desconhecido';
11
$labels['availtentative'] = 'Tentativa';
12
$labels['availoutofoffice'] = 'Fora de escritório';
13
+$labels['delegatedto'] = 'Delegado para:';
14
+$labels['delegatedfrom'] = 'Delegado de:';
15
$labels['scheduletime'] = 'Procurar disponibilidade';
16
$labels['sendinvitations'] = 'Enviar convites';
17
$labels['sendnotifications'] = 'Avisar os participantes sobre as modificações';
18
19
$labels['nextslot'] = 'Próximo espaço';
20
$labels['noslotfound'] = 'Incapaz de encontrar um horário disponível';
21
$labels['invitationsubject'] = 'Você foi convidado para "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nQuando: \$date\n\nConvidados: \$attendees\n\nSegue em anexo um arquivo iCalendar com todos os detalhes do evento na qual você pode importar para sua aplicação de calendário.";
23
$labels['invitationattendlinks'] = "No caso do seu cliente de e-mail não suportar requisições iTIP você pode usar o link a seguir para aceitar ou recusar este convite:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" foi atualizado';
25
$labels['eventupdatesubjectempty'] = 'Um evento do seu interesse foi atualizado';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/pt_PT.inc
Changed
26
1
2
$labels['status'] = 'Estado';
3
$labels['status-confirmed'] = 'Confirmado';
4
$labels['status-cancelled'] = 'Cancelado';
5
-$labels['status-tentative'] = 'Tentativa';
6
$labels['priority'] = 'Prioridade';
7
$labels['sensitivity'] = 'Privacidade';
8
$labels['public'] = 'público';
9
10
$labels['availunknown'] = 'Desconhecido';
11
$labels['availtentative'] = 'Tentativa';
12
$labels['availoutofoffice'] = 'Ausente';
13
+$labels['delegatedto'] = 'Delegado a:';
14
+$labels['delegatedfrom'] = 'Delegado de:';
15
$labels['scheduletime'] = 'Procurar disponibilidade';
16
$labels['sendinvitations'] = 'Enviar convites';
17
$labels['sendnotifications'] = 'Avisar os participantes sobre as alterações';
18
19
$labels['suggestedslot'] = 'Espaço sugerido';
20
$labels['noslotfound'] = 'Incapaz de encontrar um horário disponível';
21
$labels['invitationsubject'] = 'Foi convidado para "$title"';
22
+$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.";
23
$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";
24
$labels['eventupdatesubject'] = '"$title" foi atualizado.';
25
$labels['eventupdatesubjectempty'] = 'Um evento do seu interesse foi atualizado';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/ru_RU.inc
Changed
26
1
2
$labels['status'] = 'Статус';
3
$labels['status-confirmed'] = 'Подтвеждённый';
4
$labels['status-cancelled'] = 'Отмененные';
5
-$labels['status-tentative'] = 'Неопределённо';
6
$labels['priority'] = 'Приоритет';
7
$labels['sensitivity'] = 'Секретность';
8
$labels['public'] = 'общедоступная';
9
10
$labels['availunknown'] = 'Неизвестно';
11
$labels['availtentative'] = 'Предварительно';
12
$labels['availoutofoffice'] = 'Вне офиса';
13
+$labels['delegatedto'] = 'Поручено:';
14
+$labels['delegatedfrom'] = 'Поручено от:';
15
$labels['scheduletime'] = 'Найти доступность';
16
$labels['sendinvitations'] = 'Отправить приглашения';
17
$labels['sendnotifications'] = 'Уведомить участников об изменениях';
18
19
$labels['suggestedslot'] = 'Предлагаемое время';
20
$labels['noslotfound'] = 'Невозможно найти свободное время';
21
$labels['invitationsubject'] = 'Вы приглашены на "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nКогда: \$date\n\nПриглашенные: \$attendees\n\nВо вложении вы найдёте файл iCalendar со всеми деталями события, который Вы можете импортировать в Вашу программу-ежедневник.";
23
$labels['invitationattendlinks'] = "В случае, если Ваш почтовый клиент не поддерживает запросы iTip, Вы можете использовать ссылку данную ниже, чтобы принять или отклонить это приглашение:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" было обновлено';
25
$labels['eventupdatesubjectempty'] = 'Событие, которое касается Вас, было обновлено';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/sk_SK.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/sk_SK.inc
Changed
9
1
2
$labels['status'] = 'Stav';
3
$labels['status-confirmed'] = 'Potvrdené';
4
$labels['status-cancelled'] = 'Zrušené';
5
-$labels['status-tentative'] = 'Nezáväzne';
6
$labels['priority'] = 'Priorita';
7
$labels['importrange'] = 'Udalosti z';
8
$labels['weekofyear'] = 'Týždeň';
9
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/sl_SI.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/sl_SI.inc
Changed
26
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Potrjeno';
4
$labels['status-cancelled'] = 'Preklicano';
5
-$labels['status-tentative'] = 'Pogojno';
6
$labels['priority'] = 'Prednost';
7
$labels['sensitivity'] = 'Zasebnost';
8
$labels['public'] = 'javno';
9
10
$labels['availunknown'] = 'Neznano';
11
$labels['availtentative'] = 'Pogojno';
12
$labels['availoutofoffice'] = 'Izven pisarne';
13
+$labels['delegatedto'] = 'Preneseno na:';
14
+$labels['delegatedfrom'] = 'Preneseno od:';
15
$labels['scheduletime'] = 'Najdi razpoložljivost';
16
$labels['sendinvitations'] = 'Pošlji vabila';
17
$labels['sendnotifications'] = 'Sporoči udeležencem spremembe';
18
19
$labels['suggestedslot'] = 'Predlagano mesto';
20
$labels['noslotfound'] = 'Ne najdem prostega mesta';
21
$labels['invitationsubject'] = 'Vabljeni ste v "$title"';
22
+$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.";
23
$labels['invitationattendlinks'] = "V kolikor vaš email klient ne podpira iTip zahtevkov lahko uporabite naslednjo povezavo za sprejem ali zavrnitev vabila:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" je bil posodobljen';
25
$labels['eventupdatesubjectempty'] = 'Dogodek, ki vas zadeva je bil posodobljen';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/sv_SE.inc
Changed
26
1
2
$labels['status'] = 'Status';
3
$labels['status-confirmed'] = 'Bekräftad';
4
$labels['status-cancelled'] = 'Inställd';
5
-$labels['status-tentative'] = 'Preliminärt';
6
$labels['priority'] = 'Prioritet';
7
$labels['sensitivity'] = 'Integritet';
8
$labels['public'] = 'publik';
9
10
$labels['availunknown'] = 'Okänd';
11
$labels['availtentative'] = 'Preliminärt';
12
$labels['availoutofoffice'] = 'Frånvarande';
13
+$labels['delegatedto'] = 'Delegerad till:';
14
+$labels['delegatedfrom'] = 'Delegerad från:';
15
$labels['scheduletime'] = 'Hitta tillgänglighet';
16
$labels['sendinvitations'] = 'Skicka inbjudningar';
17
$labels['sendnotifications'] = 'Meddela deltagare om ändringar';
18
19
$labels['suggestedslot'] = 'Föreslagen lucka';
20
$labels['noslotfound'] = 'Det gick inte att hitta en ledig tidslucka';
21
$labels['invitationsubject'] = 'Du har blivit inbjuden till "$title"';
22
+$labels['invitationmailbody'] = "*\$title*\n\nNär: \$date\n\nInbjudna: \$attendees\n\nHärmed bifogas en iCalendar-fil med alla detaljer om händelsen som du kan importera till din kalenderapplikation.";
23
$labels['invitationattendlinks'] = "Om din e-postklient inte stöder iTip-förfrågningar kan du använda följande länk för att antingen tacka ja eller eller nej till denna inbjudan:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" har uppdaterats';
25
$labels['eventupdatesubjectempty'] = 'En händelse som berör dig har uppdaterats';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/th_TH.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/th_TH.inc
Changed
18
1
2
$labels['status'] = 'สถานะ';
3
$labels['status-confirmed'] = 'ยืนยัน';
4
$labels['status-cancelled'] = 'ยกเลิก';
5
-$labels['status-tentative'] = 'แนวโน้ม';
6
$labels['priority'] = 'ความสำคัญ';
7
$labels['sensitivity'] = 'ความเป็นส่วนตัว';
8
$labels['public'] = 'สาธารณะ';
9
10
$labels['availunknown'] = 'ไม่ทราบ';
11
$labels['availtentative'] = 'แนวโน้ม';
12
$labels['availoutofoffice'] = 'ไม่อยู่ออฟฟิศ';
13
+$labels['delegatedto'] = 'มอบหมายให้';
14
+$labels['delegatedfrom'] = 'รับมอบจาก';
15
$labels['scheduletime'] = 'ค้นหาส่วนที่ว่าง';
16
$labels['sendinvitations'] = 'ส่งคำเชิญ';
17
$labels['sendnotifications'] = 'แจ้งเตือนผู้เข้าร่วมสำหรับการแก้ไข';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/uk_UA.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/uk_UA.inc
Changed
26
1
2
$labels['status'] = 'Статус';
3
$labels['status-confirmed'] = 'Підтверджений';
4
$labels['status-cancelled'] = 'Відмінений';
5
-$labels['status-tentative'] = 'Невизначений';
6
$labels['priority'] = 'Пріоритет';
7
$labels['sensitivity'] = 'Конфіденційність';
8
$labels['public'] = 'публічна';
9
10
$labels['availunknown'] = 'Невідомо';
11
$labels['availtentative'] = 'Невизначений';
12
$labels['availoutofoffice'] = 'Поза офісом';
13
+$labels['delegatedto'] = 'Доручено:';
14
+$labels['delegatedfrom'] = 'Доручено від:';
15
$labels['scheduletime'] = 'Знайти доступних';
16
$labels['sendinvitations'] = 'Запросити';
17
$labels['sendnotifications'] = 'Повідомити учасників про зміни';
18
19
$labels['suggestedslot'] = 'Пропонований час';
20
$labels['noslotfound'] = 'Неможливо знайти вільний час';
21
$labels['invitationsubject'] = 'Ви запрошені на ';
22
+$labels['invitationmailbody'] = "*\$title*\n\nКоли: \$date\n\nЗапрошені: \$attendees\n\nУ вкладенні Ви знайдете файл iCalendar з усіма деталями події, який Ви можете імпортувати у Вашу програму-щоденник.";
23
$labels['invitationattendlinks'] = "У разі, якщо Ваш поштовий клієнт не підтримує запити iTip, Ви можете використати дане нижче посилання, щоб прийняти або відхилити це запрошення:\n\$url";
24
$labels['eventupdatesubject'] = '"$title" була оновлена';
25
$labels['eventupdatesubjectempty'] = 'Подія, яка стосується Вас, була оновленна ';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/calendar/localization/zh_CN.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/calendar/localization/zh_CN.inc
Changed
9
1
2
$labels['status'] = '状态';
3
$labels['status-confirmed'] = '已确认';
4
$labels['status-cancelled'] = '已取消';
5
-$labels['status-tentative'] = '临时';
6
$labels['priority'] = '优先级';
7
$labels['sensitivity'] = '隐私';
8
$labels['public'] = '公开';
9
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_addressbook/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_addressbook/composer.json
Changed
10
1
2
"description": "Kolab addressbook",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.3",
7
"authors": [
8
{
9
"name": "Thomas Bruederli",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_addressbook/helpdocs/locale/de_DE/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_addressbook/helpdocs/locale/de_DE/LC_MESSAGES/addressbook.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-10-07 11:41+0000\n"
7
"Last-Translator: Mads <mads@batmads.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_addressbook/helpdocs/locale/en_US/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_addressbook/helpdocs/locale/en_US/LC_MESSAGES/addressbook.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_addressbook/helpdocs/locale/es_ES/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_addressbook/helpdocs/locale/es_ES/LC_MESSAGES/addressbook.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:18+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_addressbook/helpdocs/locale/pl_PL/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_addressbook/helpdocs/locale/pl_PL/LC_MESSAGES/addressbook.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:9
9
msgid "Sharing Address Books"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_auth/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_auth/composer.json
Changed
10
1
2
"description": "Kolab authentication",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.4",
7
"authors": [
8
{
9
"name": "Thomas Bruederli",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_auth/kolab_auth.php -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_auth/kolab_auth.php
Changed
31
1
2
if (!$uniqueid) {
3
// Find user record in LDAP
4
if (($ldap = self::ldap()) && $ldap->ready) {
5
- if ($record = $ldap->get_user_record($rcmail->get_user_name(), $_SESSION['kolab_host'])) {
6
+ if ($record = $ldap->get_user_record($rcmail->get_user_name())) {
7
$uniqueid = $record['uniqueid'];
8
}
9
}
10
11
// Some plugins e.g. kolab_2fa use 'startup' hook to
12
// register other hooks, but when called on 'authenticate' hook
13
// we're already after 'startup', so we'll call it directly
14
- if ($loaded && $startup && $plugin == 'kolab_2fa'
15
- && ($plugin = $this->api->get_plugin($plugin))
16
+ if ($loaded && $startup && ($plugin = $this->api->get_plugin($plugin))
17
+ && method_exists($plugin, 'startup')
18
) {
19
$plugin->startup(array('task' => $rcmail->task, 'action' => $rcmail->action));
20
}
21
22
// Store user unique identifier for freebusy_session_auth feature
23
$_SESSION['kolab_auth_uniqueid'] = is_array($record['uniqueid']) ? $record['uniqueid'][0] : $record['uniqueid'];
24
25
- // Store also host as we need it for get_user_reacod() in 'ready' hook handler
26
- $_SESSION['kolab_host'] = $host;
27
-
28
// Set user login
29
if ($login_attr) {
30
$this->data['user_login'] = is_array($record[$login_attr]) ? $record[$login_attr][0] : $record[$login_attr];
31
roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_auth/localization/pl_PL.inc
Added
13
1
2
+<?php
3
+/**
4
+ * Localizations for the Kolab Auth plugin
5
+ *
6
+ * Copyright (C) 2014, Kolab Systems AG
7
+ *
8
+ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/
9
+ */
10
+$labels['loginas'] = 'Zaloguj jako';
11
+$labels['loginasnotallowed'] = 'Brak uprawnień do zalogowania jako $user';
12
+?>
13
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_files/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_files/composer.json
Changed
10
1
2
"description": "User interface for Kolab File Manager (Chwala)",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.4",
7
"authors": [
8
{
9
"name": "Aleksander Machniak",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_files/kolab_files.js -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_files/kolab_files.js
Changed
136
1
2
{
3
// consider the token from parent window more reliable (fresher) than in framed window
4
// it's because keep-alive is not requested in frames
5
- return rcmail.is_framed() && parent.rcmail.env.files_token ? parent.rcmail.env.files_token : rcmail.env.files_token;
6
+ return window.parent && parent.rcmail && parent.rcmail.env.files_token ? parent.rcmail.env.files_token : rcmail.env.files_token;
7
};
8
9
function kolab_files_from_cloud_widget(elem)
10
11
rcmail.drivers_list_initialized = true;
12
13
$('td.source', dialog).each(function() {
14
- var td = $(this),
15
- id = td.attr('id').replace('source-', ''),
16
- meta = rcmail.env.external_sources[id];
17
-
18
- $.each(meta.form_values || [], function(i, v) {
19
- td.find('#source-' + id + '-' + i).val(v);
20
- });
21
-
22
- td.click(function() {
23
+ $(this).click(function() {
24
$('td.selected', dialog).removeClass('selected');
25
dialog.find('.driverform').hide();
26
$(this).addClass('selected').find('.driverform').show();
27
$('input[type="radio"]', this).prop('checked', true);
28
- });
29
- });
30
+ });
31
+ });
32
}
33
34
args.button_classes = ['mainaction'];
35
36
};
37
38
// Hides dialog
39
-function kolab_dialog_close(dialog, destroy)
40
+function kolab_dialog_close(dialog)
41
{
42
- (rcmail.is_framed() ? window.parent : window).$(dialog).dialog(destroy ? 'destroy' : 'close');
43
+ (rcmail.is_framed() ? window.parent : window).$(dialog).dialog('close');
44
};
45
46
// smart upload button
47
48
}
49
50
rcmail.command('files-move', rcmail.env.drag_target);
51
- rcmail.env.drag_target = null;
52
}
53
}
54
};
55
56
57
// try parent window if the list element does not exist
58
// i.e. called from dialog in parent window
59
- if (!elem.length && rcmail.is_framed()) {
60
+ if (!elem.length && window.parent && parent.rcmail) {
61
body = window.parent.document.body;
62
elem = $(list_selector, body);
63
searchbox = $(search_selector, body);
64
65
params.token = this.env.token;
66
params.file = file;
67
68
- rcmail.redirect(this.env.url + this.url('file_get', params), false);
69
+ rcmail.redirect(this.env.url + this.url('file_get', params));
70
};
71
72
// file(s) delete request
73
74
this.file_move_ask_user = function(list, move)
75
{
76
var file = list[0], buttons = {},
77
- text = rcmail.gettext('kolab_files.filemoveconfirm').replace('$file', file.dst),
78
+ text = rcmail.gettext('kolab_files.filemoveconfirm').replace('$file', file.dst)
79
dialog = $('<div></div>');
80
81
buttons[rcmail.gettext('kolab_files.fileoverwrite')] = function() {
82
83
f[file.src] = file.dst;
84
file_api.file_move_ask_list = list;
85
file_api.file_move_ask_mode = move;
86
- kolab_dialog_close(this, true);
87
-
88
+ dialog.dialog('destroy').remove();
89
file_api.req = file_api.set_busy(true, move ? 'kolab_files.filemoving' : 'kolab_files.filecopying');
90
file_api.request(action, {file: f, overwrite: 1}, 'file_move_ask_user_response');
91
};
92
93
var f = {}, action = move ? 'file_move' : 'file_copy';
94
95
$.each(list, function() { f[this.src] = this.dst; });
96
- kolab_dialog_close(this, true);
97
-
98
+ dialog.dialog('destroy').remove();
99
file_api.req = file_api.set_busy(true, move ? 'kolab_files.filemoving' : 'kolab_files.filecopying');
100
file_api.request(action, {file: f, overwrite: 1}, action + '_response');
101
};
102
103
var skip_func = function() {
104
list.shift();
105
- kolab_dialog_close(this, true);
106
+ dialog.dialog('destroy').remove();
107
108
if (list.length)
109
file_api.file_move_ask_user(list, move);
110
111
112
if (list.length > 1)
113
buttons[rcmail.gettext('kolab_files.fileskipall')] = function() {
114
- kolab_dialog_close(this, true);
115
+ dialog.dialog('destroy').remove();
116
if (move)
117
file_api.file_list();
118
};
119
120
kolab_dialog_show(dialog.html(text), {
121
close: skip_func,
122
buttons: buttons,
123
- height: 50,
124
minWidth: 400,
125
width: 400
126
});
127
128
parent = $('#' + id);
129
130
// try parent window if the folder element does not exist
131
- if (!parent.length && rcmail.is_framed()) {
132
+ if (!parent.length && window.parent && window.parent.rcmail) {
133
parent = $('#' + id, window.parent.document.body);
134
}
135
136
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_files/localization/el.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_files/localization/el.inc
Changed
26
1
2
$labels['upload'] = 'Μεταφόρτωση';
3
$labels['uploadfile'] = 'Μεταφόρτωση αρχείου(ων)';
4
$labels['get'] = 'Λήψη';
5
-$labels['getfile'] = 'Λήψη αρχείου';
6
$labels['view'] = 'Προβολή';
7
$labels['viewfile'] = 'Προβολή αρχείου';
8
$labels['rename'] = 'Μετονομασία';
9
10
$labels['folderdeleting'] = 'Γίνεται διαγραφή φακέλου...';
11
$labels['fileupdating'] = 'Γίνεται ενημέρωση αρχείου...';
12
$labels['filecreating'] = 'Γίνεται δημιουργία αρχείου...';
13
-$labels['filemoving'] = 'Μετακίνηση αρχείου(ων)...';
14
-$labels['filecopying'] = 'Αντιγραφή αρχείου(ων)...';
15
-$labels['filedeleting'] = 'Διαγραφή αρχείου(ων)...';
16
-$labels['filedeleteconfirm'] = 'Θέλετε να διαγράψετε τα επιλεγμένα αρχεία;';
17
$labels['fileoverwrite'] = 'Αντικατάσταση';
18
$labels['fileoverwriteall'] = 'Αντικατάσταση όλων';
19
$labels['select'] = 'Επιλογή';
20
21
$labels['arialabelfilelist'] = 'Λίστα αρχείων';
22
$labels['arialabelfileprops'] = 'Ιδιότητες αρχείου';
23
$labels['arialabelfilecontent'] = 'Περιεχόμενο αρχείου';
24
-$labels['type.vndoasisopendocumenttext'] = 'Αρχείο κειμένου (ODF)';
25
$labels['type.html'] = 'Έγγραφο HTML';
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_folders/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_folders/composer.json
Changed
10
1
2
"description": "Type-aware folder management/listing for Kolab",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.2",
7
"authors": [
8
{
9
"name": "Aleksander Machniak",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_folders/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/kolab_folders/localization/en_US.inc
Changed
9
1
2
$labels['junkemail'] = 'Junk';
3
$labels['confidential'] = 'Confidential';
4
$labels['private'] = 'Private';
5
+
6
$labels['folderexpire'] = 'Delete messages older than';
7
$labels['xdays'] = '$x days';
8
9
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/libcalendaring/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/libcalendaring/composer.json
Changed
10
1
2
"description": "Library providing common functions for calendaring plugins",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.4",
7
"authors": [
8
{
9
"name": "Thomas Bruederli",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/libcalendaring/lib/libcalendaring_itip.php -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/libcalendaring/lib/libcalendaring_itip.php
Changed
84
1
2
array('identity' => $this->rc->user->list_emails(true)));
3
$this->sender = $hook['identity'];
4
5
+ $this->plugin->add_hook('message_before_send', array($this, 'before_send_hook'));
6
$this->plugin->add_hook('smtp_connect', array($this, 'smtp_connect_hook'));
7
}
8
9
10
*/
11
public function send_itip_message($event, $method, $recipient, $subject, $bodytext, $message = null, $rsvp = true)
12
{
13
- if (!$this->sender['name']) {
14
+ if (!$this->sender['name'])
15
$this->sender['name'] = $this->sender['email'];
16
- }
17
18
if (!$message) {
19
libcalendaring::identify_recurrence_instance($event);
20
21
'name' => $subject,
22
'vars' => array(
23
'title' => $event['title'],
24
- 'name' => $this->sender['name'],
25
+ 'name' => $this->sender['name']
26
)
27
));
28
29
30
$mailbody = $this->gettext(array(
31
'name' => $bodytext,
32
'vars' => array(
33
- 'title' => $event['title'],
34
- 'date' => $this->lib->event_date_text($event, true) . $recurrence_info,
35
- 'attendees' => join(",\n ", $attendees_list),
36
- 'sender' => $this->sender['name'],
37
- 'organizer' => $this->sender['name'],
38
- 'description' => $event['description'],
39
+ 'title' => $event['title'],
40
+ 'date' => $this->lib->event_date_text($event, true) . $recurrence_info,
41
+ 'attendees' => join(",\n ", $attendees_list),
42
+ 'sender' => $this->sender['name'],
43
+ 'organizer' => $this->sender['name'],
44
)
45
));
46
47
- // remove redundant empty lines (e.g. when an event description is empty)
48
- $mailbody = preg_replace('/\n{3,}/', "\n\n", $mailbody);
49
-
50
// if (!empty($event['comment'])) {
51
// $mailbody .= "\n\n" . $this->gettext('itipsendercomment') . $event['comment'];
52
// }
53
54
// append links for direct invitation replies
55
- if ($method == 'REQUEST' && $rsvp
56
- && $this->rc->config->get('calendar_itip_smtp_server')
57
- && ($token = $this->store_invitation($event, $recipient['email']))
58
- ) {
59
+ if ($method == 'REQUEST' && $rsvp && ($token = $this->store_invitation($event, $recipient['email']))) {
60
$mailbody .= "\n\n" . $this->gettext(array(
61
'name' => 'invitationattendlinks',
62
'vars' => array('url' => $this->plugin->get_url(array('action' => 'attend', 't' => $token))),
63
64
}
65
66
/**
67
+ * Plugin hook triggered by rcube::deliver_message() before delivering a message.
68
+ * Here we can set the 'smtp_server' config option to '' in order to use
69
+ * PHP's mail() function for unauthenticated email sending.
70
+ */
71
+ public function before_send_hook($p)
72
+ {
73
+ if ($this->itip_send && !$this->rc->user->ID && $this->rc->config->get('calendar_itip_smtp_server', null) === '') {
74
+ $this->rc->config->set('smtp_server', '');
75
+ }
76
+
77
+ return $p;
78
+ }
79
+
80
+ /**
81
* Plugin hook to alter SMTP authentication.
82
* This is used if iTip messages are to be sent from an unauthenticated session
83
*/
84
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/libkolab/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/libkolab/composer.json
Changed
10
1
2
"description": "Plugin to setup a basic environment for the interaction with a Kolab server.",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.4",
7
"authors": [
8
{
9
"name": "Thomas Bruederli",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/libkolab/lib/kolab_format.php -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/libkolab/lib/kolab_format.php
Changed
10
1
2
$result->setTime($datetime->format('G'), $datetime->format('i'), $datetime->format('s'));
3
4
// libkolabxml throws errors on some deprecated timezone names
5
- $utc_aliases = array('UTC', 'GMT', '+00:00', 'Z', 'Etc/GMT', 'Etc/UTC');
6
+ $utc_aliases = array('UTC', 'GMT', '+00:00', 'Z', 'Etc/GMT');
7
8
if ($tz && in_array($tz->getName(), $utc_aliases)) {
9
$result->setUTC(true);
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/libkolab/lib/kolab_storage.php -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/libkolab/lib/kolab_storage.php
Changed
26
1
2
*/
3
public static function custom_displayname($folder)
4
{
5
- static $_metadata;
6
-
7
// find custom display name in folder METADATA
8
if (self::$config->get('kolab_custom_display_names', true) && self::setup()) {
9
- if ($_metadata !== null) {
10
- $metadata = $_metadata;
11
- }
12
- else {
13
- // For performance reasons ask for all folders, it will be cached as one cache entry
14
- $metadata = self::$imap->get_metadata("*", array(self::NAME_KEY_PRIVATE, self::NAME_KEY_SHARED));
15
-
16
- // If cache is disabled store result in memory
17
- if (!self::$config->get('imap_cache')) {
18
- $_metadata = $metadata;
19
- }
20
- }
21
+ // For performance reasons ask for all folders, it will be cached as one cache entry
22
+ $metadata = self::$imap->get_metadata("*", array(self::NAME_KEY_PRIVATE, self::NAME_KEY_SHARED));
23
24
if ($data = $metadata[$folder]) {
25
if (($name = $data[self::NAME_KEY_PRIVATE]) || ($name = $data[self::NAME_KEY_SHARED])) {
26
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/libkolab/lib/kolab_storage_folder_user.php -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/libkolab/lib/kolab_storage_folder_user.php
Changed
10
1
2
*
3
* @return string The owner of this folder.
4
*/
5
- public function get_owner($fully_qualified = false)
6
+ public function get_owner()
7
{
8
return $this->ldaprec['mail'];
9
}
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/composer.json -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/composer.json
Changed
10
1
2
"description": "Task management plugin",
3
"homepage": "https://git.kolab.org/diffusion/RPK/",
4
"license": "AGPLv3",
5
- "version": "3.3.5",
6
+ "version": "3.3.4",
7
"authors": [
8
{
9
"name": "Thomas Bruederli",
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/de_DE/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/de_DE/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-28 07:59+0000\n"
7
"Last-Translator: Mads <mads@batmads.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/de_DE/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/de_DE/LC_MESSAGES/manage.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/de_DE/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/de_DE/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-23 20:32+0000\n"
6
+"PO-Revision-Date: 2016-07-26 13:49+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/en_US/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/en_US/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/en_US/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/en_US/LC_MESSAGES/manage.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/en_US/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/en_US/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-27 23:34+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: English (http://www.transifex.com/kolab/kolab-documentation/language/en/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:19+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/manage.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:19+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2017-03-07 16:21+0000\n"
7
"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n"
8
"Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/fr_FR/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/fr_FR/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-28 00:21+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: French (http://www.transifex.com/kolab/kolab-documentation/language/fr/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/fr_FR/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/fr_FR/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2014-11-28 00:21+0000\n"
7
"Last-Translator: Torsten Grote <grote@kolabsys.com>\n"
8
"Language-Team: French (http://www.transifex.com/kolab/kolab-documentation/language/fr/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/nl_NL/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/nl_NL/LC_MESSAGES/index.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-21 17:03+0000\n"
6
+"PO-Revision-Date: 2016-07-07 12:16+0000\n"
7
"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n"
8
"Language-Team: Dutch (http://www.transifex.com/kolab/kolab-documentation/language/nl/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/index.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/tasks/index.rst:9
9
msgid "Tasks"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/tasks/manage.rst:7
9
msgid "Managing Tasks"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po
Changed
10
1
2
"Content-Type: text/plain; charset=UTF-8\n"
3
"Content-Transfer-Encoding: 8bit\n"
4
"Language: pl\n"
5
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
6
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
7
8
#: ../../en_US/_plugins/tasks/overview.rst:6
9
msgid "Overview"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/helpdocs/locale/sv/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/helpdocs/locale/sv/LC_MESSAGES/overview.po
Changed
10
1
2
"Project-Id-Version: Kolab Documentation\n"
3
"Report-Msgid-Bugs-To: \n"
4
"POT-Creation-Date: 2014-11-26 23:28+0100\n"
5
-"PO-Revision-Date: 2017-09-22 02:42+0000\n"
6
+"PO-Revision-Date: 2016-02-16 09:37+0000\n"
7
"Last-Translator: Thomas Bruederli <roundcube@gmail.com>\n"
8
"Language-Team: Swedish (http://www.transifex.com/kolab/kolab-documentation/language/sv/)\n"
9
"MIME-Version: 1.0\n"
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/bg_BG.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/bg_BG.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Notify assignees about modifications';
3
$labels['sendcancellation'] = 'Notify assignees about task cancellation';
4
$labels['invitationsubject'] = 'You\'ve been assigned to "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
6
$labels['itipupdatesubject'] = '"$title" has been updated';
7
$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Remove from my tasks';
11
$labels['delegateinvitation'] = 'Delegate assignment';
12
$labels['andnmore'] = '$nr повече...';
13
+$labels['delegatedto'] = 'Delegated to: ';
14
+$labels['delegatedfrom'] = 'Delegated from: ';
15
$labels['savetotasklist'] = 'Запазване в задачи';
16
$labels['comment'] = 'Comment';
17
$labels['errorimportingtask'] = 'Failed to import task(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/ca_ES.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/ca_ES.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Notify assignees about modifications';
3
$labels['sendcancellation'] = 'Notify assignees about task cancellation';
4
$labels['invitationsubject'] = 'You\'ve been assigned to "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
6
$labels['itipupdatesubject'] = '"$title" ha estat actualitzat';
7
$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Remove from my tasks';
11
$labels['delegateinvitation'] = 'Delegate assignment';
12
$labels['andnmore'] = '$nr més...';
13
+$labels['delegatedto'] = 'Delegat a:';
14
+$labels['delegatedfrom'] = 'Delegat de:';
15
$labels['savetotasklist'] = 'Save to tasks';
16
$labels['comment'] = 'Comentari';
17
$labels['errorimportingtask'] = 'Failed to import task(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/cs_CZ.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Uvědomit pověřence o změnách';
3
$labels['sendcancellation'] = 'Uvědomit pověřence o zrušení úkolu';
4
$labels['invitationsubject'] = 'Byl(a) jste přidělen(a) k "$title"';
5
+$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.";
6
$labels['itipupdatesubject'] = 'Událost "$title" byla aktualizována';
7
$labels['itipupdatesubjectempty'] = 'Úkol, který se vás týká, byl aktualizován';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Odstranit z mých úkolů';
11
$labels['delegateinvitation'] = 'Delegovat přidělení';
12
$labels['andnmore'] = 'dalších $nr...';
13
+$labels['delegatedto'] = 'Pověřený:';
14
+$labels['delegatedfrom'] = 'Pověřující:';
15
$labels['savetotasklist'] = 'Uložit do úkolů';
16
$labels['comment'] = 'Poznámka';
17
$labels['errorimportingtask'] = 'Nepodařilo se zavést úkol(y)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/da_DK.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Informér erhververen om ændringer';
3
$labels['sendcancellation'] = 'Informér erhververen om annullering af opgave';
4
$labels['invitationsubject'] = 'Du er blevet tildet opgaven "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
6
$labels['itipupdatesubject'] = '"$title" er blevet opdateret';
7
$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Remove from my tasks';
11
$labels['delegateinvitation'] = 'Delegate assignment';
12
$labels['andnmore'] = '$nr flere...';
13
+$labels['delegatedto'] = 'Delegated to: ';
14
+$labels['delegatedfrom'] = 'Delegated from: ';
15
$labels['savetotasklist'] = 'Save to tasks';
16
$labels['comment'] = 'Comment';
17
$labels['errorimportingtask'] = 'Failed to import task(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/de_CH.inc
Changed
23
1
2
$labels['sendnotifications'] = 'Beauftragte Teilnehmer über die Änderung informieren';
3
$labels['sendcancellation'] = 'Beauftragte Teilnehmer über die Stornierung informieren';
4
$labels['invitationsubject'] = 'Ihnen wurde "$title" zugewiesen';
5
-$labels['invitationmailbody'] = "*\$title*\n\nFällig: \$date\n\nBeauftragte: \$attendees\n\n\$description\n\nAngehängt finden Sie eine iCalendar-Datei mit allen Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
6
+$labels['invitationmailbody'] = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit allen Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
7
$labels['itipupdatesubject'] = '"$title" wurde aktualisiert';
8
$labels['itipupdatesubjectempty'] = 'Eine ihrer Aufgabe wurde aktualisiert';
9
-$labels['itipupdatemailbody'] = "*\$title*\n\nFällig: \$date\n\nBeauftragte: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
10
+$labels['itipupdatemailbody'] = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
11
$labels['itipcancelsubject'] = '"$title" wurde abgesagt';
12
$labels['itipcancelmailbody'] = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nDie Aufgabe wurde durch \$organizer storniert.\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails.";
13
$labels['saveintasklist'] = 'speichern in';
14
15
$labels['removefromcalendar'] = 'Aus meinen Aufgaben entfernen';
16
$labels['delegateinvitation'] = 'Zuweisung delegieren';
17
$labels['andnmore'] = '$nr weitere...';
18
+$labels['delegatedto'] = 'Delegiert an:';
19
+$labels['delegatedfrom'] = 'Delegiert von:';
20
$labels['savetotasklist'] = 'In den Aufgaben speichern';
21
$labels['comment'] = 'Kommentar';
22
$labels['errorimportingtask'] = 'Fehler beim Importieren der Aufgabe(n)';
23
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/de_DE.inc
Changed
19
1
2
$labels['sendnotifications'] = 'Beauftragte Teilnehmer über die Änderung informieren';
3
$labels['sendcancellation'] = 'Beauftragte Teilnehmer über die Stornierung informieren';
4
$labels['invitationsubject'] = 'Ihnen wurde "$title" zugewiesen';
5
-$labels['invitationmailbody'] = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\n\$description\n\nAngehängt finden Sie eine iCalendar-Datei mit allen Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
6
+$labels['invitationmailbody'] = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit allen Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
7
$labels['itipupdatesubject'] = '"$title" wurde aktualisiert';
8
$labels['itipupdatesubjectempty'] = 'Eine ihrer Aufgabe wurde aktualisiert';
9
$labels['itipupdatemailbody'] = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann.";
10
11
$labels['removefromcalendar'] = 'Aus meinen Aufgaben entfernen';
12
$labels['delegateinvitation'] = 'Zuweisung delegieren';
13
$labels['andnmore'] = '$nr weitere...';
14
+$labels['delegatedto'] = 'Delegiert an:';
15
+$labels['delegatedfrom'] = 'Delegiert von:';
16
$labels['savetotasklist'] = 'In den Aufgaben speichern';
17
$labels['comment'] = 'Kommentar';
18
$labels['errorimportingtask'] = 'Fehler beim Importieren der Aufgabe(n)';
19
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/en_US.inc
Changed
10
1
2
$labels['sendnotifications'] = 'Notify assignees about modifications';
3
$labels['sendcancellation'] = 'Notify assignees about task cancellation';
4
$labels['invitationsubject'] = 'You\'ve been assigned to "$title"';
5
-$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\n\$description\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
6
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
7
$labels['itipupdatesubject'] = '"$title" has been updated';
8
$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated';
9
$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.";
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/es_AR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/es_AR.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Notificar a los asignados sobre las modificaciones';
3
$labels['sendcancellation'] = 'Notificar a los asignados sobre la cancelación de la tarea';
4
$labels['invitationsubject'] = 'Ha sido asignado a "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nVencimiento: \$date\n\nAsignados: \$attendees\n\nEncontrará adjunto un archivo iCalendar con todos los detalles de la tarea, el cual puede importar a su aplicación de tareas.";
6
$labels['itipupdatesubject'] = '"$title" ha sido actualizado';
7
$labels['itipupdatesubjectempty'] = 'Una tarea que le interesa ha sido actualizada';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nVencimiento: \$date\n\nAsignados: \$attendees\n\Encontrará adjunto un archivo iCalendar con todos los detalles de la tarea, el cual puede importar a su aplicación de tareas.";
9
10
$labels['removefromcalendar'] = 'Eliminar de mis tareas';
11
$labels['delegateinvitation'] = 'Delegar asignación';
12
$labels['andnmore'] = '$nr más...';
13
+$labels['delegatedto'] = 'Delegado a:';
14
+$labels['delegatedfrom'] = 'Delegado de:';
15
$labels['savetotasklist'] = 'Guardar como tareas';
16
$labels['comment'] = 'Comentario';
17
$labels['errorimportingtask'] = 'Fallo al importar tarea(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/es_ES.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Notificar a los asignados sobre modificaciones';
3
$labels['sendcancellation'] = 'Notificar a los asignados sobre la cancelación de tareas';
4
$labels['invitationsubject'] = 'Usted ha sido asignado a "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nSe adjunta un archivo iCalendar con todos los detalles de la tarea, el mismo se puede importar a la aplicación de tareas.";
6
$labels['itipupdatesubject'] = '"$title" ha sido actualizada';
7
$labels['itipupdatesubjectempty'] = 'Una tarea que le concierne ha sido actualizada';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nSe adjunta un archivo iCalendar con los detalles de la tarea actualizada, el mismo se puede importar a la aplicación de tareas.";
9
10
$labels['removefromcalendar'] = 'Borrar de mis tareas';
11
$labels['delegateinvitation'] = 'Delegar asignación';
12
$labels['andnmore'] = '$nr más...';
13
+$labels['delegatedto'] = 'Delegar a: ';
14
+$labels['delegatedfrom'] = 'Delegado de:';
15
$labels['savetotasklist'] = 'Salvar a las tareas';
16
$labels['comment'] = 'Comentario';
17
$labels['errorimportingtask'] = 'Fallo al importar la(s) tarea(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/et_EE.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/et_EE.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Notify assignees about modifications';
3
$labels['sendcancellation'] = 'Notify assignees about task cancellation';
4
$labels['invitationsubject'] = 'You\'ve been assigned to "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
6
$labels['itipupdatesubject'] = '"$title" has been updated';
7
$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Remove from my tasks';
11
$labels['delegateinvitation'] = 'Delegate assignment';
12
$labels['andnmore'] = '$nr more...';
13
+$labels['delegatedto'] = 'Delegated to: ';
14
+$labels['delegatedfrom'] = 'Delegated from: ';
15
$labels['savetotasklist'] = 'Save to tasks';
16
$labels['comment'] = 'Kommentaar';
17
$labels['errorimportingtask'] = 'Failed to import task(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/fi_FI.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/fi_FI.inc
Changed
28
1
2
$labels['status-in-process'] = 'Prosessissa';
3
$labels['status-completed'] = 'Valmis';
4
$labels['status-cancelled'] = 'Peruttu';
5
-$labels['assignedto'] = 'Määritetty henkilölle';
6
$labels['created'] = 'Luotu';
7
$labels['changed'] = 'Viimeksi muokattu';
8
$labels['taskoptions'] = 'Valinnat';
9
10
$labels['roleoptional'] = 'Valinnainen';
11
$labels['rolechair'] = 'Kutsuja';
12
$labels['sendinvitations'] = 'Lähetä kutsut';
13
-$labels['invitationsubject'] = 'Sinut on määritetty tehtävään "$title"';
14
$labels['itipupdatesubject'] = '"$title" on päivitetty';
15
-$labels['itipupdatesubjectempty'] = 'Sinua koskeva tehtävä on päivitetty';
16
$labels['itipcancelsubject'] = '"$title" on peruttu';
17
$labels['taskhistory'] = 'Historia';
18
$labels['objectchangelog'] = 'Muutoshistoria';
19
20
$labels['itipcomment'] = 'Kutsun/herätteen kommentit';
21
$labels['removefromcalendar'] = 'Poista omista tehtävistä';
22
$labels['andnmore'] = '$nr lisää...';
23
+$labels['delegatedto'] = 'Delegoitu henkilölle:';
24
+$labels['delegatedfrom'] = 'Delegoitus henkilöltä:';
25
$labels['savetotasklist'] = 'Tallenna tehtäviin';
26
$labels['comment'] = 'Kommentti';
27
$labels['errorimportingtask'] = 'Tehtävien tuonti epäonnistui';
28
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/fr_FR.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Avertir les utilisateurs des modifications';
3
$labels['sendcancellation'] = 'Avertir les utilisateurs de l\'annulation de la tâche';
4
$labels['invitationsubject'] = 'Vous avez été affecté à la tâche "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nFin: \$date\n\nAffectée à : \$attendees\n\nVous trouverez en pièce jointe un objet de type iCalendar comprenant le détail de cette tâche, que vous pouvez importer dans votre gestionnaire de tâches.";
6
$labels['itipupdatesubject'] = '"$title" a été modifié';
7
$labels['itipupdatesubjectempty'] = 'Une tâche vous concernant a été modifiée';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nFin : \$date\n\nAffectée à : \$attendees\n\nVous trouverez en attachement un objet de type iCalendar comprenant le détail de cette tâche modifiée et que vous pouvez importer dans votre gestionnaire de tâches.";
9
10
$labels['removefromcalendar'] = 'Supprimer de mes tâches';
11
$labels['delegateinvitation'] = 'Déléguer l\'affectation';
12
$labels['andnmore'] = '$nr de plus...';
13
+$labels['delegatedto'] = 'Délégué à :';
14
+$labels['delegatedfrom'] = 'Délégué de :';
15
$labels['savetotasklist'] = 'Sauvegarde des tâches';
16
$labels['comment'] = 'Commentaire';
17
$labels['errorimportingtask'] = 'Importation impossible';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/he_IL.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/he_IL.inc
Changed
10
1
2
$labels['objectdiffnotavailable'] = 'No comparison possible for the selected revisions';
3
$labels['itipcomment'] = 'Invitation/notification comment';
4
$labels['andnmore'] = '$nr more...';
5
+$labels['delegatedto'] = 'Delegated to: ';
6
+$labels['delegatedfrom'] = 'Delegated from: ';
7
$labels['comment'] = 'Comment';
8
$labels['attendeupdateesuccess'] = 'Successfully updated the participant\'s status';
9
$labels['itipinvalidrequest'] = 'This invitation is no longer valid';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/hr_HR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/hr_HR.inc
Changed
10
1
2
$labels['objectdiffnotavailable'] = 'No comparison possible for the selected revisions';
3
$labels['itipcomment'] = 'Invitation/notification comment';
4
$labels['andnmore'] = '$nr more...';
5
+$labels['delegatedto'] = 'Delegated to: ';
6
+$labels['delegatedfrom'] = 'Delegated from: ';
7
$labels['comment'] = 'Comment';
8
$labels['attendeupdateesuccess'] = 'Successfully updated the participant\'s status';
9
$labels['itipinvalidrequest'] = 'This invitation is no longer valid';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/hu_HU.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/hu_HU.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Notify assignees about modifications';
3
$labels['sendcancellation'] = 'Notify assignees about task cancellation';
4
$labels['invitationsubject'] = 'You\'ve been assigned to "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application.";
6
$labels['itipupdatesubject'] = '$title - módosítva';
7
$labels['itipupdatesubjectempty'] = 'A task that concerns you has been updated';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Remove from my tasks';
11
$labels['delegateinvitation'] = 'Delegate assignment';
12
$labels['andnmore'] = 'még $nr ...';
13
+$labels['delegatedto'] = 'Beosztva ide: ';
14
+$labels['delegatedfrom'] = 'Beosztva innen: ';
15
$labels['savetotasklist'] = 'Save to tasks';
16
$labels['comment'] = 'Comment';
17
$labels['errorimportingtask'] = 'Failed to import task(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/it_IT.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/it_IT.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Informa gli assegnatari delle modifiche';
3
$labels['sendcancellation'] = 'Informa gli assegnatari della cancellazione dell\'attività';
4
$labels['invitationsubject'] = 'Sei stato assegnato a "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nScadenza: \$date\n\nAssegnatari: \$attendees\n\nIn allegato un file iCalendar con tutti i dettagli dell'attività che puoi importare nella tua applicazione di attività.";
6
$labels['itipupdatesubject'] = '"$title" è stato aggiornato';
7
$labels['itipupdatesubjectempty'] = 'Un\'attività che ti riguarda è stata aggiornata';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nScadenza: \$date\n\nAssegnatari: \$attendees\n\nIn allegato un file iCalendar con i dettagli dell'attività aggiornati che puoi importare nella tua applicazione di attività.";
9
10
$labels['errornotifying'] = 'Impossibile inviare notifiche agli assegnatari dell\'attività';
11
$labels['removefromcalendar'] = 'Rimuovi dalle mie attività';
12
$labels['andnmore'] = 'Altri $nr...';
13
+$labels['delegatedto'] = 'Delegato a:';
14
+$labels['delegatedfrom'] = 'Delegato da:';
15
$labels['savetotasklist'] = 'Salva su attività';
16
$labels['comment'] = 'Commento';
17
$labels['errorimportingtask'] = 'Impossibile importare attività';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/ja_JP.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/ja_JP.inc
Changed
18
1
2
$labels['sendnotifications'] = '変更を引受人に通知';
3
$labels['sendcancellation'] = 'タスクの中止を引受人へ通知';
4
$labels['invitationsubject'] = '"$title" へ割当られました';
5
+$labels['invitationmailbody'] = "*\$title*\n\nいつ: \$date\n\n引受人: \$attendees\n\n添付されたあなたのタスクアプリケーションがインポート可能な全タスクの詳細を含むiカレンダーファイルを見つけてください。";
6
$labels['itipupdatesubject'] = '"$title" はアップデートされました';
7
$labels['itipupdatesubjectempty'] = 'あなたに関連するイベントが更新されました';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nいつ: \$date\n\n 引受人: \$attendees\n\n添付されたあなたのタスクアプリケーションにインポート可能なタスク更新の詳細を含むiカレンダーファイルを見つけてください。";
9
10
$labels['removefromcalendar'] = 'Remove from my tasks';
11
$labels['delegateinvitation'] = 'Delegate assignment';
12
$labels['andnmore'] = '$nr さらに…';
13
+$labels['delegatedto'] = 'Delegated to: ';
14
+$labels['delegatedfrom'] = 'Delegated from: ';
15
$labels['savetotasklist'] = 'Save to tasks';
16
$labels['comment'] = 'Comment';
17
$labels['errorimportingtask'] = 'Failed to import task(s)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/ko_KR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/ko_KR.inc
Changed
9
1
2
$labels['taskhistory'] = '이력';
3
$labels['objectrestoreerror'] = '이전 버전으로 복구하지 못하였습니다';
4
$labels['andnmore'] = '$nr 더...';
5
+$labels['delegatedto'] = '위임 :';
6
+$labels['delegatedfrom'] = '위임받음 :';
7
$labels['comment'] = '코멘트';
8
$labels['itipinvalidrequest'] = '이 초대장은 더이상 유효하지 않습니다';
9
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/lv.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/lv.inc
Changed
10
1
2
$labels['objectrestoreerror'] = 'Kļūda atjaunojot veco versiju';
3
$labels['itipcomment'] = 'Uzaicinājumam/paziņojuma komentārs';
4
$labels['andnmore'] = 'vēl $nr ...';
5
+$labels['delegatedto'] = 'Deleģēt:';
6
+$labels['delegatedfrom'] = 'Deleģēts no:';
7
$labels['comment'] = 'Komentārs';
8
$labels['attendeupdateesuccess'] = 'Dalībnieku statusi veiksmīgi atjaunoti';
9
$labels['itipinvalidrequest'] = 'Šis uzaicinājums vairs nav spēkā';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/nl_NL.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Wijzigingen melden aan toegewezen personen';
3
$labels['sendcancellation'] = 'Annulering van activiteiten melden aan toegewezen personen';
4
$labels['invitationsubject'] = '"$title" is toegewezen aan u';
5
+$labels['invitationmailbody'] = "*\$title*\n\nEinde: \$date\n\nToegewezen personen: \$attendees\n\nAls bijlage vindt u een iCalendar-bestand met alle gegevens van de taak die u in uw programma voor taakbeheer kunt importeren.";
6
$labels['itipupdatesubject'] = '"$title" is bijgewerkt';
7
$labels['itipupdatesubjectempty'] = 'Een taak die u aangaat is bijgewerkt';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nEinde: \$date\n\nToegewezen personen: \$attendees\n\nAls bijlage vindt u een iCalendar-bestand met de bijgewerkte gegevens van de taak die u in uw programma voor taakbeheer kunt importeren.";
9
10
$labels['removefromcalendar'] = 'Verwijderen uit mijn taken';
11
$labels['delegateinvitation'] = 'Toegewezen taak delegeren';
12
$labels['andnmore'] = 'Nog $nr..';
13
+$labels['delegatedto'] = 'Gedelegeerd aan:';
14
+$labels['delegatedfrom'] = 'Gedelegeerd door:';
15
$labels['savetotasklist'] = 'Opslaan in taken';
16
$labels['comment'] = 'Opmerking';
17
$labels['errorimportingtask'] = 'Importeren van taken is mislukt';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/pl_PL.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/pl_PL.inc
Changed
10
1
2
$labels['objectrestoreerror'] = 'Nie udało się przywrócić starej wersji';
3
$labels['itipcomment'] = 'Komentarz zaproszenia/powiadomienia';
4
$labels['andnmore'] = '$nr więcej...';
5
+$labels['delegatedto'] = 'Oddelegowany do:';
6
+$labels['delegatedfrom'] = 'Oddelegowany z:';
7
$labels['comment'] = 'Komentarz';
8
$labels['attendeupdateesuccess'] = 'Zaktualizowano status uczestnika.';
9
$labels['itipinvalidrequest'] = 'To zaproszenie nie jest już aktualne.';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/pt_BR.inc
Changed
10
1
2
$labels['saveintasklist'] = 'salvar em';
3
$labels['taskhistory'] = 'Histórico';
4
$labels['objectchangelog'] = 'Mudar Histórico';
5
+$labels['delegatedto'] = 'Delegado para:';
6
+$labels['delegatedfrom'] = 'Delegado de:';
7
$labels['comment'] = 'Comentário';
8
$labels['attendeupdateesuccess'] = 'O status do participante foi atualizado com sucesso.';
9
$labels['itipinvalidrequest'] = 'Este convite não é mais válido';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/pt_PT.inc
Changed
10
1
2
$labels['objectrestoreerror'] = 'Não foi possível repor a versão anterior.';
3
$labels['itipcomment'] = 'Invitation/notification comment';
4
$labels['andnmore'] = '$nr mais...';
5
+$labels['delegatedto'] = 'Delegado para:';
6
+$labels['delegatedfrom'] = 'Delegado de:';
7
$labels['comment'] = 'Comentário';
8
$labels['attendeupdateesuccess'] = 'O status do participante foi atualizado com sucesso.';
9
$labels['itipinvalidrequest'] = 'Este convite não é mais válido';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/ru_RU.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Оповестить ответственных о изменениях';
3
$labels['sendcancellation'] = 'Оповестить ответственных об отмене задачи';
4
$labels['invitationsubject'] = 'Вас назначили ответственным за "$title"';
5
+$labels['invitationmailbody'] = "*\$title*\n\nКогда: \$date\n\nОтветственные: \$attendees\n\nПожалуйста найдите вложения в iCalendar файл со всеми задачами которое Вы можете импортировать в вашу программу задач.";
6
$labels['itipupdatesubject'] = '"$title" было обновлено';
7
$labels['itipupdatesubjectempty'] = 'Задача, касающаяся вас, была обновлена';
8
$labels['itipupdatemailbody'] = "*\$title*\n\nКогда: \$date\n\nОтветственные: \$attendees\n\nПожалуйста найдите вложения в iCalendar файл со всеми деталями задач которое Вы можете импортировать в вашу программу задач.";
9
10
$labels['removefromcalendar'] = 'Удалить из моих задач';
11
$labels['delegateinvitation'] = 'Назначение представителей';
12
$labels['andnmore'] = '$nr больше...';
13
+$labels['delegatedto'] = 'Поручено:';
14
+$labels['delegatedfrom'] = 'Поручено от:';
15
$labels['savetotasklist'] = 'Сохранить в задачи';
16
$labels['comment'] = 'Комментарий';
17
$labels['errorimportingtask'] = 'Не удалось импортировать задачи';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/sl_SI.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/sl_SI.inc
Changed
18
1
2
$labels['sendnotifications'] = 'Pošlji dodanim osebam obvestila o spremembah';
3
$labels['sendcancellation'] = 'Pošlji dodanim osebam obvestila o preklicu naloge';
4
$labels['invitationsubject'] = 'Dodani ste bili nalogi "$title"';
5
+$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.";
6
$labels['itipupdatesubject'] = '"$title" je bil posodobljen';
7
$labels['itipupdatesubjectempty'] = 'Zadevna naloga je bila posodobljena';
8
$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.";
9
10
$labels['removefromcalendar'] = 'Odstrani iz seznama';
11
$labels['delegateinvitation'] = 'Prenesi nalogo';
12
$labels['andnmore'] = '$nr več...';
13
+$labels['delegatedto'] = 'Preneseno na:';
14
+$labels['delegatedfrom'] = 'Preneseno od:';
15
$labels['savetotasklist'] = 'Shrani kot nalogo';
16
$labels['comment'] = 'Komentar';
17
$labels['errorimportingtask'] = 'Napaka pri uvozu nalog(e)';
18
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/sv_SE.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/sv_SE.inc
Changed
10
1
2
$labels['objectdiffnotavailable'] = 'Ingen jämförelse möjlig för valda revisioner';
3
$labels['itipcomment'] = 'Kommentar till inbjudan/meddelande';
4
$labels['andnmore'] = '$nr fler ...';
5
+$labels['delegatedto'] = 'Delegerad till:';
6
+$labels['delegatedfrom'] = 'Delegerad från:';
7
$labels['comment'] = 'Kommentar';
8
$labels['attendeupdateesuccess'] = 'Uppdaterade deltagarens status';
9
$labels['itipinvalidrequest'] = 'Denna inbjudan är inte längre giltig';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/th_TH.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/th_TH.inc
Changed
10
1
2
$labels['removefromcalendar'] = 'ลบออกจากงานของฉัน';
3
$labels['delegateinvitation'] = 'มอบหมายงาน';
4
$labels['andnmore'] = 'มีอีก $nr รายการ';
5
+$labels['delegatedto'] = 'มอบหมายให้';
6
+$labels['delegatedfrom'] = 'รับมอบจาก';
7
$labels['savetotasklist'] = 'บันทึกเป็นงาน';
8
$labels['comment'] = 'ความคิดเห็น';
9
$labels['errorimportingtask'] = 'การนำเข้างานเกิดข้อผิดพลาด';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/uk_UA.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/uk_UA.inc
Changed
8
1
2
$labels['objectchangelog'] = 'Історія змін';
3
$labels['itipcomment'] = 'Коментар до запрошення/повідомлення';
4
$labels['andnmore'] = '$nr більше...';
5
+$labels['delegatedto'] = 'Доручено:';
6
+$labels['delegatedfrom'] = 'Доручено від:';
7
$labels['comment'] = 'Коментарій';
8
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/vi_VN.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/vi_VN.inc
Changed
10
1
2
$labels['objectdiffnotavailable'] = 'No comparison possible for the selected revisions';
3
$labels['itipcomment'] = 'Invitation/notification comment';
4
$labels['andnmore'] = '$nr more...';
5
+$labels['delegatedto'] = 'Delegated to: ';
6
+$labels['delegatedfrom'] = 'Delegated from: ';
7
$labels['comment'] = 'Comment';
8
$labels['attendeupdateesuccess'] = 'Successfully updated the participant\'s status';
9
$labels['itipinvalidrequest'] = 'This invitation is no longer valid';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/tasklist/localization/zh_TW.inc -> roundcubemail-plugins-kolab-3.3.4.tar.gz/plugins/tasklist/localization/zh_TW.inc
Changed
10
1
2
$labels['objectdiffnotavailable'] = 'No comparison possible for the selected revisions';
3
$labels['itipcomment'] = 'Invitation/notification comment';
4
$labels['andnmore'] = '$nr more...';
5
+$labels['delegatedto'] = 'Delegated to: ';
6
+$labels['delegatedfrom'] = 'Delegated from: ';
7
$labels['comment'] = 'Comment';
8
$labels['attendeupdateesuccess'] = 'Successfully updated the participant\'s status';
9
$labels['itipinvalidrequest'] = 'This invitation is no longer valid';
10
roundcubemail-plugins-kolab-3.3.5.tar.gz/plugins/kolab_auth/localization/sv_SE.inc
Deleted
13
1
2
-<?php
3
-/**
4
- * Localizations for the Kolab Auth plugin
5
- *
6
- * Copyright (C) 2014, Kolab Systems AG
7
- *
8
- * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/
9
- */
10
-$labels['loginas'] = 'Logga in som';
11
-$labels['loginasnotallowed'] = 'Du har inte befogenhet att logga in som $user';
12
-?>
13
roundcubemail-plugins-kolab.dsc
Changed
17
1
2
Source: roundcubemail-plugins-kolab
3
Binary: roundcubemail-plugins-kolab
4
Architecture: all
5
-Version: 1:3.3.5-0~kolab1
6
+Version: 1:3.3.4-0~kolab3
7
Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>
8
Uploaders: Paul Klos <kolab@klos2day.nl>
9
Standards-Version: 3.9.3
10
11
roundcubemail-plugin-tinymce-config deb web extra
12
roundcubemail-plugin-wap-client deb web extra
13
Files:
14
- 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.3.5.tar.gz
15
+ 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.3.4.tar.gz
16
00000000000000000000000000000000 0 debian.tar.gz
17
Refresh
roundcubemail-plugins-kolab
x86_64
x86_64
ppc64le
x86_64
ppc64le
x86_64
x86_64
x86_64
x86_64
x86_64
x86_64
x86_64
Refresh
Login required, please
login
in order to comment
Request History
vanmeeuwen created request about 7 years ago
Repack of 3.3.5
vanmeeuwen accepted review about 7 years ago
vanmeeuwen accepted request about 7 years ago
Please add a comment