diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 09564e030..e3d9ad406 100644 --- a/.tx/nextcloud.client-desktop/de_translation +++ b/.tx/nextcloud.client-desktop/de_translation @@ -198,7 +198,7 @@ X-GNOME-Autostart-Delay=3 # Translations -Icon[de_DE]=@APPLICATION_ICON_NAME@ -Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisation -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisation -GenericName[de_DE]=Synchronisationsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisation +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisation +GenericName[de]=Synchronisationsordner diff --git a/.tx/nextcloud.client-desktop/pt_BR_translation b/.tx/nextcloud.client-desktop/pt_BR_translation index 73979d5e2..c9b711e96 100644 --- a/.tx/nextcloud.client-desktop/pt_BR_translation +++ b/.tx/nextcloud.client-desktop/pt_BR_translation @@ -201,4 +201,4 @@ X-GNOME-Autostart-Delay=3 Icon[pt_BR]=@APPLICATION_ICON_NAME@ Name[pt_BR]=@APPLICATION_NAME@ cliente de sincronização desktop Comment[pt_BR]=@APPLICATION_NAME@ cliente de sincronização desktop -GenericName[pt_BR]=Sincronizar Pasta +GenericName[pt_BR]=Sincronizar pasta diff --git a/src/gui/ocsshareejob.cpp b/src/gui/ocsshareejob.cpp index 0d1b6d44b..ced73800f 100644 --- a/src/gui/ocsshareejob.cpp +++ b/src/gui/ocsshareejob.cpp @@ -21,7 +21,7 @@ namespace OCC { OcsShareeJob::OcsShareeJob(AccountPtr account) : OcsJob(account) { - setPath("ocs/v1.php/apps/files_sharing/api/v1/sharees"); + setPath("ocs/v2.php/apps/files_sharing/api/v1/sharees"); connect(this, &OcsJob::jobFinished, this, &OcsShareeJob::jobDone); } diff --git a/src/gui/ocssharejob.cpp b/src/gui/ocssharejob.cpp index 520225461..15884e012 100644 --- a/src/gui/ocssharejob.cpp +++ b/src/gui/ocssharejob.cpp @@ -24,7 +24,7 @@ namespace OCC { OcsShareJob::OcsShareJob(AccountPtr account) : OcsJob(account) { - setPath("ocs/v1.php/apps/files_sharing/api/v1/shares"); + setPath("ocs/v2.php/apps/files_sharing/api/v1/shares"); connect(this, &OcsJob::jobFinished, this, &OcsShareJob::jobDone); } @@ -33,6 +33,7 @@ void OcsShareJob::getShares(const QString &path) setVerb("GET"); addParam(QString::fromLatin1("path"), path); + addParam(QString::fromLatin1("reshares"), QString("true")); addPassStatusCode(404); start(); diff --git a/src/gui/sharedialog.cpp b/src/gui/sharedialog.cpp index 4a62f5885..57126988b 100644 --- a/src/gui/sharedialog.cpp +++ b/src/gui/sharedialog.cpp @@ -271,6 +271,7 @@ void ShareDialog::showSharingUi() auto label = new QLabel(this); label->setText(tr("The file can not be shared because it was shared without sharing permission.")); label->setWordWrap(true); + _ui->verticalLayout->insertWidget(1, label); return; } diff --git a/src/gui/shareusergroupwidget.cpp b/src/gui/shareusergroupwidget.cpp index 6f85809d9..d576b1edb 100644 --- a/src/gui/shareusergroupwidget.cpp +++ b/src/gui/shareusergroupwidget.cpp @@ -202,6 +202,7 @@ void ShareUserGroupWidget::slotSharesFetched(const QList> connect(s, &ShareUserLine::visualDeletionDone, this, &ShareUserGroupWidget::getShares); s->setBackgroundRole(layout->count() % 2 == 0 ? QPalette::Base : QPalette::AlternateBase); layout->addWidget(s); + s->setVisible(true); x++; if (x <= 3) { @@ -420,6 +421,13 @@ ShareUserLine::ShareUserLine(QSharedPointer share, _permissionReshare->setVisible(false); } + //If the initiator is not you. And the recipient is not you. Show it without any options. + if(share->account()->id() != share->getId() && share->account()->davUser() != share->getShareWith()->shareWith()){ + _ui->permissionsEdit->hide(); + _ui->permissionToolButton->hide(); + _ui->deleteShareButton->hide(); + } + loadAvatar(); } diff --git a/src/gui/wizard/webview.cpp b/src/gui/wizard/webview.cpp index 00913f387..8612e6e21 100644 --- a/src/gui/wizard/webview.cpp +++ b/src/gui/wizard/webview.cpp @@ -136,7 +136,7 @@ WebViewPageUrlSchemeHandler::WebViewPageUrlSchemeHandler(QObject *parent) void WebViewPageUrlSchemeHandler::requestStarted(QWebEngineUrlRequestJob *request) { QUrl url = request->requestUrl(); - QString path = url.path().mid(1); + QString path = url.path(0).mid(1); // get undecoded path QStringList parts = path.split("&"); QString server; @@ -153,12 +153,14 @@ void WebViewPageUrlSchemeHandler::requestStarted(QWebEngineUrlRequestJob *reques } } - user = QUrl::fromPercentEncoding(user.toUtf8()); - password = QUrl::fromPercentEncoding(password.toUtf8()); + qCDebug(lcWizardWebiew()) << "Got raw user from request path: " << user; user = user.replace(QChar('+'), QChar(' ')); password = password.replace(QChar('+'), QChar(' ')); + user = QUrl::fromPercentEncoding(user.toUtf8()); + password = QUrl::fromPercentEncoding(password.toUtf8()); + if (!server.startsWith("http://") && !server.startsWith("https://")) { server = "https://" + server; } diff --git a/translations/client_bg.ts b/translations/client_bg.ts index 5b933b8c3..0223f0021 100644 --- a/translations/client_bg.ts +++ b/translations/client_bg.ts @@ -65,12 +65,12 @@ Help - + Помощ Settings - + Настройки @@ -2757,17 +2757,17 @@ It is not advisable to use it. - + Copy link Копирай връзката - + No results for '%1' Няма резултат за '%1' - + I shared something with you Споделих нещо с вас @@ -2785,22 +2785,22 @@ It is not advisable to use it. може да редактира - + Can reshare Може да споделя повторно - + Can create Може да създава - + Can change Може да променя - + Can delete Може да изтрива @@ -3385,12 +3385,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected Открит е невалиден сертификат - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_ca.ts b/translations/client_ca.ts index 7c142ac9c..5434f06fc 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -2775,17 +2775,17 @@ No és aconsellable fer-la servir. Comparteix amb usuaris o grups ... - + Copy link Copia l'enllaç - + No results for '%1' No hi ha resultats per '%1' - + I shared something with you He compartit una cosa amb tu @@ -2803,22 +2803,22 @@ No és aconsellable fer-la servir. pot editar - + Can reshare Pot re-compartir - + Can create Pot crear - + Can change Pot canviar - + Can delete Pot suprimir @@ -3404,12 +3404,12 @@ No és aconsellable fer-la servir. OCC::WebEnginePage - + Invalid certificate detected S'ha detectat un certificat no vàlid - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_cs.ts b/translations/client_cs.ts index dd8ef6b4e..b00a0ea11 100644 --- a/translations/client_cs.ts +++ b/translations/client_cs.ts @@ -2772,17 +2772,17 @@ Nedoporučuje se jí používat. Sdílet s uživateli nebo skupinami… - + Copy link Zkopírovat odkaz - + No results for '%1' Žádné výsledky pro „%1“ - + I shared something with you Něco jsem vám nasdílel @@ -2800,22 +2800,22 @@ Nedoporučuje se jí používat. lze upravovat - + Can reshare Může sdílet dál - + Can create Může vytvářet - + Can change Může měnit - + Can delete Může mazat @@ -3401,12 +3401,12 @@ Nedoporučuje se jí používat. OCC::WebEnginePage - + Invalid certificate detected Zjištěn neplatný certifikát - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_da.ts b/translations/client_da.ts index 2289e993c..a5ffcda0f 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -2752,17 +2752,17 @@ It is not advisable to use it. - + Copy link - + No results for '%1' - + I shared something with you @@ -2780,22 +2780,22 @@ It is not advisable to use it. kan redigere - + Can reshare - + Can create - + Can change - + Can delete @@ -3379,12 +3379,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_de.ts b/translations/client_de.ts index 5936ad9fc..53c1ee9c0 100644 --- a/translations/client_de.ts +++ b/translations/client_de.ts @@ -2772,17 +2772,17 @@ Es ist nicht ratsam, sie zu benutzen. Mit Benutzern oder Gruppen teilen … - + Copy link Link kopieren - + No results for '%1' Keine Ergebnisse für '%1' - + I shared something with you Ich habe etwas mit Ihnen geteilt @@ -2800,22 +2800,22 @@ Es ist nicht ratsam, sie zu benutzen. kann bearbeiten - + Can reshare kann weiterteilen - + Can create kann erstellen - + Can change kann ändern - + Can delete kann löschen @@ -2843,7 +2843,7 @@ Es ist nicht ratsam, sie zu benutzen. SSL Cipher Debug View - + Debug-Ansicht der SSL-Chiffren @@ -3401,14 +3401,14 @@ Es ist nicht ratsam, sie zu benutzen. OCC::WebEnginePage - + Invalid certificate detected Ungültiges Zertifikat gefunden - + The host "%1" provided an invalid certificate. Continue? - + Der Server "%1" hat ein ungültiges Zertifikat. Fortsetzen? diff --git a/translations/client_el.ts b/translations/client_el.ts index a74c3a592..d9f5dec24 100644 --- a/translations/client_el.ts +++ b/translations/client_el.ts @@ -2762,17 +2762,17 @@ It is not advisable to use it. Διαμοιρασμός με χρήστες ή ομάδες ... - + Copy link Αντιγραφή συνδέσμου - + No results for '%1' Κανένα αποτέλεσμα για '%1' - + I shared something with you @@ -2790,22 +2790,22 @@ It is not advisable to use it. δυνατότητα επεξεργασίας - + Can reshare Δυνατότητα να διαμοιραστεί ξανά - + Can create Δυνατότητα δημιουργίας - + Can change - + Can delete Μπορεί να διαγράψει @@ -3391,12 +3391,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_en.ts b/translations/client_en.ts index 43ef6b517..7a31f095c 100644 --- a/translations/client_en.ts +++ b/translations/client_en.ts @@ -2778,17 +2778,17 @@ It is not advisable to use it. - + Copy link - + No results for '%1' - + I shared something with you @@ -2806,22 +2806,22 @@ It is not advisable to use it. - + Can reshare - + Can create - + Can change - + Can delete @@ -3405,12 +3405,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_en_GB.ts b/translations/client_en_GB.ts index 7b01984d5..666c0906a 100644 --- a/translations/client_en_GB.ts +++ b/translations/client_en_GB.ts @@ -2773,17 +2773,17 @@ It is not advisable to use it. Share with users or groups ... - + Copy link Copy link - + No results for '%1' No results for '%1' - + I shared something with you I shared something with you @@ -2801,22 +2801,22 @@ It is not advisable to use it. can edit - + Can reshare Can reshare - + Can create Can create - + Can change Can change - + Can delete Can delete @@ -3402,12 +3402,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_eo.ts b/translations/client_eo.ts index 61d2f7369..945909789 100644 --- a/translations/client_eo.ts +++ b/translations/client_eo.ts @@ -2772,17 +2772,17 @@ Uzi ĝin ne konsilindas. Kunhavigi kun uzantoj aŭ grupoj... - + Copy link Kopii ligilon - + No results for '%1' Neniu rezulto por „%1“ - + I shared something with you Mi kunhavigis ion kun vi @@ -2800,22 +2800,22 @@ Uzi ĝin ne konsilindas. povas redakti - + Can reshare Eblas rekunhavigi - + Can create Povas krei - + Can change Eblas ŝanĝi - + Can delete Povas forigi @@ -2843,7 +2843,7 @@ Uzi ĝin ne konsilindas. SSL Cipher Debug View - + Vido pri sencimigo de SSL-ĉifrado @@ -3400,14 +3400,14 @@ Uzi ĝin ne konsilindas. OCC::WebEnginePage - + Invalid certificate detected Nevalida atestilo eltrovita - + The host "%1" provided an invalid certificate. Continue? - + La gastigo „%1“ provizis nevalidan atestilon. Ĉu daŭrigi? diff --git a/translations/client_es.ts b/translations/client_es.ts index 04b4850c8..199d27397 100644 --- a/translations/client_es.ts +++ b/translations/client_es.ts @@ -2772,17 +2772,17 @@ No se recomienda usarla. Compartir con usuarios o grupos ... - + Copy link Copiar enlace - + No results for '%1' No hay resultados para '%1' - + I shared something with you He compartido algo contigo @@ -2800,22 +2800,22 @@ No se recomienda usarla. puede editar - + Can reshare Puede compartir - + Can create Puede crear - + Can change Puede cambiar - + Can delete Puede eliminar @@ -2843,7 +2843,7 @@ No se recomienda usarla. SSL Cipher Debug View - + Vista Depurador Chipher SSL @@ -3401,14 +3401,14 @@ No se recomienda usarla. OCC::WebEnginePage - + Invalid certificate detected Certificado inválido detectado - + The host "%1" provided an invalid certificate. Continue? - + El host "%1" ha ofrecido un certificado no válido. ¿Continuar? diff --git a/translations/client_es_AR.ts b/translations/client_es_AR.ts index fdbfade35..9531091c1 100644 --- a/translations/client_es_AR.ts +++ b/translations/client_es_AR.ts @@ -2752,17 +2752,17 @@ It is not advisable to use it. Compartir con usuario o grupo ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2780,22 +2780,22 @@ It is not advisable to use it. podés editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3379,12 +3379,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_CL.ts b/translations/client_es_CL.ts index fa3ecc5c1..33e1736d1 100644 --- a/translations/client_es_CL.ts +++ b/translations/client_es_CL.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_CO.ts b/translations/client_es_CO.ts index 6e3271408..3ee38d288 100644 --- a/translations/client_es_CO.ts +++ b/translations/client_es_CO.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_CR.ts b/translations/client_es_CR.ts index 14697c6d5..e7eee16d6 100644 --- a/translations/client_es_CR.ts +++ b/translations/client_es_CR.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_DO.ts b/translations/client_es_DO.ts index f08228a2b..b163f1d22 100644 --- a/translations/client_es_DO.ts +++ b/translations/client_es_DO.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_EC.ts b/translations/client_es_EC.ts index 5464895bf..5ddc70ed9 100644 --- a/translations/client_es_EC.ts +++ b/translations/client_es_EC.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_GT.ts b/translations/client_es_GT.ts index 12dc879dd..b91fd55dc 100644 --- a/translations/client_es_GT.ts +++ b/translations/client_es_GT.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_HN.ts b/translations/client_es_HN.ts index 3f37912a3..e1da6621b 100644 --- a/translations/client_es_HN.ts +++ b/translations/client_es_HN.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_MX.ts b/translations/client_es_MX.ts index 896eb68ad..bbbcb4201 100644 --- a/translations/client_es_MX.ts +++ b/translations/client_es_MX.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_es_SV.ts b/translations/client_es_SV.ts index 5665d5000..c011ba176 100644 --- a/translations/client_es_SV.ts +++ b/translations/client_es_SV.ts @@ -2763,17 +2763,17 @@ No es recomendable usarlo. Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2791,22 +2791,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3392,12 +3392,12 @@ No es recomendable usarlo. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_et.ts b/translations/client_et.ts index f1866a66c..52c5d4eea 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -2753,17 +2753,17 @@ Selle kasutamine pole soovitatav. Jaga kasutajate või gruppidega ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2781,22 +2781,22 @@ Selle kasutamine pole soovitatav. saab muuta - + Can reshare - + Can create - + Can change - + Can delete @@ -3382,12 +3382,12 @@ Selle kasutamine pole soovitatav. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 5f1268e00..66a3bd511 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -2757,17 +2757,17 @@ Ez da gomendagarria erabltzea. Elkarbanatu erabiltzaile edo taldearekin... - + Copy link Esteka kopiatu - + No results for '%1' - + I shared something with you Zerbait partekatu dut zurekin @@ -2785,22 +2785,22 @@ Ez da gomendagarria erabltzea. editatu dezake - + Can reshare Birparteka daiteke - + Can create Sortu dezake - + Can change Aldatu dezake - + Can delete Ezabatu dezake @@ -3384,12 +3384,12 @@ Ez da gomendagarria erabltzea. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_fa.ts b/translations/client_fa.ts index 5f71e1b40..0f910bbd0 100644 --- a/translations/client_fa.ts +++ b/translations/client_fa.ts @@ -2760,17 +2760,17 @@ It is not advisable to use it. اشتراک گذاری با کاربران یا گروه ها ... - + Copy link کپی کردن آدرس لینک - + No results for '%1' هیچ نتیجه ای برای '1%' وجود ندارد - + I shared something with you من چیزی را با شما به اشتراک گذاشتم @@ -2788,22 +2788,22 @@ It is not advisable to use it. می توان ویرایش کرد - + Can reshare - + Can create - + Can change - + Can delete @@ -3388,12 +3388,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_fi.ts b/translations/client_fi.ts index 260dee6d3..c4453af1e 100644 --- a/translations/client_fi.ts +++ b/translations/client_fi.ts @@ -2757,17 +2757,17 @@ Osoitteen käyttäminen ei ole suositeltavaa. Jaa käyttäjien tai ryhmien kanssa… - + Copy link Kopioi linkki - + No results for '%1' Ei tuloksia haulla '%1' - + I shared something with you Jaoin jotain kanssasi @@ -2785,22 +2785,22 @@ Osoitteen käyttäminen ei ole suositeltavaa. voi muokata - + Can reshare Voi uudelleenjakaa - + Can create Voi luoda - + Can change Voi muuttaa - + Can delete Voi poistaa @@ -3386,12 +3386,12 @@ Osoitteen käyttäminen ei ole suositeltavaa. OCC::WebEnginePage - + Invalid certificate detected Virheellinen varmenne havaittu - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_fr.ts b/translations/client_fr.ts index 606e8b91f..960f41b3c 100644 --- a/translations/client_fr.ts +++ b/translations/client_fr.ts @@ -2776,17 +2776,17 @@ Il est déconseillé de l'utiliser. Partager avec des utilisateurs ou groupes... - + Copy link Copier le lien - + No results for '%1' Aucun résultat pour '%1' - + I shared something with you J'ai partagé quelque chose avec vous @@ -2804,22 +2804,22 @@ Il est déconseillé de l'utiliser. peut modifier - + Can reshare Peut repartager - + Can create Peut créer - + Can change Peut modifier - + Can delete Peut supprimer @@ -2847,7 +2847,7 @@ Il est déconseillé de l'utiliser. SSL Cipher Debug View - + Vue de débogage du chiffrement SSL @@ -3405,14 +3405,14 @@ Il est déconseillé de l'utiliser. OCC::WebEnginePage - + Invalid certificate detected Certificat invalide - + The host "%1" provided an invalid certificate. Continue? - + L’hôte "%1" utilise un certificat invalide. Continuer ? diff --git a/translations/client_gl.ts b/translations/client_gl.ts index 4d85c4a96..4e29d99b9 100644 --- a/translations/client_gl.ts +++ b/translations/client_gl.ts @@ -1465,7 +1465,7 @@ Continuando a sincronización como normal fará que todos os seus ficheiros sexa Sync hidden files - Sincronizar os ficheiros agachados + Sincronizar os ficheiros agochados @@ -1688,7 +1688,7 @@ Os rexistros escribiranse en %1 Proxy Settings - Configuración do proxy + Axustes do proxy @@ -2774,17 +2774,17 @@ Recomendámoslle que non o use. Compartir con usuarios ou grupos... - + Copy link Copiar a ligazón - + No results for '%1' Non hai resultados para «%1» - + I shared something with you Compartín algo con vostede @@ -2802,22 +2802,22 @@ Recomendámoslle que non o use. pode editar - + Can reshare Pode volver compartir - + Can create Pode crear - + Can change Pode cambiar - + Can delete Pode eliminar @@ -2845,7 +2845,7 @@ Recomendámoslle que non o use. SSL Cipher Debug View - + Vista de depuración do cifrado SSL @@ -3145,7 +3145,7 @@ Recomendámoslle que non o use. File/Folder is ignored because it's hidden. - O ficheiro/cartafol ignórase por estar agachado. + O ficheiro/cartafol ignórase por estar agochado. @@ -3403,14 +3403,14 @@ Recomendámoslle que non o use. OCC::WebEnginePage - + Invalid certificate detected Detectouse un certificado non válido - + The host "%1" provided an invalid certificate. Continue? - + O servidor «%1» forneceu un certificado non válido. Continuar? diff --git a/translations/client_he.ts b/translations/client_he.ts index 8c9940fdf..a8524d366 100644 --- a/translations/client_he.ts +++ b/translations/client_he.ts @@ -35,7 +35,7 @@ No recently changed files - + לא השתנו קבצים לאחרונה @@ -2754,17 +2754,17 @@ It is not advisable to use it. שיתוף עם משתמשים או קבוצות… - + Copy link העתקת קישור - + No results for '%1' אין תוצאות לחיפוש אחר ‚%1’ - + I shared something with you שיתפת אתך משהו @@ -2782,22 +2782,22 @@ It is not advisable to use it. הרשאה לעריכה - + Can reshare הרשאה לשיתוף מחדש - + Can create הרשאה ליצירה - + Can change הרשאה לעריכה - + Can delete הרשאה למחיקה @@ -3381,12 +3381,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_hu.ts b/translations/client_hu.ts index 07eefb059..4c7c18f98 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -2772,17 +2772,17 @@ Használata nem ajánlott. Megosztás felhasználókkal vagy csoportokkal … - + Copy link Hivatkozás másolása - + No results for '%1' Nincs találat erre: „%1” - + I shared something with you Megosztottam Önnel valamit @@ -2800,22 +2800,22 @@ Használata nem ajánlott. szerkesztheti - + Can reshare Újra megosztható - + Can create Létrehozható - + Can change Módosítható - + Can delete Törölhető @@ -3401,12 +3401,12 @@ Használata nem ajánlott. OCC::WebEnginePage - + Invalid certificate detected Érvénytelen tanúsítvány észlelve - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_is.ts b/translations/client_is.ts index 8c66ceaeb..e0e304039 100644 --- a/translations/client_is.ts +++ b/translations/client_is.ts @@ -2769,17 +2769,17 @@ Ekki er mælt með því að hún sé notuð. Deila með notendum eða hópum ... - + Copy link Afrita tengil - + No results for '%1' Engar niðurstöður fyrir '%1' - + I shared something with you Ég deildi einhverju með þér @@ -2797,22 +2797,22 @@ Ekki er mælt með því að hún sé notuð. getur breytt - + Can reshare Getur endurdeilt - + Can create Getur búið til - + Can change Getur breytt - + Can delete Getur eytt @@ -3399,12 +3399,12 @@ Ekki er mælt með því að hún sé notuð. OCC::WebEnginePage - + Invalid certificate detected Fann ógilt skilríki - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_it.ts b/translations/client_it.ts index dac16032f..70cd9dde9 100644 --- a/translations/client_it.ts +++ b/translations/client_it.ts @@ -2774,17 +2774,17 @@ Non è consigliabile utilizzarlo. Condividi con utenti o gruppi... - + Copy link Copia collegamento - + No results for '%1' Nessun risultato per '%1' - + I shared something with you Ho condiviso qualcosa con te @@ -2802,22 +2802,22 @@ Non è consigliabile utilizzarlo. può modificare - + Can reshare Può ri-condividere - + Can create Può creare - + Can change Può cambiare - + Can delete Può eliminare @@ -2845,7 +2845,7 @@ Non è consigliabile utilizzarlo. SSL Cipher Debug View - + Vista debug cifrario SSL @@ -3403,14 +3403,14 @@ Non è consigliabile utilizzarlo. OCC::WebEnginePage - + Invalid certificate detected Rilevato certificato non valido - + The host "%1" provided an invalid certificate. Continue? - + L'host "%1" ha fornito un certificato non valido. Vuoi continuare? diff --git a/translations/client_ja.ts b/translations/client_ja.ts index 27787c44c..52c4022fe 100644 --- a/translations/client_ja.ts +++ b/translations/client_ja.ts @@ -2758,17 +2758,17 @@ It is not advisable to use it. ユーザーまたはグループと共有 ... - + Copy link リンクをコピー - + No results for '%1' '%1' は見つかりませんでした - + I shared something with you 私はあなたと何かを共有しました @@ -2786,22 +2786,22 @@ It is not advisable to use it. 編集を許可 - + Can reshare 再共有可能 - + Can create 作成可能 - + Can change 変更可能 - + Can delete 削除可能 @@ -3387,12 +3387,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_lt_LT.ts b/translations/client_lt_LT.ts index 618c2dc71..6bf4d842d 100644 --- a/translations/client_lt_LT.ts +++ b/translations/client_lt_LT.ts @@ -2737,7 +2737,7 @@ Patariama jo nenaudoti. Add another link - + Pridėti dar vieną nuorodą @@ -2768,17 +2768,17 @@ Patariama jo nenaudoti. Dalintis su naudotojais ar grupėmis ... - + Copy link Kopijuoti nuorodą - + No results for '%1' Pagal kriterijų %1 nieko nerasta - + I shared something with you Pasidalinau kai kuo su jumis @@ -2796,22 +2796,22 @@ Patariama jo nenaudoti. gali keisti - + Can reshare Gali pakartotinai dalintis - + Can create Gali kurti - + Can change Gali keisti - + Can delete Gali trinti @@ -3397,14 +3397,14 @@ Patariama jo nenaudoti. OCC::WebEnginePage - + Invalid certificate detected Aptiktas netinkamas sertifikatas - + The host "%1" provided an invalid certificate. Continue? - + Serveris "%1" pateikė negaliojantį liudijimą. Tęsti? diff --git a/translations/client_lv.ts b/translations/client_lv.ts index 8f4b7e39d..bb7642944 100644 --- a/translations/client_lv.ts +++ b/translations/client_lv.ts @@ -2754,17 +2754,17 @@ It is not advisable to use it. - + Copy link - + No results for '%1' - + I shared something with you @@ -2782,22 +2782,22 @@ It is not advisable to use it. - + Can reshare - + Can create - + Can change - + Can delete @@ -3381,12 +3381,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected Detektēts nederīgs sertifikāts - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index 1ddcaed44..454132204 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -2763,17 +2763,17 @@ Det er ikke tilrådelig å bruke den. Del med brukere eller grupper … - + Copy link Kopier lenke - + No results for '%1' Ingen resultater for '%1' - + I shared something with you Jeg delte noe med deg @@ -2791,22 +2791,22 @@ Det er ikke tilrådelig å bruke den. kan endre - + Can reshare - + Can create kan opprette - + Can change Kan endre - + Can delete Kan slette @@ -3392,12 +3392,12 @@ Det er ikke tilrådelig å bruke den. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_nl.ts b/translations/client_nl.ts index dcb3e7afd..a32a80fdc 100644 --- a/translations/client_nl.ts +++ b/translations/client_nl.ts @@ -2777,17 +2777,17 @@ We adviseren deze site niet te gebruiken. Delen met gebruikers of groepen ... - + Copy link Kopiëren link - + No results for '%1' Geen resultaten voor '%1' - + I shared something with you Ik deelde iets met u @@ -2805,22 +2805,22 @@ We adviseren deze site niet te gebruiken. kan wijzigen - + Can reshare Kan doordelen - + Can create Kan creëren - + Can change Kan wijzigen - + Can delete Kan verwijderen @@ -2848,7 +2848,7 @@ We adviseren deze site niet te gebruiken. SSL Cipher Debug View - + SSL Cipher Debug View @@ -3406,14 +3406,14 @@ We adviseren deze site niet te gebruiken. OCC::WebEnginePage - + Invalid certificate detected Ongeldig certificaat gedetecteerd - + The host "%1" provided an invalid certificate. Continue? - + De server "%1" heeft een ongeldig certificaat . Wilt u doorgaan? diff --git a/translations/client_pl.ts b/translations/client_pl.ts index 4d81c6068..807cccf09 100644 --- a/translations/client_pl.ts +++ b/translations/client_pl.ts @@ -2773,17 +2773,17 @@ Niezalecane jest jego użycie. Współdziel z użytkownikami lub grupami - + Copy link Kopiuj link - + No results for '%1' Brak wyników dla '%1' - + I shared something with you Udostępniłem/am ci coś @@ -2801,22 +2801,22 @@ Niezalecane jest jego użycie. może edytować - + Can reshare Pozwól na udostępnianie innym - + Can create Pozwól na utworzenie - + Can change Pozwól na zmianę - + Can delete Pozwól na usunięcie @@ -2844,7 +2844,7 @@ Niezalecane jest jego użycie. SSL Cipher Debug View - + Widok debugowania szyfrowania SSL @@ -3402,14 +3402,14 @@ Niezalecane jest jego użycie. OCC::WebEnginePage - + Invalid certificate detected Wykryto nieprawidłowy certyfikat - + The host "%1" provided an invalid certificate. Continue? - + Host "%1" podał nieprawidłowy certyfikat. Kontynuować? diff --git a/translations/client_pt.ts b/translations/client_pt.ts index e042ee7e4..6f18fdc59 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -840,7 +840,7 @@ Please go in the settings to select it if you wish to download it. - Por favor, vá às configurações para a selecionar se a desejar transferir. + Por favor, vá às definições para a selecionar, se desejar transferi-la. @@ -872,12 +872,12 @@ If you decide to delete the files, they will be unavailable to you, unless you a Download new files? - + Transferir novos ficheiros? Download new files - + Transferir novos ficheiros @@ -1648,7 +1648,7 @@ Logs will be written to %1 <p>A new version of the %1 Client is available.</p><p><b>%2</b> is available for download. The installed version is %3.</p> - <p>Está disponível uma nova versão do Cliente %1.</p><p><b>%2</b> está disponível para transferência. A versão instalada é a %3.</p> + <p>Está disponível uma nova versão do Cliente %1.</p><p><b>%2</b> está disponível para transferência. A versão instalada é %3.</p> @@ -2762,17 +2762,17 @@ Não é aconselhada a sua utilização. Partilhar com utilizadores ou grupos... - + Copy link - + No results for '%1' Sem resultados para '%1' - + I shared something with you @@ -2790,22 +2790,22 @@ Não é aconselhada a sua utilização. pode editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3391,12 +3391,12 @@ Não é aconselhada a sua utilização. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? @@ -4018,7 +4018,7 @@ Não é aconselhada a sua utilização. Server version downloaded, copied changed local file into conflict file - A versão do servidor transferida, o ficheiro local alterado foi copiado para o ficheiro de conflito + A versão transferida do servidor, o ficheiro local alterado foi copiado para o ficheiro de conflito @@ -4059,7 +4059,7 @@ Não é aconselhada a sua utilização. downloading - A transferir + a transferir diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index 8ad65dd5c..4be56a0c2 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -181,7 +181,7 @@ Server replied "%1 %2" to "%3 %4" - O servidor respondeu "%1 %2" to "%3 %4" + O servidor respondeu "%1 %2" para "%3 %4" @@ -324,7 +324,7 @@ Sync Running - Sincronização Ocorrendo + Sincronização ocorrendo @@ -2021,7 +2021,7 @@ pode solicitar por privilégios adicionais durante o processo. Secure collaboration & file exchange - Colaboração segura e troca de arquivo + Colaboração segura e troca de arquivos @@ -2773,17 +2773,17 @@ Não é aconselhável usá-la. Compartilhar com usuários ou grupos... - + Copy link Copiar link - + No results for '%1' Sem resultados para '%1' - + I shared something with you Eu compartilhei algo com você @@ -2801,22 +2801,22 @@ Não é aconselhável usá-la. pode editar - + Can reshare Pode recompartilhar - + Can create Pode criar - + Can change Pode alterar - + Can delete Pode excluir @@ -2844,7 +2844,7 @@ Não é aconselhável usá-la. SSL Cipher Debug View - + Visão de Depuração de Criptografia SSL @@ -3402,14 +3402,14 @@ Não é aconselhável usá-la. OCC::WebEnginePage - + Invalid certificate detected Certificado inválido detectado - + The host "%1" provided an invalid certificate. Continue? - + O host "%1" forneceu um certificado inválido. Continuar? @@ -3798,7 +3798,7 @@ Não é aconselhável usá-la. <a href="https://docs.nextcloud.com/server/15/admin_manual/installation/index.html#installation"><span style=" text-decoration: underline; color:#0000ff;">Host your own server</span></a> - <a href="https://docs.nextcloud.com/server/15/admin_manual/installation/index.html#installation"><span style=" text-decoration: underline; color:#0000ff;">Hospeda teu próprio servidor</span></a> + <a href="https://docs.nextcloud.com/server/15/admin_manual/installation/index.html#installation"><span style=" text-decoration: underline; color:#0000ff;">Hospede seu próprio servidor</span></a> diff --git a/translations/client_ru.ts b/translations/client_ru.ts index eaaa5cc60..402a9092e 100644 --- a/translations/client_ru.ts +++ b/translations/client_ru.ts @@ -2767,17 +2767,17 @@ It is not advisable to use it. Введите имя пользователя или группы… - + Copy link Скопировать ссылку - + No results for '%1' Нет результатов для '%1' - + I shared something with you Я поделился с тобой @@ -2795,22 +2795,22 @@ It is not advisable to use it. разрешить редактировать - + Can reshare разрешить делиться - + Can create разрешить создавать - + Can change разрешить вносить изменения - + Can delete разрешить удалять @@ -3396,12 +3396,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected Обнаружен недействительный сертификат - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 7d2007400..5a19390da 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -2762,17 +2762,17 @@ Nie je vhodné ju používať. Zdieľať s používateľmi alebo skupinami ... - + Copy link Kopírovať odkaz - + No results for '%1' Žiadne výsledky pre '%1' - + I shared something with you Niečo som vám sprístupnil @@ -2790,22 +2790,22 @@ Nie je vhodné ju používať. môže upraviť - + Can reshare Môže sprístupniť aj iným - + Can create Môže vytvárať - + Can change Môže meniť - + Can delete Môže odstraňovať @@ -3391,12 +3391,12 @@ Nie je vhodné ju používať. OCC::WebEnginePage - + Invalid certificate detected Bol zistený neplatný certifikát - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 47f391e6d..12284f9bf 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -2762,17 +2762,17 @@ Uporaba ni priporočljiva. Souporaba z uporabniki ali skupinami ... - + Copy link - + No results for '%1' Ni zadetkov za '%1' - + I shared something with you @@ -2790,22 +2790,22 @@ Uporaba ni priporočljiva. lahko ureja - + Can reshare - + Can create - + Can change - + Can delete @@ -3391,12 +3391,12 @@ Uporaba ni priporočljiva. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_sr.ts b/translations/client_sr.ts index 3554ffa48..49f3bb858 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -2773,17 +2773,17 @@ It is not advisable to use it. Дели са корисницима или групама... - + Copy link Копирај везу - + No results for '%1' Нема резултата за '%1' - + I shared something with you Поделио сам нешто са Вама @@ -2801,22 +2801,22 @@ It is not advisable to use it. може да мења - + Can reshare Може да дели даље - + Can create Може да креира унутар дељења - + Can change Може да мења садржај унутар дељења - + Can delete Може да брише садржај унутар дељења @@ -3402,12 +3402,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected Детектован неисправан сертификат - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 101fab59c..1ebe701f5 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -2773,17 +2773,17 @@ Det är inte lämpligt använda den. Dela med användare eller grupper ... - + Copy link Kopiera länk - + No results for '%1' Inga resultat för '%1' - + I shared something with you Jag delade något med dig @@ -2801,22 +2801,22 @@ Det är inte lämpligt använda den. kan redigera - + Can reshare Kan dela vidare - + Can create Kan skapa - + Can change Kan ändra - + Can delete Kan radera @@ -2844,7 +2844,7 @@ Det är inte lämpligt använda den. SSL Cipher Debug View - + SSL-kryptering Debugvy @@ -3402,14 +3402,14 @@ Det är inte lämpligt använda den. OCC::WebEnginePage - + Invalid certificate detected Ogiltigt certifikat upptäckt - + The host "%1" provided an invalid certificate. Continue? - + Servern "%1" tillhandahöll ett ogiltigt certifikat. Fortsätt? diff --git a/translations/client_th.ts b/translations/client_th.ts index 7e80ec246..d356252d4 100644 --- a/translations/client_th.ts +++ b/translations/client_th.ts @@ -2762,17 +2762,17 @@ It is not advisable to use it. แชร์กับผู้ใช้หรือกลุ่ม ... - + Copy link - + No results for '%1' ไม่มีผลลัพธ์สำหรับ '%1' - + I shared something with you ฉันแชร์บางอย่างกับคุณ @@ -2790,22 +2790,22 @@ It is not advisable to use it. สามารถแก้ไข - + Can reshare - + Can create - + Can change - + Can delete @@ -3390,12 +3390,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? diff --git a/translations/client_tr.ts b/translations/client_tr.ts index a8bffe43e..0634f6586 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -2772,17 +2772,17 @@ Kullanmanız önerilmez. Kullanıcı ya da gruplarla paylaş... - + Copy link Bağlantıyı kopyala - + No results for '%1' '%1' için bir sonuç bulunamadı - + I shared something with you Sizinle bir şey paylaştım @@ -2800,22 +2800,22 @@ Kullanmanız önerilmez. düzenleyebilir - + Can reshare Yeniden paylaşabilsin - + Can create Ekleyebilsin - + Can change Değiştirebilsin - + Can delete Silebilsin @@ -2843,7 +2843,7 @@ Kullanmanız önerilmez. SSL Cipher Debug View - + SSL Şifreleme Hata Ayıklama Görünümü @@ -3401,14 +3401,14 @@ Kullanmanız önerilmez. OCC::WebEnginePage - + Invalid certificate detected Sertifika geçersiz - + The host "%1" provided an invalid certificate. Continue? - + "%1" sunucusunun sertifikası geçersiz. Devam etmek ister misiniz? diff --git a/translations/client_uk.ts b/translations/client_uk.ts index dce7101e6..3d1065018 100644 --- a/translations/client_uk.ts +++ b/translations/client_uk.ts @@ -9,78 +9,78 @@ Checking for changes in '%1' - + Перевірка на зміни у '%1' Syncing %1 of %2 (%3 left) - + Синхронізую %1 з %2 (залишилося %3) Syncing %1 of %2 - + Синхронізую %1 з %2 Syncing %1 (%2 left) - + Синхронізую %1 (залишилося %2) Syncing %1 - + Синхронізую %1 No recently changed files - + Файли не змінювалися останнім часом Sync paused - + Синхронізацію призупинено Syncing - + Синхронізація Open website - + Відкрити вебсайт Recently changed - + Останні зміни Pause synchronization - + Призупинити синхронізацію Help - + Допомога Settings - + Налаштування Log out - + Вийти Quit sync client - + Вийти з клієнта синхронізації @@ -88,12 +88,12 @@ Dialog - + Діялог Label - + Мітка @@ -101,18 +101,18 @@ Could not make directories in trash - + Неможливо створити каталог у смітнику Could not move '%1' to '%2' - + Неможливо перемістити '%1' до '%2' Moving to the trash is not implemented on this platform - + Ця платформа не дозволяє переміщення до смітника @@ -125,7 +125,7 @@ Pick a local folder on your computer to sync - Оберіть локальний каталог на Вашому ПК для синхронізації: + Оберіть локальну теку на Вашому ПК для синхронізації: @@ -176,12 +176,12 @@ Unknown error: network reply was deleted - + Незнайома помилка: відповідь мережі вилучено Server replied "%1 %2" to "%3 %4" - + Відповідь сервера: "%1 %2" до "%3 %4" @@ -279,7 +279,7 @@ Encrypt - + Шифрувати @@ -309,7 +309,7 @@ <p>Could not create local folder <i>%1</i>. - + <p>Неможливо створити локальну теку <i>%1</i>. @@ -420,7 +420,7 @@ Open folder - Відкрити каталог + Відкрити теку @@ -489,7 +489,7 @@ Maintenance mode - + Режим обслуговування @@ -522,22 +522,22 @@ More information - + Докладно Accept - + Прийняти Join - + Приєднатися Open Browser - + Відкрити бравзер @@ -555,17 +555,17 @@ Accept - + Прийняти Synced - + Синхронізовано Retry all uploads - + Повторно завантажити все @@ -870,17 +870,17 @@ If you decide to delete the files, they will be unavailable to you, unless you a Download new files? - + Звантажити нові файли? Download new files - + Звантажити нові файли Keep local files - + Зберегти локальні файли @@ -1025,7 +1025,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Synchronized with local folder - + Синхронізовано з локальною текою @@ -1038,7 +1038,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an You need to be connected to add a folder - + Ви маєте мати з'єднання з мережею, щоб додати теку @@ -1093,7 +1093,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Syncing %1 Example text: "Syncing 'foo.txt', 'bar.txt'" - + Синхронізую %1 @@ -1175,7 +1175,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Preparing to sync... - + Підготовка до синхронізації... @@ -1321,7 +1321,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an For System Tray - + Для системного трею @@ -1401,7 +1401,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Sharing error - + Помилка під час надання доступу @@ -1464,7 +1464,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Remove all - + Вилучити все @@ -1519,7 +1519,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from Dialog - + Діялог @@ -1534,7 +1534,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close - + Закрити @@ -1855,7 +1855,7 @@ for additional privileges during the process. Update Check - + Перевірити оновлення @@ -1878,7 +1878,7 @@ for additional privileges during the process. %1 folder '%2' is synced to local folder '%3' - %1 тека '%2' синхронізована з локальним каталогом '%3' + %1 тека '%2' синхронізована з локальною текою '%3' @@ -1893,7 +1893,7 @@ for additional privileges during the process. Free space: %1 - + Вільне місце: %1 @@ -1909,7 +1909,7 @@ for additional privileges during the process. There isn't enough free space in the local folder! - + Недостатньо вільного місця у локальній теці! @@ -2319,7 +2319,7 @@ It is not advisable to use it. could not create folder %1 - + неможливо створити теку %1 @@ -2692,7 +2692,7 @@ It is not advisable to use it. Read only - + Тільки для читання @@ -2707,22 +2707,22 @@ It is not advisable to use it. Password Protect - + Захищено паролем Expiration Date - + Дійсно до Unshare - + Скасувати загальний доступ Add another link - + Додати ще одне посилання @@ -2742,7 +2742,7 @@ It is not advisable to use it. Public link - + Публічне посилання @@ -2753,19 +2753,19 @@ It is not advisable to use it. Поширити серед користувачів або груп ... - + Copy link - + Скопіювати посилання - + No results for '%1' - + Відсутні результати для '%1' - + I shared something with you - + Я поділився з вами документами @@ -2773,7 +2773,7 @@ It is not advisable to use it. User name - + Ім'я користувача @@ -2781,22 +2781,22 @@ It is not advisable to use it. може редагувати - + Can reshare - + Can create - + Can change - + Can delete @@ -2843,7 +2843,7 @@ It is not advisable to use it. Share with %1 parameter is Nextcloud - + Поділитися з %1 @@ -2859,7 +2859,7 @@ It is not advisable to use it. Share... - + Поділитися... @@ -2886,7 +2886,7 @@ It is not advisable to use it. Open in browser - + Відкрити у бравзері @@ -3205,7 +3205,7 @@ It is not advisable to use it. No space on %1 server available. - + На сервері %1 більше немає місця. @@ -3265,7 +3265,7 @@ It is not advisable to use it. Unresolved conflict. - + Конфлікт, який неможна вирішити @@ -3280,7 +3280,7 @@ It is not advisable to use it. Invalid characters, please rename "%1" - + Помилкові символи, будь ласка, перейменуйте "%1" @@ -3311,7 +3311,7 @@ It is not advisable to use it. Not allowed because you don't have permission to add subfolders to that folder - Заборонено через відсутність прав додавання підкаталогів в цю теку. + Заборонено через відсутність прав додавання вкладених тек у цій теці. @@ -3382,12 +3382,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue? @@ -3541,42 +3541,42 @@ It is not advisable to use it. Error during synchronization - + Помилка під час синхронізації No sync folders configured - + Теки для синхронізації не налаштовано Resume all folders - + Продовжити синхронізацію у всіх теках Pause all folders - + Призупинити синхронізацію всюди Resume all synchronization - + Продовжити синхронізацію всюди Resume synchronization - + Продовжити синхронізацію Pause all synchronization - + Призупинити синхронізацію всюди Pause synchronization - + Призупинити синхронізацію @@ -3592,7 +3592,7 @@ It is not advisable to use it. Apps - + Застосунки diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index db533d4d4..317062e7f 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -2771,17 +2771,17 @@ It is not advisable to use it. 共享给其他用户或组 ... - + Copy link 复制链接 - + No results for '%1' 没有 '%1' 相关结果 - + I shared something with you 我向您共享了一些东西 @@ -2799,22 +2799,22 @@ It is not advisable to use it. 可编辑 - + Can reshare 可以再分享 - + Can create 可以创建 - + Can change 可以修改 - + Can delete 可以删除 @@ -2842,7 +2842,7 @@ It is not advisable to use it. SSL Cipher Debug View - + SSL加密调试视图 @@ -3400,14 +3400,14 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected 检测到无效证书 - + The host "%1" provided an invalid certificate. Continue? - + 主机 “%1” 提供了无效证书。是否继续? diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index 782deb056..9b05e4b53 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -2756,17 +2756,17 @@ It is not advisable to use it. 與用戶或群組分享 ... - + Copy link - + No results for '%1' '%1' 沒有結果 - + I shared something with you @@ -2784,22 +2784,22 @@ It is not advisable to use it. 可編輯 - + Can reshare - + Can create - + Can change - + Can delete @@ -3385,12 +3385,12 @@ It is not advisable to use it. OCC::WebEnginePage - + Invalid certificate detected - + The host "%1" provided an invalid certificate. Continue?