diff options
Diffstat (limited to 'apps/dav')
120 files changed, 2222 insertions, 247 deletions
diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml index 37e0d2c12f7..6d801098c40 100644 --- a/apps/dav/appinfo/info.xml +++ b/apps/dav/appinfo/info.xml @@ -32,6 +32,7 @@ <step>OCA\DAV\Migration\CalDAVRemoveEmptyValue</step> <step>OCA\DAV\Migration\BuildCalendarSearchIndex</step> <step>OCA\DAV\Migration\RefreshWebcalJobRegistrar</step> + <step>OCA\DAV\Migration\RemoveOrphanEventsAndContacts</step> <step>OCA\DAV\Migration\RemoveClassifiedEventActivity</step> </post-migration> <live-migration> @@ -42,6 +43,8 @@ <commands> <command>OCA\DAV\Command\CreateAddressBook</command> <command>OCA\DAV\Command\CreateCalendar</command> + <command>OCA\DAV\Command\MoveCalendar</command> + <command>OCA\DAV\Command\ListCalendars</command> <command>OCA\DAV\Command\SyncBirthdayCalendar</command> <command>OCA\DAV\Command\SyncSystemAddressBook</command> <command>OCA\DAV\Command\RemoveInvalidShares</command> diff --git a/apps/dav/composer/composer/autoload_classmap.php b/apps/dav/composer/composer/autoload_classmap.php index 3c7f98e36cd..8bb2b077edd 100644 --- a/apps/dav/composer/composer/autoload_classmap.php +++ b/apps/dav/composer/composer/autoload_classmap.php @@ -79,6 +79,8 @@ return array( 'OCA\\DAV\\CardDAV\\Xml\\Groups' => $baseDir . '/../lib/CardDAV/Xml/Groups.php', 'OCA\\DAV\\Command\\CreateAddressBook' => $baseDir . '/../lib/Command/CreateAddressBook.php', 'OCA\\DAV\\Command\\CreateCalendar' => $baseDir . '/../lib/Command/CreateCalendar.php', + 'OCA\\DAV\\Command\\ListCalendars' => $baseDir . '/../lib/Command/ListCalendars.php', + 'OCA\\DAV\\Command\\MoveCalendar' => $baseDir . '/../lib/Command/MoveCalendar.php', 'OCA\\DAV\\Command\\RemoveInvalidShares' => $baseDir . '/../lib/Command/RemoveInvalidShares.php', 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => $baseDir . '/../lib/Command/SyncBirthdayCalendar.php', 'OCA\\DAV\\Command\\SyncSystemAddressBook' => $baseDir . '/../lib/Command/SyncSystemAddressBook.php', @@ -159,6 +161,7 @@ return array( 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => $baseDir . '/../lib/Migration/RefreshWebcalJobRegistrar.php', 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => $baseDir . '/../lib/Migration/RegenerateBirthdayCalendars.php', 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => $baseDir . '/../lib/Migration/RemoveClassifiedEventActivity.php', + 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => $baseDir . '/../lib/Migration/RemoveOrphanEventsAndContacts.php', 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => $baseDir . '/../lib/Migration/Version1004Date20170825134824.php', 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => $baseDir . '/../lib/Migration/Version1004Date20170919104507.php', 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => $baseDir . '/../lib/Migration/Version1004Date20170924124212.php', @@ -173,6 +176,8 @@ return array( 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => $baseDir . '/../lib/Migration/Version1008Date20181105110300.php', 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => $baseDir . '/../lib/Migration/Version1008Date20181105112049.php', 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => $baseDir . '/../lib/Migration/Version1008Date20181114084440.php', + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => $baseDir . '/../lib/Provisioning/Apple/AppleProvisioningNode.php', + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => $baseDir . '/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', 'OCA\\DAV\\RootCollection' => $baseDir . '/../lib/RootCollection.php', 'OCA\\DAV\\Server' => $baseDir . '/../lib/Server.php', 'OCA\\DAV\\Settings\\CalDAVSettings' => $baseDir . '/../lib/Settings/CalDAVSettings.php', diff --git a/apps/dav/composer/composer/autoload_static.php b/apps/dav/composer/composer/autoload_static.php index 01bbb917e0d..e4b69b5a747 100644 --- a/apps/dav/composer/composer/autoload_static.php +++ b/apps/dav/composer/composer/autoload_static.php @@ -94,6 +94,8 @@ class ComposerStaticInitDAV 'OCA\\DAV\\CardDAV\\Xml\\Groups' => __DIR__ . '/..' . '/../lib/CardDAV/Xml/Groups.php', 'OCA\\DAV\\Command\\CreateAddressBook' => __DIR__ . '/..' . '/../lib/Command/CreateAddressBook.php', 'OCA\\DAV\\Command\\CreateCalendar' => __DIR__ . '/..' . '/../lib/Command/CreateCalendar.php', + 'OCA\\DAV\\Command\\ListCalendars' => __DIR__ . '/..' . '/../lib/Command/ListCalendars.php', + 'OCA\\DAV\\Command\\MoveCalendar' => __DIR__ . '/..' . '/../lib/Command/MoveCalendar.php', 'OCA\\DAV\\Command\\RemoveInvalidShares' => __DIR__ . '/..' . '/../lib/Command/RemoveInvalidShares.php', 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => __DIR__ . '/..' . '/../lib/Command/SyncBirthdayCalendar.php', 'OCA\\DAV\\Command\\SyncSystemAddressBook' => __DIR__ . '/..' . '/../lib/Command/SyncSystemAddressBook.php', @@ -174,6 +176,7 @@ class ComposerStaticInitDAV 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => __DIR__ . '/..' . '/../lib/Migration/RefreshWebcalJobRegistrar.php', 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => __DIR__ . '/..' . '/../lib/Migration/RegenerateBirthdayCalendars.php', 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => __DIR__ . '/..' . '/../lib/Migration/RemoveClassifiedEventActivity.php', + 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => __DIR__ . '/..' . '/../lib/Migration/RemoveOrphanEventsAndContacts.php', 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170825134824.php', 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170919104507.php', 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170924124212.php', @@ -188,6 +191,8 @@ class ComposerStaticInitDAV 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105110300.php', 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105112049.php', 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181114084440.php', + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => __DIR__ . '/..' . '/../lib/Provisioning/Apple/AppleProvisioningNode.php', + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => __DIR__ . '/..' . '/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', 'OCA\\DAV\\RootCollection' => __DIR__ . '/..' . '/../lib/RootCollection.php', 'OCA\\DAV\\Server' => __DIR__ . '/..' . '/../lib/Server.php', 'OCA\\DAV\\Settings\\CalDAVSettings' => __DIR__ . '/..' . '/../lib/Settings/CalDAVSettings.php', diff --git a/apps/dav/l10n/bg.js b/apps/dav/l10n/bg.js index 9962e123fe3..a18942a2fbd 100644 --- a/apps/dav/l10n/bg.js +++ b/apps/dav/l10n/bg.js @@ -33,7 +33,7 @@ OC.L10N.register( "{actor} created todo {todo} in list {calendar}" : "{actor} създаде задача {todo} в списък {calendar}", "You created todo {todo} in list {calendar}" : "Създадохте задача {todo} в списък {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} изтри задача {todo} от списък {calendar}", - "You deleted todo {todo} from list {calendar}" : "Изтрихте задача {todo} от лист {calendar}", + "You deleted todo {todo} from list {calendar}" : "Изтрихте задача {todo} от списък {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} актуализира задача {todo} в списък {calendar}", "You updated todo {todo} in list {calendar}" : "Променихте задача {todo} в списък {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} реши задача {todo} в списък {calendar}", @@ -50,10 +50,10 @@ OC.L10N.register( "Remote Address: %s" : "Отдалечен адрес: %s", "Request ID: %s" : "ID на заявката: %s", "Send invitations to attendees" : "Изпращане на покани до участниците", - "Please make sure to properly set up the email settings above." : "Моля, уверете се, че настройките за изпращане на имейли са коректни.", "Automatically generate a birthday calendar" : "Автоматично генериране на календар с рождени дни.", "Birthday calendars will be generated by a background job." : "Календарите с рождени дни се генерират от background job.", "Hence they will not be available immediately after enabling but will show up after some time." : "Това е причината поради която те не се появяват веднага, след като включите опцията.", - "CalDAV server" : "CalDAV сървър" + "CalDAV server" : "CalDAV сървър", + "Please make sure to properly set up the email settings above." : "Моля, уверете се, че настройките за изпращане на имейли са коректни." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/bg.json b/apps/dav/l10n/bg.json index 92297a28a7c..646009b70c2 100644 --- a/apps/dav/l10n/bg.json +++ b/apps/dav/l10n/bg.json @@ -31,7 +31,7 @@ "{actor} created todo {todo} in list {calendar}" : "{actor} създаде задача {todo} в списък {calendar}", "You created todo {todo} in list {calendar}" : "Създадохте задача {todo} в списък {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} изтри задача {todo} от списък {calendar}", - "You deleted todo {todo} from list {calendar}" : "Изтрихте задача {todo} от лист {calendar}", + "You deleted todo {todo} from list {calendar}" : "Изтрихте задача {todo} от списък {calendar}", "{actor} updated todo {todo} in list {calendar}" : "{actor} актуализира задача {todo} в списък {calendar}", "You updated todo {todo} in list {calendar}" : "Променихте задача {todo} в списък {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} реши задача {todo} в списък {calendar}", @@ -48,10 +48,10 @@ "Remote Address: %s" : "Отдалечен адрес: %s", "Request ID: %s" : "ID на заявката: %s", "Send invitations to attendees" : "Изпращане на покани до участниците", - "Please make sure to properly set up the email settings above." : "Моля, уверете се, че настройките за изпращане на имейли са коректни.", "Automatically generate a birthday calendar" : "Автоматично генериране на календар с рождени дни.", "Birthday calendars will be generated by a background job." : "Календарите с рождени дни се генерират от background job.", "Hence they will not be available immediately after enabling but will show up after some time." : "Това е причината поради която те не се появяват веднага, след като включите опцията.", - "CalDAV server" : "CalDAV сървър" + "CalDAV server" : "CalDAV сървър", + "Please make sure to properly set up the email settings above." : "Моля, уверете се, че настройките за изпращане на имейли са коректни." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/ca.js b/apps/dav/l10n/ca.js index f4cc6d25aab..fddbb26a3ba 100644 --- a/apps/dav/l10n/ca.js +++ b/apps/dav/l10n/ca.js @@ -44,6 +44,7 @@ OC.L10N.register( "Contacts" : "Contactes", "Technical details" : "Detalls tècnics", "Remote Address: %s" : "Adreça remota: %s", - "Request ID: %s" : "Sol·licitud ID: %s " + "Request ID: %s" : "Sol·licitud ID: %s ", + "Save" : "Desa" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/ca.json b/apps/dav/l10n/ca.json index 5479a8d69bd..db041f6ebf2 100644 --- a/apps/dav/l10n/ca.json +++ b/apps/dav/l10n/ca.json @@ -42,6 +42,7 @@ "Contacts" : "Contactes", "Technical details" : "Detalls tècnics", "Remote Address: %s" : "Adreça remota: %s", - "Request ID: %s" : "Sol·licitud ID: %s " + "Request ID: %s" : "Sol·licitud ID: %s ", + "Save" : "Desa" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/cs.js b/apps/dav/l10n/cs.js index 133fef177e2..d9a67c1ad04 100644 --- a/apps/dav/l10n/cs.js +++ b/apps/dav/l10n/cs.js @@ -33,7 +33,7 @@ OC.L10N.register( "{actor} created todo {todo} in list {calendar}" : "{actor} vytvořil(a) v seznamu {calendar} vytvořila úkol {todo}", "You created todo {todo} in list {calendar}" : "V seznamu {calendar} jste vytvořil(a) úkol {todo}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} smazal(a) úkol {todo} ze seznamu {calendar}", - "You deleted todo {todo} from list {calendar}" : "Ze seznamu {todo} jste smazal(a) úkol {todo}", + "You deleted todo {todo} from list {calendar}" : "Ze seznamu {calendar} jste smazal(a) úkol {todo}", "{actor} updated todo {todo} in list {calendar}" : "{actor} aktualizoval(a) úkol {todo} v seznamu {calendar}", "You updated todo {todo} in list {calendar}" : "Aktualizoval(a) jste úkol {todo} v seznamu {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} vyřešil(a) úkol {todo} v seznamu {calendar}", @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Další volby…", "More options at %s" : "Další volby viz %s", "Contacts" : "Kontakty", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Váš %s potřebuje být nastavený aby používal HTTPS, aby bylo možné používat CalDAV a CardDAV s iOS/macOS.", + "Configures a CalDAV account" : "Nastaví CalDAV účet", + "Configures a CardDAV account" : "Nastaví CardDAV účet", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Technické podrobnosti", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Uložit", "Your attendance was updated successfully." : "Vaše účast byla úspěšně aktualizována.", "Calendar server" : "Kalendářový server", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Také nainstalujte {calendarappstoreopen}aplikaci Kalendář{linkclose}, nebo {calendardocopen}připojte svůj počítač a telefon pro synchronizaci ↗{linkclose}.", "Send invitations to attendees" : "Poslat pozvánky na adresy účastníků", - "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Ověřte, že jste správně nastavili {emailopen}e-mailový server{linkclose}.", "Automatically generate a birthday calendar" : "Automaticky vytvořit kalendář s narozeninami", "Birthday calendars will be generated by a background job." : "Narozeninový kalendář bude vytvořen na pozadí.", "Hence they will not be available immediately after enabling but will show up after some time." : "A tedy nebudou zpřístupněny ihned po povolení, ale objeví se až se zpožděním.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Setkání »%s« s %s bylo zrušeno.", "The meeting »%s« with %s was updated." : "Setkání „%s“ s %s bylo aktualizováno.", "%s invited you to »%s«" : "%s vás zve na „%s“", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu." }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/apps/dav/l10n/cs.json b/apps/dav/l10n/cs.json index 9938df443b8..823e6b046b2 100644 --- a/apps/dav/l10n/cs.json +++ b/apps/dav/l10n/cs.json @@ -31,7 +31,7 @@ "{actor} created todo {todo} in list {calendar}" : "{actor} vytvořil(a) v seznamu {calendar} vytvořila úkol {todo}", "You created todo {todo} in list {calendar}" : "V seznamu {calendar} jste vytvořil(a) úkol {todo}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} smazal(a) úkol {todo} ze seznamu {calendar}", - "You deleted todo {todo} from list {calendar}" : "Ze seznamu {todo} jste smazal(a) úkol {todo}", + "You deleted todo {todo} from list {calendar}" : "Ze seznamu {calendar} jste smazal(a) úkol {todo}", "{actor} updated todo {todo} in list {calendar}" : "{actor} aktualizoval(a) úkol {todo} v seznamu {calendar}", "You updated todo {todo} in list {calendar}" : "Aktualizoval(a) jste úkol {todo} v seznamu {calendar}", "{actor} solved todo {todo} in list {calendar}" : "{actor} vyřešil(a) úkol {todo} v seznamu {calendar}", @@ -58,6 +58,9 @@ "More options …" : "Další volby…", "More options at %s" : "Další volby viz %s", "Contacts" : "Kontakty", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Váš %s potřebuje být nastavený aby používal HTTPS, aby bylo možné používat CalDAV a CardDAV s iOS/macOS.", + "Configures a CalDAV account" : "Nastaví CalDAV účet", + "Configures a CardDAV account" : "Nastaví CardDAV účet", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Technické podrobnosti", @@ -70,8 +73,9 @@ "Save" : "Uložit", "Your attendance was updated successfully." : "Vaše účast byla úspěšně aktualizována.", "Calendar server" : "Kalendářový server", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Také nainstalujte {calendarappstoreopen}aplikaci Kalendář{linkclose}, nebo {calendardocopen}připojte svůj počítač a telefon pro synchronizaci ↗{linkclose}.", "Send invitations to attendees" : "Poslat pozvánky na adresy účastníků", - "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Ověřte, že jste správně nastavili {emailopen}e-mailový server{linkclose}.", "Automatically generate a birthday calendar" : "Automaticky vytvořit kalendář s narozeninami", "Birthday calendars will be generated by a background job." : "Narozeninový kalendář bude vytvořen na pozadí.", "Hence they will not be available immediately after enabling but will show up after some time." : "A tedy nebudou zpřístupněny ihned po povolení, ale objeví se až se zpožděním.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Setkání »%s« s %s bylo zrušeno.", "The meeting »%s« with %s was updated." : "Setkání „%s“ s %s bylo aktualizováno.", "%s invited you to »%s«" : "%s vás zve na „%s“", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu." },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/dav/l10n/da.js b/apps/dav/l10n/da.js index 2d6b4085c63..2edb182b0c8 100644 --- a/apps/dav/l10n/da.js +++ b/apps/dav/l10n/da.js @@ -50,13 +50,16 @@ OC.L10N.register( "Where:" : "Hvor:", "Description:" : "Beskrivelse:", "Link:" : "Link:", + "Accept" : "Accepter", + "Decline" : "Afvis", + "More options …" : "Flere indstillinger…", "Contacts" : "Kontakter", "WebDAV" : "WebDAV", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Fjernadresse: %s", "Request ID: %s" : "Forespørgsels-ID: %s", + "Calendar server" : "Kalenderserver", "Send invitations to attendees" : "Send invitation til deltagere", - "Please make sure to properly set up the email settings above." : "Vær venligst sikker på at indstille email indstillingerne ovenover ordenligt.", "Automatically generate a birthday calendar" : "Generer en fødselsdagskalender automatisk", "Birthday calendars will be generated by a background job." : "Fødselsdagskalendere vil blive oprettet af et job, der kører i baggrunden.", "Hence they will not be available immediately after enabling but will show up after some time." : "Derfor vil de ikke blive synlige med det samme efter aktivering, men vil vise sig efter noget tid.", @@ -64,6 +67,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Mødet »%s« med %s blev annulleret.", "The meeting »%s« with %s was updated." : "Mødet »%s« med %s blev opdateret.", "%s invited you to »%s«" : "%s inviterede dig til »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Vær venligst sikker på at indstille email indstillingerne ovenover ordenligt." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/da.json b/apps/dav/l10n/da.json index 52a96cbadb6..8355d934fba 100644 --- a/apps/dav/l10n/da.json +++ b/apps/dav/l10n/da.json @@ -48,13 +48,16 @@ "Where:" : "Hvor:", "Description:" : "Beskrivelse:", "Link:" : "Link:", + "Accept" : "Accepter", + "Decline" : "Afvis", + "More options …" : "Flere indstillinger…", "Contacts" : "Kontakter", "WebDAV" : "WebDAV", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Fjernadresse: %s", "Request ID: %s" : "Forespørgsels-ID: %s", + "Calendar server" : "Kalenderserver", "Send invitations to attendees" : "Send invitation til deltagere", - "Please make sure to properly set up the email settings above." : "Vær venligst sikker på at indstille email indstillingerne ovenover ordenligt.", "Automatically generate a birthday calendar" : "Generer en fødselsdagskalender automatisk", "Birthday calendars will be generated by a background job." : "Fødselsdagskalendere vil blive oprettet af et job, der kører i baggrunden.", "Hence they will not be available immediately after enabling but will show up after some time." : "Derfor vil de ikke blive synlige med det samme efter aktivering, men vil vise sig efter noget tid.", @@ -62,6 +65,7 @@ "The meeting »%s« with %s was canceled." : "Mødet »%s« med %s blev annulleret.", "The meeting »%s« with %s was updated." : "Mødet »%s« med %s blev opdateret.", "%s invited you to »%s«" : "%s inviterede dig til »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Vær venligst sikker på at indstille email indstillingerne ovenover ordenligt." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/de.js b/apps/dav/l10n/de.js index 110e620c995..34ae1971adf 100644 --- a/apps/dav/l10n/de.js +++ b/apps/dav/l10n/de.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Weitere Optionen...", "More options at %s" : "Weitere Optionen unter %s", "Contacts" : "Kontakte", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Dein %s muss konfiguriert werden, um HTTPS zusammen mit CalDAV und CardDAV unter iOS/macOS nutzen zu können.", + "Configures a CalDAV account" : "Ein CalDAV-Konto einrichten", + "Configures a CardDAV account" : "Ein CardDAV-Konto einrichten", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-Endpunkt", "Technical details" : "Technische Details", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Speichern", "Your attendance was updated successfully." : "Dein Anwesenheits-Status wurde aktualisiert.", "Calendar server" : "Kalender-Server", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installiere außerdem die {calendarappstoreopen}Kalender-App{linkclose}, oder {calendardocopen}verbinde deinen Desktop & Mobilgerät zur Synchronisierung ↗{linkclose}.", "Send invitations to attendees" : "Einladungen an die Teilnehmer versenden", - "Please make sure to properly set up the email settings above." : "Bitte sicherstellen, dass die E-Mail Einstellungen oben korrekt angegeben sind.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Bitte stelle sicher, dass Du {emailopen}den E-Mail Server{linkclose} ordnungsgemäß einrichtest.", "Automatically generate a birthday calendar" : "Automatisch einen Kalender für Geburtstage erstellen", "Birthday calendars will be generated by a background job." : "Kalender für Geburtstage werden von einem Hintergrund-Auftrag erstellt", "Hence they will not be available immediately after enabling but will show up after some time." : "Die Einträge werden nicht sofort angezeigt. Nach der Aktivierung wird es ein wenig dauern bis zur Anzeige.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Der Termin »%s« mit %s wurde abgesagt.", "The meeting »%s« with %s was updated." : "Der Termin »%s« mit %s wurde aktualisiert.", "%s invited you to »%s«" : "%s hat Dich zu »%s« eingeladen", - "CalDAV server" : "CalDAV-Server" + "CalDAV server" : "CalDAV-Server", + "Please make sure to properly set up the email settings above." : "Bitte sicherstellen, dass die E-Mail Einstellungen oben korrekt angegeben sind." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/de.json b/apps/dav/l10n/de.json index 518717725cd..a7b9b6e4c3f 100644 --- a/apps/dav/l10n/de.json +++ b/apps/dav/l10n/de.json @@ -58,6 +58,9 @@ "More options …" : "Weitere Optionen...", "More options at %s" : "Weitere Optionen unter %s", "Contacts" : "Kontakte", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Dein %s muss konfiguriert werden, um HTTPS zusammen mit CalDAV und CardDAV unter iOS/macOS nutzen zu können.", + "Configures a CalDAV account" : "Ein CalDAV-Konto einrichten", + "Configures a CardDAV account" : "Ein CardDAV-Konto einrichten", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-Endpunkt", "Technical details" : "Technische Details", @@ -70,8 +73,9 @@ "Save" : "Speichern", "Your attendance was updated successfully." : "Dein Anwesenheits-Status wurde aktualisiert.", "Calendar server" : "Kalender-Server", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installiere außerdem die {calendarappstoreopen}Kalender-App{linkclose}, oder {calendardocopen}verbinde deinen Desktop & Mobilgerät zur Synchronisierung ↗{linkclose}.", "Send invitations to attendees" : "Einladungen an die Teilnehmer versenden", - "Please make sure to properly set up the email settings above." : "Bitte sicherstellen, dass die E-Mail Einstellungen oben korrekt angegeben sind.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Bitte stelle sicher, dass Du {emailopen}den E-Mail Server{linkclose} ordnungsgemäß einrichtest.", "Automatically generate a birthday calendar" : "Automatisch einen Kalender für Geburtstage erstellen", "Birthday calendars will be generated by a background job." : "Kalender für Geburtstage werden von einem Hintergrund-Auftrag erstellt", "Hence they will not be available immediately after enabling but will show up after some time." : "Die Einträge werden nicht sofort angezeigt. Nach der Aktivierung wird es ein wenig dauern bis zur Anzeige.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Der Termin »%s« mit %s wurde abgesagt.", "The meeting »%s« with %s was updated." : "Der Termin »%s« mit %s wurde aktualisiert.", "%s invited you to »%s«" : "%s hat Dich zu »%s« eingeladen", - "CalDAV server" : "CalDAV-Server" + "CalDAV server" : "CalDAV-Server", + "Please make sure to properly set up the email settings above." : "Bitte sicherstellen, dass die E-Mail Einstellungen oben korrekt angegeben sind." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/de_DE.js b/apps/dav/l10n/de_DE.js index bad9c794001..c49f3bf9388 100644 --- a/apps/dav/l10n/de_DE.js +++ b/apps/dav/l10n/de_DE.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Weitere Optionen...", "More options at %s" : "Weitere Optionen unter %s", "Contacts" : "Kontakte", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Ihr %s muss konfiguriert werden, um HTTPS zusammen mit CalDAV und CardDAV unter iOS/macOS nutzen zu können.", + "Configures a CalDAV account" : "Ein CalDAV-Konto einrichten", + "Configures a CardDAV account" : "Ein CardDAV-Konto einrichten", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-Endpunkt", "Technical details" : "Technische Details", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Speichern", "Your attendance was updated successfully." : "Ihr Teilnehmerstatus wurde aktualisiert.", "Calendar server" : "Kalender-Server", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installieren Sie außerdem die {calendarappstoreopen}Kalender-App{linkclose}, oder {calendardocopen}verbinden Sie Ihren Desktop & Mobilgerät zur Synchronisierung ↗{linkclose}.", "Send invitations to attendees" : "Einladungen an die Teilnehmer versenden", - "Please make sure to properly set up the email settings above." : "Stellen Sie sicher, dass die obigen E-Mail-Einstellungen korrekt sind.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Bitte stellen Sie sicher, dass Sie {emailopen}den E-Mail Server{linkclose} ordnungsgemäß einrichtet haben.", "Automatically generate a birthday calendar" : "Automatisch einen Kalender für Geburtstage erstellen", "Birthday calendars will be generated by a background job." : "Kalender für Geburtstage werden von einem Hintergrund-Auftrag erstellt", "Hence they will not be available immediately after enabling but will show up after some time." : "Die Einträge werden nicht sofort angezeigt. Nach der Aktivierung wird es ein wenig dauern bis zur Anzeige.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Der Termin »%s« mit %s wurde abgesagt.", "The meeting »%s« with %s was updated." : "Der Termin »%s« mit %s wurde aktualisiert.", "%s invited you to »%s«" : "%s hat Sie zu »%s« eingeladen", - "CalDAV server" : "CalDAV-Server" + "CalDAV server" : "CalDAV-Server", + "Please make sure to properly set up the email settings above." : "Stellen Sie sicher, dass die obigen E-Mail-Einstellungen korrekt sind." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/de_DE.json b/apps/dav/l10n/de_DE.json index 2019f163bfd..38cf44b9c69 100644 --- a/apps/dav/l10n/de_DE.json +++ b/apps/dav/l10n/de_DE.json @@ -58,6 +58,9 @@ "More options …" : "Weitere Optionen...", "More options at %s" : "Weitere Optionen unter %s", "Contacts" : "Kontakte", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Ihr %s muss konfiguriert werden, um HTTPS zusammen mit CalDAV und CardDAV unter iOS/macOS nutzen zu können.", + "Configures a CalDAV account" : "Ein CalDAV-Konto einrichten", + "Configures a CardDAV account" : "Ein CardDAV-Konto einrichten", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-Endpunkt", "Technical details" : "Technische Details", @@ -70,8 +73,9 @@ "Save" : "Speichern", "Your attendance was updated successfully." : "Ihr Teilnehmerstatus wurde aktualisiert.", "Calendar server" : "Kalender-Server", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installieren Sie außerdem die {calendarappstoreopen}Kalender-App{linkclose}, oder {calendardocopen}verbinden Sie Ihren Desktop & Mobilgerät zur Synchronisierung ↗{linkclose}.", "Send invitations to attendees" : "Einladungen an die Teilnehmer versenden", - "Please make sure to properly set up the email settings above." : "Stellen Sie sicher, dass die obigen E-Mail-Einstellungen korrekt sind.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Bitte stellen Sie sicher, dass Sie {emailopen}den E-Mail Server{linkclose} ordnungsgemäß einrichtet haben.", "Automatically generate a birthday calendar" : "Automatisch einen Kalender für Geburtstage erstellen", "Birthday calendars will be generated by a background job." : "Kalender für Geburtstage werden von einem Hintergrund-Auftrag erstellt", "Hence they will not be available immediately after enabling but will show up after some time." : "Die Einträge werden nicht sofort angezeigt. Nach der Aktivierung wird es ein wenig dauern bis zur Anzeige.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Der Termin »%s« mit %s wurde abgesagt.", "The meeting »%s« with %s was updated." : "Der Termin »%s« mit %s wurde aktualisiert.", "%s invited you to »%s«" : "%s hat Sie zu »%s« eingeladen", - "CalDAV server" : "CalDAV-Server" + "CalDAV server" : "CalDAV-Server", + "Please make sure to properly set up the email settings above." : "Stellen Sie sicher, dass die obigen E-Mail-Einstellungen korrekt sind." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/el.js b/apps/dav/l10n/el.js index 7b27d2dbcb7..dcc21ac7faa 100644 --- a/apps/dav/l10n/el.js +++ b/apps/dav/l10n/el.js @@ -43,6 +43,7 @@ OC.L10N.register( "A calendar <strong>event</strong> was modified" : "Τροποποιήθηκε ένα <strong>γεγονός</strong> του ημερολογίου", "A calendar <strong>todo</strong> was modified" : "Ενός ημερολογίου η <strong>εκκρεμότητα</strong> τροποποιήθηκε", "Contact birthdays" : "Γενέθλια επαφών", + "%1$s via %2$s" : "%1$s μέσω %2$s", "Invitation canceled" : "Η πρόσκληση ακυρώθηκε.", "Hello %s," : "Γεια σου %s,", "Invitation updated" : "Ενημερώθηκε η πρόσκληση.", @@ -59,12 +60,12 @@ OC.L10N.register( "Request ID: %s" : "ID Αιτήματος: %s", "Save" : "Αποθήκευση", "Send invitations to attendees" : "Αποστολή προσκλήσεων στους συμμετέχοντες.", - "Please make sure to properly set up the email settings above." : "Παρακαλούμε σιγουρευθείτε οτι θα ενημερώσετε τις ρυθμίσεις email, παραπάνω.", "Automatically generate a birthday calendar" : "Δημιουργία ημερολογίου γενεθλίων αυτόματα", "Birthday calendars will be generated by a background job." : "Τα ημερολόγια γενεθλίων θα δημιουργηθούν από μία εργασία παρασκηνίου.", "%s via %s" : "%s μέσω %s", "The meeting »%s« with %s was canceled." : "Το meeting »%s« με τον/την %s ακυρώθηκε.", "The meeting »%s« with %s was updated." : "Το meeting » %s « με τον/την %s ενημερώθηκε.", - "CalDAV server" : "Διακομιστής CalDAV" + "CalDAV server" : "Διακομιστής CalDAV", + "Please make sure to properly set up the email settings above." : "Παρακαλούμε σιγουρευθείτε οτι θα ενημερώσετε τις ρυθμίσεις email, παραπάνω." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/el.json b/apps/dav/l10n/el.json index 3a9046b559a..59be1c680bc 100644 --- a/apps/dav/l10n/el.json +++ b/apps/dav/l10n/el.json @@ -41,6 +41,7 @@ "A calendar <strong>event</strong> was modified" : "Τροποποιήθηκε ένα <strong>γεγονός</strong> του ημερολογίου", "A calendar <strong>todo</strong> was modified" : "Ενός ημερολογίου η <strong>εκκρεμότητα</strong> τροποποιήθηκε", "Contact birthdays" : "Γενέθλια επαφών", + "%1$s via %2$s" : "%1$s μέσω %2$s", "Invitation canceled" : "Η πρόσκληση ακυρώθηκε.", "Hello %s," : "Γεια σου %s,", "Invitation updated" : "Ενημερώθηκε η πρόσκληση.", @@ -57,12 +58,12 @@ "Request ID: %s" : "ID Αιτήματος: %s", "Save" : "Αποθήκευση", "Send invitations to attendees" : "Αποστολή προσκλήσεων στους συμμετέχοντες.", - "Please make sure to properly set up the email settings above." : "Παρακαλούμε σιγουρευθείτε οτι θα ενημερώσετε τις ρυθμίσεις email, παραπάνω.", "Automatically generate a birthday calendar" : "Δημιουργία ημερολογίου γενεθλίων αυτόματα", "Birthday calendars will be generated by a background job." : "Τα ημερολόγια γενεθλίων θα δημιουργηθούν από μία εργασία παρασκηνίου.", "%s via %s" : "%s μέσω %s", "The meeting »%s« with %s was canceled." : "Το meeting »%s« με τον/την %s ακυρώθηκε.", "The meeting »%s« with %s was updated." : "Το meeting » %s « με τον/την %s ενημερώθηκε.", - "CalDAV server" : "Διακομιστής CalDAV" + "CalDAV server" : "Διακομιστής CalDAV", + "Please make sure to properly set up the email settings above." : "Παρακαλούμε σιγουρευθείτε οτι θα ενημερώσετε τις ρυθμίσεις email, παραπάνω." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/en_GB.js b/apps/dav/l10n/en_GB.js index 420b1d86817..ddd2f0c1906 100644 --- a/apps/dav/l10n/en_GB.js +++ b/apps/dav/l10n/en_GB.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Remote Address: %s", "Request ID: %s" : "Request ID: %s", "Send invitations to attendees" : "Send invitations to attendees", - "Please make sure to properly set up the email settings above." : "Please make sure to properly set up the email settings above.", "Automatically generate a birthday calendar" : "Automatically generate a birthday calendar", "Birthday calendars will be generated by a background job." : "Birthday calendars will be generated by a background job.", "Hence they will not be available immediately after enabling but will show up after some time." : "Hence they will not be available immediately after enabling but will show up after some time.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "The meeting »%s« with %s was canceled.", "The meeting »%s« with %s was updated." : "The meeting »%s« with %s was updated.", "%s invited you to »%s«" : "%s invited you to »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Please make sure to properly set up the email settings above." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/en_GB.json b/apps/dav/l10n/en_GB.json index 0abae2e278d..1c3d4b010d0 100644 --- a/apps/dav/l10n/en_GB.json +++ b/apps/dav/l10n/en_GB.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Remote Address: %s", "Request ID: %s" : "Request ID: %s", "Send invitations to attendees" : "Send invitations to attendees", - "Please make sure to properly set up the email settings above." : "Please make sure to properly set up the email settings above.", "Automatically generate a birthday calendar" : "Automatically generate a birthday calendar", "Birthday calendars will be generated by a background job." : "Birthday calendars will be generated by a background job.", "Hence they will not be available immediately after enabling but will show up after some time." : "Hence they will not be available immediately after enabling but will show up after some time.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "The meeting »%s« with %s was canceled.", "The meeting »%s« with %s was updated." : "The meeting »%s« with %s was updated.", "%s invited you to »%s«" : "%s invited you to »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Please make sure to properly set up the email settings above." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/eo.js b/apps/dav/l10n/eo.js index b6f59bf9c0e..f7ee8d78389 100644 --- a/apps/dav/l10n/eo.js +++ b/apps/dav/l10n/eo.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Pli da opcioj...", "More options at %s" : "Pli da opcioj je %s", "Contacts" : "Kontaktoj", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Via %s uzu HTTPS, por ke vi povu uzi CalDAV kaj CardDAV kun iOS aŭ macOS.", + "Configures a CalDAV account" : "Agordas CalDAV-konton.", + "Configures a CardDAV account" : "Agordas CardlDAV-konton.", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-finpunkto", "Technical details" : "Teĥnikaj detaloj", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Konservi", "Your attendance was updated successfully." : "Via ĉeesto sukcese ĝisdatiĝis.", "Calendar server" : "Kalendara servilo", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Ankaŭ instalu la aplikaĵon {calendarappstoreopen}Kalendaro{linkclose} aŭ {calendardocopen}konektu vian surtablan kaj porteblan aparaton por eksinkronigi ↗{linkclose}.", "Send invitations to attendees" : "Sendi invitojn al ĉeestantoj", - "Please make sure to properly set up the email settings above." : "Bv. kontroli, ĉu la supraj retpoŝtaj agordoj estas bone agorditaj.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Bv. certigi, ke via {emailopen}retpoŝtserva servilo{linkclose} estas bone agordita.", "Automatically generate a birthday calendar" : "Aŭtomate estigi datrevenan kalendaron", "Birthday calendars will be generated by a background job." : "Datrevenaj kalendaroj estos kreitaj de fona tasko.", "Hence they will not be available immediately after enabling but will show up after some time." : "Tial, ili disponeblos nur post kelke da tempo.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La kunsido „%s“ kun %s estis nuligita.", "The meeting »%s« with %s was updated." : "La kunsido „%s“ kun %s estis ĝisdatigita.", "%s invited you to »%s«" : "%s invitis vin al „%s“", - "CalDAV server" : "CalDAV-servilo" + "CalDAV server" : "CalDAV-servilo", + "Please make sure to properly set up the email settings above." : "Bv. kontroli, ĉu la supraj retpoŝtaj agordoj estas bone agorditaj." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/eo.json b/apps/dav/l10n/eo.json index 5507a1f5ee0..b3a24546d56 100644 --- a/apps/dav/l10n/eo.json +++ b/apps/dav/l10n/eo.json @@ -58,6 +58,9 @@ "More options …" : "Pli da opcioj...", "More options at %s" : "Pli da opcioj je %s", "Contacts" : "Kontaktoj", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Via %s uzu HTTPS, por ke vi povu uzi CalDAV kaj CardDAV kun iOS aŭ macOS.", + "Configures a CalDAV account" : "Agordas CalDAV-konton.", + "Configures a CardDAV account" : "Agordas CardlDAV-konton.", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-finpunkto", "Technical details" : "Teĥnikaj detaloj", @@ -70,8 +73,9 @@ "Save" : "Konservi", "Your attendance was updated successfully." : "Via ĉeesto sukcese ĝisdatiĝis.", "Calendar server" : "Kalendara servilo", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Ankaŭ instalu la aplikaĵon {calendarappstoreopen}Kalendaro{linkclose} aŭ {calendardocopen}konektu vian surtablan kaj porteblan aparaton por eksinkronigi ↗{linkclose}.", "Send invitations to attendees" : "Sendi invitojn al ĉeestantoj", - "Please make sure to properly set up the email settings above." : "Bv. kontroli, ĉu la supraj retpoŝtaj agordoj estas bone agorditaj.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Bv. certigi, ke via {emailopen}retpoŝtserva servilo{linkclose} estas bone agordita.", "Automatically generate a birthday calendar" : "Aŭtomate estigi datrevenan kalendaron", "Birthday calendars will be generated by a background job." : "Datrevenaj kalendaroj estos kreitaj de fona tasko.", "Hence they will not be available immediately after enabling but will show up after some time." : "Tial, ili disponeblos nur post kelke da tempo.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "La kunsido „%s“ kun %s estis nuligita.", "The meeting »%s« with %s was updated." : "La kunsido „%s“ kun %s estis ĝisdatigita.", "%s invited you to »%s«" : "%s invitis vin al „%s“", - "CalDAV server" : "CalDAV-servilo" + "CalDAV server" : "CalDAV-servilo", + "Please make sure to properly set up the email settings above." : "Bv. kontroli, ĉu la supraj retpoŝtaj agordoj estas bone agorditaj." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es.js b/apps/dav/l10n/es.js index 1f9f82491e9..dad168f6644 100644 --- a/apps/dav/l10n/es.js +++ b/apps/dav/l10n/es.js @@ -73,7 +73,6 @@ OC.L10N.register( "Your attendance was updated successfully." : "Tu asistencia se ha actualizado con éxito.", "Calendar server" : "Servidor de calendario", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor, asegúrate de que las configuraciones de correo de arriba son correctas", "Automatically generate a birthday calendar" : "Generar automáticamente un calendario de cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños se generarán mediante un trabajo en segundo plano.", "Hence they will not be available immediately after enabling but will show up after some time." : "Por ello, no estarán disponibles inmediatamente tras activarlos, sino que aparecerán después de cierto tiempo.", @@ -81,6 +80,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La reunión »%s« con %s se ha cancelado.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s se ha actualizado.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor, asegúrate de que las configuraciones de correo de arriba son correctas" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es.json b/apps/dav/l10n/es.json index 59ba9958333..dd6635626ce 100644 --- a/apps/dav/l10n/es.json +++ b/apps/dav/l10n/es.json @@ -71,7 +71,6 @@ "Your attendance was updated successfully." : "Tu asistencia se ha actualizado con éxito.", "Calendar server" : "Servidor de calendario", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor, asegúrate de que las configuraciones de correo de arriba son correctas", "Automatically generate a birthday calendar" : "Generar automáticamente un calendario de cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños se generarán mediante un trabajo en segundo plano.", "Hence they will not be available immediately after enabling but will show up after some time." : "Por ello, no estarán disponibles inmediatamente tras activarlos, sino que aparecerán después de cierto tiempo.", @@ -79,6 +78,7 @@ "The meeting »%s« with %s was canceled." : "La reunión »%s« con %s se ha cancelado.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s se ha actualizado.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor, asegúrate de que las configuraciones de correo de arriba son correctas" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_419.js b/apps/dav/l10n/es_419.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_419.js +++ b/apps/dav/l10n/es_419.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_419.json b/apps/dav/l10n/es_419.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_419.json +++ b/apps/dav/l10n/es_419.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_CL.js b/apps/dav/l10n/es_CL.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_CL.js +++ b/apps/dav/l10n/es_CL.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_CL.json b/apps/dav/l10n/es_CL.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_CL.json +++ b/apps/dav/l10n/es_CL.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_CO.js b/apps/dav/l10n/es_CO.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_CO.js +++ b/apps/dav/l10n/es_CO.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_CO.json b/apps/dav/l10n/es_CO.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_CO.json +++ b/apps/dav/l10n/es_CO.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_CR.js b/apps/dav/l10n/es_CR.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_CR.js +++ b/apps/dav/l10n/es_CR.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_CR.json b/apps/dav/l10n/es_CR.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_CR.json +++ b/apps/dav/l10n/es_CR.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_DO.js b/apps/dav/l10n/es_DO.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_DO.js +++ b/apps/dav/l10n/es_DO.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_DO.json b/apps/dav/l10n/es_DO.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_DO.json +++ b/apps/dav/l10n/es_DO.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_EC.js b/apps/dav/l10n/es_EC.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_EC.js +++ b/apps/dav/l10n/es_EC.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_EC.json b/apps/dav/l10n/es_EC.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_EC.json +++ b/apps/dav/l10n/es_EC.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_GT.js b/apps/dav/l10n/es_GT.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_GT.js +++ b/apps/dav/l10n/es_GT.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_GT.json b/apps/dav/l10n/es_GT.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_GT.json +++ b/apps/dav/l10n/es_GT.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_HN.js b/apps/dav/l10n/es_HN.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_HN.js +++ b/apps/dav/l10n/es_HN.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_HN.json b/apps/dav/l10n/es_HN.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_HN.json +++ b/apps/dav/l10n/es_HN.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_MX.js b/apps/dav/l10n/es_MX.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_MX.js +++ b/apps/dav/l10n/es_MX.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_MX.json b/apps/dav/l10n/es_MX.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_MX.json +++ b/apps/dav/l10n/es_MX.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_NI.js b/apps/dav/l10n/es_NI.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_NI.js +++ b/apps/dav/l10n/es_NI.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_NI.json b/apps/dav/l10n/es_NI.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_NI.json +++ b/apps/dav/l10n/es_NI.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_PA.js b/apps/dav/l10n/es_PA.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_PA.js +++ b/apps/dav/l10n/es_PA.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_PA.json b/apps/dav/l10n/es_PA.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_PA.json +++ b/apps/dav/l10n/es_PA.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_PE.js b/apps/dav/l10n/es_PE.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_PE.js +++ b/apps/dav/l10n/es_PE.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_PE.json b/apps/dav/l10n/es_PE.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_PE.json +++ b/apps/dav/l10n/es_PE.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_PR.js b/apps/dav/l10n/es_PR.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_PR.js +++ b/apps/dav/l10n/es_PR.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_PR.json b/apps/dav/l10n/es_PR.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_PR.json +++ b/apps/dav/l10n/es_PR.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_PY.js b/apps/dav/l10n/es_PY.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_PY.js +++ b/apps/dav/l10n/es_PY.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_PY.json b/apps/dav/l10n/es_PY.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_PY.json +++ b/apps/dav/l10n/es_PY.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_SV.js b/apps/dav/l10n/es_SV.js index 5264c3743ec..266b8817706 100644 --- a/apps/dav/l10n/es_SV.js +++ b/apps/dav/l10n/es_SV.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_SV.json b/apps/dav/l10n/es_SV.json index 476536343a9..351b7249667 100644 --- a/apps/dav/l10n/es_SV.json +++ b/apps/dav/l10n/es_SV.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/es_UY.js b/apps/dav/l10n/es_UY.js index 8f0bef001f5..22a5edc5728 100644 --- a/apps/dav/l10n/es_UY.js +++ b/apps/dav/l10n/es_UY.js @@ -55,7 +55,6 @@ OC.L10N.register( "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -63,6 +62,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/es_UY.json b/apps/dav/l10n/es_UY.json index 4046250e1e0..57856b35133 100644 --- a/apps/dav/l10n/es_UY.json +++ b/apps/dav/l10n/es_UY.json @@ -53,7 +53,6 @@ "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", "Send invitations to attendees" : "Enviar invitaciones a los asistentes", - "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. ", "Automatically generate a birthday calendar" : "Generar automaticamente un calendario para cumpleaños", "Birthday calendars will be generated by a background job." : "Los calendarios de cumpleaños serán generados por un trabajo de segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por lo tanto no estarán disponbiles inmediatamente después de habilitarlos pero se mostrarán después de un tiempo.", @@ -61,6 +60,7 @@ "The meeting »%s« with %s was canceled." : "La cita »%s« con %s fue cancelada.", "The meeting »%s« with %s was updated." : "La reunión »%s« con %s ha sido actualizada.", "%s invited you to »%s«" : "%s te ha invitado a »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Por favor asegurarte de establecer correctamente las configuraciones de correo anteriores. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/et_EE.js b/apps/dav/l10n/et_EE.js index 22d76a27957..c0b1a12ec09 100644 --- a/apps/dav/l10n/et_EE.js +++ b/apps/dav/l10n/et_EE.js @@ -53,10 +53,10 @@ OC.L10N.register( "Remote Address: %s" : "Kaugaadress: %s", "Request ID: %s" : "Päringu ID: %s", "Send invitations to attendees" : "Saada osalejatele kutsed", - "Please make sure to properly set up the email settings above." : "Veendu, et e-posti seaded oleksid eespool õigesti seadistatud.", "The meeting »%s« with %s was canceled." : "Koosolek »%s« osaleja(te)ga %s tühistati.", "The meeting »%s« with %s was updated." : "Koosolek »%s« osaleja(te)ga %s uuendati.", "%s invited you to »%s«" : "%s kutsus sind »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Veendu, et e-posti seaded oleksid eespool õigesti seadistatud." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/et_EE.json b/apps/dav/l10n/et_EE.json index 1a633dd80e3..5dccc274331 100644 --- a/apps/dav/l10n/et_EE.json +++ b/apps/dav/l10n/et_EE.json @@ -51,10 +51,10 @@ "Remote Address: %s" : "Kaugaadress: %s", "Request ID: %s" : "Päringu ID: %s", "Send invitations to attendees" : "Saada osalejatele kutsed", - "Please make sure to properly set up the email settings above." : "Veendu, et e-posti seaded oleksid eespool õigesti seadistatud.", "The meeting »%s« with %s was canceled." : "Koosolek »%s« osaleja(te)ga %s tühistati.", "The meeting »%s« with %s was updated." : "Koosolek »%s« osaleja(te)ga %s uuendati.", "%s invited you to »%s«" : "%s kutsus sind »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Veendu, et e-posti seaded oleksid eespool õigesti seadistatud." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/eu.js b/apps/dav/l10n/eu.js index 64afba54f19..a75707b2064 100644 --- a/apps/dav/l10n/eu.js +++ b/apps/dav/l10n/eu.js @@ -57,9 +57,9 @@ OC.L10N.register( "Request ID: %s" : "Eskatutako ID: 1%s", "Save" : "Gorde", "Send invitations to attendees" : "Gonbidatutakoei gonbidapenak bidali", - "Please make sure to properly set up the email settings above." : "Mesedez, eposta ezarpenak ondo zehaztuta daudela ziurta ezazu", "The meeting »%s« with %s was canceled." : "1%s-rekin duzun » 1%s « bilera ezeztatu da", "%s invited you to »%s«" : "1%s-k »1%s«-ra gonbidatu zaitu", - "CalDAV server" : "CalDAV zerbitzaria" + "CalDAV server" : "CalDAV zerbitzaria", + "Please make sure to properly set up the email settings above." : "Mesedez, eposta ezarpenak ondo zehaztuta daudela ziurta ezazu" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/eu.json b/apps/dav/l10n/eu.json index e4b592d9204..39ec70cd7d8 100644 --- a/apps/dav/l10n/eu.json +++ b/apps/dav/l10n/eu.json @@ -55,9 +55,9 @@ "Request ID: %s" : "Eskatutako ID: 1%s", "Save" : "Gorde", "Send invitations to attendees" : "Gonbidatutakoei gonbidapenak bidali", - "Please make sure to properly set up the email settings above." : "Mesedez, eposta ezarpenak ondo zehaztuta daudela ziurta ezazu", "The meeting »%s« with %s was canceled." : "1%s-rekin duzun » 1%s « bilera ezeztatu da", "%s invited you to »%s«" : "1%s-k »1%s«-ra gonbidatu zaitu", - "CalDAV server" : "CalDAV zerbitzaria" + "CalDAV server" : "CalDAV zerbitzaria", + "Please make sure to properly set up the email settings above." : "Mesedez, eposta ezarpenak ondo zehaztuta daudela ziurta ezazu" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/fi.js b/apps/dav/l10n/fi.js index 591b4d76792..a5da564145f 100644 --- a/apps/dav/l10n/fi.js +++ b/apps/dav/l10n/fi.js @@ -29,6 +29,7 @@ OC.L10N.register( "You deleted event {event} from calendar {calendar}" : "Poistit tapahtuman {event} kalenterista {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} päivitti tapahtuman {event} kalenteriin {calendar}", "You updated event {event} in calendar {calendar}" : "Päivitit tapahtuman {event} kalenteriin {calendar}", + "Busy" : "Varattu", "{actor} created todo {todo} in list {calendar}" : "{actor} loi tehtävän {todo} listaan {calendar}", "You created todo {todo} in list {calendar}" : "Loit tehtävän {todo} listaan {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} poisti tehtävän {todo} listasta {calendar}", @@ -54,6 +55,9 @@ OC.L10N.register( "Decline" : "Kieltäydy", "More options …" : "Lisää valintoja…", "Contacts" : "Yhteystiedot", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "%s tulee asettaa käyttämään HTTPS-yhteyttä, jotta CalDAVia ja CardDAVia voi käyttää iOSilla tai macOS:llä.", + "Configures a CalDAV account" : "Määrittää CalDAV-tilin", + "Configures a CardDAV account" : "Määrittää CardDAV-tilin", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-päätepiste", "Technical details" : "Tekniset yksityiskohdat", @@ -62,17 +66,20 @@ OC.L10N.register( "There was an error updating your attendance status." : "Osallistumisesi tilaa päivittäessä tapahtui virhe.", "Please contact the organizer directly." : "Ota yhteys suoraan järjestäjään.", "Are you accepting the invitation?" : "Hyväksytkö kutsun?", + "Tentative" : "Alustava", "Save" : "Tallenna", "Your attendance was updated successfully." : "Osallistumisesi päivitettiin onnistuneesti.", "Calendar server" : "Kalenteripalvelin", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Asenna myös {calendarappstoreopen}kalenterisovellus{linkclose}, tai {calendardocopen}yhdistä tietokoneesi ja mobiililaitteesi synkronointiyhteyteen ↗{linkclose}.", "Send invitations to attendees" : "Lähetä kutsut osallistujille", - "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. ", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Varmista että määrität {emailopen}sähköpostipalvelimen{linkclose} asetukset oikein.", "Automatically generate a birthday calendar" : "Luo syntymäpäiväkalenteri automaattisesti", "Birthday calendars will be generated by a background job." : "Syntymäpäiväkalenterit luodaan taustatyön toimesta.", "Hence they will not be available immediately after enabling but will show up after some time." : "Sen vuoksi ne eivät ole välittömästi saatavilla käyttöönoton jälkeen, vaan ne tulevat näkyviin pienellä viiveellä.", "The meeting »%s« with %s was canceled." : "Tapaaminen »%s« henkilön %s kanssa peruttiin.", "The meeting »%s« with %s was updated." : "Tapaaminen »%s« henkilön %s kanssa päivitettiin.", "%s invited you to »%s«" : "%s kutsui sinut »%s«", - "CalDAV server" : "CalDAV-palvelin" + "CalDAV server" : "CalDAV-palvelin", + "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/fi.json b/apps/dav/l10n/fi.json index 74f89aca0f3..a846b375e52 100644 --- a/apps/dav/l10n/fi.json +++ b/apps/dav/l10n/fi.json @@ -27,6 +27,7 @@ "You deleted event {event} from calendar {calendar}" : "Poistit tapahtuman {event} kalenterista {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} päivitti tapahtuman {event} kalenteriin {calendar}", "You updated event {event} in calendar {calendar}" : "Päivitit tapahtuman {event} kalenteriin {calendar}", + "Busy" : "Varattu", "{actor} created todo {todo} in list {calendar}" : "{actor} loi tehtävän {todo} listaan {calendar}", "You created todo {todo} in list {calendar}" : "Loit tehtävän {todo} listaan {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} poisti tehtävän {todo} listasta {calendar}", @@ -52,6 +53,9 @@ "Decline" : "Kieltäydy", "More options …" : "Lisää valintoja…", "Contacts" : "Yhteystiedot", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "%s tulee asettaa käyttämään HTTPS-yhteyttä, jotta CalDAVia ja CardDAVia voi käyttää iOSilla tai macOS:llä.", + "Configures a CalDAV account" : "Määrittää CalDAV-tilin", + "Configures a CardDAV account" : "Määrittää CardDAV-tilin", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV-päätepiste", "Technical details" : "Tekniset yksityiskohdat", @@ -60,17 +64,20 @@ "There was an error updating your attendance status." : "Osallistumisesi tilaa päivittäessä tapahtui virhe.", "Please contact the organizer directly." : "Ota yhteys suoraan järjestäjään.", "Are you accepting the invitation?" : "Hyväksytkö kutsun?", + "Tentative" : "Alustava", "Save" : "Tallenna", "Your attendance was updated successfully." : "Osallistumisesi päivitettiin onnistuneesti.", "Calendar server" : "Kalenteripalvelin", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Asenna myös {calendarappstoreopen}kalenterisovellus{linkclose}, tai {calendardocopen}yhdistä tietokoneesi ja mobiililaitteesi synkronointiyhteyteen ↗{linkclose}.", "Send invitations to attendees" : "Lähetä kutsut osallistujille", - "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. ", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Varmista että määrität {emailopen}sähköpostipalvelimen{linkclose} asetukset oikein.", "Automatically generate a birthday calendar" : "Luo syntymäpäiväkalenteri automaattisesti", "Birthday calendars will be generated by a background job." : "Syntymäpäiväkalenterit luodaan taustatyön toimesta.", "Hence they will not be available immediately after enabling but will show up after some time." : "Sen vuoksi ne eivät ole välittömästi saatavilla käyttöönoton jälkeen, vaan ne tulevat näkyviin pienellä viiveellä.", "The meeting »%s« with %s was canceled." : "Tapaaminen »%s« henkilön %s kanssa peruttiin.", "The meeting »%s« with %s was updated." : "Tapaaminen »%s« henkilön %s kanssa päivitettiin.", "%s invited you to »%s«" : "%s kutsui sinut »%s«", - "CalDAV server" : "CalDAV-palvelin" + "CalDAV server" : "CalDAV-palvelin", + "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. " },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/fr.js b/apps/dav/l10n/fr.js index 96b69e71fe8..6fb2e8d5635 100644 --- a/apps/dav/l10n/fr.js +++ b/apps/dav/l10n/fr.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Plus d'options …", "More options at %s" : "Plus d'options à %s", "Contacts" : "Contacts", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Votre %s a besoin d'être configuré pour utiliser le HTTPS dans le but d'utiliser CalDAV et CardDAV avec iOS/macOS.", + "Configures a CalDAV account" : "Configure un compte CalDAV", + "Configures a CardDAV account" : "Configure un compte CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Point d'accès WebDAV", "Technical details" : "Détails techniques", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Sauvegarder", "Your attendance was updated successfully." : "Votre présence a été mise à jour avec succès.", "Calendar server" : "Serveur de calendrier", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installer aussi {calendarappstoreopen}l'application Calendrier{linkclose}, ou {calendardocopen}connecter à votre PC & téléphone pour synchroniser ↗{linkclose}.", "Send invitations to attendees" : "Envoyer des invitations aux participants", - "Please make sure to properly set up the email settings above." : "Merci de vérifier d'avoir correctement configuré les paramètres de courriel ci-dessus", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Merci de vérifier d'avoir correctement configuré {emailopen}le serveur de courriel{linkclose}.", "Automatically generate a birthday calendar" : "Générer automatiquement un agenda d'anniversaire", "Birthday calendars will be generated by a background job." : "Les agendas d'anniversaire seront générés par une tâche de fond.", "Hence they will not be available immediately after enabling but will show up after some time." : "Par conséquent, ils ne seront pas disponibles immédiatement après l'activation mais apparaîtront après un certain temps.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "La réunion «%s» avec %s a été annulée.", "The meeting »%s« with %s was updated." : "La réunion «%s» avec %s a été mise à jour.", "%s invited you to »%s«" : "%s vous a invité à «%s»", - "CalDAV server" : "Serveur CalDAV" + "CalDAV server" : "Serveur CalDAV", + "Please make sure to properly set up the email settings above." : "Merci de vérifier d'avoir correctement configuré les paramètres de courriel ci-dessus" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/dav/l10n/fr.json b/apps/dav/l10n/fr.json index 8ee74e66a2d..4b83964909c 100644 --- a/apps/dav/l10n/fr.json +++ b/apps/dav/l10n/fr.json @@ -58,6 +58,9 @@ "More options …" : "Plus d'options …", "More options at %s" : "Plus d'options à %s", "Contacts" : "Contacts", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Votre %s a besoin d'être configuré pour utiliser le HTTPS dans le but d'utiliser CalDAV et CardDAV avec iOS/macOS.", + "Configures a CalDAV account" : "Configure un compte CalDAV", + "Configures a CardDAV account" : "Configure un compte CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Point d'accès WebDAV", "Technical details" : "Détails techniques", @@ -70,8 +73,9 @@ "Save" : "Sauvegarder", "Your attendance was updated successfully." : "Votre présence a été mise à jour avec succès.", "Calendar server" : "Serveur de calendrier", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installer aussi {calendarappstoreopen}l'application Calendrier{linkclose}, ou {calendardocopen}connecter à votre PC & téléphone pour synchroniser ↗{linkclose}.", "Send invitations to attendees" : "Envoyer des invitations aux participants", - "Please make sure to properly set up the email settings above." : "Merci de vérifier d'avoir correctement configuré les paramètres de courriel ci-dessus", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Merci de vérifier d'avoir correctement configuré {emailopen}le serveur de courriel{linkclose}.", "Automatically generate a birthday calendar" : "Générer automatiquement un agenda d'anniversaire", "Birthday calendars will be generated by a background job." : "Les agendas d'anniversaire seront générés par une tâche de fond.", "Hence they will not be available immediately after enabling but will show up after some time." : "Par conséquent, ils ne seront pas disponibles immédiatement après l'activation mais apparaîtront après un certain temps.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "La réunion «%s» avec %s a été annulée.", "The meeting »%s« with %s was updated." : "La réunion «%s» avec %s a été mise à jour.", "%s invited you to »%s«" : "%s vous a invité à «%s»", - "CalDAV server" : "Serveur CalDAV" + "CalDAV server" : "Serveur CalDAV", + "Please make sure to properly set up the email settings above." : "Merci de vérifier d'avoir correctement configuré les paramètres de courriel ci-dessus" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/gl.js b/apps/dav/l10n/gl.js index 76b330a1274..1128d66b3da 100644 --- a/apps/dav/l10n/gl.js +++ b/apps/dav/l10n/gl.js @@ -44,7 +44,7 @@ OC.L10N.register( "A calendar <strong>event</strong> was modified" : "Foi modificado un <strong>evento</strong> do calendario", "A calendar <strong>todo</strong> was modified" : "Foi modificado un <strong>asunto pendente</strong> do calendario", "Contact birthdays" : "Aniversario do contacto", - "%1$s via %2$s" : "%1$s a través de %2$s", + "%1$s via %2$s" : "%1$s mediante %2$s", "Invitation canceled" : "Convite cancelado", "Hello %s," : "Ola %s,", "The meeting »%1$s« with %2$s was canceled." : "A xuntanza «%1$s» con %2$s foi cancelada.", @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Máis opcións …", "More options at %s" : "Máis opcións en %s", "Contacts" : "Contactos", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "É preciso configurar o seu %s para que empregue HTTPS para poder usar CalDAV e CardDAV con iOS / macOS.", + "Configures a CalDAV account" : "Configurar unha conta de CalDAV", + "Configures a CardDAV account" : "Configurar unha conta de CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Terminación WebDAV", "Technical details" : "Detalles técnicos", @@ -72,15 +75,17 @@ OC.L10N.register( "Save" : "Gardar", "Your attendance was updated successfully." : "A súa asistencia foi actualizada satisfactoriamente.", "Calendar server" : "Servidor do calendario", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Instale tamén o {calendarappstoreopen}aplicativo do Calendario{linkclose} ou {calendardocopen}conecte os seus escritorio e móbil para sincronizalos ↗{linkclose}.", "Send invitations to attendees" : "Enviar convites aos asistentes", - "Please make sure to properly set up the email settings above." : "Asegúrese de ter configurado correctamente o correo de enriba.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Asegúrese de ter configurado correctamente {emailopen}o servidor de correo-e{linkclose}.", "Automatically generate a birthday calendar" : "Xerar automaticamente o calendario de aniversarios", "Birthday calendars will be generated by a background job." : "O calendario de aniversarios xerase cun traballo en segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por isto, non estarán dispoñíbeis inmediatamente tras activalos, senón que aparecerán após certo tempo", - "%s via %s" : "%s vía %s", + "%s via %s" : "%s mediante %s", "The meeting »%s« with %s was canceled." : "A xuntanza «%s» con %s foi cancelada.", "The meeting »%s« with %s was updated." : "A xuntanza «%s» con %s foi actualizada.", "%s invited you to »%s«" : "%s convidouno a «%s»", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Asegúrese de ter configurado correctamente o correo de enriba." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/gl.json b/apps/dav/l10n/gl.json index d7b30145adb..a88d7654d47 100644 --- a/apps/dav/l10n/gl.json +++ b/apps/dav/l10n/gl.json @@ -42,7 +42,7 @@ "A calendar <strong>event</strong> was modified" : "Foi modificado un <strong>evento</strong> do calendario", "A calendar <strong>todo</strong> was modified" : "Foi modificado un <strong>asunto pendente</strong> do calendario", "Contact birthdays" : "Aniversario do contacto", - "%1$s via %2$s" : "%1$s a través de %2$s", + "%1$s via %2$s" : "%1$s mediante %2$s", "Invitation canceled" : "Convite cancelado", "Hello %s," : "Ola %s,", "The meeting »%1$s« with %2$s was canceled." : "A xuntanza «%1$s» con %2$s foi cancelada.", @@ -58,6 +58,9 @@ "More options …" : "Máis opcións …", "More options at %s" : "Máis opcións en %s", "Contacts" : "Contactos", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "É preciso configurar o seu %s para que empregue HTTPS para poder usar CalDAV e CardDAV con iOS / macOS.", + "Configures a CalDAV account" : "Configurar unha conta de CalDAV", + "Configures a CardDAV account" : "Configurar unha conta de CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Terminación WebDAV", "Technical details" : "Detalles técnicos", @@ -70,15 +73,17 @@ "Save" : "Gardar", "Your attendance was updated successfully." : "A súa asistencia foi actualizada satisfactoriamente.", "Calendar server" : "Servidor do calendario", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Instale tamén o {calendarappstoreopen}aplicativo do Calendario{linkclose} ou {calendardocopen}conecte os seus escritorio e móbil para sincronizalos ↗{linkclose}.", "Send invitations to attendees" : "Enviar convites aos asistentes", - "Please make sure to properly set up the email settings above." : "Asegúrese de ter configurado correctamente o correo de enriba.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Asegúrese de ter configurado correctamente {emailopen}o servidor de correo-e{linkclose}.", "Automatically generate a birthday calendar" : "Xerar automaticamente o calendario de aniversarios", "Birthday calendars will be generated by a background job." : "O calendario de aniversarios xerase cun traballo en segundo plano", "Hence they will not be available immediately after enabling but will show up after some time." : "Por isto, non estarán dispoñíbeis inmediatamente tras activalos, senón que aparecerán após certo tempo", - "%s via %s" : "%s vía %s", + "%s via %s" : "%s mediante %s", "The meeting »%s« with %s was canceled." : "A xuntanza «%s» con %s foi cancelada.", "The meeting »%s« with %s was updated." : "A xuntanza «%s» con %s foi actualizada.", "%s invited you to »%s«" : "%s convidouno a «%s»", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Asegúrese de ter configurado correctamente o correo de enriba." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/he.js b/apps/dav/l10n/he.js index 1a3efa38810..928dd7741b7 100644 --- a/apps/dav/l10n/he.js +++ b/apps/dav/l10n/he.js @@ -65,13 +65,13 @@ OC.L10N.register( "Save" : "שמירה", "Your attendance was updated successfully." : "ההשתתפות שלך עודכנה בהצלחה.", "Send invitations to attendees" : "שליחת הזמנות למשתתפים", - "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי.", "Automatically generate a birthday calendar" : "יצירת יומן ימי הולדת אוטומטית", "Birthday calendars will be generated by a background job." : "יומני ימי הולדת ייווצרו על ידי משימה ברקע.", "Hence they will not be available immediately after enabling but will show up after some time." : "לכן הם לא יהיה זמינים מיד לאחר ההפעלה אלא הם יופיעו לאחר זמן מה.", "%s via %s" : "%s דרך %s", "The meeting »%s« with %s was canceled." : "הפגישה „%s” עם %s בוטלה.", "The meeting »%s« with %s was updated." : "הפגישה „%s” עם %s עודכנה.", - "CalDAV server" : "שרת CalDAV" + "CalDAV server" : "שרת CalDAV", + "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי." }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); diff --git a/apps/dav/l10n/he.json b/apps/dav/l10n/he.json index 75de2501df6..0b6a9b65fa1 100644 --- a/apps/dav/l10n/he.json +++ b/apps/dav/l10n/he.json @@ -63,13 +63,13 @@ "Save" : "שמירה", "Your attendance was updated successfully." : "ההשתתפות שלך עודכנה בהצלחה.", "Send invitations to attendees" : "שליחת הזמנות למשתתפים", - "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי.", "Automatically generate a birthday calendar" : "יצירת יומן ימי הולדת אוטומטית", "Birthday calendars will be generated by a background job." : "יומני ימי הולדת ייווצרו על ידי משימה ברקע.", "Hence they will not be available immediately after enabling but will show up after some time." : "לכן הם לא יהיה זמינים מיד לאחר ההפעלה אלא הם יופיעו לאחר זמן מה.", "%s via %s" : "%s דרך %s", "The meeting »%s« with %s was canceled." : "הפגישה „%s” עם %s בוטלה.", "The meeting »%s« with %s was updated." : "הפגישה „%s” עם %s עודכנה.", - "CalDAV server" : "שרת CalDAV" + "CalDAV server" : "שרת CalDAV", + "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי." },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/dav/l10n/hu.js b/apps/dav/l10n/hu.js index 9eb453e744e..ac7c292cdc0 100644 --- a/apps/dav/l10n/hu.js +++ b/apps/dav/l10n/hu.js @@ -72,7 +72,6 @@ OC.L10N.register( "Your attendance was updated successfully." : "A részvételed frissítése sikerült.", "Calendar server" : "Naptár szerver", "Send invitations to attendees" : "Meghívó küldése a résztvevőknek", - "Please make sure to properly set up the email settings above." : "Győződj meg róla, hogy a fenti e-mail beállítások helyesek.", "Automatically generate a birthday calendar" : "Születésnapokat tartalmazó naptár automatikus létrehozása", "Birthday calendars will be generated by a background job." : "A születésnapokat tartalmazó naptárakat egy háttérben futó folyamat fogja létrehozni.", "Hence they will not be available immediately after enabling but will show up after some time." : "Nem lesznek elérhetőek azonnal az engedélyezés után, de egy rövid idő múlva már láthatóak lesznek.", @@ -80,6 +79,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "A »%s« találkozó vele: %s lemondásra került.", "The meeting »%s« with %s was updated." : "A »%s« találkozó vele: %s módosult.", "%s invited you to »%s«" : "%s meghívott ide: »%s«", - "CalDAV server" : "CalDAV szerver" + "CalDAV server" : "CalDAV szerver", + "Please make sure to properly set up the email settings above." : "Győződj meg róla, hogy a fenti e-mail beállítások helyesek." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/hu.json b/apps/dav/l10n/hu.json index 27e1da3e8aa..f9d0c8ada84 100644 --- a/apps/dav/l10n/hu.json +++ b/apps/dav/l10n/hu.json @@ -70,7 +70,6 @@ "Your attendance was updated successfully." : "A részvételed frissítése sikerült.", "Calendar server" : "Naptár szerver", "Send invitations to attendees" : "Meghívó küldése a résztvevőknek", - "Please make sure to properly set up the email settings above." : "Győződj meg róla, hogy a fenti e-mail beállítások helyesek.", "Automatically generate a birthday calendar" : "Születésnapokat tartalmazó naptár automatikus létrehozása", "Birthday calendars will be generated by a background job." : "A születésnapokat tartalmazó naptárakat egy háttérben futó folyamat fogja létrehozni.", "Hence they will not be available immediately after enabling but will show up after some time." : "Nem lesznek elérhetőek azonnal az engedélyezés után, de egy rövid idő múlva már láthatóak lesznek.", @@ -78,6 +77,7 @@ "The meeting »%s« with %s was canceled." : "A »%s« találkozó vele: %s lemondásra került.", "The meeting »%s« with %s was updated." : "A »%s« találkozó vele: %s módosult.", "%s invited you to »%s«" : "%s meghívott ide: »%s«", - "CalDAV server" : "CalDAV szerver" + "CalDAV server" : "CalDAV szerver", + "Please make sure to properly set up the email settings above." : "Győződj meg róla, hogy a fenti e-mail beállítások helyesek." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/is.js b/apps/dav/l10n/is.js index f74acb3a805..44506fff046 100644 --- a/apps/dav/l10n/is.js +++ b/apps/dav/l10n/is.js @@ -72,7 +72,6 @@ OC.L10N.register( "Your attendance was updated successfully." : "Mætingarstaða þín var uppfærð.", "Calendar server" : "Dagatalaþjónn", "Send invitations to attendees" : "Senda boð til þátttakenda", - "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar.", "Automatically generate a birthday calendar" : "Útbúa fæðingardagatal sjálfvirkt", "Birthday calendars will be generated by a background job." : "Fæðingardagatöl verða útbúin í bakvinnsluferli.", "Hence they will not be available immediately after enabling but will show up after some time." : "Þar með verða þau ekki tilbúin strax eftir að þetta er virkjað, heldur birtast þau eftir nokkurn tíma.", @@ -80,6 +79,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Hætt var við fundinn »%s« með %s.", "The meeting »%s« with %s was updated." : "Fundurinn »%s« með %s var uppfærður.", "%s invited you to »%s«" : "%s bauð þér að taka þátt í »%s«", - "CalDAV server" : "CalDAV-þjónn" + "CalDAV server" : "CalDAV-þjónn", + "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/dav/l10n/is.json b/apps/dav/l10n/is.json index 70c756567bf..4382e1581a9 100644 --- a/apps/dav/l10n/is.json +++ b/apps/dav/l10n/is.json @@ -70,7 +70,6 @@ "Your attendance was updated successfully." : "Mætingarstaða þín var uppfærð.", "Calendar server" : "Dagatalaþjónn", "Send invitations to attendees" : "Senda boð til þátttakenda", - "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar.", "Automatically generate a birthday calendar" : "Útbúa fæðingardagatal sjálfvirkt", "Birthday calendars will be generated by a background job." : "Fæðingardagatöl verða útbúin í bakvinnsluferli.", "Hence they will not be available immediately after enabling but will show up after some time." : "Þar með verða þau ekki tilbúin strax eftir að þetta er virkjað, heldur birtast þau eftir nokkurn tíma.", @@ -78,6 +77,7 @@ "The meeting »%s« with %s was canceled." : "Hætt var við fundinn »%s« með %s.", "The meeting »%s« with %s was updated." : "Fundurinn »%s« með %s var uppfærður.", "%s invited you to »%s«" : "%s bauð þér að taka þátt í »%s«", - "CalDAV server" : "CalDAV-þjónn" + "CalDAV server" : "CalDAV-þjónn", + "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" }
\ No newline at end of file diff --git a/apps/dav/l10n/it.js b/apps/dav/l10n/it.js index 77f6f25ac69..7914d647695 100644 --- a/apps/dav/l10n/it.js +++ b/apps/dav/l10n/it.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Altre opzioni...", "More options at %s" : "Altre opzioni alle %s", "Contacts" : "Contatti", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Il tuo %s deve essere configurato all'uso di HTTPS per poter usare CalDAV e CardDAV con iOS/macOS.", + "Configures a CalDAV account" : "Configura un account CalDAV", + "Configures a CardDAV account" : "Configura un account CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Terminatore WebDAV", "Technical details" : "Dettagli tecnici", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Salva", "Your attendance was updated successfully." : "La tua partecipazione è stata aggiornata correttamente.", "Calendar server" : "Server di calendari", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installa anche {calendarappstoreopen}l'app Calendario{linkclose}, o {calendardocopen}connetti il tuo desktop e mobile per la sicronizzazione ↗{linkclose}.", "Send invitations to attendees" : "Invia gli inviti ai partecipanti", - "Please make sure to properly set up the email settings above." : "Assicurati di configurare correttamente le impostazioni di posta sopra.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Assicurati di configurare correttamente {emailopen}il server di posta{linkclose}.", "Automatically generate a birthday calendar" : "Genera automaticamente un calendario dei compleanni", "Birthday calendars will be generated by a background job." : "Il calendario dei compleanni sarà generato con un'operazione in background.", "Hence they will not be available immediately after enabling but will show up after some time." : "Per cui non saranno disponibili immediatamente dopo l'abilitazione, ma saranno mostrati dopo qualche istante.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "L'incontro «%s» con %s è stato annullato.", "The meeting »%s« with %s was updated." : "L'incontro «%s» con %s è stato aggiornato.", "%s invited you to »%s«" : "%s ti ha invitato a «%s»", - "CalDAV server" : "Server CalDAV" + "CalDAV server" : "Server CalDAV", + "Please make sure to properly set up the email settings above." : "Assicurati di configurare correttamente le impostazioni di posta sopra." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/it.json b/apps/dav/l10n/it.json index 92050faec72..eb4cb28c126 100644 --- a/apps/dav/l10n/it.json +++ b/apps/dav/l10n/it.json @@ -58,6 +58,9 @@ "More options …" : "Altre opzioni...", "More options at %s" : "Altre opzioni alle %s", "Contacts" : "Contatti", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Il tuo %s deve essere configurato all'uso di HTTPS per poter usare CalDAV e CardDAV con iOS/macOS.", + "Configures a CalDAV account" : "Configura un account CalDAV", + "Configures a CardDAV account" : "Configura un account CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Terminatore WebDAV", "Technical details" : "Dettagli tecnici", @@ -70,8 +73,9 @@ "Save" : "Salva", "Your attendance was updated successfully." : "La tua partecipazione è stata aggiornata correttamente.", "Calendar server" : "Server di calendari", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installa anche {calendarappstoreopen}l'app Calendario{linkclose}, o {calendardocopen}connetti il tuo desktop e mobile per la sicronizzazione ↗{linkclose}.", "Send invitations to attendees" : "Invia gli inviti ai partecipanti", - "Please make sure to properly set up the email settings above." : "Assicurati di configurare correttamente le impostazioni di posta sopra.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Assicurati di configurare correttamente {emailopen}il server di posta{linkclose}.", "Automatically generate a birthday calendar" : "Genera automaticamente un calendario dei compleanni", "Birthday calendars will be generated by a background job." : "Il calendario dei compleanni sarà generato con un'operazione in background.", "Hence they will not be available immediately after enabling but will show up after some time." : "Per cui non saranno disponibili immediatamente dopo l'abilitazione, ma saranno mostrati dopo qualche istante.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "L'incontro «%s» con %s è stato annullato.", "The meeting »%s« with %s was updated." : "L'incontro «%s» con %s è stato aggiornato.", "%s invited you to »%s«" : "%s ti ha invitato a «%s»", - "CalDAV server" : "Server CalDAV" + "CalDAV server" : "Server CalDAV", + "Please make sure to properly set up the email settings above." : "Assicurati di configurare correttamente le impostazioni di posta sopra." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/ja.js b/apps/dav/l10n/ja.js index 29582ffe378..d4147c423d1 100644 --- a/apps/dav/l10n/ja.js +++ b/apps/dav/l10n/ja.js @@ -72,7 +72,6 @@ OC.L10N.register( "Your attendance was updated successfully." : "出席は正常に更新されました。", "Calendar server" : "カレンダーサーバー", "Send invitations to attendees" : "参加者に招待状を送信する", - "Please make sure to properly set up the email settings above." : "上記のメール設定を正しく設定してください。", "Automatically generate a birthday calendar" : "自動的に誕生日カレンダーを生成する", "Birthday calendars will be generated by a background job." : "誕生日カレンダーは、バックグラウンドジョブによって生成されます。", "Hence they will not be available immediately after enabling but will show up after some time." : "したがって、有効にした直後は利用できませんが、しばらくしてから表示されます。", @@ -80,6 +79,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "会議 »%s« %sがキャンセルされました。", "The meeting »%s« with %s was updated." : "会議 »%s« %sが更新されました。", "%s invited you to »%s«" : "%s があなたを »%s« に招待しました", - "CalDAV server" : "CalDAVサーバー" + "CalDAV server" : "CalDAVサーバー", + "Please make sure to properly set up the email settings above." : "上記のメール設定を正しく設定してください。" }, "nplurals=1; plural=0;"); diff --git a/apps/dav/l10n/ja.json b/apps/dav/l10n/ja.json index c2b0a90a2d1..fc94f34b06c 100644 --- a/apps/dav/l10n/ja.json +++ b/apps/dav/l10n/ja.json @@ -70,7 +70,6 @@ "Your attendance was updated successfully." : "出席は正常に更新されました。", "Calendar server" : "カレンダーサーバー", "Send invitations to attendees" : "参加者に招待状を送信する", - "Please make sure to properly set up the email settings above." : "上記のメール設定を正しく設定してください。", "Automatically generate a birthday calendar" : "自動的に誕生日カレンダーを生成する", "Birthday calendars will be generated by a background job." : "誕生日カレンダーは、バックグラウンドジョブによって生成されます。", "Hence they will not be available immediately after enabling but will show up after some time." : "したがって、有効にした直後は利用できませんが、しばらくしてから表示されます。", @@ -78,6 +77,7 @@ "The meeting »%s« with %s was canceled." : "会議 »%s« %sがキャンセルされました。", "The meeting »%s« with %s was updated." : "会議 »%s« %sが更新されました。", "%s invited you to »%s«" : "%s があなたを »%s« に招待しました", - "CalDAV server" : "CalDAVサーバー" + "CalDAV server" : "CalDAVサーバー", + "Please make sure to properly set up the email settings above." : "上記のメール設定を正しく設定してください。" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/dav/l10n/ka_GE.js b/apps/dav/l10n/ka_GE.js index 0c52046af46..50bc2069eef 100644 --- a/apps/dav/l10n/ka_GE.js +++ b/apps/dav/l10n/ka_GE.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "დისტანციური მისამართი: %s", "Request ID: %s" : "მოთხოვნის ID: %s", "Send invitations to attendees" : "გაუგზავნეთ მოწვევა დამსწრეებს", - "Please make sure to properly set up the email settings above." : "გთხოვთ დაამოწმოთ, რომ სწორად აყენებთ ზემოთ მოცემულ ელ-ფოსტის პარამეტრებს.", "Automatically generate a birthday calendar" : "დაბადების დღეების კალენდრების ავტომატური გენერირება", "Birthday calendars will be generated by a background job." : "ბადადების დღეების კალენდრები გენერირებულ იქნება ფონურ რეჟიმში.", "Hence they will not be available immediately after enabling but will show up after some time." : "ისინი არ იქნებიან ხელმიწავდომნი უცბად, მაგრამ გამოჩნდებიან გარკვეული პერიოდის შემდეგ.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "შეხვედრა »%s« %s-სთან გაუქმდა.", "The meeting »%s« with %s was updated." : "შეხვედრა »%s« %s-სთან განახლდა.", "%s invited you to »%s«" : "%s-მ დაგპატიჟათ რომ »%s«", - "CalDAV server" : "CalDAV სერვერი" + "CalDAV server" : "CalDAV სერვერი", + "Please make sure to properly set up the email settings above." : "გთხოვთ დაამოწმოთ, რომ სწორად აყენებთ ზემოთ მოცემულ ელ-ფოსტის პარამეტრებს." }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/dav/l10n/ka_GE.json b/apps/dav/l10n/ka_GE.json index 3fe86fc4e8f..606ba1f1f4f 100644 --- a/apps/dav/l10n/ka_GE.json +++ b/apps/dav/l10n/ka_GE.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "დისტანციური მისამართი: %s", "Request ID: %s" : "მოთხოვნის ID: %s", "Send invitations to attendees" : "გაუგზავნეთ მოწვევა დამსწრეებს", - "Please make sure to properly set up the email settings above." : "გთხოვთ დაამოწმოთ, რომ სწორად აყენებთ ზემოთ მოცემულ ელ-ფოსტის პარამეტრებს.", "Automatically generate a birthday calendar" : "დაბადების დღეების კალენდრების ავტომატური გენერირება", "Birthday calendars will be generated by a background job." : "ბადადების დღეების კალენდრები გენერირებულ იქნება ფონურ რეჟიმში.", "Hence they will not be available immediately after enabling but will show up after some time." : "ისინი არ იქნებიან ხელმიწავდომნი უცბად, მაგრამ გამოჩნდებიან გარკვეული პერიოდის შემდეგ.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "შეხვედრა »%s« %s-სთან გაუქმდა.", "The meeting »%s« with %s was updated." : "შეხვედრა »%s« %s-სთან განახლდა.", "%s invited you to »%s«" : "%s-მ დაგპატიჟათ რომ »%s«", - "CalDAV server" : "CalDAV სერვერი" + "CalDAV server" : "CalDAV სერვერი", + "Please make sure to properly set up the email settings above." : "გთხოვთ დაამოწმოთ, რომ სწორად აყენებთ ზემოთ მოცემულ ელ-ფოსტის პარამეტრებს." },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/ko.js b/apps/dav/l10n/ko.js index fc21e2f337f..382d1b503e1 100644 --- a/apps/dav/l10n/ko.js +++ b/apps/dav/l10n/ko.js @@ -62,7 +62,6 @@ OC.L10N.register( "Tentative" : "예정됨", "Save" : "저장", "Send invitations to attendees" : "참석자에게 초대장 보내기", - "Please make sure to properly set up the email settings above." : "이메일 설정이 올바른지 확인하십시오.", "Automatically generate a birthday calendar" : "자동으로 생일 달력 생성", "Birthday calendars will be generated by a background job." : "배경 작업으로 생일 달력을 생성합니다.", "Hence they will not be available immediately after enabling but will show up after some time." : "생일 달력이 생성되는 데 시간이 걸릴 수도 있습니다.", @@ -70,6 +69,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "\"%s\" 행사(%s 님이 진행함)가 취소되었습니다.", "The meeting »%s« with %s was updated." : "\"%s\" 행사(%s 님이 진행함)가 업데이트되었습니다.", "%s invited you to »%s«" : "%s 님이 \"%s\"에 초대함", - "CalDAV server" : "CalDAV 서버" + "CalDAV server" : "CalDAV 서버", + "Please make sure to properly set up the email settings above." : "이메일 설정이 올바른지 확인하십시오." }, "nplurals=1; plural=0;"); diff --git a/apps/dav/l10n/ko.json b/apps/dav/l10n/ko.json index 3735d14e1a2..7b15ea6cf12 100644 --- a/apps/dav/l10n/ko.json +++ b/apps/dav/l10n/ko.json @@ -60,7 +60,6 @@ "Tentative" : "예정됨", "Save" : "저장", "Send invitations to attendees" : "참석자에게 초대장 보내기", - "Please make sure to properly set up the email settings above." : "이메일 설정이 올바른지 확인하십시오.", "Automatically generate a birthday calendar" : "자동으로 생일 달력 생성", "Birthday calendars will be generated by a background job." : "배경 작업으로 생일 달력을 생성합니다.", "Hence they will not be available immediately after enabling but will show up after some time." : "생일 달력이 생성되는 데 시간이 걸릴 수도 있습니다.", @@ -68,6 +67,7 @@ "The meeting »%s« with %s was canceled." : "\"%s\" 행사(%s 님이 진행함)가 취소되었습니다.", "The meeting »%s« with %s was updated." : "\"%s\" 행사(%s 님이 진행함)가 업데이트되었습니다.", "%s invited you to »%s«" : "%s 님이 \"%s\"에 초대함", - "CalDAV server" : "CalDAV 서버" + "CalDAV server" : "CalDAV 서버", + "Please make sure to properly set up the email settings above." : "이메일 설정이 올바른지 확인하십시오." },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/dav/l10n/lt_LT.js b/apps/dav/l10n/lt_LT.js index b3b28283176..159ebcd635f 100644 --- a/apps/dav/l10n/lt_LT.js +++ b/apps/dav/l10n/lt_LT.js @@ -40,7 +40,7 @@ OC.L10N.register( "A <strong>calendar</strong> was modified" : "<strong>Kalendorius</strong> buvo pakeistas", "A calendar <strong>event</strong> was modified" : "Kalendoriaus <strong>įvykis</strong> buvo pakeistas", "A calendar <strong>todo</strong> was modified" : "Kalendoriaus <strong>užduotis</strong> buvo pakeista", - "Contact birthdays" : "Kontaktų gimtadieniai", + "Contact birthdays" : "Adresatų gimtadieniai", "%1$s via %2$s" : "%1$s per %2$s", "Hello %s," : "Sveiki, %s,", "Invitation updated" : "Pakvietimas atnaujintas", @@ -52,7 +52,7 @@ OC.L10N.register( "Accept" : "Priimti", "Decline" : "Atmesti", "More options …" : "Daugiau parinkčių …", - "Contacts" : "Kontaktai", + "Contacts" : "Adresatai", "WebDAV" : "WebDAV", "Technical details" : "Techninė informacija", "Remote Address: %s" : "Nuotolinis adresas: %s", diff --git a/apps/dav/l10n/lt_LT.json b/apps/dav/l10n/lt_LT.json index 716f658725e..fd4f701e080 100644 --- a/apps/dav/l10n/lt_LT.json +++ b/apps/dav/l10n/lt_LT.json @@ -38,7 +38,7 @@ "A <strong>calendar</strong> was modified" : "<strong>Kalendorius</strong> buvo pakeistas", "A calendar <strong>event</strong> was modified" : "Kalendoriaus <strong>įvykis</strong> buvo pakeistas", "A calendar <strong>todo</strong> was modified" : "Kalendoriaus <strong>užduotis</strong> buvo pakeista", - "Contact birthdays" : "Kontaktų gimtadieniai", + "Contact birthdays" : "Adresatų gimtadieniai", "%1$s via %2$s" : "%1$s per %2$s", "Hello %s," : "Sveiki, %s,", "Invitation updated" : "Pakvietimas atnaujintas", @@ -50,7 +50,7 @@ "Accept" : "Priimti", "Decline" : "Atmesti", "More options …" : "Daugiau parinkčių …", - "Contacts" : "Kontaktai", + "Contacts" : "Adresatai", "WebDAV" : "WebDAV", "Technical details" : "Techninė informacija", "Remote Address: %s" : "Nuotolinis adresas: %s", diff --git a/apps/dav/l10n/nb.js b/apps/dav/l10n/nb.js index a837f33baed..52eba705970 100644 --- a/apps/dav/l10n/nb.js +++ b/apps/dav/l10n/nb.js @@ -56,7 +56,6 @@ OC.L10N.register( "Remote Address: %s" : "Ekstern adresse: %s", "Request ID: %s" : "Forespørsel ID: %s", "Send invitations to attendees" : "Send invitasjoner til oppmøtte", - "Please make sure to properly set up the email settings above." : "Sett opp e-postinnstillingene ovenfor på riktig måte.", "Automatically generate a birthday calendar" : "Lag fødelsdagskalender automatisk", "Birthday calendars will be generated by a background job." : "Fødselsdagskalender lages automatisk av en bakgrunnsjobb.", "Hence they will not be available immediately after enabling but will show up after some time." : "Derav vil de ikke være tilgjengelige umiddelbart etter at du har skrudd dem på, men vil vises etter en stund.", @@ -64,6 +63,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Møtet \"%s\" med %s ble kansellert.", "The meeting »%s« with %s was updated." : "Møtet med \"%s\" med %s ble oppdatert.", "%s invited you to »%s«" : "%s inviterte deg til \"%s\"", - "CalDAV server" : "DalDAV-tjener" + "CalDAV server" : "DalDAV-tjener", + "Please make sure to properly set up the email settings above." : "Sett opp e-postinnstillingene ovenfor på riktig måte." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/nb.json b/apps/dav/l10n/nb.json index afb178304b7..77ead4a2b69 100644 --- a/apps/dav/l10n/nb.json +++ b/apps/dav/l10n/nb.json @@ -54,7 +54,6 @@ "Remote Address: %s" : "Ekstern adresse: %s", "Request ID: %s" : "Forespørsel ID: %s", "Send invitations to attendees" : "Send invitasjoner til oppmøtte", - "Please make sure to properly set up the email settings above." : "Sett opp e-postinnstillingene ovenfor på riktig måte.", "Automatically generate a birthday calendar" : "Lag fødelsdagskalender automatisk", "Birthday calendars will be generated by a background job." : "Fødselsdagskalender lages automatisk av en bakgrunnsjobb.", "Hence they will not be available immediately after enabling but will show up after some time." : "Derav vil de ikke være tilgjengelige umiddelbart etter at du har skrudd dem på, men vil vises etter en stund.", @@ -62,6 +61,7 @@ "The meeting »%s« with %s was canceled." : "Møtet \"%s\" med %s ble kansellert.", "The meeting »%s« with %s was updated." : "Møtet med \"%s\" med %s ble oppdatert.", "%s invited you to »%s«" : "%s inviterte deg til \"%s\"", - "CalDAV server" : "DalDAV-tjener" + "CalDAV server" : "DalDAV-tjener", + "Please make sure to properly set up the email settings above." : "Sett opp e-postinnstillingene ovenfor på riktig måte." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/nl.js b/apps/dav/l10n/nl.js index 91df26e7acc..0c9a1c496a0 100644 --- a/apps/dav/l10n/nl.js +++ b/apps/dav/l10n/nl.js @@ -29,6 +29,7 @@ OC.L10N.register( "You deleted event {event} from calendar {calendar}" : "Je verwijderde afspraak {event} uit agenda {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} heeft afspraak {event} in agenda {calendar} bijgewerkt", "You updated event {event} in calendar {calendar}" : "Je hebt afspraak {event} in agenda {calendar} bijgewerkt", + "Busy" : "Bezig", "{actor} created todo {todo} in list {calendar}" : "{actor} creëerde taak {todo} in lijst {calendar}", "You created todo {todo} in list {calendar}" : "Jij creëerde taak {todo} in lijst {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} heeft de taak {todo} uit lijst {calendar} verwijderd", @@ -59,6 +60,9 @@ OC.L10N.register( "More options …" : "Meer opties …", "More options at %s" : "Meer opties op %s", "Contacts" : "Contactpersonen", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Je %s moet worden geconfigureerd voor gebruik van HTTPS om CalDAV en CardDAV met iOS/macOS te kunnen gebruiken.", + "Configures a CalDAV account" : "Configureert een CalDAV account", + "Configures a CardDAV account" : "Configureert een CardDAV account", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV eindpunt", "Technical details" : "Technische details", @@ -71,8 +75,9 @@ OC.L10N.register( "Save" : "Opslaan", "Your attendance was updated successfully." : "Je deelname is succesvol bijgewerkt.", "Calendar server" : "Agendaserver", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installeer ook de {calendarappstoreopen}Agenda app{linkclose}, of {calendardocopen}verbind je desktop & mobiel voor synchronisatie ↗{linkclose}.", "Send invitations to attendees" : "Verzend uitnodigingen naar deelnemers", - "Please make sure to properly set up the email settings above." : "Zorg ervoor dat je de bovenstaande e-mailinstellingen correct instelt.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Zorg ervoor dat je de {emailopen}de e-mailserver{linkclose} correct instelt.", "Automatically generate a birthday calendar" : "Genereer verjaardagskalender automatisch", "Birthday calendars will be generated by a background job." : "Verjaardagkalenders zullen worden gegenereerd in een achtergrond taak.", "Hence they will not be available immediately after enabling but will show up after some time." : "Hierdoor zullen ze niet meteen beschikbaar zijn na het inschakelen maar zullen na een tijdje verschijnen.", @@ -80,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "De vergadering »%s« met %s is geannuleerd.", "The meeting »%s« with %s was updated." : "De vergadering »%s« met %s is bijgewerkt.", "%s invited you to »%s«" : "%s heeft je uitgenodigd voor »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Zorg ervoor dat je de bovenstaande e-mailinstellingen correct instelt." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/nl.json b/apps/dav/l10n/nl.json index edc8640ab1c..c8165129f41 100644 --- a/apps/dav/l10n/nl.json +++ b/apps/dav/l10n/nl.json @@ -27,6 +27,7 @@ "You deleted event {event} from calendar {calendar}" : "Je verwijderde afspraak {event} uit agenda {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} heeft afspraak {event} in agenda {calendar} bijgewerkt", "You updated event {event} in calendar {calendar}" : "Je hebt afspraak {event} in agenda {calendar} bijgewerkt", + "Busy" : "Bezig", "{actor} created todo {todo} in list {calendar}" : "{actor} creëerde taak {todo} in lijst {calendar}", "You created todo {todo} in list {calendar}" : "Jij creëerde taak {todo} in lijst {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} heeft de taak {todo} uit lijst {calendar} verwijderd", @@ -57,6 +58,9 @@ "More options …" : "Meer opties …", "More options at %s" : "Meer opties op %s", "Contacts" : "Contactpersonen", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Je %s moet worden geconfigureerd voor gebruik van HTTPS om CalDAV en CardDAV met iOS/macOS te kunnen gebruiken.", + "Configures a CalDAV account" : "Configureert een CalDAV account", + "Configures a CardDAV account" : "Configureert een CardDAV account", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV eindpunt", "Technical details" : "Technische details", @@ -69,8 +73,9 @@ "Save" : "Opslaan", "Your attendance was updated successfully." : "Je deelname is succesvol bijgewerkt.", "Calendar server" : "Agendaserver", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installeer ook de {calendarappstoreopen}Agenda app{linkclose}, of {calendardocopen}verbind je desktop & mobiel voor synchronisatie ↗{linkclose}.", "Send invitations to attendees" : "Verzend uitnodigingen naar deelnemers", - "Please make sure to properly set up the email settings above." : "Zorg ervoor dat je de bovenstaande e-mailinstellingen correct instelt.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Zorg ervoor dat je de {emailopen}de e-mailserver{linkclose} correct instelt.", "Automatically generate a birthday calendar" : "Genereer verjaardagskalender automatisch", "Birthday calendars will be generated by a background job." : "Verjaardagkalenders zullen worden gegenereerd in een achtergrond taak.", "Hence they will not be available immediately after enabling but will show up after some time." : "Hierdoor zullen ze niet meteen beschikbaar zijn na het inschakelen maar zullen na een tijdje verschijnen.", @@ -78,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "De vergadering »%s« met %s is geannuleerd.", "The meeting »%s« with %s was updated." : "De vergadering »%s« met %s is bijgewerkt.", "%s invited you to »%s«" : "%s heeft je uitgenodigd voor »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Zorg ervoor dat je de bovenstaande e-mailinstellingen correct instelt." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/pl.js b/apps/dav/l10n/pl.js index 6b77d8e920f..cbe0cdc40a9 100644 --- a/apps/dav/l10n/pl.js +++ b/apps/dav/l10n/pl.js @@ -29,6 +29,7 @@ OC.L10N.register( "You deleted event {event} from calendar {calendar}" : "Usunąłeś/-aś wydarzenie {event} z kalendarza {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} zaktualizował/-a wydarzenie {event} z kalendarza {calendar}", "You updated event {event} in calendar {calendar}" : "Zaktualizowałeś/-aś wydarzenie {event} w kalendarzu {calendar}", + "Busy" : "Czekaj", "{actor} created todo {todo} in list {calendar}" : "{actor} utworzył/-a zadanie {todo} na liście {calendar}", "You created todo {todo} in list {calendar}" : "Utworzyłeś/-aś zadanie {todo} na liście {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} usunął/-ęła zadanie {todo} z listy {calendar}", @@ -43,9 +44,13 @@ OC.L10N.register( "A calendar <strong>event</strong> was modified" : "<strong>Zdarzenie</strong> kalendarza zostało zmodyfikowane", "A calendar <strong>todo</strong> was modified" : "Kalendarz <strong>zadań</strong> został zmieniony", "Contact birthdays" : "Urodziny kontaktu", + "%1$s via %2$s" : "%1$s przez %2$s", "Invitation canceled" : "Zaproszenie anulowane", "Hello %s," : "Witaj %s,", + "The meeting »%1$s« with %2$s was canceled." : "Spotkanie »%1$s« z %2$s zostało anulowane.", "Invitation updated" : "Zaproszenie zaktualizowane", + "The meeting »%1$s« with %2$s was updated." : "Spotkanie »%1$s« z %2$s zostało zaktualizowane.", + "%1$s invited you to »%2$s«" : "%1$s zaprosił cię do »%2$s«", "When:" : "Kiedy:", "Where:" : "Gdzie: ", "Description:" : "Opis:", @@ -55,6 +60,9 @@ OC.L10N.register( "More options …" : "Więcej opcji...", "More options at %s" : "Więcej opcji na %s", "Contacts" : "Kontakty", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "%s musisz używać protokołu HTTPS aby móc korzystać z CalDAV i CardDAV w systemach iOS/macOS.", + "Configures a CalDAV account" : "Konfiguruje konto CalDAV", + "Configures a CardDAV account" : "Konfiguruje konto CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Adres WebDAV", "Technical details" : "Szczegóły techniczne", @@ -67,8 +75,9 @@ OC.L10N.register( "Save" : "Zapisz", "Your attendance was updated successfully." : "Twoja obecność została zmieniona.", "Calendar server" : "Serwer kalendarzy", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Zainstaluj także {calendarappstoreopen}Kalendarz{linkclose}, lub {calendardocopen}podłącz swój komputer & telefon aby synchronizować dane ↗{linkclose}.", "Send invitations to attendees" : "Wyślij uczestnikom zaproszenia", - "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Upewnij się, że poprawnie skonfigurowałeś {emailopen}serwer pocztowy{linkclose}.", "Automatically generate a birthday calendar" : "Automatycznie generuj kalendarz urodzin", "Birthday calendars will be generated by a background job." : "Kalendarz urodzin będzie generowany przez zadanie w tle.", "Hence they will not be available immediately after enabling but will show up after some time." : "W związku z tym, nie będą one widoczne bezpośrednio po włączeniu, ale pojawią się po jakimś czasie.", @@ -76,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Spotkanie »%s« z %s zostało anulowane.", "The meeting »%s« with %s was updated." : "Spotkanie »%s« z %s zostało zaktualizowane.", "%s invited you to »%s«" : "%s zaprosił Cię do »%s«", - "CalDAV server" : "Serwer CalDAV" + "CalDAV server" : "Serwer CalDAV", + "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail." }, "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);"); diff --git a/apps/dav/l10n/pl.json b/apps/dav/l10n/pl.json index 5dbb52431ef..797c04f7bf8 100644 --- a/apps/dav/l10n/pl.json +++ b/apps/dav/l10n/pl.json @@ -27,6 +27,7 @@ "You deleted event {event} from calendar {calendar}" : "Usunąłeś/-aś wydarzenie {event} z kalendarza {calendar}", "{actor} updated event {event} in calendar {calendar}" : "{actor} zaktualizował/-a wydarzenie {event} z kalendarza {calendar}", "You updated event {event} in calendar {calendar}" : "Zaktualizowałeś/-aś wydarzenie {event} w kalendarzu {calendar}", + "Busy" : "Czekaj", "{actor} created todo {todo} in list {calendar}" : "{actor} utworzył/-a zadanie {todo} na liście {calendar}", "You created todo {todo} in list {calendar}" : "Utworzyłeś/-aś zadanie {todo} na liście {calendar}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} usunął/-ęła zadanie {todo} z listy {calendar}", @@ -41,9 +42,13 @@ "A calendar <strong>event</strong> was modified" : "<strong>Zdarzenie</strong> kalendarza zostało zmodyfikowane", "A calendar <strong>todo</strong> was modified" : "Kalendarz <strong>zadań</strong> został zmieniony", "Contact birthdays" : "Urodziny kontaktu", + "%1$s via %2$s" : "%1$s przez %2$s", "Invitation canceled" : "Zaproszenie anulowane", "Hello %s," : "Witaj %s,", + "The meeting »%1$s« with %2$s was canceled." : "Spotkanie »%1$s« z %2$s zostało anulowane.", "Invitation updated" : "Zaproszenie zaktualizowane", + "The meeting »%1$s« with %2$s was updated." : "Spotkanie »%1$s« z %2$s zostało zaktualizowane.", + "%1$s invited you to »%2$s«" : "%1$s zaprosił cię do »%2$s«", "When:" : "Kiedy:", "Where:" : "Gdzie: ", "Description:" : "Opis:", @@ -53,6 +58,9 @@ "More options …" : "Więcej opcji...", "More options at %s" : "Więcej opcji na %s", "Contacts" : "Kontakty", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "%s musisz używać protokołu HTTPS aby móc korzystać z CalDAV i CardDAV w systemach iOS/macOS.", + "Configures a CalDAV account" : "Konfiguruje konto CalDAV", + "Configures a CardDAV account" : "Konfiguruje konto CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Adres WebDAV", "Technical details" : "Szczegóły techniczne", @@ -65,8 +73,9 @@ "Save" : "Zapisz", "Your attendance was updated successfully." : "Twoja obecność została zmieniona.", "Calendar server" : "Serwer kalendarzy", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Zainstaluj także {calendarappstoreopen}Kalendarz{linkclose}, lub {calendardocopen}podłącz swój komputer & telefon aby synchronizować dane ↗{linkclose}.", "Send invitations to attendees" : "Wyślij uczestnikom zaproszenia", - "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Upewnij się, że poprawnie skonfigurowałeś {emailopen}serwer pocztowy{linkclose}.", "Automatically generate a birthday calendar" : "Automatycznie generuj kalendarz urodzin", "Birthday calendars will be generated by a background job." : "Kalendarz urodzin będzie generowany przez zadanie w tle.", "Hence they will not be available immediately after enabling but will show up after some time." : "W związku z tym, nie będą one widoczne bezpośrednio po włączeniu, ale pojawią się po jakimś czasie.", @@ -74,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Spotkanie »%s« z %s zostało anulowane.", "The meeting »%s« with %s was updated." : "Spotkanie »%s« z %s zostało zaktualizowane.", "%s invited you to »%s«" : "%s zaprosił Cię do »%s«", - "CalDAV server" : "Serwer CalDAV" + "CalDAV server" : "Serwer CalDAV", + "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail." },"pluralForm" :"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);" }
\ No newline at end of file diff --git a/apps/dav/l10n/pt_BR.js b/apps/dav/l10n/pt_BR.js index 703a882fdad..55d106e533a 100644 --- a/apps/dav/l10n/pt_BR.js +++ b/apps/dav/l10n/pt_BR.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Mais opções...", "More options at %s" : "Mais opções em %s", "Contacts" : "Contatos", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Seu %s precisa estar configurado para usar HTTPS a fim de usar o CalDAV e o CardDAV com o iOS/macOS.", + "Configures a CalDAV account" : "Configure uma conta CalDAV", + "Configures a CardDAV account" : "Configure uma conta CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Endpoint WebDAV", "Technical details" : "Detalhes técnicos", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Salvar", "Your attendance was updated successfully." : "Sua participação foi atualizada com sucesso.", "Calendar server" : "Servidor de calendário", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Instale também o {calendarappstoreopen}aplicativo de calendário{linkclose} ou {calendardocopen}conecte sua área de trabalho e celular à sincronização ↗{linkclose}.", "Send invitations to attendees" : "Envie convites aos participantes", - "Please make sure to properly set up the email settings above." : "Certifique-se de configurar corretamente o e-mail acima.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Certifique-se de configurar corretamente {emailopen}o servidor de e-mail{linkclose}.", "Automatically generate a birthday calendar" : "Gerar um calendário de aniversários automaticamente", "Birthday calendars will be generated by a background job." : "Os calendários de aniversários serão gerados na retaguarda.", "Hence they will not be available immediately after enabling but will show up after some time." : "Portanto, eles não estarão disponíveis imediatamente ao ativar mas após algum tempo.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "A reunião »%s« com %s foi cancelada.", "The meeting »%s« with %s was updated." : "A reunião »%s« com %s foi atualizada..", "%s invited you to »%s«" : "%s convidou você para »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Certifique-se de configurar corretamente o e-mail acima." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/dav/l10n/pt_BR.json b/apps/dav/l10n/pt_BR.json index 185a575d350..d4cb6faaa06 100644 --- a/apps/dav/l10n/pt_BR.json +++ b/apps/dav/l10n/pt_BR.json @@ -58,6 +58,9 @@ "More options …" : "Mais opções...", "More options at %s" : "Mais opções em %s", "Contacts" : "Contatos", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Seu %s precisa estar configurado para usar HTTPS a fim de usar o CalDAV e o CardDAV com o iOS/macOS.", + "Configures a CalDAV account" : "Configure uma conta CalDAV", + "Configures a CardDAV account" : "Configure uma conta CardDAV", "WebDAV" : "WebDAV", "WebDAV endpoint" : "Endpoint WebDAV", "Technical details" : "Detalhes técnicos", @@ -70,8 +73,9 @@ "Save" : "Salvar", "Your attendance was updated successfully." : "Sua participação foi atualizada com sucesso.", "Calendar server" : "Servidor de calendário", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Instale também o {calendarappstoreopen}aplicativo de calendário{linkclose} ou {calendardocopen}conecte sua área de trabalho e celular à sincronização ↗{linkclose}.", "Send invitations to attendees" : "Envie convites aos participantes", - "Please make sure to properly set up the email settings above." : "Certifique-se de configurar corretamente o e-mail acima.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Certifique-se de configurar corretamente {emailopen}o servidor de e-mail{linkclose}.", "Automatically generate a birthday calendar" : "Gerar um calendário de aniversários automaticamente", "Birthday calendars will be generated by a background job." : "Os calendários de aniversários serão gerados na retaguarda.", "Hence they will not be available immediately after enabling but will show up after some time." : "Portanto, eles não estarão disponíveis imediatamente ao ativar mas após algum tempo.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "A reunião »%s« com %s foi cancelada.", "The meeting »%s« with %s was updated." : "A reunião »%s« com %s foi atualizada..", "%s invited you to »%s«" : "%s convidou você para »%s«", - "CalDAV server" : "Servidor CalDAV" + "CalDAV server" : "Servidor CalDAV", + "Please make sure to properly set up the email settings above." : "Certifique-se de configurar corretamente o e-mail acima." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/ru.js b/apps/dav/l10n/ru.js index af15a91ff99..7be6261a30a 100644 --- a/apps/dav/l10n/ru.js +++ b/apps/dav/l10n/ru.js @@ -72,7 +72,6 @@ OC.L10N.register( "Your attendance was updated successfully." : "Статус участия обновлён.", "Calendar server" : "Сервер календаря", "Send invitations to attendees" : "Отправить приглашения", - "Please make sure to properly set up the email settings above." : "Проверьте правильность заданных выше параметров электронной почты.", "Automatically generate a birthday calendar" : "Создавать календарь дней рождения автоматически", "Birthday calendars will be generated by a background job." : "Календари дней рождения будут создаваться фоновым процессом.", "Hence they will not be available immediately after enabling but will show up after some time." : "И поэтому они станут доступны не моментально, а через некоторое время.", @@ -80,6 +79,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Встреча «%s» с %s отменена.", "The meeting »%s« with %s was updated." : "Встреча «%s» с %s обновлена.", "%s invited you to »%s«" : "%s пригласил(а) Вас на «%s»", - "CalDAV server" : "CalDAV сервер" + "CalDAV server" : "CalDAV сервер", + "Please make sure to properly set up the email settings above." : "Проверьте правильность заданных выше параметров электронной почты." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/dav/l10n/ru.json b/apps/dav/l10n/ru.json index 8c425f1c661..a3a82535054 100644 --- a/apps/dav/l10n/ru.json +++ b/apps/dav/l10n/ru.json @@ -70,7 +70,6 @@ "Your attendance was updated successfully." : "Статус участия обновлён.", "Calendar server" : "Сервер календаря", "Send invitations to attendees" : "Отправить приглашения", - "Please make sure to properly set up the email settings above." : "Проверьте правильность заданных выше параметров электронной почты.", "Automatically generate a birthday calendar" : "Создавать календарь дней рождения автоматически", "Birthday calendars will be generated by a background job." : "Календари дней рождения будут создаваться фоновым процессом.", "Hence they will not be available immediately after enabling but will show up after some time." : "И поэтому они станут доступны не моментально, а через некоторое время.", @@ -78,6 +77,7 @@ "The meeting »%s« with %s was canceled." : "Встреча «%s» с %s отменена.", "The meeting »%s« with %s was updated." : "Встреча «%s» с %s обновлена.", "%s invited you to »%s«" : "%s пригласил(а) Вас на «%s»", - "CalDAV server" : "CalDAV сервер" + "CalDAV server" : "CalDAV сервер", + "Please make sure to properly set up the email settings above." : "Проверьте правильность заданных выше параметров электронной почты." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" }
\ No newline at end of file diff --git a/apps/dav/l10n/sk.js b/apps/dav/l10n/sk.js index 6273342e9ed..ee98f886880 100644 --- a/apps/dav/l10n/sk.js +++ b/apps/dav/l10n/sk.js @@ -72,7 +72,6 @@ OC.L10N.register( "Your attendance was updated successfully." : "Vaša účasť bola aktualizovaná úspešne.", "Calendar server" : "Kalendárový server", "Send invitations to attendees" : "Odoslanie pozvánok účastníkom", - "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu.", "Automatically generate a birthday calendar" : "Automaticky generovať narodeninový kalendár", "Birthday calendars will be generated by a background job." : "Narodeninové kalendáre budú generované úlohou na pozadí.", "Hence they will not be available immediately after enabling but will show up after some time." : "Preto nebudú dostupné hneď po povolení, ale zobrazia sa po určitom čase", @@ -80,6 +79,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Stretnutie »%s« s %s bolo zrušené.", "The meeting »%s« with %s was updated." : "Stretnutie »%s« s %s bolo aktualizované.", "%s invited you to »%s«" : "%s vám poslal pozvánku na »%s«", - "CalDAV server" : "Server CalDAV" + "CalDAV server" : "Server CalDAV", + "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu." }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/dav/l10n/sk.json b/apps/dav/l10n/sk.json index 66ddcd6ee55..bbe168f7bea 100644 --- a/apps/dav/l10n/sk.json +++ b/apps/dav/l10n/sk.json @@ -70,7 +70,6 @@ "Your attendance was updated successfully." : "Vaša účasť bola aktualizovaná úspešne.", "Calendar server" : "Kalendárový server", "Send invitations to attendees" : "Odoslanie pozvánok účastníkom", - "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu.", "Automatically generate a birthday calendar" : "Automaticky generovať narodeninový kalendár", "Birthday calendars will be generated by a background job." : "Narodeninové kalendáre budú generované úlohou na pozadí.", "Hence they will not be available immediately after enabling but will show up after some time." : "Preto nebudú dostupné hneď po povolení, ale zobrazia sa po určitom čase", @@ -78,6 +77,7 @@ "The meeting »%s« with %s was canceled." : "Stretnutie »%s« s %s bolo zrušené.", "The meeting »%s« with %s was updated." : "Stretnutie »%s« s %s bolo aktualizované.", "%s invited you to »%s«" : "%s vám poslal pozvánku na »%s«", - "CalDAV server" : "Server CalDAV" + "CalDAV server" : "Server CalDAV", + "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu." },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/dav/l10n/sr.js b/apps/dav/l10n/sr.js index 1d58d4eadd7..2c79667c880 100644 --- a/apps/dav/l10n/sr.js +++ b/apps/dav/l10n/sr.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Још опција…", "More options at %s" : "Још опција на %s", "Contacts" : "Контакти", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "%s мора да буде подешен да користи HTTPS да бисте користи CalDAV и CardDAV са iOS/macOS-ом.", + "Configures a CalDAV account" : "Подешава CalDAV налог", + "Configures a CardDAV account" : "Подешава CardDAV налог", "WebDAV" : "ВебДАВ", "WebDAV endpoint" : "WebDAV крајња тачка", "Technical details" : "Технички детаљи", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Сачувај", "Your attendance was updated successfully." : "Ваше присуство је успешно ажурирано.", "Calendar server" : "Календар сервера", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Такође инсталирајте {calendarappstoreopen}Календар апликацију{linkclose}, или {calendardocopen}повежите Ваш рачунар & мобилни за синхронизацију ↗{linkclose}.", "Send invitations to attendees" : "Пошаљи позивницу учесницима", - "Please make sure to properly set up the email settings above." : "Пазите да правилно подесите поставке е-поште изнад.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Постарајте се да правилно подесите {emailopen}сервер е-поште{linkclose}.", "Automatically generate a birthday calendar" : "Аутоматски изгенериши календар рођендана", "Birthday calendars will be generated by a background job." : "Календари рођендана ће бити генерисани као позадински послови.", "Hence they will not be available immediately after enabling but will show up after some time." : "Зато можда неће бити видљиви баш одмах по укључивању, али ће се појавити после неког времена.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Састанак „%s“ са %s је отказан.", "The meeting »%s« with %s was updated." : "Састанак „%s“ са %s је ажуриран.", "%s invited you to »%s«" : "%s Вас је позвао на „%s“", - "CalDAV server" : "CalDAV сервер" + "CalDAV server" : "CalDAV сервер", + "Please make sure to properly set up the email settings above." : "Пазите да правилно подесите поставке е-поште изнад." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/dav/l10n/sr.json b/apps/dav/l10n/sr.json index f8846e651e6..2101fcc1262 100644 --- a/apps/dav/l10n/sr.json +++ b/apps/dav/l10n/sr.json @@ -58,6 +58,9 @@ "More options …" : "Још опција…", "More options at %s" : "Још опција на %s", "Contacts" : "Контакти", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "%s мора да буде подешен да користи HTTPS да бисте користи CalDAV и CardDAV са iOS/macOS-ом.", + "Configures a CalDAV account" : "Подешава CalDAV налог", + "Configures a CardDAV account" : "Подешава CardDAV налог", "WebDAV" : "ВебДАВ", "WebDAV endpoint" : "WebDAV крајња тачка", "Technical details" : "Технички детаљи", @@ -70,8 +73,9 @@ "Save" : "Сачувај", "Your attendance was updated successfully." : "Ваше присуство је успешно ажурирано.", "Calendar server" : "Календар сервера", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Такође инсталирајте {calendarappstoreopen}Календар апликацију{linkclose}, или {calendardocopen}повежите Ваш рачунар & мобилни за синхронизацију ↗{linkclose}.", "Send invitations to attendees" : "Пошаљи позивницу учесницима", - "Please make sure to properly set up the email settings above." : "Пазите да правилно подесите поставке е-поште изнад.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Постарајте се да правилно подесите {emailopen}сервер е-поште{linkclose}.", "Automatically generate a birthday calendar" : "Аутоматски изгенериши календар рођендана", "Birthday calendars will be generated by a background job." : "Календари рођендана ће бити генерисани као позадински послови.", "Hence they will not be available immediately after enabling but will show up after some time." : "Зато можда неће бити видљиви баш одмах по укључивању, али ће се појавити после неког времена.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Састанак „%s“ са %s је отказан.", "The meeting »%s« with %s was updated." : "Састанак „%s“ са %s је ажуриран.", "%s invited you to »%s«" : "%s Вас је позвао на „%s“", - "CalDAV server" : "CalDAV сервер" + "CalDAV server" : "CalDAV сервер", + "Please make sure to properly set up the email settings above." : "Пазите да правилно подесите поставке е-поште изнад." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/dav/l10n/sv.js b/apps/dav/l10n/sv.js index fb33a589b58..27244586fb2 100644 --- a/apps/dav/l10n/sv.js +++ b/apps/dav/l10n/sv.js @@ -60,6 +60,9 @@ OC.L10N.register( "More options …" : "Fler alternativ ...", "More options at %s" : "Fler alternativ på %s", "Contacts" : "Kontakter", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Din %s måste konfigureras att använda HTTPS för CalDAV och CardDAV med iOS/macOS.", + "Configures a CalDAV account" : "Konfigurerar ett CalDAV-konto", + "Configures a CardDAV account" : "Konfigurerar ett CardDAV-konto", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Tekniska detaljer", @@ -72,8 +75,9 @@ OC.L10N.register( "Save" : "Spara", "Your attendance was updated successfully." : "Dina närvaro uppdaterades.", "Calendar server" : "Kalenderserver", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installera även {calendarappstoreopen}Kalender-app{linkclose}, eller {calendardocopen}anslut din dator & mobil för synkronisering ↗{linkclose}.", "Send invitations to attendees" : "Skicka inbjudan till deltagare", - "Please make sure to properly set up the email settings above." : "Vänligen säkerställ att epost-inställningarna ovan är korrekt angivna", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Verifiera och säkerställ inställningar för {emailopen}e-postserver{linkclose}.", "Automatically generate a birthday calendar" : "Generera en födelsedagskalender automatiskt", "Birthday calendars will be generated by a background job." : "Födelsedagskalender kommer skapas som ett bakgrundsjobb.", "Hence they will not be available immediately after enabling but will show up after some time." : "Därför kommer de inte vara tillgängliga direkt efter aktivering men kommer dyka upp efter en tid.", @@ -81,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Mötet »%s« med%s avbröts.", "The meeting »%s« with %s was updated." : "Mötet »%s« med %s uppdaterades.", "%s invited you to »%s«" : "%s bjöd in dig till »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Vänligen säkerställ att epost-inställningarna ovan är korrekt angivna" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/sv.json b/apps/dav/l10n/sv.json index f84b42efddf..c141b15a9d4 100644 --- a/apps/dav/l10n/sv.json +++ b/apps/dav/l10n/sv.json @@ -58,6 +58,9 @@ "More options …" : "Fler alternativ ...", "More options at %s" : "Fler alternativ på %s", "Contacts" : "Kontakter", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "Din %s måste konfigureras att använda HTTPS för CalDAV och CardDAV med iOS/macOS.", + "Configures a CalDAV account" : "Konfigurerar ett CalDAV-konto", + "Configures a CardDAV account" : "Konfigurerar ett CardDAV-konto", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Tekniska detaljer", @@ -70,8 +73,9 @@ "Save" : "Spara", "Your attendance was updated successfully." : "Dina närvaro uppdaterades.", "Calendar server" : "Kalenderserver", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Installera även {calendarappstoreopen}Kalender-app{linkclose}, eller {calendardocopen}anslut din dator & mobil för synkronisering ↗{linkclose}.", "Send invitations to attendees" : "Skicka inbjudan till deltagare", - "Please make sure to properly set up the email settings above." : "Vänligen säkerställ att epost-inställningarna ovan är korrekt angivna", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Verifiera och säkerställ inställningar för {emailopen}e-postserver{linkclose}.", "Automatically generate a birthday calendar" : "Generera en födelsedagskalender automatiskt", "Birthday calendars will be generated by a background job." : "Födelsedagskalender kommer skapas som ett bakgrundsjobb.", "Hence they will not be available immediately after enabling but will show up after some time." : "Därför kommer de inte vara tillgängliga direkt efter aktivering men kommer dyka upp efter en tid.", @@ -79,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Mötet »%s« med%s avbröts.", "The meeting »%s« with %s was updated." : "Mötet »%s« med %s uppdaterades.", "%s invited you to »%s«" : "%s bjöd in dig till »%s«", - "CalDAV server" : "CalDAV server" + "CalDAV server" : "CalDAV server", + "Please make sure to properly set up the email settings above." : "Vänligen säkerställ att epost-inställningarna ovan är korrekt angivna" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/tr.js b/apps/dav/l10n/tr.js index 95ac4daf8d7..208453ca254 100644 --- a/apps/dav/l10n/tr.js +++ b/apps/dav/l10n/tr.js @@ -29,6 +29,7 @@ OC.L10N.register( "You deleted event {event} from calendar {calendar}" : "{calendar} takviminden {event} etkinliğini sildiniz", "{actor} updated event {event} in calendar {calendar}" : "{actor}, {calendar} takvimindeki {event} etkinliğini güncelledi", "You updated event {event} in calendar {calendar}" : "{calendar} takvimindeki {event} etkinliğini güncellediniz", + "Busy" : "Meşgul", "{actor} created todo {todo} in list {calendar}" : "{actor}, {calendar} takvimi listesine {todo} yapılacak işini ekledi", "You created todo {todo} in list {calendar}" : "{calendar} takvimi listesine {todo} yapılacak işini eklediniz", "{actor} deleted todo {todo} from list {calendar}" : "{actor}, {calendar} takvimi listesinden {todo} yapılacak işini sildi", @@ -59,6 +60,9 @@ OC.L10N.register( "More options …" : "Diğer seçenekler…", "More options at %s" : "%s üzerindeki diğer seçenekler", "Contacts" : "Kişiler", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "iOS/macOS üzerinde CalDAV ve CardDAV kullanabilmek için %s HTTPS kullanacak şekilde yapılandırılmalıdır.", + "Configures a CalDAV account" : "Bir CalDAV hesabı yapılandırır", + "Configures a CardDAV account" : "Bir CardDAV hesabı yapılandırır", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV Bağlantı Noktası", "Technical details" : "Teknik ayrıntılar", @@ -71,8 +75,9 @@ OC.L10N.register( "Save" : "Kaydet", "Your attendance was updated successfully." : "Katılımınız güncellendi.", "Calendar server" : "Takvim sunucusu", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Ayrıca {calendarappstoreopen}Takvim Uygulamasını{linkclose} kurun ya da {calendardocopen}bilgisayarınızı ya da taşınabilir aygıtınızı eşitlemek üzere bağlayın ↗{linkclose}.", "Send invitations to attendees" : "Katılımcılara çağrıları gönder", - "Please make sure to properly set up the email settings above." : "Lütfen yukarıdaki e-posta ayarlarını doğru olarak yaptığınızdan emin olun.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Lütfen {emailopen}e-posta sunucusunu{linkclose} doğru ayarladığınızdan emin olun.", "Automatically generate a birthday calendar" : "Doğum günü takvimi otomatik oluşturulsun", "Birthday calendars will be generated by a background job." : "Bu seçenek etkinleştirildiğinde, doğum günü takvimi arka plan görevi olarak oluşturulur.", "Hence they will not be available immediately after enabling but will show up after some time." : "Etkinleştirildikten hemen sonra görüntülenmez, bir süre sonra görüntülenir.", @@ -80,6 +85,7 @@ OC.L10N.register( "The meeting »%s« with %s was canceled." : "Bu »%s« görüşmesi %s ile yapılacakken iptal edildi.", "The meeting »%s« with %s was updated." : "Bu »%s« görüşmesi %s ile yapılacakken güncellendi.", "%s invited you to »%s«" : "%s sizi şu görüşmeye çağırdı »%s«", - "CalDAV server" : "CalDAV sunucusu" + "CalDAV server" : "CalDAV sunucusu", + "Please make sure to properly set up the email settings above." : "Lütfen yukarıdaki e-posta ayarlarını doğru olarak yaptığınızdan emin olun." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/dav/l10n/tr.json b/apps/dav/l10n/tr.json index 90fd06867fc..618c448f645 100644 --- a/apps/dav/l10n/tr.json +++ b/apps/dav/l10n/tr.json @@ -27,6 +27,7 @@ "You deleted event {event} from calendar {calendar}" : "{calendar} takviminden {event} etkinliğini sildiniz", "{actor} updated event {event} in calendar {calendar}" : "{actor}, {calendar} takvimindeki {event} etkinliğini güncelledi", "You updated event {event} in calendar {calendar}" : "{calendar} takvimindeki {event} etkinliğini güncellediniz", + "Busy" : "Meşgul", "{actor} created todo {todo} in list {calendar}" : "{actor}, {calendar} takvimi listesine {todo} yapılacak işini ekledi", "You created todo {todo} in list {calendar}" : "{calendar} takvimi listesine {todo} yapılacak işini eklediniz", "{actor} deleted todo {todo} from list {calendar}" : "{actor}, {calendar} takvimi listesinden {todo} yapılacak işini sildi", @@ -57,6 +58,9 @@ "More options …" : "Diğer seçenekler…", "More options at %s" : "%s üzerindeki diğer seçenekler", "Contacts" : "Kişiler", + "Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS." : "iOS/macOS üzerinde CalDAV ve CardDAV kullanabilmek için %s HTTPS kullanacak şekilde yapılandırılmalıdır.", + "Configures a CalDAV account" : "Bir CalDAV hesabı yapılandırır", + "Configures a CardDAV account" : "Bir CardDAV hesabı yapılandırır", "WebDAV" : "WebDAV", "WebDAV endpoint" : "WebDAV Bağlantı Noktası", "Technical details" : "Teknik ayrıntılar", @@ -69,8 +73,9 @@ "Save" : "Kaydet", "Your attendance was updated successfully." : "Katılımınız güncellendi.", "Calendar server" : "Takvim sunucusu", + "Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}." : "Ayrıca {calendarappstoreopen}Takvim Uygulamasını{linkclose} kurun ya da {calendardocopen}bilgisayarınızı ya da taşınabilir aygıtınızı eşitlemek üzere bağlayın ↗{linkclose}.", "Send invitations to attendees" : "Katılımcılara çağrıları gönder", - "Please make sure to properly set up the email settings above." : "Lütfen yukarıdaki e-posta ayarlarını doğru olarak yaptığınızdan emin olun.", + "Please make sure to properly set up {emailopen}the email server{linkclose}." : "Lütfen {emailopen}e-posta sunucusunu{linkclose} doğru ayarladığınızdan emin olun.", "Automatically generate a birthday calendar" : "Doğum günü takvimi otomatik oluşturulsun", "Birthday calendars will be generated by a background job." : "Bu seçenek etkinleştirildiğinde, doğum günü takvimi arka plan görevi olarak oluşturulur.", "Hence they will not be available immediately after enabling but will show up after some time." : "Etkinleştirildikten hemen sonra görüntülenmez, bir süre sonra görüntülenir.", @@ -78,6 +83,7 @@ "The meeting »%s« with %s was canceled." : "Bu »%s« görüşmesi %s ile yapılacakken iptal edildi.", "The meeting »%s« with %s was updated." : "Bu »%s« görüşmesi %s ile yapılacakken güncellendi.", "%s invited you to »%s«" : "%s sizi şu görüşmeye çağırdı »%s«", - "CalDAV server" : "CalDAV sunucusu" + "CalDAV server" : "CalDAV sunucusu", + "Please make sure to properly set up the email settings above." : "Lütfen yukarıdaki e-posta ayarlarını doğru olarak yaptığınızdan emin olun." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/dav/l10n/zh_CN.js b/apps/dav/l10n/zh_CN.js index 700db581385..01a6f181667 100644 --- a/apps/dav/l10n/zh_CN.js +++ b/apps/dav/l10n/zh_CN.js @@ -10,8 +10,8 @@ OC.L10N.register( "You deleted calendar {calendar}" : "您删除的日历 {calendar}", "{actor} updated calendar {calendar}" : "{actor} 更新了日历 {calendar}", "You updated calendar {calendar}" : "您更新了日历 {calendar}", - "You shared calendar {calendar} as public link" : "您已将日历{calendar}共享为公开链接", - "You removed public link for calendar {calendar}" : "您移除了日历{calendar}的公开链接", + "You shared calendar {calendar} as public link" : "您已将日历 {calendar} 共享为公开链接", + "You removed public link for calendar {calendar}" : "您移除了日历 {calendar} 的公开链接", "{actor} shared calendar {calendar} with you" : "{actor} 收到的日历共享 {calendar}", "You shared calendar {calendar} with {user}" : "您与 {user} 共享了日历 {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} 与 {user} 共享了日历 {calendar}", @@ -29,6 +29,7 @@ OC.L10N.register( "You deleted event {event} from calendar {calendar}" : "您在日历 {calendar} 中删除了事件 {event}", "{actor} updated event {event} in calendar {calendar}" : "{actor} 在日历 {calendar} 中更新了事件 {event}", "You updated event {event} in calendar {calendar}" : "您在日历 {calendar} 中更新了事件 {event}", + "Busy" : "忙碌", "{actor} created todo {todo} in list {calendar}" : "{actor} 在列表 {calendar} 中创建了待办事项 {todo}", "You created todo {todo} in list {calendar}" : "您在列表 {calendar} 中创建了待办事项 {todo}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} 在列表 {calendar} 中删除了待办事项 {todo}", @@ -44,18 +45,27 @@ OC.L10N.register( "A calendar <strong>todo</strong> was modified" : "列表中<strong>待办事项</strong>已经修改", "Contact birthdays" : "联系人生日", "Invitation canceled" : "邀请已取消", - "Hello %s," : "%s你好,", + "Hello %s," : "您好,%s,", "Invitation updated" : "邀请已更新", "When:" : "时间:", "Where:" : "地点:", "Description:" : "描述:", "Link:" : "链接:", + "Accept" : "接受", + "Decline" : "拒绝", + "More options …" : "更多选项", "Contacts" : "联系人", + "Configures a CalDAV account" : "设置一个 CalDAV 账户", + "Configures a CardDAV account" : "设置一个 CardDAV 账户", + "WebDAV" : "WebDAV", "Technical details" : "技术细节", - "Remote Address: %s" : "远程地址: %s", - "Request ID: %s" : "请求 ID: %s", + "Remote Address: %s" : "远程地址:%s", + "Request ID: %s" : "请求 ID:%s", + "Save" : "保存", + "Send invitations to attendees" : "向参与者发送邀请", "Automatically generate a birthday calendar" : "自动生成生日日历", "Birthday calendars will be generated by a background job." : "生日日历将由后台作业生成。", - "CalDAV server" : "日历服务" + "CalDAV server" : "日历服务", + "Please make sure to properly set up the email settings above." : "请确保正确设置上面的电子邮件设置。" }, "nplurals=1; plural=0;"); diff --git a/apps/dav/l10n/zh_CN.json b/apps/dav/l10n/zh_CN.json index 8493d72c541..1f2a8a0c413 100644 --- a/apps/dav/l10n/zh_CN.json +++ b/apps/dav/l10n/zh_CN.json @@ -8,8 +8,8 @@ "You deleted calendar {calendar}" : "您删除的日历 {calendar}", "{actor} updated calendar {calendar}" : "{actor} 更新了日历 {calendar}", "You updated calendar {calendar}" : "您更新了日历 {calendar}", - "You shared calendar {calendar} as public link" : "您已将日历{calendar}共享为公开链接", - "You removed public link for calendar {calendar}" : "您移除了日历{calendar}的公开链接", + "You shared calendar {calendar} as public link" : "您已将日历 {calendar} 共享为公开链接", + "You removed public link for calendar {calendar}" : "您移除了日历 {calendar} 的公开链接", "{actor} shared calendar {calendar} with you" : "{actor} 收到的日历共享 {calendar}", "You shared calendar {calendar} with {user}" : "您与 {user} 共享了日历 {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} 与 {user} 共享了日历 {calendar}", @@ -27,6 +27,7 @@ "You deleted event {event} from calendar {calendar}" : "您在日历 {calendar} 中删除了事件 {event}", "{actor} updated event {event} in calendar {calendar}" : "{actor} 在日历 {calendar} 中更新了事件 {event}", "You updated event {event} in calendar {calendar}" : "您在日历 {calendar} 中更新了事件 {event}", + "Busy" : "忙碌", "{actor} created todo {todo} in list {calendar}" : "{actor} 在列表 {calendar} 中创建了待办事项 {todo}", "You created todo {todo} in list {calendar}" : "您在列表 {calendar} 中创建了待办事项 {todo}", "{actor} deleted todo {todo} from list {calendar}" : "{actor} 在列表 {calendar} 中删除了待办事项 {todo}", @@ -42,18 +43,27 @@ "A calendar <strong>todo</strong> was modified" : "列表中<strong>待办事项</strong>已经修改", "Contact birthdays" : "联系人生日", "Invitation canceled" : "邀请已取消", - "Hello %s," : "%s你好,", + "Hello %s," : "您好,%s,", "Invitation updated" : "邀请已更新", "When:" : "时间:", "Where:" : "地点:", "Description:" : "描述:", "Link:" : "链接:", + "Accept" : "接受", + "Decline" : "拒绝", + "More options …" : "更多选项", "Contacts" : "联系人", + "Configures a CalDAV account" : "设置一个 CalDAV 账户", + "Configures a CardDAV account" : "设置一个 CardDAV 账户", + "WebDAV" : "WebDAV", "Technical details" : "技术细节", - "Remote Address: %s" : "远程地址: %s", - "Request ID: %s" : "请求 ID: %s", + "Remote Address: %s" : "远程地址:%s", + "Request ID: %s" : "请求 ID:%s", + "Save" : "保存", + "Send invitations to attendees" : "向参与者发送邀请", "Automatically generate a birthday calendar" : "自动生成生日日历", "Birthday calendars will be generated by a background job." : "生日日历将由后台作业生成。", - "CalDAV server" : "日历服务" + "CalDAV server" : "日历服务", + "Please make sure to properly set up the email settings above." : "请确保正确设置上面的电子邮件设置。" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/dav/lib/CalDAV/CalDavBackend.php b/apps/dav/lib/CalDAV/CalDavBackend.php index 187ba4ecdcf..88ee778e82c 100644 --- a/apps/dav/lib/CalDAV/CalDavBackend.php +++ b/apps/dav/lib/CalDAV/CalDavBackend.php @@ -2522,6 +2522,23 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription } /** + * Move a calendar from one user to another + * + * @param string $uriName + * @param string $uriOrigin + * @param string $uriDestination + */ + public function moveCalendar($uriName, $uriOrigin, $uriDestination) + { + $query = $this->db->getQueryBuilder(); + $query->update('calendars') + ->set('principaluri', $query->createNamedParameter($uriDestination)) + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($uriOrigin))) + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($uriName))) + ->execute(); + } + + /** * read VCalendar data into a VCalendar object * * @param string $objectData diff --git a/apps/dav/lib/CardDAV/AddressBookImpl.php b/apps/dav/lib/CardDAV/AddressBookImpl.php index 1aedd5d5643..ae727b8544f 100644 --- a/apps/dav/lib/CardDAV/AddressBookImpl.php +++ b/apps/dav/lib/CardDAV/AddressBookImpl.php @@ -76,6 +76,15 @@ class AddressBookImpl implements IAddressBook { } /** + * @return string defining the unique uri + * @since 16.0.0 + * @return string + */ + public function getUri(): string { + return $this->addressBookInfo['uri']; + } + + /** * In comparison to getKey() this function returns a human readable (maybe translated) name * * @return mixed diff --git a/apps/dav/lib/CardDAV/PhotoCache.php b/apps/dav/lib/CardDAV/PhotoCache.php index fa244857e39..eed11f1e939 100644 --- a/apps/dav/lib/CardDAV/PhotoCache.php +++ b/apps/dav/lib/CardDAV/PhotoCache.php @@ -35,6 +35,14 @@ use Sabre\VObject\Reader; class PhotoCache { + /** @var array */ + protected const ALLOWED_CONTENT_TYPES = [ + 'image/png' => 'png', + 'image/jpeg' => 'jpg', + 'image/gif' => 'gif', + 'image/vnd.microsoft.icon' => 'ico', + ]; + /** @var IAppData */ protected $appData; @@ -90,27 +98,26 @@ class PhotoCache { /** * @param ISimpleFolder $folder * @param Card $card + * @throws NotPermittedException */ - private function init(ISimpleFolder $folder, Card $card) { + private function init(ISimpleFolder $folder, Card $card): void { $data = $this->getPhoto($card); - if ($data === false) { + if ($data === false || !isset($data['Content-Type'])) { $folder->newFile('nophoto'); - } else { - switch ($data['Content-Type']) { - case 'image/png': - $ext = 'png'; - break; - case 'image/jpeg': - $ext = 'jpg'; - break; - case 'image/gif': - $ext = 'gif'; - break; - } - $file = $folder->newFile('photo.' . $ext); - $file->putContent($data['body']); + return; + } + + $contentType = $data['Content-Type']; + $extension = self::ALLOWED_CONTENT_TYPES[$contentType] ?? null; + + if ($extension === null) { + $folder->newFile('nophoto'); + return; } + + $file = $folder->newFile('photo.' . $extension); + $file->putContent($data['body']); } private function hasPhoto(ISimpleFolder $folder) { @@ -147,7 +154,7 @@ class PhotoCache { if ($size !== -1) { $photo->resize($size); } - + try { $file = $folder->newFile($path); $file->putContent($photo->data()); @@ -180,15 +187,14 @@ class PhotoCache { * @return string * @throws NotFoundException */ - private function getExtension(ISimpleFolder $folder) { - if ($folder->fileExists('photo.jpg')) { - return 'jpg'; - } elseif ($folder->fileExists('photo.png')) { - return 'png'; - } elseif ($folder->fileExists('photo.gif')) { - return 'gif'; + private function getExtension(ISimpleFolder $folder): string { + foreach (self::ALLOWED_CONTENT_TYPES as $extension) { + if ($folder->fileExists('photo.' . $extension)) { + return $extension; + } } - throw new NotFoundException; + + throw new NotFoundException('Avatar not found'); } private function getPhoto(Card $node) { @@ -218,13 +224,7 @@ class PhotoCache { $type = $this->getBinaryType($photo); } - $allowedContentTypes = [ - 'image/png', - 'image/jpeg', - 'image/gif', - ]; - - if (!in_array($type, $allowedContentTypes, true)) { + if (empty($type) || !isset(self::ALLOWED_CONTENT_TYPES[$type])) { $type = 'application/octet-stream'; } diff --git a/apps/dav/lib/Command/ListCalendars.php b/apps/dav/lib/Command/ListCalendars.php new file mode 100644 index 00000000000..6c2f5bdb506 --- /dev/null +++ b/apps/dav/lib/Command/ListCalendars.php @@ -0,0 +1,108 @@ +<?php +/** + * @copyright Copyright (c) 2018, Georg Ehrke + * + * @author Georg Ehrke <oc.list@georgehrke.com> + * @author Thomas Citharel <tcit@tcit.fr> + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ +namespace OCA\DAV\Command; + +use OCA\DAV\CalDAV\BirthdayService; +use OCA\DAV\CalDAV\CalDavBackend; +use OCA\DAV\Connector\Sabre\Principal; +use OCP\IConfig; +use OCP\IDBConnection; +use OCP\IGroupManager; +use OCP\IUserManager; +use OCP\IUserSession; +use OCP\Share\IManager; +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Helper\Table; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class ListCalendars extends Command { + + /** @var IUserManager */ + protected $userManager; + + /** @var CalDavBackend */ + private $caldav; + + /** + * @param IUserManager $userManager + * @param CalDavBackend $caldav + */ + function __construct(IUserManager $userManager, CalDavBackend $caldav) { + parent::__construct(); + $this->userManager = $userManager; + $this->caldav = $caldav; + } + + protected function configure() { + $this + ->setName('dav:list-calendars') + ->setDescription('List all calendars of a user') + ->addArgument('uid', + InputArgument::REQUIRED, + 'User for whom all calendars will be listed'); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $user = $input->getArgument('uid'); + if (!$this->userManager->userExists($user)) { + throw new \InvalidArgumentException("User <$user> is unknown."); + } + + $calendars = $this->caldav->getCalendarsForUser("principals/users/$user"); + + $calendarTableData = []; + foreach($calendars as $calendar) { + // skip birthday calendar + if ($calendar['uri'] === BirthdayService::BIRTHDAY_CALENDAR_URI) { + continue; + } + + $readOnly = false; + $readOnlyIndex = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only'; + if (isset($calendar[$readOnlyIndex])) { + $readOnly = $calendar[$readOnlyIndex]; + } + + $calendarTableData[] = [ + $calendar['uri'], + $calendar['{DAV:}displayname'], + $calendar['{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal'], + $calendar['{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname'], + $readOnly ? ' x ' : ' ✓ ', + ]; + } + + if (count($calendarTableData) > 0) { + $table = new Table($output); + $table->setHeaders(['uri', 'displayname', 'owner\'s userid', 'owner\'s displayname', 'writable']) + ->setRows($calendarTableData); + + $table->render(); + } else { + $output->writeln("<info>User <$user> has no calendars</info>"); + } + } + +} diff --git a/apps/dav/lib/Command/MoveCalendar.php b/apps/dav/lib/Command/MoveCalendar.php new file mode 100644 index 00000000000..a2c7ca8c4d8 --- /dev/null +++ b/apps/dav/lib/Command/MoveCalendar.php @@ -0,0 +1,185 @@ +<?php +/** + * @author Thomas Citharel <tcit@tcit.fr> + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ +namespace OCA\DAV\Command; + +use OCA\DAV\CalDAV\CalDavBackend; +use OCA\DAV\CalDAV\Calendar; +use OCA\DAV\Connector\Sabre\Principal; +use OCP\IConfig; +use OCP\IDBConnection; +use OCP\IGroupManager; +use OCP\IL10N; +use OCP\IUserManager; +use OCP\IUserSession; +use OCP\Share\IManager as IShareManager; +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Input\InputOption; +use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Console\Style\SymfonyStyle; + +class MoveCalendar extends Command { + + /** @var IUserManager */ + private $userManager; + + /** @var IGroupManager */ + private $groupManager; + + /** @var IShareManager */ + private $shareManager; + + /** @var IConfig $config */ + private $config; + + /** @var IL10N */ + private $l10n; + + /** @var SymfonyStyle */ + private $io; + + /** @var CalDavBackend */ + private $calDav; + + const URI_USERS = 'principals/users/'; + + /** + * @param IUserManager $userManager + * @param IGroupManager $groupManager + * @param IShareManager $shareManager + * @param IConfig $config + * @param IL10N $l10n + * @param CalDavBackend $calDav + */ + function __construct( + IUserManager $userManager, + IGroupManager $groupManager, + IShareManager $shareManager, + IConfig $config, + IL10N $l10n, + CalDavBackend $calDav + ) { + parent::__construct(); + $this->userManager = $userManager; + $this->groupManager = $groupManager; + $this->shareManager = $shareManager; + $this->config = $config; + $this->l10n = $l10n; + $this->calDav = $calDav; + } + + protected function configure() { + $this + ->setName('dav:move-calendar') + ->setDescription('Move a calendar from an user to another') + ->addArgument('name', + InputArgument::REQUIRED, + 'Name of the calendar to move') + ->addArgument('sourceuid', + InputArgument::REQUIRED, + 'User who currently owns the calendar') + ->addArgument('destinationuid', + InputArgument::REQUIRED, + 'User who will receive the calendar') + ->addOption('force', 'f', InputOption::VALUE_NONE, "Force the migration by removing existing shares"); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $userOrigin = $input->getArgument('sourceuid'); + $userDestination = $input->getArgument('destinationuid'); + + $this->io = new SymfonyStyle($input, $output); + + if (!$this->userManager->userExists($userOrigin)) { + throw new \InvalidArgumentException("User <$userOrigin> is unknown."); + } + + if (!$this->userManager->userExists($userDestination)) { + throw new \InvalidArgumentException("User <$userDestination> is unknown."); + } + + $name = $input->getArgument('name'); + + $calendar = $this->calDav->getCalendarByUri(self::URI_USERS . $userOrigin, $name); + + if (null === $calendar) { + throw new \InvalidArgumentException("User <$userOrigin> has no calendar named <$name>. You can run occ dav:list-calendars to list calendars URIs for this user."); + } + + if (null !== $this->calDav->getCalendarByUri(self::URI_USERS . $userDestination, $name)) { + throw new \InvalidArgumentException("User <$userDestination> already has a calendar named <$name>."); + } + + $this->checkShares($calendar, $userOrigin, $userDestination, $input->getOption('force')); + + $this->calDav->moveCalendar($name, self::URI_USERS . $userOrigin, self::URI_USERS . $userDestination); + + $this->io->success("Calendar <$name> was moved from user <$userOrigin> to <$userDestination>"); + } + + /** + * Check that moving the calendar won't break shares + * + * @param array $calendar + * @param string $userOrigin + * @param string $userDestination + * @param bool $force + */ + private function checkShares(array $calendar, string $userOrigin, string $userDestination, bool $force = false) + { + $shares = $this->calDav->getShares($calendar['id']); + foreach ($shares as $share) { + list(, $prefix, $userOrGroup) = explode('/', $share['href'], 3); + + /** + * Check that user destination is member of the groups which whom the calendar was shared + * If we ask to force the migration, the share with the group is dropped + */ + if ($this->shareManager->shareWithGroupMembersOnly() === true && 'groups' === $prefix && !$this->groupManager->isInGroup($userDestination, $userOrGroup)) { + if ($force) { + $this->calDav->updateShares(new Calendar($this->calDav, $calendar, $this->l10n, $this->config), [], ['href' => 'principal:principals/groups/' . $userOrGroup]); + } else { + throw new \InvalidArgumentException("User <$userDestination> is not part of the group <$userOrGroup> with whom the calendar <" . $calendar['uri'] . "> was shared. You may use -f to move the calendar while deleting this share."); + } + } + + /** + * Check that calendar isn't already shared with user destination + */ + if ($userOrGroup === $userDestination) { + if ($force) { + $this->calDav->updateShares(new Calendar($this->calDav, $calendar, $this->l10n, $this->config), [], ['href' => 'principal:principals/users/' . $userOrGroup]); + } else { + throw new \InvalidArgumentException("The calendar <" . $calendar['uri'] . "> is already shared to user <$userDestination>.You may use -f to move the calendar while deleting this share."); + } + } + } + /** + * Warn that share links have changed if there are shares + */ + if (count($shares) > 0) { + $this->io->note([ + "Please note that moving calendar " . $calendar['uri'] . " from user <$userOrigin> to <$userDestination> has caused share links to change.", + "Sharees will need to change \"example.com/remote.php/dav/calendars/uid/" . $calendar['uri'] . "_shared_by_$userOrigin\" to \"example.com/remote.php/dav/calendars/uid/" . $calendar['uri'] . "_shared_by_$userDestination\"" + ]); + } + } +} diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index f948f0f552d..388bcff9206 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -36,6 +36,7 @@ namespace OCA\DAV\Connector\Sabre; +use Icewind\Streams\CallbackWrapper; use OC\AppFramework\Http\Request; use OC\Files\Filesystem; use OC\Files\View; @@ -166,10 +167,22 @@ class File extends Node implements IFile { } if ($partStorage->instanceOfStorage(Storage\IWriteStreamStorage::class)) { - $count = $partStorage->writeStream($internalPartPath, $data); + + if (!is_resource($data)) { + $data = fopen('php://temp', 'r+'); + fwrite($data, 'foobar'); + rewind($data); + } + + $isEOF = false; + $wrappedData = CallbackWrapper::wrap($data, null, null, null, null, function($stream) use (&$isEOF) { + $isEOF = feof($stream); + }); + + $count = $partStorage->writeStream($internalPartPath, $wrappedData); $result = $count > 0; if ($result === false) { - $result = feof($data); + $result = $isEOF; } } else { diff --git a/apps/dav/lib/Migration/RemoveClassifiedEventActivity.php b/apps/dav/lib/Migration/RemoveClassifiedEventActivity.php index ad840d8100e..1829f57237a 100644 --- a/apps/dav/lib/Migration/RemoveClassifiedEventActivity.php +++ b/apps/dav/lib/Migration/RemoveClassifiedEventActivity.php @@ -127,6 +127,6 @@ class RemoveClassifiedEventActivity implements IRepairStep { protected function getPrincipal(string $principalUri): string { $uri = explode('/', $principalUri); - return $uri[2]; + return array_pop($uri); } } diff --git a/apps/dav/lib/Migration/RemoveOrphanEventsAndContacts.php b/apps/dav/lib/Migration/RemoveOrphanEventsAndContacts.php new file mode 100644 index 00000000000..17643587904 --- /dev/null +++ b/apps/dav/lib/Migration/RemoveOrphanEventsAndContacts.php @@ -0,0 +1,94 @@ +<?php +declare(strict_types=1); +/** + * @copyright Copyright (c) 2019 Joas Schilling <coding@schilljs.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\DAV\Migration; + +use OCA\DAV\CalDAV\CalDavBackend; +use OCP\DB\QueryBuilder\IQueryBuilder; +use OCP\IDBConnection; +use OCP\Migration\IOutput; +use OCP\Migration\IRepairStep; + +class RemoveOrphanEventsAndContacts implements IRepairStep { + + /** @var IDBConnection */ + private $connection; + + public function __construct(IDBConnection $connection) { + $this->connection = $connection; + } + + /** + * @inheritdoc + */ + public function getName(): string { + return 'Clean up orphan event and contact data'; + } + + /** + * @inheritdoc + */ + public function run(IOutput $output) { + $orphanItems = $this->removeOrphanChildren('calendarobjects', 'calendars', 'calendarid'); + $output->info(sprintf('%d events without a calendar have been cleaned up', $orphanItems)); + $orphanItems = $this->removeOrphanChildren('calendarobjects_props', 'calendarobjects', 'objectid'); + $output->info(sprintf('%d properties without an events have been cleaned up', $orphanItems)); + $orphanItems = $this->removeOrphanChildren('calendarchanges', 'calendars', 'calendarid'); + $output->info(sprintf('%d changes without a calendar have been cleaned up', $orphanItems)); + + $orphanItems = $this->removeOrphanChildren('cards', 'addressbooks', 'addressbookid'); + $output->info(sprintf('%d contacts without an addressbook have been cleaned up', $orphanItems)); + $orphanItems = $this->removeOrphanChildren('cards_properties', 'cards', 'cardid'); + $output->info(sprintf('%d properties without a contact have been cleaned up', $orphanItems)); + $orphanItems = $this->removeOrphanChildren('addressbookchanges', 'addressbooks', 'addressbookid'); + $output->info(sprintf('%d changes without an addressbook have been cleaned up', $orphanItems)); + } + + protected function removeOrphanChildren($childTable, $parentTable, $parentId): int { + $qb = $this->connection->getQueryBuilder(); + + $qb->select('c.id') + ->from($childTable, 'c') + ->leftJoin('c', $parentTable, 'p', $qb->expr()->eq('c.' . $parentId, 'p.id')) + ->where($qb->expr()->isNull('p.id')); + $result = $qb->execute(); + + $orphanItems = array(); + while ($row = $result->fetch()) { + $orphanItems[] = (int) $row['id']; + } + $result->closeCursor(); + + if (!empty($orphanItems)) { + $qb->delete($childTable) + ->where($qb->expr()->in('id', $qb->createParameter('ids'))); + + $orphanItemsBatch = array_chunk($orphanItems, 200); + foreach ($orphanItemsBatch as $items) { + $qb->setParameter('ids', $items, IQueryBuilder::PARAM_INT_ARRAY); + $qb->execute(); + } + } + + return count($orphanItems); + } +} diff --git a/apps/dav/lib/Provisioning/Apple/AppleProvisioningNode.php b/apps/dav/lib/Provisioning/Apple/AppleProvisioningNode.php new file mode 100644 index 00000000000..adc28c83429 --- /dev/null +++ b/apps/dav/lib/Provisioning/Apple/AppleProvisioningNode.php @@ -0,0 +1,91 @@ +<?php +/** + * @copyright 2018, Georg Ehrke <oc.list@georgehrke.com> + * + * @author Georg Ehrke <oc.list@georgehrke.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\DAV\Provisioning\Apple; + +use OCP\AppFramework\Utility\ITimeFactory; +use Sabre\DAV\Exception\Forbidden; +use Sabre\DAV\INode; +use Sabre\DAV\IProperties; +use Sabre\DAV\PropPatch; + +class AppleProvisioningNode implements INode, IProperties { + + const FILENAME = 'apple-provisioning.mobileconfig'; + + protected $timeFactory; + + /** + * @param ITimeFactory $timeFactory + */ + public function __construct(ITimeFactory $timeFactory) { + $this->timeFactory = $timeFactory; + } + + /** + * @return string + */ + public function getName() { + return self::FILENAME; + } + + + public function setName($name) { + throw new Forbidden('Renaming ' . self::FILENAME . ' is forbidden'); + } + + /** + * @return null + */ + public function getLastModified() { + return null; + } + + /** + * @throws Forbidden + */ + public function delete() { + throw new Forbidden(self::FILENAME . ' may not be deleted.'); + } + + /** + * @param array $properties + * @return array + */ + public function getProperties($properties) { + $datetime = $this->timeFactory->getDateTime(); + + return [ + '{DAV:}getcontentlength' => 42, + '{DAV:}getlastmodified' => $datetime->format(\DateTime::RFC2822), + ]; + } + + /** + * @param PropPatch $propPatch + * @throws Forbidden + */ + public function propPatch(PropPatch $propPatch) { + throw new Forbidden(self::FILENAME . '\'s properties may not be altered.'); + } +} diff --git a/apps/dav/lib/Provisioning/Apple/AppleProvisioningPlugin.php b/apps/dav/lib/Provisioning/Apple/AppleProvisioningPlugin.php new file mode 100644 index 00000000000..55c352d98ba --- /dev/null +++ b/apps/dav/lib/Provisioning/Apple/AppleProvisioningPlugin.php @@ -0,0 +1,267 @@ +<?php +/** + * @copyright 2018, Georg Ehrke <oc.list@georgehrke.com> + * + * @author Georg Ehrke <oc.list@georgehrke.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\DAV\Provisioning\Apple; + +use OCP\IL10N; +use OCP\IRequest; +use OCP\IURLGenerator; +use OCP\IUserSession; +use Sabre\DAV\Server; +use Sabre\DAV\ServerPlugin; +use Sabre\HTTP\RequestInterface; +use Sabre\HTTP\ResponseInterface; + +class AppleProvisioningPlugin extends ServerPlugin { + + /** + * @var Server + */ + protected $server; + + /** + * @var IURLGenerator + */ + protected $urlGenerator; + + /** + * @var IUserSession + */ + protected $userSession; + + /** + * @var \OC_Defaults + */ + protected $themingDefaults; + + /** + * @var IRequest + */ + protected $request; + + /** + * @var IL10N + */ + protected $l10n; + + /** + * @var \closure + */ + protected $uuidClosure; + + /** + * AppleProvisioningPlugin constructor. + * + * @param IUserSession $userSession + * @param IURLGenerator $urlGenerator + * @param \OC_Defaults $themingDefaults + * @param IRequest $request + * @param IL10N $l10n + * @param \closure $uuidClosure + */ + public function __construct(IUserSession $userSession, IURLGenerator $urlGenerator, + \OC_Defaults $themingDefaults, IRequest $request, + IL10N $l10n, \closure $uuidClosure) { + $this->userSession = $userSession; + $this->urlGenerator = $urlGenerator; + $this->themingDefaults = $themingDefaults; + $this->request = $request; + $this->l10n = $l10n; + $this->uuidClosure = $uuidClosure; + } + + /** + * @param Server $server + */ + public function initialize(Server $server) { + $this->server = $server; + $this->server->on('method:GET', [$this, 'httpGet'], 90); + } + + /** + * @param RequestInterface $request + * @param ResponseInterface $response + * @return boolean + */ + public function httpGet(RequestInterface $request, ResponseInterface $response):bool { + if ($request->getPath() !== 'provisioning/' . AppleProvisioningNode::FILENAME) { + return true; + } + + $user = $this->userSession->getUser(); + if (!$user) { + return true; + } + + $serverProtocol = $this->request->getServerProtocol(); + $useSSL = ($serverProtocol === 'https'); + + if (!$useSSL) { + $response->setStatus(200); + $response->setHeader('Content-Type', 'text/plain; charset=utf-8'); + $response->setBody($this->l10n->t('Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS.', [$this->themingDefaults->getName()])); + + return false; + } + + $absoluteURL = $request->getAbsoluteUrl(); + $parsedUrl = parse_url($absoluteURL); + if (isset($parsedUrl['port'])) { + $serverPort = (int) $parsedUrl['port']; + } else { + $serverPort = 443; + } + $server_url = $parsedUrl['host']; + + $description = $this->themingDefaults->getName(); + $userId = $user->getUID(); + + $reverseDomain = implode('.', array_reverse(explode('.', $parsedUrl['host']))); + + $caldavUUID = call_user_func($this->uuidClosure); + $carddavUUID = call_user_func($this->uuidClosure); + $profileUUID = call_user_func($this->uuidClosure); + + $caldavIdentifier = $reverseDomain . '.' . $caldavUUID; + $carddavIdentifier = $reverseDomain . '.' . $carddavUUID; + $profileIdentifier = $reverseDomain . '.' . $profileUUID; + + $caldavDescription = $this->l10n->t('Configures a CalDAV account'); + $caldavDisplayname = $description . ' CalDAV'; + $carddavDescription = $this->l10n->t('Configures a CardDAV account'); + $carddavDisplayname = $description . ' CardDAV'; + + $filename = $userId . '-' . AppleProvisioningNode::FILENAME; + + $xmlSkeleton = $this->getTemplate(); + $body = vsprintf($xmlSkeleton, array_map(function($v) { + return \htmlspecialchars($v, ENT_XML1, 'UTF-8'); + }, [ + $description, + $server_url, + $userId, + $serverPort, + $caldavDescription, + $caldavDisplayname, + $caldavIdentifier, + $caldavUUID, + $description, + $server_url, + $userId, + $serverPort, + $carddavDescription, + $carddavDisplayname, + $carddavIdentifier, + $carddavUUID, + $description, + $profileIdentifier, + $profileUUID + ] + )); + + $response->setStatus(200); + $response->setHeader('Content-Disposition', 'attachment; filename="' . $filename . '"'); + $response->setHeader('Content-Type', 'application/xml; charset=utf-8'); + $response->setBody($body); + + return false; + } + + /** + * @return string + */ + private function getTemplate():string { + return <<<EOF +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>PayloadContent</key> + <array> + <dict> + <key>CalDAVAccountDescription</key> + <string>%s</string> + <key>CalDAVHostName</key> + <string>%s</string> + <key>CalDAVUsername</key> + <string>%s</string> + <key>CalDAVUseSSL</key> + <true/> + <key>CalDAVPort</key> + <integer>%s</integer> + <key>PayloadDescription</key> + <string>%s</string> + <key>PayloadDisplayName</key> + <string>%s</string> + <key>PayloadIdentifier</key> + <string>%s</string> + <key>PayloadType</key> + <string>com.apple.caldav.account</string> + <key>PayloadUUID</key> + <string>%s</string> + <key>PayloadVersion</key> + <integer>1</integer> + </dict> + <dict> + <key>CardDAVAccountDescription</key> + <string>%s</string> + <key>CardDAVHostName</key> + <string>%s</string> + <key>CardDAVUsername</key> + <string>%s</string> + <key>CardDAVUseSSL</key> + <true/> + <key>CardDAVPort</key> + <integer>%s</integer> + <key>PayloadDescription</key> + <string>%s</string> + <key>PayloadDisplayName</key> + <string>%s</string> + <key>PayloadIdentifier</key> + <string>%s</string> + <key>PayloadType</key> + <string>com.apple.carddav.account</string> + <key>PayloadUUID</key> + <string>%s</string> + <key>PayloadVersion</key> + <integer>1</integer> + </dict> + </array> + <key>PayloadDisplayName</key> + <string>%s</string> + <key>PayloadIdentifier</key> + <string>%s</string> + <key>PayloadRemovalDisallowed</key> + <false/> + <key>PayloadType</key> + <string>Configuration</string> + <key>PayloadUUID</key> + <string>%s</string> + <key>PayloadVersion</key> + <integer>1</integer> +</dict> +</plist> + +EOF; + } +} diff --git a/apps/dav/lib/RootCollection.php b/apps/dav/lib/RootCollection.php index adf9d7b99c7..9ad1ea5221e 100644 --- a/apps/dav/lib/RootCollection.php +++ b/apps/dav/lib/RootCollection.php @@ -35,7 +35,9 @@ use OCA\DAV\Connector\Sabre\Principal; use OCA\DAV\DAV\GroupPrincipalBackend; use OCA\DAV\DAV\SystemPrincipalBackend; use OCA\DAV\CalDAV\Principal\Collection; +use OCA\DAV\Provisioning\Apple\AppleProvisioningNode; use OCA\DAV\Upload\CleanupService; +use OCP\AppFramework\Utility\ITimeFactory; use Sabre\DAV\SimpleCollection; class RootCollection extends SimpleCollection { @@ -130,6 +132,9 @@ class RootCollection extends SimpleCollection { $avatarCollection = new Avatars\RootCollection($userPrincipalBackend, 'principals/users'); $avatarCollection->disableListing = $disableListing; + $appleProvisioning = new AppleProvisioningNode( + \OC::$server->query(ITimeFactory::class)); + $children = [ new SimpleCollection('principals', [ $userPrincipals, @@ -151,7 +156,10 @@ class RootCollection extends SimpleCollection { $systemTagRelationsCollection, $commentsCollection, $uploadCollection, - $avatarCollection + $avatarCollection, + new SimpleCollection('provisioning', [ + $appleProvisioning + ]) ]; parent::__construct('root', $children); diff --git a/apps/dav/lib/Server.php b/apps/dav/lib/Server.php index c2c903fa198..5335db98fce 100644 --- a/apps/dav/lib/Server.php +++ b/apps/dav/lib/Server.php @@ -55,6 +55,7 @@ use OCA\DAV\Connector\Sabre\QuotaPlugin; use OCA\DAV\Files\BrowserErrorPagePlugin; use OCA\DAV\Connector\Sabre\AnonymousOptionsPlugin; use OCA\DAV\Files\LazySearchBackend; +use OCA\DAV\Provisioning\Apple\AppleProvisioningPlugin; use OCA\DAV\SystemTag\SystemTagPlugin; use OCA\DAV\Upload\ChunkingPlugin; use OCP\IRequest; @@ -62,6 +63,7 @@ use OCP\SabrePluginEvent; use Sabre\CardDAV\VCFExportPlugin; use Sabre\DAV\Auth\Plugin; use OCA\DAV\Connector\Sabre\TagsPlugin; +use Sabre\DAV\UUIDUtil; use SearchDAV\DAV\SearchPlugin; use OCA\DAV\AppInfo\PluginManager; @@ -281,6 +283,16 @@ class Server { \OC::$server->getConfig(), \OC::$server->query(BirthdayService::class) )); + $this->server->addPlugin(new AppleProvisioningPlugin( + \OC::$server->getUserSession(), + \OC::$server->getURLGenerator(), + \OC::$server->getThemingDefaults(), + \OC::$server->getRequest(), + \OC::$server->getL10N('dav'), + function() { + return UUIDUtil::getUUID(); + } + )); } // register plugins from apps diff --git a/apps/dav/templates/settings-admin-caldav.php b/apps/dav/templates/settings-admin-caldav.php index 919cb06802b..87b159923d2 100644 --- a/apps/dav/templates/settings-admin-caldav.php +++ b/apps/dav/templates/settings-admin-caldav.php @@ -30,12 +30,39 @@ script('dav', [ ?> <form id="CalDAV" class="section"> <h2><?php p($l->t('Calendar server')); ?></h2> + <p class="settings-hint"> + <?php print_unescaped(str_replace( + [ + '{calendarappstoreopen}', + '{calendardocopen}', + '{linkclose}', + ], + [ + '<a target="_blank" href="../apps/office/calendar">', + '<a target="_blank" href="' . link_to_docs('user-sync-calendars') . '" rel="noreferrer noopener">', + '</a>', + ], + $l->t('Also install the {calendarappstoreopen}Calendar app{linkclose}, or {calendardocopen}connect your desktop & mobile for syncing ↗{linkclose}.') + )); ?> + </p> <p> <input type="checkbox" name="caldav_send_invitations" id="caldavSendInvitations" class="checkbox" <?php ($_['send_invitations'] === 'yes') ? print_unescaped('checked="checked"') : null ?>/> <label for="caldavSendInvitations"><?php p($l->t('Send invitations to attendees')); ?></label> <br> - <em><?php p($l->t('Please make sure to properly set up the email settings above.')); ?></em> + <em> + <?php print_unescaped(str_replace( + [ + '{emailopen}', + '{linkclose}', + ], + [ + '<a href="../admin#mail_general_settings">', + '</a>', + ], + $l->t('Please make sure to properly set up {emailopen}the email server{linkclose}.') + )); ?> + </em> </p> <p> <input type="checkbox" name="caldav_generate_birthday_calendar" id="caldavGenerateBirthdayCalendar" class="checkbox" diff --git a/apps/dav/tests/unit/CalDAV/Activity/Filter/GenericTest.php b/apps/dav/tests/unit/CalDAV/Activity/Filter/GenericTest.php index 8f495698d02..4d5bcea9966 100644 --- a/apps/dav/tests/unit/CalDAV/Activity/Filter/GenericTest.php +++ b/apps/dav/tests/unit/CalDAV/Activity/Filter/GenericTest.php @@ -28,6 +28,9 @@ use OCA\DAV\CalDAV\Activity\Filter\Todo; use OCP\Activity\IFilter; use Test\TestCase; +/** + * @group DB + */ class GenericTest extends TestCase { public function dataFilters() { diff --git a/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php b/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php index 44609f2ca6c..1b2169b6675 100644 --- a/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php +++ b/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php @@ -983,4 +983,21 @@ EOD; $this->assertEquals(null, $this->backend->getCalendarObject($subscriptionId, $uri, CalDavBackend::CALENDAR_TYPE_SUBSCRIPTION)); } + + public function testCalendarMovement() + { + $this->backend->createCalendar(self::UNIT_TEST_USER, 'Example', []); + + $this->assertCount(1, $this->backend->getCalendarsForUser(self::UNIT_TEST_USER)); + + $calendarInfoUser = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER)[0]; + + $this->backend->moveCalendar('Example', self::UNIT_TEST_USER, self::UNIT_TEST_USER1); + $this->assertCount(0, $this->backend->getCalendarsForUser(self::UNIT_TEST_USER)); + $this->assertCount(1, $this->backend->getCalendarsForUser(self::UNIT_TEST_USER1)); + + $calendarInfoUser1 = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER1)[0]; + $this->assertEquals($calendarInfoUser['id'], $calendarInfoUser1['id']); + $this->assertEquals($calendarInfoUser['uri'], $calendarInfoUser1['uri']); + } } diff --git a/apps/dav/tests/unit/Command/ListCalendarsTest.php b/apps/dav/tests/unit/Command/ListCalendarsTest.php new file mode 100644 index 00000000000..1a0ca8c7954 --- /dev/null +++ b/apps/dav/tests/unit/Command/ListCalendarsTest.php @@ -0,0 +1,139 @@ +<?php +/** + * @author Thomas Citharel <tcit@tcit.fr> + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OCA\DAV\Tests\Command; + +use InvalidArgumentException; +use OCA\DAV\CalDAV\BirthdayService; +use OCA\DAV\CalDAV\CalDavBackend; +use OCA\DAV\Command\ListCalendars; +use OCP\IUserManager; +use Symfony\Component\Console\Tester\CommandTester; +use Test\TestCase; + + +/** + * Class ListCalendarsTest + * + * @package OCA\DAV\Tests\Command + */ +class ListCalendarsTest extends TestCase { + + /** @var \OCP\IUserManager|\PHPUnit\Framework\MockObject\MockObject $userManager */ + private $userManager; + + /** @var CalDavBackend|\PHPUnit\Framework\MockObject\MockObject $l10n */ + private $calDav; + + /** @var ListCalendars */ + private $command; + + const USERNAME = 'username'; + + protected function setUp() { + parent::setUp(); + + $this->userManager = $this->createMock(IUserManager::class); + $this->calDav = $this->createMock(CalDavBackend::class); + + $this->command = new ListCalendars( + $this->userManager, + $this->calDav + ); + } + + /** + * @expectedException InvalidArgumentException + */ + public function testWithBadUser() + { + $this->userManager->expects($this->once()) + ->method('userExists') + ->with(self::USERNAME) + ->willReturn(false); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'uid' => self::USERNAME, + ]); + $this->assertContains("User <" . self::USERNAME . "> in unknown", $commandTester->getDisplay()); + } + + public function testWithCorrectUserWithNoCalendars() + { + $this->userManager->expects($this->once()) + ->method('userExists') + ->with(self::USERNAME) + ->willReturn(true); + + $this->calDav->expects($this->once()) + ->method('getCalendarsForUser') + ->with('principals/users/' . self::USERNAME) + ->willReturn([]); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'uid' => self::USERNAME, + ]); + $this->assertContains("User <" . self::USERNAME . "> has no calendars\n", $commandTester->getDisplay()); + } + + public function dataExecute() + { + return [ + [false, '✓'], + [true, 'x'] + ]; + } + + /** + * @dataProvider dataExecute + */ + public function testWithCorrectUser(bool $readOnly, string $output) + { + $this->userManager->expects($this->once()) + ->method('userExists') + ->with(self::USERNAME) + ->willReturn(true); + + $this->calDav->expects($this->once()) + ->method('getCalendarsForUser') + ->with('principals/users/' . self::USERNAME) + ->willReturn([ + [ + 'uri' => BirthdayService::BIRTHDAY_CALENDAR_URI, + ], + [ + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => $readOnly, + 'uri' => 'test', + '{DAV:}displayname' => 'dp', + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => 'owner-principal', + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname' => 'owner-dp', + ] + ]); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'uid' => self::USERNAME, + ]); + $this->assertContains($output, $commandTester->getDisplay()); + $this->assertNotContains(BirthdayService::BIRTHDAY_CALENDAR_URI, $commandTester->getDisplay()); + } +} diff --git a/apps/dav/tests/unit/Command/MoveCalendarTest.php b/apps/dav/tests/unit/Command/MoveCalendarTest.php new file mode 100644 index 00000000000..07d789dbfb2 --- /dev/null +++ b/apps/dav/tests/unit/Command/MoveCalendarTest.php @@ -0,0 +1,427 @@ +<?php +/** + * @author Thomas Citharel <tcit@tcit.fr> + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OCA\DAV\Tests\Command; + +use InvalidArgumentException; +use OCA\DAV\CalDAV\CalDavBackend; +use OCA\DAV\Command\MoveCalendar; +use OCP\IConfig; +use OCP\IGroupManager; +use OCP\IL10N; +use OCP\IUserManager; +use OCP\Share\IManager; +use Symfony\Component\Console\Tester\CommandTester; +use Test\TestCase; + + +/** + * Class MoveCalendarTest + * + * @package OCA\DAV\Tests\Command + */ +class MoveCalendarTest extends TestCase { + + /** @var \OCP\IUserManager|\PHPUnit\Framework\MockObject\MockObject $userManager */ + private $userManager; + + /** @var \OCP\IGroupManager|\PHPUnit\Framework\MockObject\MockObject $groupManager */ + private $groupManager; + + /** @var \OCP\Share\IManager|\PHPUnit_Framework_MockObject_MockObject $shareManager */ + private $shareManager; + + /** @var IConfig|\PHPUnit_Framework_MockObject_MockObject $l10n */ + private $config; + + /** @var IL10N|\PHPUnit_Framework_MockObject_MockObject $l10n */ + private $l10n; + + /** @var CalDavBackend|\PHPUnit_Framework_MockObject_MockObject $l10n */ + private $calDav; + + /** @var MoveCalendar */ + private $command; + + protected function setUp() { + parent::setUp(); + + $this->userManager = $this->createMock(IUserManager::class); + $this->groupManager = $this->createMock(IGroupManager::class); + $this->shareManager = $this->createMock(IManager::class); + $this->config = $this->createMock(IConfig::class); + $this->l10n = $this->createMock(IL10N::class); + $this->calDav = $this->createMock(CalDavBackend::class); + + $this->command = new MoveCalendar( + $this->userManager, + $this->groupManager, + $this->shareManager, + $this->config, + $this->l10n, + $this->calDav + ); + } + + public function dataExecute() { + return [ + [false, true], + [true, false] + ]; + } + + /** + * @dataProvider dataExecute + * + * @expectedException InvalidArgumentException + * @param $userOriginExists + * @param $userDestinationExists + */ + public function testWithBadUserOrigin($userOriginExists, $userDestinationExists) + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn($userOriginExists); + + if (!$userDestinationExists) { + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn($userDestinationExists); + } + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => $this->command->getName(), + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + ]); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage User <user> has no calendar named <personal>. You can run occ dav:list-calendars to list calendars URIs for this user. + */ + public function testMoveWithInexistantCalendar() + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->once())->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn(null); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + ]); + } + + /** + * @expectedException InvalidArgumentException + * @expectedExceptionMessage User <user2> already has a calendar named <personal>. + */ + public function testMoveWithExistingDestinationCalendar() + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->at(0))->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn([ + 'id' => 1234, + ]); + + $this->calDav->expects($this->at(1))->method('getCalendarByUri') + ->with('principals/users/user2', 'personal') + ->willReturn([ + 'id' => 1234, + ]); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + ]); + } + + public function testMove() + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->at(0))->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn([ + 'id' => 1234, + ]); + + $this->calDav->expects($this->at(1))->method('getCalendarByUri') + ->with('principals/users/user2', 'personal') + ->willReturn(null); + + $this->calDav->expects($this->once())->method('getShares') + ->with(1234) + ->willReturn([]); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + ]); + + $this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay()); + } + + public function dataTestMoveWithDestinationNotPartOfGroup(): array + { + return [ + [true], + [false] + ]; + } + + /** + * @dataProvider dataTestMoveWithDestinationNotPartOfGroup + */ + public function testMoveWithDestinationNotPartOfGroup(bool $shareWithGroupMembersOnly) + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->at(0))->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn([ + 'id' => 1234, + 'uri' => 'personal' + ]); + + $this->calDav->expects($this->at(1))->method('getCalendarByUri') + ->with('principals/users/user2', 'personal') + ->willReturn(null); + + $this->shareManager->expects($this->once())->method('shareWithGroupMembersOnly') + ->willReturn($shareWithGroupMembersOnly); + + $this->calDav->expects($this->once())->method('getShares') + ->with(1234) + ->willReturn([ + ['href' => 'principal:principals/groups/nextclouders'] + ]); + if ($shareWithGroupMembersOnly === true) { + $this->expectException(InvalidArgumentException::class); + $this->expectExceptionMessage("User <user2> is not part of the group <nextclouders> with whom the calendar <personal> was shared. You may use -f to move the calendar while deleting this share."); + } + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + ]); + } + + public function testMoveWithDestinationPartOfGroup() + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->at(0))->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn([ + 'id' => 1234, + 'uri' => 'personal' + ]); + + $this->calDav->expects($this->at(1))->method('getCalendarByUri') + ->with('principals/users/user2', 'personal') + ->willReturn(null); + + $this->shareManager->expects($this->once())->method('shareWithGroupMembersOnly') + ->willReturn(true); + + $this->calDav->expects($this->once())->method('getShares') + ->with(1234) + ->willReturn([ + ['href' => 'principal:principals/groups/nextclouders'] + ]); + + $this->groupManager->expects($this->once())->method('isInGroup') + ->with('user2', 'nextclouders') + ->willReturn(true); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + ]); + + $this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay()); + } + + public function testMoveWithDestinationNotPartOfGroupAndForce() + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->at(0))->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn([ + 'id' => 1234, + 'uri' => 'personal', + '{DAV:}displayname' => 'Personal' + ]); + + $this->calDav->expects($this->at(1))->method('getCalendarByUri') + ->with('principals/users/user2', 'personal') + ->willReturn(null); + + $this->shareManager->expects($this->once())->method('shareWithGroupMembersOnly') + ->willReturn(true); + + $this->calDav->expects($this->once())->method('getShares') + ->with(1234) + ->willReturn([ + [ + 'href' => 'principal:principals/groups/nextclouders', + '{DAV:}displayname' => 'Personal' + ] + ]); + $this->calDav->expects($this->once())->method('updateShares'); + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + '--force' => true + ]); + + $this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay()); + } + + public function dataTestMoveWithCalendarAlreadySharedToDestination(): array + { + return [ + [true], + [false] + ]; + } + + /** + * @dataProvider dataTestMoveWithCalendarAlreadySharedToDestination + */ + public function testMoveWithCalendarAlreadySharedToDestination(bool $force) + { + $this->userManager->expects($this->at(0)) + ->method('userExists') + ->with('user') + ->willReturn(true); + + $this->userManager->expects($this->at(1)) + ->method('userExists') + ->with('user2') + ->willReturn(true); + + $this->calDav->expects($this->at(0))->method('getCalendarByUri') + ->with('principals/users/user', 'personal') + ->willReturn([ + 'id' => 1234, + 'uri' => 'personal', + '{DAV:}displayname' => 'Personal', + ]); + + $this->calDav->expects($this->at(1))->method('getCalendarByUri') + ->with('principals/users/user2', 'personal') + ->willReturn(null); + + $this->calDav->expects($this->once())->method('getShares') + ->with(1234) + ->willReturn([ + [ + 'href' => 'principal:principals/users/user2', + '{DAV:}displayname' => 'Personal' + ] + ]); + + if ($force === false) { + $this->expectException(InvalidArgumentException::class); + $this->expectExceptionMessage("The calendar <personal> is already shared to user <user2>.You may use -f to move the calendar while deleting this share."); + } else { + $this->calDav->expects($this->once())->method('updateShares'); + } + + $commandTester = new CommandTester($this->command); + $commandTester->execute([ + 'name' => 'personal', + 'sourceuid' => 'user', + 'destinationuid' => 'user2', + '--force' => $force, + ]); + } +} diff --git a/apps/dav/tests/unit/Provisioning/Apple/AppleProvisioningNodeTest.php b/apps/dav/tests/unit/Provisioning/Apple/AppleProvisioningNodeTest.php new file mode 100644 index 00000000000..fcdb383465e --- /dev/null +++ b/apps/dav/tests/unit/Provisioning/Apple/AppleProvisioningNodeTest.php @@ -0,0 +1,88 @@ +<?php +/** + * @author Georg Ehrke <oc.list@georgehrke.com> + * + * @copyright Copyright (c) 2018 Georg Ehrke <oc.list@georgehrke.com> + * @license GNU AGPL version 3 or any later version + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OCA\DAV\Tests\unit\Provisioning\Apple; + +use OCA\DAV\Provisioning\Apple\AppleProvisioningNode; +use OCP\AppFramework\Utility\ITimeFactory; +use Sabre\DAV\PropPatch; +use Test\TestCase; + +class AppleProvisioningNodeTest extends TestCase { + + /** @var ITimeFactory|\PHPUnit_Framework_MockObject_MockObject */ + private $timeFactory; + + /** @var AppleProvisioningNode */ + private $node; + + public function setUp() { + parent::setUp(); + + $this->timeFactory = $this->createMock(ITimeFactory::class); + $this->node = new AppleProvisioningNode($this->timeFactory); + } + + public function testGetName() { + $this->assertEquals('apple-provisioning.mobileconfig', $this->node->getName()); + } + + /** + * @expectedException \Sabre\DAV\Exception\Forbidden + * @expectedExceptionMessage Renaming apple-provisioning.mobileconfig is forbidden + */ + public function testSetName() { + $this->node->setName('foo'); + } + + public function testGetLastModified() { + $this->assertEquals(null, $this->node->getLastModified()); + } + + /** + * @expectedException \Sabre\DAV\Exception\Forbidden + * @expectedExceptionMessage apple-provisioning.mobileconfig may not be deleted + */ + public function testDelete() { + $this->node->delete(); + } + + public function testGetProperties() { + $this->timeFactory->expects($this->at(0)) + ->method('getDateTime') + ->willReturn(new \DateTime('2000-01-01')); + + $this->assertEquals([ + '{DAV:}getcontentlength' => 42, + '{DAV:}getlastmodified' => 'Sat, 01 Jan 2000 00:00:00 +0000', + ], $this->node->getProperties([])); + } + + /** + * @expectedException \Sabre\DAV\Exception\Forbidden + * @expectedExceptionMessage apple-provisioning.mobileconfig's properties may not be altered. + */ + public function testGetPropPatch() { + $propPatch = $this->createMock(PropPatch::class); + + $this->node->propPatch($propPatch); + } +}
\ No newline at end of file diff --git a/apps/dav/tests/unit/Provisioning/Apple/AppleProvisioningPluginTest.php b/apps/dav/tests/unit/Provisioning/Apple/AppleProvisioningPluginTest.php new file mode 100644 index 00000000000..57ad65372e1 --- /dev/null +++ b/apps/dav/tests/unit/Provisioning/Apple/AppleProvisioningPluginTest.php @@ -0,0 +1,267 @@ +<?php +/** + * @author Georg Ehrke <oc.list@georgehrke.com> + * + * @copyright Copyright (c) 2018 Georg Ehrke <oc.list@georgehrke.com> + * @license GNU AGPL version 3 or any later version + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OCA\DAV\Tests\unit\Provisioning\Apple; + +use OCA\DAV\Provisioning\Apple\AppleProvisioningPlugin; +use OCA\Theming\ThemingDefaults; +use OCP\IL10N; +use OCP\IRequest; +use OCP\IURLGenerator; +use OCP\IUser; +use OCP\IUserSession; +use Test\TestCase; + +class AppleProvisioningPluginTest extends TestCase { + + /** @var \Sabre\DAV\Server|\PHPUnit_Framework_MockObject_MockObject */ + protected $server; + + /** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */ + protected $userSession; + + /** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */ + protected $urlGenerator; + + /** @var ThemingDefaults|\PHPUnit_Framework_MockObject_MockObject */ + protected $themingDefaults; + + /** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */ + protected $request; + + /** @var IL10N|\PHPUnit_Framework_MockObject_MockObject */ + protected $l10n; + + /** @var \Sabre\HTTP\RequestInterface|\PHPUnit_Framework_MockObject_MockObject */ + protected $sabreRequest; + + /** @var \Sabre\HTTP\ResponseInterface|\PHPUnit_Framework_MockObject_MockObject */ + protected $sabreResponse; + + /** @var AppleProvisioningPlugin */ + protected $plugin; + + public function setUp() { + parent::setUp(); + + $this->server = $this->createMock(\Sabre\DAV\Server::class); + $this->userSession = $this->createMock(IUserSession::class); + $this->urlGenerator = $this->createMock(IURLGenerator::class); + $this->themingDefaults = $this->createMock(ThemingDefaults::class); + $this->request = $this->createMock(IRequest::class); + $this->l10n = $this->createMock(IL10N::class); + + $this->plugin = new AppleProvisioningPlugin($this->userSession, + $this->urlGenerator, + $this->themingDefaults, + $this->request, + $this->l10n, + function() { + return 'generated-uuid'; + } + ); + + $this->sabreRequest = $this->createMock(\Sabre\HTTP\RequestInterface::class); + $this->sabreResponse = $this->createMock(\Sabre\HTTP\ResponseInterface::class); + } + + public function testInitialize() { + $server = $this->createMock(\Sabre\DAV\Server::class); + + $plugin = new AppleProvisioningPlugin($this->userSession, + $this->urlGenerator, $this->themingDefaults, $this->request, $this->l10n, + function() {}); + + $server->expects($this->at(0)) + ->method('on') + ->with('method:GET', [$plugin, 'httpGet'], 90); + + $plugin->initialize($server); + } + + public function testHttpGetOnHttp() { + $this->sabreRequest->expects($this->at(0)) + ->method('getPath') + ->with() + ->willReturn('provisioning/apple-provisioning.mobileconfig'); + + $user = $this->createMock(IUser::class); + $this->userSession->expects($this->at(0)) + ->method('getUser') + ->willReturn($user); + + $this->request->expects($this->at(0)) + ->method('getServerProtocol') + ->wilLReturn('http'); + + $this->themingDefaults->expects($this->at(0)) + ->method('getName') + ->willReturn('InstanceName'); + + $this->l10n->expects($this->at(0)) + ->method('t') + ->with('Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS.', ['InstanceName']) + ->willReturn('LocalizedErrorMessage'); + + $this->sabreResponse->expects($this->at(0)) + ->method('setStatus') + ->with(200); + $this->sabreResponse->expects($this->at(1)) + ->method('setHeader') + ->with('Content-Type', 'text/plain; charset=utf-8'); + $this->sabreResponse->expects($this->at(2)) + ->method('setBody') + ->with('LocalizedErrorMessage'); + + $returnValue = $this->plugin->httpGet($this->sabreRequest, $this->sabreResponse); + + $this->assertFalse($returnValue); + } + + public function testHttpGetOnHttps() { + $this->sabreRequest->expects($this->at(0)) + ->method('getPath') + ->with() + ->willReturn('provisioning/apple-provisioning.mobileconfig'); + + $user = $this->createMock(IUser::class); + $user->expects($this->at(0)) + ->method('getUID') + ->willReturn('userName'); + + $this->userSession->expects($this->at(0)) + ->method('getUser') + ->willReturn($user); + + $this->request->expects($this->at(0)) + ->method('getServerProtocol') + ->wilLReturn('https'); + + $this->sabreRequest->expects($this->at(1)) + ->method('getAbsoluteUrl') + ->with() + ->willReturn('https://nextcloud.tld/nextcloud/remote.php/dav/provisioning/apple-provisioning.mobileconfig'); + + $this->themingDefaults->expects($this->at(0)) + ->method('getName') + ->willReturn('InstanceName'); + + $this->l10n->expects($this->at(0)) + ->method('t') + ->with('Configures a CalDAV account') + ->willReturn('LocalizedConfiguresCalDAV'); + + $this->l10n->expects($this->at(1)) + ->method('t') + ->with('Configures a CardDAV account') + ->willReturn('LocalizedConfiguresCardDAV'); + + $this->sabreResponse->expects($this->at(0)) + ->method('setStatus') + ->with(200); + $this->sabreResponse->expects($this->at(1)) + ->method('setHeader') + ->with('Content-Disposition', 'attachment; filename="userName-apple-provisioning.mobileconfig"'); + $this->sabreResponse->expects($this->at(2)) + ->method('setHeader') + ->with('Content-Type', 'application/xml; charset=utf-8'); + $this->sabreResponse->expects($this->at(3)) + ->method('setBody') + ->with(<<<EOF +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>PayloadContent</key> + <array> + <dict> + <key>CalDAVAccountDescription</key> + <string>InstanceName</string> + <key>CalDAVHostName</key> + <string>nextcloud.tld</string> + <key>CalDAVUsername</key> + <string>userName</string> + <key>CalDAVUseSSL</key> + <true/> + <key>CalDAVPort</key> + <integer>443</integer> + <key>PayloadDescription</key> + <string>LocalizedConfiguresCalDAV</string> + <key>PayloadDisplayName</key> + <string>InstanceName CalDAV</string> + <key>PayloadIdentifier</key> + <string>tld.nextcloud.generated-uuid</string> + <key>PayloadType</key> + <string>com.apple.caldav.account</string> + <key>PayloadUUID</key> + <string>generated-uuid</string> + <key>PayloadVersion</key> + <integer>1</integer> + </dict> + <dict> + <key>CardDAVAccountDescription</key> + <string>InstanceName</string> + <key>CardDAVHostName</key> + <string>nextcloud.tld</string> + <key>CardDAVUsername</key> + <string>userName</string> + <key>CardDAVUseSSL</key> + <true/> + <key>CardDAVPort</key> + <integer>443</integer> + <key>PayloadDescription</key> + <string>LocalizedConfiguresCardDAV</string> + <key>PayloadDisplayName</key> + <string>InstanceName CardDAV</string> + <key>PayloadIdentifier</key> + <string>tld.nextcloud.generated-uuid</string> + <key>PayloadType</key> + <string>com.apple.carddav.account</string> + <key>PayloadUUID</key> + <string>generated-uuid</string> + <key>PayloadVersion</key> + <integer>1</integer> + </dict> + </array> + <key>PayloadDisplayName</key> + <string>InstanceName</string> + <key>PayloadIdentifier</key> + <string>tld.nextcloud.generated-uuid</string> + <key>PayloadRemovalDisallowed</key> + <false/> + <key>PayloadType</key> + <string>Configuration</string> + <key>PayloadUUID</key> + <string>generated-uuid</string> + <key>PayloadVersion</key> + <integer>1</integer> +</dict> +</plist> + +EOF +); + + $returnValue = $this->plugin->httpGet($this->sabreRequest, $this->sabreResponse); + + $this->assertFalse($returnValue); + } + +}
\ No newline at end of file |