From 2f54e911b7d23653ca4aa89041e5749726a8c3c5 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 21 Mar 2020 00:20:51 +0100 Subject: [PATCH 01/42] Add desktop-entry hint to notifications This allows the notification server to map a notification to the program's desktop file, which allows the server to do extra things. For example KDE Plasma adds the Nextcloud icon to the notification and allows to configure notifications from Nextcloud. This is a standard hint from https://specifications.freedesktop.org/notification-spec/notification-spec-latest.html#hints Signed-off-by: Nicolas Fella --- src/gui/systray.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index 081a90b0e..0a5d7bfd5 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -121,8 +121,9 @@ void Systray::showMessage(const QString &title, const QString &message, MessageI { #ifdef USE_FDO_NOTIFICATIONS if (QDBusInterface(NOTIFICATIONS_SERVICE, NOTIFICATIONS_PATH, NOTIFICATIONS_IFACE).isValid()) { + const QVariantMap hints = {{QStringLiteral("desktop-entry"), QStringLiteral("com.nextcloud.desktopclient.nextcloud")}}; QList args = QList() << APPLICATION_NAME << quint32(0) << APPLICATION_ICON_NAME - << title << message << QStringList() << QVariantMap() << qint32(-1); + << title << message << QStringList() << hints << qint32(-1); QDBusMessage method = QDBusMessage::createMethodCall(NOTIFICATIONS_SERVICE, NOTIFICATIONS_PATH, NOTIFICATIONS_IFACE, "Notify"); method.setArguments(args); QDBusConnection::sessionBus().asyncCall(method); From b84a1eeb8dbade9990b45e1b879943f98fbde978 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 21 Mar 2020 00:38:57 +0100 Subject: [PATCH 02/42] Remove timeout parameter from showMessage It it never set by calling code so the default value of 10000 is used. It is only used in the call to QSystemTrayIcon, which uses 10000 as default value too. Signed-off-by: Nicolas Fella --- src/gui/systray.cpp | 4 ++-- src/gui/systray.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index 081a90b0e..08c40ef10 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -117,7 +117,7 @@ Q_INVOKABLE void Systray::setClosed() _isOpen = false; } -void Systray::showMessage(const QString &title, const QString &message, MessageIcon icon, int millisecondsTimeoutHint) +void Systray::showMessage(const QString &title, const QString &message, MessageIcon icon) { #ifdef USE_FDO_NOTIFICATIONS if (QDBusInterface(NOTIFICATIONS_SERVICE, NOTIFICATIONS_PATH, NOTIFICATIONS_IFACE).isValid()) { @@ -134,7 +134,7 @@ void Systray::showMessage(const QString &title, const QString &message, MessageI } else #endif { - QSystemTrayIcon::showMessage(title, message, icon, millisecondsTimeoutHint); + QSystemTrayIcon::showMessage(title, message, icon); } } diff --git a/src/gui/systray.h b/src/gui/systray.h index d562dcf42..8af3b5352 100644 --- a/src/gui/systray.h +++ b/src/gui/systray.h @@ -47,7 +47,7 @@ public: virtual ~Systray() {}; void create(); - void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int millisecondsTimeoutHint = 10000); + void showMessage(const QString &title, const QString &message, MessageIcon icon = Information); void setToolTip(const QString &tip); bool isOpen(); From c1189421c01ba6d77f6850dfdb2cf599fa750339 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 21 Mar 2020 01:05:45 +0100 Subject: [PATCH 03/42] Use qEnvironmentVariableIsEmpty clazy suggests that it is more efficient since it doesn't allocate. Signed-off-by: Nicolas Fella --- src/common/checksums.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/checksums.cpp b/src/common/checksums.cpp index 7cfb1353f..6edf84de9 100644 --- a/src/common/checksums.cpp +++ b/src/common/checksums.cpp @@ -150,7 +150,7 @@ QByteArray contentChecksumType() static bool checksumComputationEnabled() { - static bool enabled = qgetenv("OWNCLOUD_DISABLE_CHECKSUM_COMPUTATIONS").isEmpty(); + static bool enabled = qEnvironmentVariableIsEmpty("OWNCLOUD_DISABLE_CHECKSUM_COMPUTATIONS"); return enabled; } From 1afda2b8751bed8db10c3475b83794a851d9178e Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 21 Mar 2020 01:24:06 +0100 Subject: [PATCH 04/42] Fix container detaching Found by clazy Signed-off-by: Nicolas Fella --- src/csync/csync_exclude.cpp | 6 ++++-- src/gui/networksettings.cpp | 3 ++- src/gui/wizard/webview.cpp | 2 +- src/libsync/syncengine.cpp | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/csync/csync_exclude.cpp b/src/csync/csync_exclude.cpp index 21f8380ef..169a88e00 100644 --- a/src/csync/csync_exclude.cpp +++ b/src/csync/csync_exclude.cpp @@ -346,7 +346,8 @@ bool ExcludedFiles::reloadExcludeFiles() _fullRegexDir.clear(); bool success = true; - for (const auto& basePath : _excludeFiles.keys()) { + const auto keys = _excludeFiles.keys(); + for (const auto& basePath : keys) { for (const auto& file : _excludeFiles.value(basePath)) { success = loadExcludeFile(basePath, file); } @@ -667,7 +668,8 @@ void ExcludedFiles::prepare() _fullRegexFile.clear(); _fullRegexDir.clear(); - for (auto const & basePath : _allExcludes.keys()) + const auto keys = _allExcludes.keys(); + for (auto const & basePath : keys) prepare(basePath); } diff --git a/src/gui/networksettings.cpp b/src/gui/networksettings.cpp index d2436396d..ff80b05c7 100644 --- a/src/gui/networksettings.cpp +++ b/src/gui/networksettings.cpp @@ -182,7 +182,8 @@ void NetworkSettings::saveProxySettings() // start the sync. FolderMan::instance()->setDirtyProxy(); - for (auto account : AccountManager::instance()->accounts()) { + const auto accounts = AccountManager::instance()->accounts(); + for (auto account : accounts) { account->freshConnectionAttempt(); } } diff --git a/src/gui/wizard/webview.cpp b/src/gui/wizard/webview.cpp index 8c6d57c1a..6603820f4 100644 --- a/src/gui/wizard/webview.cpp +++ b/src/gui/wizard/webview.cpp @@ -145,7 +145,7 @@ void WebViewPageUrlSchemeHandler::requestStarted(QWebEngineUrlRequestJob *reques QUrl url = request->requestUrl(); QString path = url.path(0).mid(1); // get undecoded path - QStringList parts = path.split("&"); + const QStringList parts = path.split("&"); QString server; QString user; diff --git a/src/libsync/syncengine.cpp b/src/libsync/syncengine.cpp index 42e45b5c8..63626c30a 100644 --- a/src/libsync/syncengine.cpp +++ b/src/libsync/syncengine.cpp @@ -331,7 +331,7 @@ void SyncEngine::conflictRecordMaintenance() // Remove stale conflict entries from the database // by checking which files still exist and removing the // missing ones. - auto conflictRecordPaths = _journal->conflictRecordPaths(); + const auto conflictRecordPaths = _journal->conflictRecordPaths(); for (const auto &path : conflictRecordPaths) { auto fsPath = _propagator->getFilePath(QString::fromUtf8(path)); if (!QFileInfo(fsPath).exists()) { @@ -344,7 +344,7 @@ void SyncEngine::conflictRecordMaintenance() // // This happens when the conflicts table is new or when conflict files // are downlaoded but the server doesn't send conflict headers. - for (const auto &path : _seenFiles) { + for (const auto &path : qAsConst(_seenFiles)) { if (!Utility::isConflictFile(path)) continue; From e1f4d1744661359f002f011cc3c33bcdc4f6f0d6 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 21 Mar 2020 02:04:11 +0100 Subject: [PATCH 05/42] [dolphin] Add icon to context menu Signed-off-by: Nicolas Fella --- shell_integration/dolphin/ownclouddolphinactionplugin.cpp | 1 + shell_integration/dolphin/ownclouddolphinpluginhelper.h | 4 ++++ src/gui/socketapi.cpp | 1 + 3 files changed, 6 insertions(+) diff --git a/shell_integration/dolphin/ownclouddolphinactionplugin.cpp b/shell_integration/dolphin/ownclouddolphinactionplugin.cpp index 8b306ba95..992e14b81 100644 --- a/shell_integration/dolphin/ownclouddolphinactionplugin.cpp +++ b/shell_integration/dolphin/ownclouddolphinactionplugin.cpp @@ -93,6 +93,7 @@ public: auto menuaction = new QAction(parentWidget); menuaction->setText(helper->contextMenuTitle()); + menuaction->setIcon(QIcon::fromTheme(helper->contextMenuIconName())); menuaction->setMenu(menu); return { menuaction }; } diff --git a/shell_integration/dolphin/ownclouddolphinpluginhelper.h b/shell_integration/dolphin/ownclouddolphinpluginhelper.h index 92d9fcdf8..762f110cb 100644 --- a/shell_integration/dolphin/ownclouddolphinpluginhelper.h +++ b/shell_integration/dolphin/ownclouddolphinpluginhelper.h @@ -41,6 +41,10 @@ public: { return _strings.value("SHARE_MENU_TITLE", "Share …"); } + QString contextMenuIconName() const + { + return _strings.value("CONTEXT_MENU_ICON", "Nextcloud"); + } QString copyPrivateLinkTitle() const { return _strings["COPY_PRIVATE_LINK_MENU_TITLE"]; } QString emailPrivateLinkTitle() const { return _strings["EMAIL_PRIVATE_LINK_MENU_TITLE"]; } diff --git a/src/gui/socketapi.cpp b/src/gui/socketapi.cpp index 45ed44982..43bd63363 100644 --- a/src/gui/socketapi.cpp +++ b/src/gui/socketapi.cpp @@ -707,6 +707,7 @@ void SocketApi::command_GET_STRINGS(const QString &argument, SocketListener *lis { "CONTEXT_MENU_TITLE", Theme::instance()->appNameGUI() }, { "COPY_PRIVATE_LINK_MENU_TITLE", tr("Copy private link to clipboard") }, { "EMAIL_PRIVATE_LINK_MENU_TITLE", tr("Send private link by email …") }, + { "CONTEXT_MENU_ICON", APPLICATION_ICON_NAME}, } }; listener->sendMessage(QString("GET_STRINGS:BEGIN")); for (const auto& key_value : strings) { From db8b3046087ecb05259df5914df4e10f30c85735 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 21 Mar 2020 03:28:46 +0000 Subject: [PATCH 06/42] [tx-robot] updated from transifex --- translations/client_sl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 595e62d18..bb5a9521c 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -2491,7 +2491,7 @@ It is not advisable to use it. Missing ETag from server - Na strežniku manjka ETag datoteke + Na strežniku manjka datoteka ETag @@ -3640,7 +3640,7 @@ It is not advisable to use it. Open folder '%1' - Odpri mapo '%1' + Odpri mapo »%1« From 20b7e938c504a34e074bb1653204550ec2dbd784 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 21 Mar 2020 15:35:50 +0100 Subject: [PATCH 07/42] [dolphin] Fix overlays when filename has a colon When the filename contains a ':' it gets split too much and tokens[2] does not contain the full filename any more. Read the name from the original line instead. Fixes #686 Signed-off-by: Nicolas Fella --- shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp index 56300f4df..d89aa9174 100644 --- a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp +++ b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp @@ -83,14 +83,16 @@ private: void slotCommandRecieved(const QByteArray &line) { QList tokens = line.split(':'); - if (tokens.count() != 3) + if (tokens.count() < 3) return; if (tokens[0] != "STATUS" && tokens[0] != "BROADCAST") return; if (tokens[2].isEmpty()) return; - const QByteArray name = tokens[2]; + // We can't use tokens[2] because the filename might contain ':' + int secondColon = line.indexOf(":", line.indexOf(":") + 1); + const QByteArray name = line.mid(secondColon + 1); QByteArray &status = m_status[name]; // reference to the item in the hash if (status == tokens[1]) return; From 2aa3dfa9c0c65afc9e554faf58a53a8fbbf55ad5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 22 Mar 2020 03:27:18 +0000 Subject: [PATCH 08/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- translations/client_sk.ts | 2 +- translations/client_sl.ts | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 9351883b2..88ef69fcf 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -1553,7 +1553,7 @@ Pokračovaním v synchronizácii spôsobí prepísanie všetkých vašich súbor Remove all - Odstániť všetko + Odstrániť všetko diff --git a/translations/client_sl.ts b/translations/client_sl.ts index bb5a9521c..793a7f71e 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -3038,7 +3038,7 @@ It is not advisable to use it. This connection is encrypted using %1 bit %2. - Ta povezava je šifrirana z %1 bitnim %2. + Ta povezava je šifrirana z %1-bitnim %2. @@ -4030,7 +4030,7 @@ It is not advisable to use it. %1 requires on a working system tray. If you are running XFCE, please follow <a href="http://docs.xfce.org/xfce/xfce4-panel/systray">these instructions</a>. Otherwise, please install a system tray application such as 'trayer' and try again. - %1 zahteva uporabo sistemske obvestilne vrstice. Pri uporabnikih namizja XFCE je treba upoštevati <a href="http://docs.xfce.org/xfce/xfce4-panel/systray">posebne nastavitve</a>. V kolikor to ni mogoče, je treba namestiti katerikoli sistem obveščanja, kot je na primer program 'trayer'. + %1 zahteva uporabo sistemske obvestilne vrstice. Pri uporabnikih namizja XFCE je treba upoštevati <a href="http://docs.xfce.org/xfce/xfce4-panel/systray">posebne nastavitve</a>. V kolikor to ni mogoče, je treba namestiti katerikoli sistem obveščanja, kot je na primer program »trayer«. From d54add6233cf3ce663f6f4f82689547f09cd5acf Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sun, 22 Mar 2020 16:14:26 +0100 Subject: [PATCH 09/42] Use QQmlApplicationEngine This simplifies the code a bit. Signed-off-by: Nicolas Fella --- src/gui/systray.cpp | 20 ++++++-------------- src/gui/systray.h | 5 ++--- 2 files changed, 8 insertions(+), 17 deletions(-) diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index 081a90b0e..dc9ca6bed 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #ifdef USE_FDO_NOTIFICATIONS @@ -50,20 +50,14 @@ Systray *Systray::instance() Systray::Systray() : _isOpen(false) , _syncIsPaused(false) - , _trayComponent(nullptr) - , _trayContext(nullptr) { - // Create QML tray engine, build component, set C++ backend context used in window.qml - // Use pointer instead of engine() helper function until Qt 5.12 is minimum standard - _trayEngine = new QQmlEngine; + _trayEngine = new QQmlApplicationEngine; _trayEngine->addImportPath("qrc:/qml/theme"); _trayEngine->addImageProvider("avatars", new ImageProvider); _trayEngine->rootContext()->setContextProperty("userModelBackend", UserModel::instance()); _trayEngine->rootContext()->setContextProperty("appsMenuModelBackend", UserAppsModel::instance()); _trayEngine->rootContext()->setContextProperty("systrayBackend", this); - _trayComponent = new QQmlComponent(_trayEngine, QUrl(QStringLiteral("qrc:/qml/src/gui/tray/Window.qml"))); - connect(UserModel::instance(), &UserModel::newUserSelected, this, &Systray::slotNewUserSelected); @@ -73,13 +67,11 @@ Systray::Systray() void Systray::create() { - if (_trayContext == nullptr) { - if (!AccountManager::instance()->accounts().isEmpty()) { - _trayEngine->rootContext()->setContextProperty("activityModel", UserModel::instance()->currentActivityModel()); - } - _trayContext = _trayEngine->contextForObject(_trayComponent->create()); - hideWindow(); + if (!AccountManager::instance()->accounts().isEmpty()) { + _trayEngine->rootContext()->setContextProperty("activityModel", UserModel::instance()->currentActivityModel()); } + _trayEngine->load(QStringLiteral("qrc:/qml/src/gui/tray/Window.qml")); + hideWindow(); } void Systray::slotNewUserSelected() diff --git a/src/gui/systray.h b/src/gui/systray.h index d562dcf42..9900c2d2e 100644 --- a/src/gui/systray.h +++ b/src/gui/systray.h @@ -22,6 +22,7 @@ #include "tray/UserModel.h" class QIcon; +class QQmlApplicationEngine; namespace OCC { @@ -78,9 +79,7 @@ private: Systray(); bool _isOpen; bool _syncIsPaused; - QQmlEngine *_trayEngine; - QQmlComponent *_trayComponent; - QQmlContext *_trayContext; + QQmlApplicationEngine *_trayEngine; }; } // namespace OCC From b4d1a63c149907e6d7eb6e2239cb39e61154ba57 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sun, 22 Mar 2020 21:57:35 +0100 Subject: [PATCH 10/42] Use override Signed-off-by: Nicolas Fella --- src/gui/tray/UserModel.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/tray/UserModel.h b/src/gui/tray/UserModel.h index 36f5af4b3..b52cac0e2 100644 --- a/src/gui/tray/UserModel.h +++ b/src/gui/tray/UserModel.h @@ -86,9 +86,9 @@ public: void addUser(AccountStatePtr &user, const bool &isCurrent = false); int currentUserIndex(); - int rowCount(const QModelIndex &parent = QModelIndex()) const; + int rowCount(const QModelIndex &parent = QModelIndex()) const override; - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QImage avatarById(const int &id); @@ -154,9 +154,9 @@ public: static UserAppsModel *instance(); virtual ~UserAppsModel() {}; - int rowCount(const QModelIndex &parent = QModelIndex()) const; + int rowCount(const QModelIndex &parent = QModelIndex()) const override; - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; enum UserAppsRoles { NameRole = Qt::UserRole + 1, From 56679299dd836e614e9bcc7804555e4d9c9da96f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 23 Mar 2020 03:27:02 +0000 Subject: [PATCH 11/42] [tx-robot] updated from transifex --- translations/client_sl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 793a7f71e..9599e4367 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -1078,7 +1078,7 @@ Z nadaljevanjem usklajevanja bodo vse trenutne datoteke zato prepisane s starej You need to be connected to add a folder - Za dodajanje mape mora biti vzpostavljea povezava + Za dodajanje mape mora biti vzpostavljena povezava From 56222de768e3def4d504b3f9832d8598b1ec2043 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 24 Mar 2020 03:29:21 +0000 Subject: [PATCH 12/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner From 732d59ad14672c294fc65fd09255e875f6e28e40 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 26 Mar 2020 03:26:14 +0000 Subject: [PATCH 13/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 +- translations/client_is.ts | 165 ++++++++++---------- 2 files changed, 88 insertions(+), 85 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/translations/client_is.ts b/translations/client_is.ts index 6263c1a2c..71329aea9 100644 --- a/translations/client_is.ts +++ b/translations/client_is.ts @@ -107,7 +107,7 @@ Browser Authentication - + Auðkenning vafra @@ -122,12 +122,12 @@ Re-open Browser - + Opna vafra aftur Copy link - + Afrita tengil @@ -140,7 +140,7 @@ &Choose … - + &Velja … @@ -153,7 +153,7 @@ Create folder - + Búa til möppu @@ -240,7 +240,7 @@ Storage space: … - + Geymslurými: … @@ -250,7 +250,7 @@ This account supports end-to-end encryption - + Þessi aðgangur styður enda-í-enda dulritun @@ -298,7 +298,7 @@ Edit Ignored Files - + Breyta hunsuðum skrám @@ -338,7 +338,7 @@ <p>Could not create local folder <i>%1</i>.</p> - + <p>Gat ekki búið til staðværa möppu <i>%1</i>.</p> @@ -426,7 +426,7 @@ skráakerfið eða sameignarmöppur, gætu verið með önnur takmörk. Connecting to %1 … - + Tengist við %1 … @@ -557,12 +557,12 @@ gagnageymslur: Browse … - + Flakka … Certificate password: - + Lykilorð skilríkis: @@ -642,7 +642,7 @@ gagnageymslur: No Nextcloud account configured - + Enginn Nextcloud-aðgangur stilltur @@ -736,22 +736,22 @@ gagnageymslur: Waiting for authorization - + Bíð eftir auðkenningu Polling for authorization - + Er á vakt eftir auðkenningu Starting authorization - + Ræsi auðkenningu Link copied to clipboard. - + Tengill afritaður á klippispjald. @@ -850,12 +850,12 @@ nánari upplýsingar. %1 and %n other file(s) are currently locked. - + %1 og %n skrár til viðbótar eru læstar.%1 og %n skrár til viðbótar eru læstar. %1 is currently locked. - + %1 er núna læst. @@ -923,17 +923,17 @@ If this action was unintended you can restore the lost data now. Delete all files? - + Eyða öllum skrám? Delete all files - + Eyða öllum skrám Restore deleted files - + Endurheimta eyddar skrár @@ -1072,7 +1072,7 @@ Vertu viss um að ekkert annað forrit sé ekki að nota hana. Synchronized with local folder (%1) - + Samstillt við möppu á tölvunni (%1) @@ -1107,7 +1107,7 @@ Vertu viss um að ekkert annað forrit sé ekki að nota hana. Fetching folder list from server … - + Sæki lista yfir möppur frá þjóni … @@ -1212,17 +1212,17 @@ Vertu viss um að ekkert annað forrit sé ekki að nota hana. Waiting … - + Bíð … Waiting for %n other folder(s) … - + Bíð eftir %n möppu til viðbótar …Bíð eftir %n möppum til viðbótar … Preparing to sync … - + Undirbý samstillingu … @@ -1394,12 +1394,12 @@ Vertu viss um að ekkert annað forrit sé ekki að nota hana. &Automatically check for Updates - + Leit&a sjálfvirkt að uppfærslum &Check for Update now - + At&huga núna með uppfærslu @@ -1529,27 +1529,27 @@ Vertu viss um að ekkert annað forrit sé ekki að nota hana. Pattern - + Mynstur Allow Deletion - + Leyfa eyðingu Add - + Bæta við Remove - + Fjarlægja Remove all - + Fjarlægja allt @@ -1561,22 +1561,22 @@ Items where deletion is allowed will be deleted if they prevent a directory from Could not open file - + Gat ekki opnað skrá Cannot write changes to '%1'. - + Get ekki skrifað breytingar í '%1'. Add Ignore Pattern - + Bæta við hunsunarmynstri Add a new ignore pattern: - + Bæta við nýju hunsunarmynstri: @@ -1595,7 +1595,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from <p>Copyright 2017-2020 Nextcloud GmbH<br />Copyright 2012-2018 ownCloud GmbH</p> - + <p>Höfundarréttur 2017-2020 Nextcloud GmbH<br />Höfundarréttur 2012-2018 ownCloud GmbH</p> @@ -1862,7 +1862,7 @@ for additional privileges during the process. Downloading version %1. Please wait … - + Sæki útgáfu %1, bíddu aðeins … @@ -1887,7 +1887,7 @@ for additional privileges during the process. Checking update server … - + Athuga með uppfærsluþjón … @@ -1920,7 +1920,7 @@ for additional privileges during the process. Connect … - + Tengjast … @@ -2060,12 +2060,14 @@ aðgerð til að leysa málið!</small></p> This URL is NOT secure as it is not encrypted. It is not advisable to use it. - + Þessi slóð er EKKI örugg því hún er ekki dulrituð. +Ekki er mælt með því að hún sé notuð. +. This URL is secure. You can use it. - + Þessi slóð er örugg. Þú getur notað hana. @@ -2114,7 +2116,7 @@ It is not advisable to use it. Trying to connect to %1 at %2 … - + Reyni að tengjast við %1 á %2 … @@ -2139,7 +2141,7 @@ It is not advisable to use it. Creating local sync folder %1 … - + Bý til staðværu samstillingarmöppuna %1 … @@ -2563,7 +2565,7 @@ It is not advisable to use it. Loading … - + Hleð inn … @@ -2643,7 +2645,7 @@ It is not advisable to use it. Nextcloud Path: - + Nextcloud-slóð: @@ -2686,12 +2688,12 @@ It is not advisable to use it. Share link - + Deila tengli Note: - + Athugið: @@ -2711,7 +2713,7 @@ It is not advisable to use it. Expires: - + Gildir til: @@ -2736,7 +2738,7 @@ It is not advisable to use it. Add note to recipient - + Bæta við minnispunkti til viðtakanda @@ -2790,7 +2792,7 @@ It is not advisable to use it. Share with users or groups … - + Deila með notendum eða hópum ... @@ -2813,7 +2815,7 @@ It is not advisable to use it. Username - + Notandanafn @@ -2905,12 +2907,12 @@ It is not advisable to use it. Share options - + Valkostir sameigna Share via %1 - + Deila með %1 @@ -2920,7 +2922,7 @@ It is not advisable to use it. Send private link by email … - + Senda einkatengil með tölvupósti … @@ -2931,17 +2933,17 @@ It is not advisable to use it. Copy public link - + Afrita opinberan tengil Copy internal link - + Afrita innri tengil Edit - + Breyta @@ -3058,7 +3060,7 @@ It is not advisable to use it. Server version: %1 - + Útgáfa vefþjóns: %1 @@ -3073,7 +3075,7 @@ It is not advisable to use it. The connection is not secure - + Tengingin er ekki örugg @@ -3131,12 +3133,12 @@ It is not advisable to use it. Fingerprint (SHA-256): <tt>%1</tt> - + Fingrafar (SHA-256): <tt>%1</tt> Fingerprint (SHA-512): <tt>%1</tt> - + Fingrafar (SHA-512): <tt>%1</tt> @@ -3442,7 +3444,7 @@ It is not advisable to use it. <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - + <p>%1 skjáborðsforrit</p> @@ -3461,27 +3463,27 @@ It is not advisable to use it. Retry all uploads - + Prófa aftur allar innsendingar You renamed - + Þú endurnefndir You deleted - + Þú eyddir You created - + Þú bjóst til You changed - + Þú breyttir @@ -3489,22 +3491,23 @@ It is not advisable to use it. Confirm Account Removal - + Staðfesta fjarlægingu aðgangs <p>Do you really want to remove the connection to the account <i>%1</i>?</p><p><b>Note:</b> This will <b>not</b> delete any files.</p> - + <p>Viltu í alvörunni fjarlægja tenginguna við aðganginn +<i>%1</i>?</p><p><b>Athugið:</b> Þetta mun <b>ekki</b> eyða neinum skrám.</p> Remove connection - + Fjarlægja tengingu Cancel - + Hætta við @@ -3538,7 +3541,7 @@ It is not advisable to use it. Log in - + Skrá inn @@ -3662,12 +3665,12 @@ It is not advisable to use it. Log in … - + Skrá inn … Syncing %1 of %2 (%3 left) - + Samstilli %1 af %2 (%3 eftir) @@ -3732,12 +3735,12 @@ It is not advisable to use it. Settings … - + Stillingar … New account … - + Nýr notandaaðgangur … @@ -3863,7 +3866,7 @@ It is not advisable to use it. Copy link - + Afrita tengil @@ -4187,7 +4190,7 @@ borð við 'trayer' og reyna síðan aftur. Aborting … - + Hætti við … From 8aea96a640895bb74b0ba4f48f559757abaf8896 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 27 Mar 2020 03:29:32 +0000 Subject: [PATCH 14/42] [tx-robot] updated from transifex --- translations/client_eu.ts | 91 +++++++++++++++++++++------------------ 1 file changed, 49 insertions(+), 42 deletions(-) diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 03826ad20..78f7581d7 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -140,7 +140,7 @@ &Choose … - + &Aukeratu... @@ -523,12 +523,12 @@ Files from the ignore list as well as symbolic links are not synced. This includes: - + Ez-ikusien zerrendako fitxategiak eta esteka sinbolikoak ez dira sinkronizatuko. Hauek: For more activities please open the Activity app. - + Ekintza gehiagorako ireki Ekintzak aplikazioa. @@ -677,7 +677,7 @@ The server file discovery reply is missing data. - + Zerbitzariaren fitxategiak bilatzeko erantzunean datuak falta dira. @@ -686,19 +686,19 @@ Error returned from the server: <em>%1</em> - + Zerbitzariak itzuli duen errorea: <em>%1</em> There was an error accessing the 'token' endpoint: <br><em>%1</em> - + Errorea gertatu da 'token' puntura deia egitean: <br><em>%1</em> Could not parse the JSON returned from the server: <br><em>%1</em> - + Ezin izan da zerbitzariaren JSON formatuko erantzuna irakurri: <br><em>%1</em> @@ -717,7 +717,7 @@ Login in your browser (Login Flow v2) - + Sartu zure nabigatzailean (2. bertsioko Login Bidea) @@ -725,27 +725,27 @@ Unable to open the Browser, please copy the link to your Browser. - + Ezin izan da nabigatzailea ireki, kopiatu eta itsatsi esteka hau zure nabigatzailean. Waiting for authorization - + Baimenaren zain. Polling for authorization - + Baimena eskatzen Starting authorization - + Baimena lortzen Link copied to clipboard. - + Lotura arbelera kopiatua da @@ -842,12 +842,12 @@ %1 and %n other file(s) are currently locked. - + %1 eta beste fitxategi %n blokeatuta daude.%1 eta beste %n fitxategi blokeatuta daude. %1 is currently locked. - + %1 blokeatuta dago @@ -907,14 +907,19 @@ Honek esan nahi du sinkronizazio bezeroak agian ez duela berehalakoan kargatuko These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to restore the files, they will be re-synced with the server if you have rights to do so. If you decide to delete the files, they will be unavailable to you, unless you are the owner. - + '%1' sinkronizatutako karpetako fitxategi guztiak zerbitzarian ezabatu dira. +Ezabaketa hauek zure karpetarekin sinkronizatu egingo dira, eta beraz ezabatu egingo dira berrezartzeko baimenik ez baduzu behintzat. +Fitxategiak berrezartzea erabakitzen baduzu, berriz ere zerbitzariarekin sinkronizatuko dira, horretarako baimena baduzu behintzat. +Fitxategiak ezabatzea erabakitzen baduzu, ez dira zuretako eskuragai egongo, jabea ez bazara behintzat. All files got deleted from your local sync folder '%1'. These files will be deleted from the server and will not be available on your other devices if they will not be restored. If this action was unintended you can restore the lost data now. - + Zure '%1' karpetatik fitxategi guztiak ezabatu dira. +Fitxategi hauek zerbitzaritik ezabatu egingo dira eta zure beste gailuetan ez dira agertuko ez badituzu berrezartzen behintzat. +Hau nahi gabe egin baduzu, galdutako datuak oraintxe berrezarri ditzakezu. @@ -1105,7 +1110,7 @@ Nahi al duzu zure tokiko fitxategi berrienak gatazkako fitxategi gisa mantentzea Fetching folder list from server … - + Karpeta zerrenda zerbitzaritik lortzen... @@ -1215,7 +1220,7 @@ Nahi al duzu zure tokiko fitxategi berrienak gatazkako fitxategi gisa mantentzea Waiting for %n other folder(s) … - + Beste karpeta %n-en zainBeste %n karpetaren zain @@ -1392,12 +1397,12 @@ Nahi al duzu zure tokiko fitxategi berrienak gatazkako fitxategi gisa mantentzea &Automatically check for Updates - + &Automatikoki eguneraketak bilatu &Check for Update now - + &Eguneraketa oraintxe bilatu @@ -1451,12 +1456,12 @@ Nahi al duzu zure tokiko fitxategi berrienak gatazkako fitxategi gisa mantentzea Password for share required - + Partekatzeak pasahitza izan behar du Please enter a password for your link share: - + Idatzi zure partekatze estekaren pasahitza: @@ -1556,7 +1561,9 @@ Nahi al duzu zure tokiko fitxategi berrienak gatazkako fitxategi gisa mantentzea Files or folders matching a pattern will not be synchronized. Items where deletion is allowed will be deleted if they prevent a directory from being removed. This is useful for meta data. - + Patroi bat jarraitzen duten fitxategi edo karpetak ez dira sinkronizatuko. + +Ezabatu daitezkeen elementuak ezabatu egingo dira karpeta bat ezabatzea ekiditen badute. Hau metadatuentzat da erabilgarria. @@ -1566,17 +1573,17 @@ Items where deletion is allowed will be deleted if they prevent a directory from Cannot write changes to '%1'. - + Ezin dira aldaketak '%1'en idatzi. Add Ignore Pattern - + Gehitu ez-ikusteko patroia Add a new ignore pattern: - + Gehitu ez-ikusteko patroi berria: @@ -1595,7 +1602,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from <p>Copyright 2017-2020 Nextcloud GmbH<br />Copyright 2012-2018 ownCloud GmbH</p> - + <p>Copyright 2017-2020 Nextcloud GmbH<br />Copyright 2012-2018 ownCloud GmbH</p> @@ -1623,7 +1630,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from &Capture debug messages - + Arazketa mezuak &gorde @@ -1818,22 +1825,22 @@ Erregistroak %1(e)an idatziko dira. Error returned from the server: <em>%1</em> - + Zerbitzariak itzuli duen errorea: <em>%1</em> There was an error accessing the 'token' endpoint: <br><em>%1</em> - + Errorea gertatu da 'token' puntura deia egitean: <br><em>%1</em> Could not parse the JSON returned from the server: <br><em>%1</em> - + Ezin izan da zerbitzariaren JSON formatuko erantzuna irakurri: <br><em>%1</em> The reply from the server did not contain all expected fields - + Zerbitzariaren erantzunak ez ditu espero ziren eremu guztiak @@ -1843,7 +1850,7 @@ Erregistroak %1(e)an idatziko dira. <h1>Wrong user</h1><p>You logged-in with user <em>%1</em>, but must login with user <em>%2</em>.<br>Please log out of %3 in another tab, then <a href='%4'>click here</a> and log in as user %2</p> - + <h1>Erabiltzailea ez da zuzena</h1><p><em>%1</em> erabiltzailearekin sartu zara, baina <em>%2</em> erabiltzailearekin sartu behar zara. <br>Irten %3-tik beste fitxa baten, ondoren <a href='%4'>egin klik hemen</a> eta sartu %2 erabiltzaile gisa.</p> @@ -1851,7 +1858,7 @@ Erregistroak %1(e)an idatziko dira. New %1 Update Ready - + %1 eguneraketa berria prest dago @@ -1863,12 +1870,12 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. Downloading version %1. Please wait … - + %1 bertsioa deskargatzen. Itxaron mesedez... %1 version %2 available. Restart application to start the update. - + %1 bertsioa %2 prest dago. Berrabiarazi aplikazioa eguneraketarekin hasteko. @@ -1883,17 +1890,17 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. New %1 version %2 is available. Please click <a href='%3'>here</a> to download the update. - + %1 bertsioa %2 prest dago. Egin klik <a href='%3'>hemen</a> eguneraketa deskargatzeko. Checking update server … - + Eguneraketa-zerbitzaria egiaztatzen... Update status is unknown: Did not check for new updates. - + Eguneraketaren egoera ez da ezaguna. Ez da eguneraketarik bilatu. @@ -1926,7 +1933,7 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. %1 folder '%2' is synced to local folder '%3' - + %1 karpeta '%2' lokaleko '%3' karpetan dago sinkronizatuta @@ -1936,7 +1943,7 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. <p><small><strong>Warning:</strong> The local folder is not empty. Pick a resolution!</small></p> - + <p><small><strong>Oharra:</strong> lokaleko karpeta ez dago hutsik. Aukeratu nola konpondu!</small></p> From 20cf9c8b5799686b36369f50a1aeac87dc3799c5 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 28 Mar 2020 03:31:03 +0000 Subject: [PATCH 15/42] [tx-robot] updated from transifex --- translations/client_eu.ts | 6 +++--- translations/client_sk.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 78f7581d7..cd71fb946 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -3444,7 +3444,7 @@ It is not advisable to use it. <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - + <p>Mahaigaineko %1 bezeroa</p> @@ -3664,7 +3664,7 @@ It is not advisable to use it. Log in … - + Hasi saioa … @@ -3739,7 +3739,7 @@ It is not advisable to use it. New account … - + Kontu berria … diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 88ef69fcf..621cad338 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -1396,12 +1396,12 @@ Pokračovaním v synchronizácii spôsobí prepísanie všetkých vašich súbor &Automatically check for Updates - + &Automaticky kontrolovať aktualizácie &Check for Update now - + &Skontrolovať dostupnosť aktualizácie @@ -3446,7 +3446,7 @@ It is not advisable to use it. <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - + <p>%1 Klient pre počítač</p> From 9189d7f1ab3f8eb8b9be0adaa06f0d7ff8634dbf Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 29 Mar 2020 03:36:20 +0000 Subject: [PATCH 16/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 +- translations/client_da.ts | 194 ++++++++++---------- translations/client_oc.ts | 46 ++--- translations/client_sv.ts | 26 +-- 4 files changed, 138 insertions(+), 136 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner diff --git a/translations/client_da.ts b/translations/client_da.ts index 0eb51d51b..facdd7ea0 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -35,7 +35,7 @@ No recently changed files - + Ingen filer modificeret fornyeligt @@ -107,7 +107,7 @@ Browser Authentication - + Browser Godkendelse @@ -122,12 +122,12 @@ Re-open Browser - + Åbn browser igen Copy link - + Kopiér link @@ -140,7 +140,7 @@ &Choose … - + &Vælg … @@ -153,7 +153,7 @@ Create folder - + Opret mappe @@ -239,7 +239,7 @@ Storage space: … - + Lagerplads: ... @@ -297,7 +297,7 @@ Edit Ignored Files - + Rediger Ignorerede Filer @@ -342,7 +342,7 @@ Confirm Folder Sync Connection Removal - + Bekræft Fjern mappesynkroniseringsforbindelse @@ -352,7 +352,7 @@ Remove Folder Sync Connection - + Fjern mappesynkroniseringsforbindelse @@ -422,7 +422,7 @@ Connecting to %1 … - + Forbinder til %1 … @@ -551,12 +551,12 @@ Browse … - + Browse ... Certificate password: - + Certifikat kodeord : @@ -636,7 +636,7 @@ No Nextcloud account configured - + Ingen Nextcloud konto konfigureret @@ -646,7 +646,7 @@ timeout - + Timeout @@ -847,7 +847,7 @@ %1 is currently locked. - + %1 er låst @@ -857,29 +857,31 @@ Could not read system exclude file - + Kunne ikke læse systemets udelukkelsesfil A new folder larger than %1 MB has been added: %2. - + En ny mappe med mere end %1M er blevet tilføjet : %2. + A folder from an external storage has been added. - + En mappe er blevet tilføjet fra eksternt lager. + Please go in the settings to select it if you wish to download it. - + Gå venligst til indstillinger for at vælge om du vil hente den. The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + Mappen %1 er oprettet men tidligere udelukket fra synkronisering. Data i mappen vil ikke blive synkroniseret. @@ -935,7 +937,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Backup detected - + Sikkerhedskopi fundet @@ -945,7 +947,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Keep Local Files as Conflict - + Behold Lokale Filer der Konflikter @@ -953,7 +955,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Could not reset folder state - + Kunne ikke nulstille oprette mappetilstand @@ -973,17 +975,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Undefined State. - + Udefineret tilstand. Waiting to start syncing. - + Venter på at begynde synkronisering Preparing for sync. - + Forbereder synkronisering. @@ -993,22 +995,22 @@ Continuing the sync as normal will cause all your files to be overwritten by an Sync was successful, unresolved conflicts. - + Synk var vellykket, uafgjorte konflikter. Last Sync was successful. - + Sidste Synk var vellykket. Setup Error. - + Fejl ved opsætning. User Abort. - + Bruger Afbrydelse. @@ -1018,22 +1020,22 @@ Continuing the sync as normal will cause all your files to be overwritten by an %1 (Sync is paused) - + %1 (Sync er sat på pause) No valid folder selected! - + Ingen gyldig mappe valgt! The selected path is not a folder! - + Den valgte sti er ikke en mappe! You have no permission to write to the selected folder! - + Du har ikke tilladelse til at skrive til denne mappe. @@ -1056,12 +1058,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an Add Folder Sync Connection - + Opret mappesynkroniseringsforbindelse Synchronized with local folder (%1) - + Synkroniseret med lokal mappe (%1) @@ -1074,12 +1076,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an You need to be connected to add a folder - + Du skal være forbundet for at tilføje en mappe Click this button to add a folder to synchronize. - + Klik denne knap for at tilføje en mappe at synkronisere. @@ -1091,12 +1093,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an Error while loading the list of folders from the server. - + Fejl under indlæsning af listen af mapper fra serveren. Fetching folder list from server … - + Henter mappelisten fra server … @@ -1111,17 +1113,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Checking for changes in remote '%1' - + Tjekker fro ændringer i afsides '%1' Checking for changes in local '%1' - + Tjekker fro ændringer lokalt '%1' Reconciling changes - + Forener ændringer @@ -1139,7 +1141,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'" - + Synkroniserer %1 @@ -1162,7 +1164,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an upload %1/s Example text: "upload 24Kb/s" (%1 is replaced by 24Kb (translated)) - + send %1/s @@ -1201,17 +1203,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Waiting … - + Venter … Waiting for %n other folder(s) … - + Venter på %n anden folder …Venter på %n andre foldere … Preparing to sync … - + Forbereder synkronisering … @@ -1227,7 +1229,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Add Folder Sync Connection - + Opret mappesynkroniseringsforbindelse @@ -1875,7 +1877,7 @@ for additional privileges during the process. Checking update server … - + Tjekker opdateringsserver … @@ -1890,7 +1892,7 @@ for additional privileges during the process. Update Check - + Check for Opdatinger @@ -1908,7 +1910,7 @@ for additional privileges during the process. Connect … - + Tilslut … @@ -1995,7 +1997,7 @@ for additional privileges during the process. Enter user credentials - + Angiv brugeroplysninger @@ -2008,7 +2010,7 @@ for additional privileges during the process. Login in your browser - + Forbind i din browser @@ -2021,7 +2023,7 @@ for additional privileges during the process. Setup %1 server - + Opret %1 server @@ -2449,7 +2451,7 @@ It is not advisable to use it. Local file changed during sync. - + Lokal fil ændret under sync. @@ -2462,12 +2464,12 @@ It is not advisable to use it. The local file was removed during sync. - + Lokal fil fjernet under sync. Local file changed during sync. - + Lokal fil ændret under sync. @@ -2482,7 +2484,7 @@ It is not advisable to use it. Missing ETag from server - + Manglende ETag fra server @@ -2490,22 +2492,22 @@ It is not advisable to use it. Poll URL missing - + ForespørgselsURL mangler The local file was removed during sync. - + Lokal fil fjernet under sync. Local file changed during sync. - + Lokal fil ændret under sync. The server did not acknowledge the last chunk. (No e-tag was present) - + Serveren godkendte ikke de seneste luns. (Ingen e-tag fundet) @@ -2513,7 +2515,7 @@ It is not advisable to use it. Proxy authentication required - + Proxy autentificering påkrævet @@ -2528,7 +2530,7 @@ It is not advisable to use it. The proxy server needs a username and password. - + Proxy server behøver brugernavn og adgangskode @@ -2541,7 +2543,7 @@ It is not advisable to use it. Choose What to Sync - + Vælg Hvad der skal Synkroniseres @@ -2549,12 +2551,12 @@ It is not advisable to use it. Loading … - + Indlæser… Deselect remote folders you do not wish to synchronize. - + Fravælg afsides foldere du ikke ønsker at synkronisere. @@ -2570,12 +2572,12 @@ It is not advisable to use it. No subfolders currently on the server. - + Ingen undermapper på serveren. An error occurred while loading the list of sub folders. - + Der opstod en fejl ved indlæsning af listen af undermappe. @@ -2583,7 +2585,7 @@ It is not advisable to use it. Dismiss - + Afvis @@ -2596,7 +2598,7 @@ It is not advisable to use it. General - + Generel @@ -2619,22 +2621,22 @@ It is not advisable to use it. share label - + del mærke ownCloud Path: - + ownCloud Sti: Nextcloud Path: - + Nextcloud Sti: Icon - + Ikon @@ -2780,7 +2782,7 @@ It is not advisable to use it. Copy link - + Kopiér link @@ -3520,7 +3522,7 @@ It is not advisable to use it. Log in - + Log ind @@ -3528,7 +3530,7 @@ It is not advisable to use it. Unsupported Server Version - + Ikke godkendt serverversion @@ -3538,22 +3540,22 @@ It is not advisable to use it. Disconnected - + Frakoblet Disconnected from some accounts - + Frakoblet fra nogle konti Disconnected from %1 - + Frakoblet fra %1 Disconnected from accounts: - + Frakoblet fra konti: @@ -3563,12 +3565,12 @@ It is not advisable to use it. Please sign in - + Log venligst ind Signed out - + Logget ud @@ -3589,17 +3591,17 @@ It is not advisable to use it. Unresolved conflicts - + Uafgjorte konflikter Up to date - + Opdateret Error during synchronization - + Fejl under synkronisering @@ -3750,12 +3752,12 @@ It is not advisable to use it. Checking for changes in remote '%1' - + Tjekker fro ændringer i afsides '%1' Checking for changes in local '%1' - + Tjekker fro ændringer lokalt '%1' @@ -3784,12 +3786,12 @@ It is not advisable to use it. Choose what to sync - + Vælg hvad der skal synkroniseres &Local Folder - + &Lokal Mappe @@ -3799,7 +3801,7 @@ It is not advisable to use it. &Keep local data - + &Behold lokale data @@ -3845,7 +3847,7 @@ It is not advisable to use it. Copy link - + Kopiér link @@ -3863,7 +3865,7 @@ It is not advisable to use it. Log in - + Log ind diff --git a/translations/client_oc.ts b/translations/client_oc.ts index 048b1c74d..d6315855d 100644 --- a/translations/client_oc.ts +++ b/translations/client_oc.ts @@ -9,22 +9,22 @@ Checking for changes in '%1' - + Verificacion de las modificacions dins « %1 » Syncing %1 of %2 (%3 left) - + Sincronizacion %1 sus %2 (%3 restants) Syncing %1 of %2 - + Sincronizacion %1 sus %2 Syncing %1 (%2 left) - + Sincronizacion %1 (%2 restants) @@ -88,13 +88,13 @@ Could not make directories in trash - + Creacion impossibla de dossier dins l’escobilhièr Could not move '%1' to '%2' - + Desplaçament impossible de « %1 » dins « %2 » @@ -107,12 +107,12 @@ Browser Authentication - + Autentificacion navegador Please switch to your browser to proceed. - + Mercés de passar sus vòstre navegador per contunhar. @@ -135,7 +135,7 @@ Pick a local folder on your computer to sync - + Causissètz un dossièr de vòstre ordenador a sincronizar. @@ -148,7 +148,7 @@ Select a remote destination folder - + Causissètz un dossier distant coma destinacion @@ -239,7 +239,7 @@ Storage space: … - + Espaci d’emmagazinatge : … @@ -249,7 +249,7 @@ This account supports end-to-end encryption - + Aqueste compte es compatible amb lo chiframent del cap a la fin @@ -302,7 +302,7 @@ Choose what to sync - + Causissètz qué sincronizar @@ -536,7 +536,7 @@ SSL client certificate authentication - + Autentificacion client via SSL @@ -566,7 +566,7 @@ Certificate files (*.p12 *.pfx) - + Fichièr del certificat (*.p12 *.pfx) @@ -1139,7 +1139,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'" - + Sincronizacion %1 @@ -2649,7 +2649,7 @@ It is not advisable to use it. %1 Sharing - + %1 en partatge @@ -2841,7 +2841,7 @@ It is not advisable to use it. You must sign in as user %1 - + Devètz èsser connectat coma %1 @@ -3208,7 +3208,7 @@ It is not advisable to use it. Access is forbidden - + Accès defendut @@ -3661,17 +3661,17 @@ It is not advisable to use it. Syncing %1 of %2 - + Sincronizacion %1 sus %2 Syncing %1 (%2 left) - + Sincronizacion %1 (%2 restants) Syncing %1 - + Sincronizacion %1 @@ -3681,7 +3681,7 @@ It is not advisable to use it. Recent Changes - + Modificacions recentas diff --git a/translations/client_sv.ts b/translations/client_sv.ts index f699241fb..30f959455 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -623,12 +623,12 @@ Please enter your end to end encryption passphrase:<br><br>User: %2<br>Account: %3<br> - Ange dina end to end krypteringsord:<br><br>Användare: %2<br>Konto: %3<br> + Vänligen ange ditt lösenord för end-to-end-kryptering:<br><br>Användare: %2<br>Konto: %3<br> Enter E2E passphrase - Ange E2E krypteringsord + Ange lösenord för E2E @@ -1104,7 +1104,7 @@ Om du fortsätter synkroniseringen kommer alla dina filer återställas med en Error while loading the list of folders from the server. - Ett fel uppstod när mapplistan försökte laddas från servern. + Ett fel uppstod när mapplistan försökte läsas in från servern. @@ -1704,7 +1704,7 @@ Loggar kommer att skrivas till %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>En ny version av %1 klienten är tillgänglig.</p><p><b>%2</b> är tillgänglig för nedladdning. Den installerade versionen är %3.</p> + <p>En ny version av %1 klienten är tillgänglig.</p><p><b>%2</b> är tillgänglig för hämtning. Den installerade versionen är %3.</p> @@ -1757,7 +1757,7 @@ Loggar kommer att skrivas till %1 Download Bandwidth - Bandbredd för nedladdning + Bandbredd för hämtning @@ -1890,7 +1890,7 @@ ytterligare rättigheter under processen. New %1 version %2 is available. Please click <a href='%3'>here</a> to download the update. - Ny %1 version %2 är tillgänglig. Klicka <a href='%3'>här</a> för att ladda ner uppdateringen. + Ny %1 version %2 är tillgänglig. Vänligen klicka <a href='%3'>här</a> för att hämta uppdateringen. @@ -2088,7 +2088,7 @@ Det är inte lämpligt att använda den. Could not load certificate. Maybe wrong password? - Kunde inte ladda certifikatet. Felaktigt lösenord? + Kunde inte läsa in certifikatet. Felaktigt lösenord? @@ -2293,7 +2293,7 @@ Det är inte lämpligt att använda den. File %1 can not be downloaded because encryption information is missing. - Fil %1 kan inte laddas ner eftersom krypteringsinformation fattas. + Fil %1 kan inte hämtas eftersom krypteringsinformation fattas. @@ -2303,7 +2303,7 @@ Det är inte lämpligt att använda den. The download would reduce free local disk space below the limit - Nedladdningen skulle reducera det fria diskutrymmet under gränsen + Hämtningen skulle reducera det fria diskutrymmet under gränsen @@ -2570,7 +2570,7 @@ Det är inte lämpligt att använda den. Loading … - Laddar ... + Läser in ... @@ -2596,7 +2596,7 @@ Det är inte lämpligt att använda den. An error occurred while loading the list of sub folders. - Ett fel uppstod när listan för submappar laddades. + Ett fel uppstod när listan för submappar lästes in. @@ -3169,7 +3169,7 @@ Det är inte lämpligt att använda den. Failed to load or create the journal file. Make sure you have read and write permissions in the local sync folder. - Misslyckades med att ladda eller skapa journalfilen. Säkerställ att du har rättigheter att läsa och skriva i den lokala synkmappen. + Misslyckades med att läsa in eller skapa journalfilen. Säkerställ att du har rättigheter att läsa och skriva i den lokala synkmappen. @@ -3417,7 +3417,7 @@ Det är inte lämpligt att använda den. Disk space is low: Downloads that would reduce free space below %1 were skipped. - Diskutrymmet är lågt: Nedladdningar som reduceringar det fria utrymmet under %1 skippades. + Diskutrymmet är lågt: Hämtningar som skulle reducera det fria utrymmet under %1 hoppas över. From aa3ad18221cc88f2bde6ed50238edcc3462546c9 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 30 Mar 2020 03:30:26 +0000 Subject: [PATCH 17/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 +- translations/client_pt_BR.ts | 2 +- translations/client_sv.ts | 6 +- translations/client_zh_TW.ts | 165 ++++++++++---------- 4 files changed, 91 insertions(+), 90 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index a4e4a4cfe..9efe91cd9 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -35,7 +35,7 @@ No recently changed files - Nenhum arquivo recentemente alterado + Nenhum arquivo alterado recentemente diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 30f959455..330b11465 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -2046,7 +2046,7 @@ ytterligare rättigheter under processen. Keep your data secure and under your control - Håll dina data säker och under din kontroll + Håll dina data säkra och under din kontroll @@ -3822,7 +3822,7 @@ Det är inte lämpligt att använda den. &Keep local data - &Behåll lokal data + &Behåll lokala data @@ -4140,7 +4140,7 @@ Det är inte lämpligt att använda den. updating local metadata - uppdaterar lokal metadata + uppdaterar lokala metadata diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index 1f01b7c99..770807d2b 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -140,7 +140,7 @@ &Choose … - + 選擇 @@ -153,7 +153,7 @@ Create folder - + 新增資料夾 @@ -239,7 +239,7 @@ Storage space: … - + 儲存空間: @@ -337,7 +337,7 @@ <p>Could not create local folder <i>%1</i>.</p> - + <p>無法建立本機資料夾<i>%1</i>.</p> @@ -422,12 +422,12 @@ Connecting to %1 … - + 正在連線到 %1... No connection to %1 at %2. - 沒有從 %2 連線到 %1 + %1 沒有連線到 %2 @@ -523,12 +523,12 @@ Files from the ignore list as well as symbolic links are not synced. This includes: - + 在排除清單內以及檔案參照連結的檔案沒有倍同步,這些檔案包含: For more activities please open the Activity app. - + 請開啟活動以檢視更多活動app @@ -551,12 +551,12 @@ Browse … - + 搜尋中... Certificate password: - + 憑證密碼: @@ -636,7 +636,7 @@ No Nextcloud account configured - + 沒有 Nextcloud 帳戶的設定檔 @@ -677,7 +677,7 @@ The server file discovery reply is missing data. - + 伺服器回報檔案遺失 @@ -692,7 +692,7 @@ There was an error accessing the 'token' endpoint: <br><em>%1</em> - + 存取權杖進入點發生錯誤:<br><em>%1</em> @@ -704,7 +704,7 @@ The reply from the server did not contain all expected fields - + 伺服器的回應沒有包含所有預期的欄位 @@ -730,22 +730,22 @@ Waiting for authorization - + 等候驗證中 Polling for authorization - + 輪詢驗證中 Starting authorization - + 開始驗證 Link copied to clipboard. - + 超連結已複製到剪貼簿 @@ -753,7 +753,7 @@ Local folder %1 does not exist. - 本地資料夾 %1 不存在 + 本機資料夾 %1 不存在 @@ -1108,7 +1108,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Fetching folder list from server … - + 正在從伺服器取得資料清單... @@ -1213,17 +1213,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Waiting … - + 請稍後... Waiting for %n other folder(s) … - + 等候其他 %n 個資料夾 Preparing to sync … - + 正在準備同步... @@ -1231,7 +1231,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an This problem usually happens when the inotify watches are exhausted. Check the FAQ for details. - + 這個問題通常是因為 inotify 監視器資源耗盡。請到問與答查看更多詳細資料。 @@ -1285,7 +1285,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Authentication failed accessing %1 - 存取 %1 認証失敗 + 存取 %1 認證失敗 @@ -1370,7 +1370,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an For System Tray - + 顯示在工作列 @@ -1385,7 +1385,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Show Server &Notifications - + 顯示系統訊息 @@ -1395,12 +1395,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an &Automatically check for Updates - + 自動檢查更新 &Check for Update now - + 立即檢查更新 @@ -1436,7 +1436,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Show sync folders in &Explorer's Navigation Pane - + 在檔案管理員中顯示資料夾 @@ -1454,12 +1454,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an Password for share required - + 透過密碼保護分享連結 Please enter a password for your link share: - + 請輸入分享連結密碼: @@ -1600,7 +1600,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from <p>Copyright 2017-2020 Nextcloud GmbH<br />Copyright 2012-2018 ownCloud GmbH</p> - + <p> 2017-2020 Nextcloud GmbH 版權所有<br />2012-2018 ownCloud GmbH 版權所有</p> @@ -1829,7 +1829,7 @@ Logs will be written to %1 There was an error accessing the 'token' endpoint: <br><em>%1</em> - + 存取權杖進入點發生錯誤:<br><em>%1</em> @@ -1839,7 +1839,7 @@ Logs will be written to %1 The reply from the server did not contain all expected fields - + 伺服器的回應沒有包含所有預期的欄位 @@ -1869,7 +1869,7 @@ for additional privileges during the process. Downloading version %1. Please wait … - + 版本 %1,正在下載,請稍後... @@ -1889,12 +1889,12 @@ for additional privileges during the process. New %1 version %2 is available. Please click <a href='%3'>here</a> to download the update. - + 新版本 %1 %2 以提供更新,請點擊<a href='%3'>這裡</a>下載更新 Checking update server … - + 正在檢查更新... @@ -1927,7 +1927,7 @@ for additional privileges during the process. Connect … - + 連線中... @@ -2004,7 +2004,7 @@ for additional privileges during the process. &Email - + 電子郵件 @@ -2066,12 +2066,13 @@ for additional privileges during the process. This URL is NOT secure as it is not encrypted. It is not advisable to use it. - + 此網址未加密,有安全疑慮 +我們不建議您使用此網址 This URL is secure. You can use it. - + 此網址是安全的,您可以使用這個網址 @@ -2119,7 +2120,7 @@ It is not advisable to use it. Trying to connect to %1 at %2 … - + 嘗試以 %1 身分連線到 %2 @@ -2134,7 +2135,7 @@ It is not advisable to use it. There was an invalid response to an authenticated WebDAV request - + 伺服器回應 WebDAV 驗證請求不合法 @@ -2144,7 +2145,7 @@ It is not advisable to use it. Creating local sync folder %1 … - + 正在新增本機同步資料夾 %1... @@ -2458,7 +2459,7 @@ It is not advisable to use it. File Removed (start upload) %1 - + 移除檔案(開始上傳) %1 @@ -2501,7 +2502,7 @@ It is not advisable to use it. Missing ETag from server - + 伺服器遺失 ETag @@ -2568,7 +2569,7 @@ It is not advisable to use it. Loading … - + 載入中... @@ -2648,12 +2649,12 @@ It is not advisable to use it. Nextcloud Path: - + Nextcloud 路徑: Icon - + 圖示 @@ -2678,12 +2679,12 @@ It is not advisable to use it. Password for share required - + 透過密碼保護分享連結 Please enter a password for your link share: - + 請輸入分享連結密碼: @@ -2691,12 +2692,12 @@ It is not advisable to use it. Share link - + 分享連結 Note: - + 備註: @@ -2716,7 +2717,7 @@ It is not advisable to use it. Expires: - + 到期日: @@ -2741,7 +2742,7 @@ It is not advisable to use it. Add note to recipient - + 新增筆記到接收者 @@ -2794,7 +2795,7 @@ It is not advisable to use it. Share with users or groups … - + 分享給適用者或群組 @@ -2817,7 +2818,7 @@ It is not advisable to use it. Username - + 使用者名稱 @@ -2873,7 +2874,7 @@ It is not advisable to use it. SSL Cipher Debug View - + SSL 密碼偵錯介面 @@ -2897,7 +2898,7 @@ It is not advisable to use it. Context menu share - + 分享內容選單 @@ -2913,7 +2914,7 @@ It is not advisable to use it. Share via %1 - + 由 %1 分享 @@ -2923,7 +2924,7 @@ It is not advisable to use it. Send private link by email … - + 用電子郵件發送私人連結 @@ -2944,7 +2945,7 @@ It is not advisable to use it. Edit - + 編輯 @@ -3134,12 +3135,12 @@ It is not advisable to use it. Fingerprint (SHA-256): <tt>%1</tt> - + SHA-256 數位指紋:<tt>%1</tt> Fingerprint (SHA-512): <tt>%1</tt> - + SHA-512 數位指紋:<tt>%1</tt> @@ -3445,7 +3446,7 @@ It is not advisable to use it. <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - + <p>%1 桌面版用戶端</p> @@ -3464,27 +3465,27 @@ It is not advisable to use it. Retry all uploads - + 重試所有上傳 You renamed - + 已重新命名 You deleted - + 已刪除 You created - + 已新增 You changed - + 已更改 @@ -3492,22 +3493,22 @@ It is not advisable to use it. Confirm Account Removal - + 請確認移除帳戶 <p>Do you really want to remove the connection to the account <i>%1</i>?</p><p><b>Note:</b> This will <b>not</b> delete any files.</p> - + <p>您確定要移除<i>%1</i>的連線嗎?</p><p><b>提示:</b>這項操作不會刪除任何檔案</p> Remove connection - + 移除連線 Cancel - + 取消 @@ -3541,7 +3542,7 @@ It is not advisable to use it. Log in - + 登入 @@ -3665,12 +3666,12 @@ It is not advisable to use it. Log in … - + 登入中... Syncing %1 of %2 (%3 left) - + 正在同步 %1,共%2 (剩餘 %3) @@ -3735,17 +3736,17 @@ It is not advisable to use it. Settings … - + 設定中... New account … - + 新帳戶 View more activity … - + 顯示更多活動 @@ -4186,7 +4187,7 @@ It is not advisable to use it. Aborting … - + 放棄操作 From 6b74e8b969f83cb729101ae185e2d7c78c7c758e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 31 Mar 2020 03:31:20 +0000 Subject: [PATCH 18/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++-- translations/client_da.ts | 52 ++++++++++----------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner diff --git a/translations/client_da.ts b/translations/client_da.ts index facdd7ea0..d88511647 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -915,17 +915,17 @@ If this action was unintended you can restore the lost data now. Delete all files? - + Slet alle filer? Delete all files - + Slet alle filer Restore deleted files - + Genskab slettede filer @@ -1234,7 +1234,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Add Sync Connection - + Tilføj synkroniseringsforbindelse @@ -1242,17 +1242,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Click to select a local folder to sync. - + Klik for at vælge en lokal mappe at synkronisere. Enter the path to the local folder. - + Angiv stien til den lokale mappe. Select the source folder - + Vælg kildemappen @@ -1260,7 +1260,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Create Remote Folder - + Opret den afsides mappe @@ -1336,7 +1336,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Connection Timeout - + Forbindelse udløbet @@ -1350,32 +1350,32 @@ Continuing the sync as normal will cause all your files to be overwritten by an Legal notice - + Juridisk notits General Settings - + Generelle Indstillinger For System Tray - + Som Systembakke Use &Monochrome Icons - + Benyt &Monochrome  Ikoner &Launch on System Startup - + &Launch ved System Opstart Show Server &Notifications - + Vis Server &Notifikationer @@ -1520,27 +1520,27 @@ Continuing the sync as normal will cause all your files to be overwritten by an Pattern - + Mønster Allow Deletion - + Tillad sletning Add - + Tilføj Remove - + Fjern Remove all - + Fjern alle @@ -1576,7 +1576,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from Legal notice - + Juridisk notits @@ -1599,7 +1599,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from Log Output - + Log Resultat @@ -1614,12 +1614,12 @@ Items where deletion is allowed will be deleted if they prevent a directory from &Capture debug messages - + &Capture debug meddelelser Permanently save logs - + Gem log permanent @@ -1636,12 +1636,12 @@ Logs will be written to %1 Clear the log display. - + Slet logskærmen S&ave - + S&ave From 7a68565268fde3ac90d9d0f5d07bf6343ada24c2 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 1 Apr 2020 03:20:04 +0000 Subject: [PATCH 19/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- translations/client_ca.ts | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/translations/client_ca.ts b/translations/client_ca.ts index c9f8ecef0..edd78dfc3 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -584,7 +584,7 @@ Quit %1 - Surt %1 + Surt del %1 @@ -3758,7 +3758,7 @@ It is not advisable to use it. Quit %1 - Surt %1 + Surt del %1 From e2c8ff929536b60d803f632864796dcf6b1637e3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 2 Apr 2020 03:19:13 +0000 Subject: [PATCH 20/42] [tx-robot] updated from transifex --- translations/client_hr.ts | 12 ++++++------ translations/client_sv.ts | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/translations/client_hr.ts b/translations/client_hr.ts index 0b607bf83..5ce839db8 100644 --- a/translations/client_hr.ts +++ b/translations/client_hr.ts @@ -153,7 +153,7 @@ Create folder - + Stvori mapu @@ -556,7 +556,7 @@ Certificate password: - + Zaporka vjerodajnice: @@ -1396,12 +1396,12 @@ Nastavljanje sinkronizacije uzrokovat će zamjenu svih vaših datoteka starijim &Automatically check for Updates - + i automatski provjeri za ažuriranja &Check for Update now - + i provjeri za ažuriranja @@ -2136,7 +2136,7 @@ Nije preporučljivo koristiti ga. There was an invalid response to an authenticated WebDAV request - + Došlo je do nevažećeg odgovora na autorizirani zahtjev protokola WebDAV @@ -3447,7 +3447,7 @@ Nije preporučljivo koristiti ga. <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - + <p>%1 Klijent za osobna računala</p> diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 330b11465..e154cebdb 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -1663,7 +1663,7 @@ Loggar kommer att skrivas till %1 Save the log file to a file on disk for debugging. - Spara loggfilen till en fil på disk för felsökning. + Spara loggfilen som en fil på disken för felsökning. From 3359b019c37bbfaa1e9684001605fe67b00672ef Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 3 Apr 2020 03:20:10 +0000 Subject: [PATCH 21/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- translations/client_da.ts | 2 +- translations/client_et.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner diff --git a/translations/client_da.ts b/translations/client_da.ts index d88511647..8ecc1ebbb 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -528,7 +528,7 @@ For more activities please open the Activity app. - + For flere aktiviteter åbn Activity app'n. diff --git a/translations/client_et.ts b/translations/client_et.ts index c8c0eda05..3c01f48c6 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -2915,7 +2915,7 @@ It is not advisable to use it. Copy public link - + Kopeeri avalik link From 1fad22596f2cacf4b37eae9cb65bfe00694fa343 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 4 Apr 2020 03:27:46 +0000 Subject: [PATCH 22/42] [tx-robot] updated from transifex --- translations/client_oc.ts | 60 +++++++++++++++++++-------------------- translations/client_tr.ts | 2 +- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/translations/client_oc.ts b/translations/client_oc.ts index d6315855d..6f325fda9 100644 --- a/translations/client_oc.ts +++ b/translations/client_oc.ts @@ -99,7 +99,7 @@ Moving to the trash is not implemented on this platform - + Lo desplaçament a l’escobilhièr es pas implementat sus aquesta plataforma @@ -117,7 +117,7 @@ An error occurred while connecting. Please try again. - + Error de connexion. Tornatz ensajar mai tard. @@ -171,7 +171,7 @@ Connection timed out - + Relambi d’espèra passat @@ -217,7 +217,7 @@ Apply manual changes - + Aplicar las modificacions manualas @@ -337,7 +337,7 @@ <p>Could not create local folder <i>%1</i>.</p> - + <p>Creacion impossibla del dossièr local <i>%1</i>.</p> @@ -357,7 +357,7 @@ Sync Running - + Execucion de la sincro. @@ -372,7 +372,7 @@ %1 of %2 in use - + %1 sus %2 en utilizacion @@ -392,7 +392,7 @@ The server version %1 is old and unsupported! Proceed at your own risk. - + La version %1 del servidor es vièlha e pas mai compatibla ! Contunhatz sota vòstra responsabilitat. @@ -402,17 +402,17 @@ Server %1 is temporarily unavailable. - + Lo servidor %1 es temporàriament indisponible. Server %1 is currently in maintenance mode. - + Lo servidor %1 es actualament en mòde mantenença. Signed out from %1. - + Desconnexion de %1. @@ -541,7 +541,7 @@ This server probably requires a SSL client certificate. - + Aqueste servidor demanda benlèu un certificat client SSL. @@ -574,7 +574,7 @@ Error accessing the configuration file - + Error d’accès al fichièr de configuracion @@ -774,7 +774,7 @@ %1 has been removed. %1 names a file. - + %1 es estat suprimit. @@ -785,7 +785,7 @@ %1 has been downloaded. %1 names a file. - + %1 es estat telecargat. @@ -796,7 +796,7 @@ %1 has been updated. %1 names a file. - + %1 es estat actualizat. @@ -807,7 +807,7 @@ %1 has been renamed to %2. %1 and %2 name files. - + %1 es estat renomenat en %2. @@ -817,7 +817,7 @@ %1 has been moved to %2. - + %1 es estat desplaçat a %2. @@ -847,7 +847,7 @@ %1 is currently locked. - + %1 es actualament verrolhat. @@ -983,12 +983,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an Preparing for sync. - + Preparacion per sincronizar. Sync is running. - + Sincronizacion en cors. @@ -1008,7 +1008,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an User Abort. - + L’utilizaire a abandonat. @@ -1363,7 +1363,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Use &Monochrome Icons - + Utilizar las icònas &monocròmas @@ -1383,12 +1383,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an &Automatically check for Updates - + Verificar &automaticament las mesas a jorn &Check for Update now - + &Verificar las mesas a jorn ara @@ -1452,7 +1452,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Sharing error - + Error de partatge @@ -1607,7 +1607,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from &Find - + &Cercar @@ -1756,7 +1756,7 @@ Logs will be written to %1 KBytes/s - + Ko/s @@ -2003,7 +2003,7 @@ for additional privileges during the process. Connect to %1 - + Connexion a %1 @@ -2016,7 +2016,7 @@ for additional privileges during the process. Connect to %1 - + Connexion a %1 diff --git a/translations/client_tr.ts b/translations/client_tr.ts index 8ec3324ab..119923d9c 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -1399,7 +1399,7 @@ Eşitlemeye normal şekilde devam edilirse tüm dosyalar daha eski bir dosya ile &Check for Update now - &Güncelleme kontrol et + &Güncellemeri denetle From 98a2740ca08d560d7eb719cb9a062dc7e896ce36 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sun, 5 Apr 2020 03:27:09 +0000 Subject: [PATCH 23/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- translations/client_eu.ts | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/translations/client_eu.ts b/translations/client_eu.ts index cd71fb946..ec8a83892 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -2649,7 +2649,7 @@ It is not advisable to use it. Nextcloud Path: - + Nextcloud-en bidea: @@ -2818,7 +2818,7 @@ It is not advisable to use it. Username - + Erabiltzaile-izena @@ -3196,7 +3196,7 @@ It is not advisable to use it. Tried to create a folder that already exists. - + Sortzen saiaturiko karpeta dagoeneko existitzen da. @@ -3261,22 +3261,22 @@ It is not advisable to use it. File names ending with a period are not supported on this file system. - + Puntu batekin amaitzen diren fitxategi-izenak ez dira onartzen fitxategi-sistema honetan. File names containing the character '%1' are not supported on this file system. - + '%1' karakterea daukaten fitxategi-izenak ez dira onartzen fitxategi-sistema honetan. The file name is a reserved name on this file system. - + Fitxategi-izena izen erreserbatua da fitxategi-sistema honetan. Filename contains trailing spaces. - + Fitxategi-izenak amaierako zuriunea dauka. From 80c8bc760f4a59396e2a59570a09f1bea1d58574 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 6 Apr 2020 03:27:52 +0000 Subject: [PATCH 24/42] [tx-robot] updated from transifex --- translations/client_eu.ts | 81 ++++++++++++++++++++------------------- 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/translations/client_eu.ts b/translations/client_eu.ts index ec8a83892..515deb35a 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -1987,12 +1987,12 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. Retry unencrypted over HTTP (insecure) - + Saiatu berriro enkriptatu gabeko HTTP bidez (ez da segurua) Configure client-side TLS certificate - + Konfiguratu bezeroaren aldeko TLS ziurtagiria @@ -2051,7 +2051,7 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. Secure collaboration & file exchange - + Lankidetza segurua eta fitxategien partekatzea @@ -2061,18 +2061,19 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. Screensharing, online meetings & web conferences - + Pantaila partekatzea, online bilerak eta web konferentziak This URL is NOT secure as it is not encrypted. It is not advisable to use it. - + URL hau EZ da segurua, ez baitago enkriptatuta. +Ez da gomendagarria erabiltzea. This URL is secure. You can use it. - + URL hau segurua da. Erabil dezakezu. @@ -2105,7 +2106,7 @@ It is not advisable to use it. Failed to connect to %1 at %2:<br/>%3 - + Konektatze saiakerak huts egin du %1 at %2:%3 @@ -2120,12 +2121,12 @@ It is not advisable to use it. Trying to connect to %1 at %2 … - + %2 zerbitzarian dagoen %1 konektatzen... The authenticated request to the server was redirected to '%1'. The URL is bad, the server is misconfigured. - + Zerbitzariari egindako eskaera autentifikatua '%1'ra birbideratu da. URLa okerra da, zerbitzaria gaizki konfiguratuta dago. @@ -2135,7 +2136,7 @@ It is not advisable to use it. There was an invalid response to an authenticated WebDAV request - + Baliogabeko erantzuna jaso du autentifikaturiko WebDAV eskaera batek @@ -2145,7 +2146,7 @@ It is not advisable to use it. Creating local sync folder %1 … - + %1 sinkronizazio karpeta lokala sortzen... @@ -2276,7 +2277,7 @@ It is not advisable to use it. Invalid JSON reply from the poll URL - + Baliogabeko JSON erantzuna galdeketaren URLtik @@ -2297,12 +2298,12 @@ It is not advisable to use it. File %1 can not be downloaded because of a local file name clash! - + %1 fitxategia ezin da deskargatu, fitxategi lokal baten izenarekin gatazka! The download would reduce free local disk space below the limit - + Deskargak disko lokaleko toki librea muga azpitik gutxituko luke @@ -2327,12 +2328,12 @@ It is not advisable to use it. File %1 cannot be saved because of a local file name clash! - + %1 fitxategia ezin da gorde, fitxategi lokal baten izenarekin gatazka! File has changed since discovery - + Fitxategia aldatu egin da aurkitu zenetik @@ -2345,12 +2346,12 @@ It is not advisable to use it. ; Restoration Failed: %1 - + ; Berreskurapenak huts egin du: %1 A file or folder was removed from a read only share, but restoring failed: %1 - + Fitxategi edo karpeta bat kendu da irakurtzeko soilik zen partekatzetik, baina berreskurapenak huts egin du: %1 @@ -2363,7 +2364,7 @@ It is not advisable to use it. Attention, possible case sensitivity clash with %1 - + Kontuz, baliteke maiuskulekin izen gatazka egotea %1ekin @@ -2391,7 +2392,7 @@ It is not advisable to use it. Could not remove %1 because of a local file name clash - + Ezin izan da %1 kendu fitxategi lokal baten izen gatazka dela eta @@ -2399,7 +2400,7 @@ It is not advisable to use it. File %1 can not be renamed to %2 because of a local file name clash - + %1 fitxategiari ezin zaio %2 izena eman fitxategi lokal batekin izen gatazka dagoelako @@ -2413,7 +2414,7 @@ It is not advisable to use it. Wrong HTTP code returned by server. Expected 204, but received "%1 %2". - + HTTP kode okerra erantzun du zerbitzariak. 204 espero zen, baina "%1 %2" jaso da. @@ -2421,7 +2422,7 @@ It is not advisable to use it. Wrong HTTP code returned by server. Expected 201, but received "%1 %2". - + HTTP kode okerra erantzun du zerbitzariak. 201 espero zen, baina "%1 %2" jaso da. @@ -2434,7 +2435,7 @@ It is not advisable to use it. Wrong HTTP code returned by server. Expected 201, but received "%1 %2". - + HTTP kode okerra erantzun du zerbitzariak. 201 espero zen, baina "%1 %2" jaso da. @@ -2464,7 +2465,7 @@ It is not advisable to use it. Local file changed during syncing. It will be resumed. - + Fitxategi lokala aldatu egin da sinkronizazioa egin bitartean. Berrekin egingo da. @@ -2492,7 +2493,7 @@ It is not advisable to use it. Unexpected return code from server (%1) - + Espero ez zen erantzuna (%1) zerbitzaritik @@ -2533,7 +2534,7 @@ It is not advisable to use it. Proxy authentication required - + Proxy autentifikazioa beharrezkoa @@ -2548,7 +2549,7 @@ It is not advisable to use it. The proxy server needs a username and password. - + Proxy zerbitzariak erabiltzaile-izena eta pasahitza behar ditu. @@ -2684,7 +2685,7 @@ It is not advisable to use it. Please enter a password for your link share: - + Sartu pasahitza esteka partekatzeko: @@ -2707,7 +2708,7 @@ It is not advisable to use it. &Share link - + &Partekatu esteka @@ -2795,7 +2796,7 @@ It is not advisable to use it. Share with users or groups … - + Partekatu erabiltzaile edo taldeekin ... @@ -2805,7 +2806,7 @@ It is not advisable to use it. No results for '%1' - + Ez dago emaitzarik '%1'(r)entzako @@ -2914,7 +2915,7 @@ It is not advisable to use it. Share via %1 - + Partekatu %1 bidez @@ -2924,7 +2925,7 @@ It is not advisable to use it. Send private link by email … - + Bidali esteka pribatua postaz... @@ -3060,7 +3061,7 @@ It is not advisable to use it. Server version: %1 - + Zerbitzariaren bertsioa: %1 @@ -3075,7 +3076,7 @@ It is not advisable to use it. The connection is not secure - + Konexioa ez da segurua @@ -3133,12 +3134,12 @@ It is not advisable to use it. Fingerprint (SHA-256): <tt>%1</tt> - + Hatz-marka (SHA-256): <tt>%1</tt> Fingerprint (SHA-512): <tt>%1</tt> - + Hatz-marka (SHA-512): <tt>%1</tt> @@ -3506,7 +3507,7 @@ It is not advisable to use it. Cancel - + Utzi @@ -3734,7 +3735,7 @@ It is not advisable to use it. Settings … - + Ezarpenak ... From 49e1338087420ddf645885ee409e78e27fda550d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 8 Apr 2020 03:31:13 +0000 Subject: [PATCH 25/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner From 151224f12e7372136226bdb80b09d31058949820 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 9 Apr 2020 03:31:03 +0000 Subject: [PATCH 26/42] [tx-robot] updated from transifex --- translations/client_eu.ts | 130 +++++++++++++++++++------------------- 1 file changed, 66 insertions(+), 64 deletions(-) diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 515deb35a..876ed1d8d 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -528,7 +528,7 @@ For more activities please open the Activity app. - Ekintza gehiagorako ireki Ekintzak aplikazioa. + Jarduera gehiagorako ireki Jarduerak aplikazioa. @@ -1977,7 +1977,7 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. <html><head/><body><p>Failed to connect to the secure server address specified. How do you wish to proceed?</p></body></html> - + <html><head/><body><p>Zehaztutako zerbitzari helbide segurura konektatzeak huts egin du. Nola jarraitu nahi duzu?</p></body></html> @@ -1997,7 +1997,7 @@ pribilegio gehigarriak eskatzen ahal dizu prozesuan. <html><head/><body><p>Failed to connect to the secure server address <em>%1</em>. How do you wish to proceed?</p></body></html> - + <html><head/><body><p><em>%1</em> zerbitzari helbide segurura konektatzeak huts egin du. Nola jarraitu nahi duzu?</p></body></html> @@ -2131,7 +2131,7 @@ Ez da gomendagarria erabiltzea. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + Sarrera zerbitzariarengatik ukatuta. Sarerra egokia duzula egiaztatzeko, egin <a href="%1">klik hemen</a> zerbitzura zure arakatzailearekin sartzeko. @@ -2498,12 +2498,12 @@ Ez da gomendagarria erabiltzea. Missing File ID from server - + Fitxategiaren IDa falta da zerbitzarian Missing ETag from server - + ETag-a falta da zerbitzarian @@ -2511,7 +2511,7 @@ Ez da gomendagarria erabiltzea. Poll URL missing - + Galdeketa URLa falta da @@ -2526,7 +2526,7 @@ Ez da gomendagarria erabiltzea. The server did not acknowledge the last chunk. (No e-tag was present) - + Zerbitzariak ez du adierazi azken zatia jaso denik. Ez zegoen e-etiketarik (e-tag) @@ -2575,7 +2575,7 @@ Ez da gomendagarria erabiltzea. Deselect remote folders you do not wish to synchronize. - + Desautatu ez sinkronizatzea nahi duzun urruneko karpetak. @@ -2596,7 +2596,7 @@ Ez da gomendagarria erabiltzea. An error occurred while loading the list of sub folders. - + Errore bat gertatu da azpikarpeten zerrenda kargatzerakoan. @@ -2604,7 +2604,7 @@ Ez da gomendagarria erabiltzea. Dismiss - + Baztertu @@ -2675,12 +2675,12 @@ Ez da gomendagarria erabiltzea. The file can not be shared because it was shared without sharing permission. - + Fitxategia ezin da partekatu partekatze baimenik gabe partekatu delako. Password for share required - + Partekatzearen pasahitza beharrezkoa @@ -2899,7 +2899,7 @@ Ez da gomendagarria erabiltzea. Context menu share - + Testuinguruaren partekatze menua @@ -2969,7 +2969,7 @@ Ez da gomendagarria erabiltzea. Subject Alternative Names: - + Gaiaren ordezko izenak: @@ -2994,7 +2994,7 @@ Ez da gomendagarria erabiltzea. Serial: - + Serie-zenbakia: @@ -3034,12 +3034,12 @@ Ez da gomendagarria erabiltzea. <p><b>Note:</b> This certificate was manually approved</p> - + <p><b>Oharra:</b> ziurtagiri hau eskuz onartu da</p> %1 (self-signed) - + %1 (autosinatuta) @@ -3050,13 +3050,15 @@ Ez da gomendagarria erabiltzea. This connection is encrypted using %1 bit %2. - + Konexioa enkriptatuta dago %1 biteko %2 erabiliz. + This connection is NOT secure as it is not encrypted. - + Konexioa EZ da segurua ez dagoelako enkriptatuta. + @@ -3066,7 +3068,7 @@ Ez da gomendagarria erabiltzea. No support for SSL session tickets/identifiers - + Ez dago laguntzarik SSL saioen txartel/identifikatzaileentzat @@ -3089,12 +3091,12 @@ Ez da gomendagarria erabiltzea. Untrusted Certificate - + Ziurtagiri ez-fidagarria Cannot connect securely to <i>%1</i>: - + Ezin da segurtasunarekin <i>%1</i>(e)ra konektatu: @@ -3167,17 +3169,17 @@ Ez da gomendagarria erabiltzea. Failed to load or create the journal file. Make sure you have read and write permissions in the local sync folder. - + Huts egin du egunkari fitxategia kargatu edo sortzeak. Ziurtatu irakurri eta idazteko baimenak dauzkazula karpeta sinkronizatu lokalean. Discovery step failed. - + Aurkitzeko pausuak huts egin du. A network connection timeout happened. - + Sare konexioaren denbora-muga gainditu da. @@ -3222,7 +3224,7 @@ Ez da gomendagarria erabiltzea. The mounted folder is temporarily not available on the server - + Gainean jarritako karpeta ez dago erabilgarri zerbitzarian aldi baterako @@ -3247,7 +3249,7 @@ Ez da gomendagarria erabiltzea. %1 (skipped due to earlier error, trying again in %2) - + %1 (saltatua zena aurreko errore batengatik, berriro saiatzen hemen: %2) @@ -3292,12 +3294,12 @@ Ez da gomendagarria erabiltzea. Folder hierarchy is too deep - + Karpeten hierarkia sakonegia da The filename cannot be encoded on your file system. - + Fitxategi-izen hori ezin da kodetu fitxategi-sistema honetan. @@ -3307,17 +3309,17 @@ Ez da gomendagarria erabiltzea. Conflict: Server version downloaded, local copy renamed and not uploaded. - + Gatazka: zerbitzari bertsioa deskargatu da, kopia lokala berrizendatua eta ez igoa. Stat failed. - + Hasierak huts egin du. Filename encoding is not valid - + Fitxategiaren kodeketa baliogabea da @@ -3328,22 +3330,22 @@ Ez da gomendagarria erabiltzea. Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() - + %1 bakarrik dago eskuragarri, gutxienez %2 behar da hasteko. Unable to open or create the local sync database. Make sure you have write access in the sync folder. - + Ezin izan da ireki edo sortu datu-base lokal sinkronizatua. Ziurtatu idazteko baimena daukazula karpeta sinkronizatu lokalean. Unable to read the blacklist from the local database - + Ezin izan da zerrenda beltza irakurri datu-base lokaletik Unable to read from the sync journal. - + Ezin izan da sinkronizazio-egunkaria irakurri. @@ -3359,22 +3361,22 @@ Ez da gomendagarria erabiltzea. Ignored because of the "choose what to sync" blacklist - + Ez ikusi egin zaio, "aukeratu zer sinkronizatu" zerrenda beltzagatik. Not allowed because you don't have permission to add subfolders to that folder - + Ez da onartu, ez daukazulako baimenik karpeta horretan azpikarpetak gehitzeko Not allowed because you don't have permission to add parent folder - + Ez da onartu, ez daukazulako baimenik karpeta horretan karpeta nagusiak gehitzeko Not allowed because you don't have permission to add files in that folder - + Ez da onartu, ez daukazulako baimenik karpeta horretan fitxategiak gehitzeko @@ -3390,7 +3392,7 @@ Ez da gomendagarria erabiltzea. Local files and share folder removed. - + Fitxategi lokalak eta partekatze karpeta kendu dira. @@ -3415,7 +3417,7 @@ Ez da gomendagarria erabiltzea. Disk space is low: Downloads that would reduce free space below %1 were skipped. - + Toki gutxi dago diskoan: toki librea %1 azpitik gutxituko zuten deskargak saltatu egin dira. @@ -3456,7 +3458,7 @@ Ez da gomendagarria erabiltzea. <p>This release was supplied by %1</p> - + <p>Argitalpen hau %1(e)k eman du</p> @@ -3464,7 +3466,7 @@ Ez da gomendagarria erabiltzea. Retry all uploads - + Saiatu dena berriro kargatzen @@ -3502,7 +3504,7 @@ Ez da gomendagarria erabiltzea. Remove connection - + Kendu konexioa @@ -3515,12 +3517,12 @@ Ez da gomendagarria erabiltzea. Invalid certificate detected - + Ziurtagiri baliogabea detektatu da The host "%1" provided an invalid certificate. Continue? - + "%1" ostalariak ziurtagiri baliogabea eman du. Jarraitu? @@ -3528,7 +3530,7 @@ Ez da gomendagarria erabiltzea. You have been logged out of %1 as user %2. Please login again - + %1 saiotik atera zara %2 gisa. Sar zaitez berriro @@ -3549,12 +3551,12 @@ Ez da gomendagarria erabiltzea. Unsupported Server Version - + Ez da zerbitzariaren bertsioa onartzen The server on account %1 runs an old and unsupported version %2. Using this client with unsupported server versions is untested and potentially dangerous. Proceed at your own risk. - + %1 kontuko zerbitzariak %2 bertsio zahar eta onartzen ez den bat darabil. Onartzen ez diren zerbitzari bertsioekin bezero hau erabiltzea probatu gabe dago eta potentzialki arriskutsua da. Jarraitzen baduzu, zure kontu. @@ -3564,7 +3566,7 @@ Ez da gomendagarria erabiltzea. Disconnected from some accounts - + Kontu batzuetatik deskonektatuta @@ -3655,7 +3657,7 @@ Ez da gomendagarria erabiltzea. Resume all folders - + Berrekin karpeta guztiak @@ -3670,7 +3672,7 @@ Ez da gomendagarria erabiltzea. Syncing %1 of %2 (%3 left) - + %2tik %1 sinkronizatzen (%3 gelditzen dira) @@ -3745,7 +3747,7 @@ Ez da gomendagarria erabiltzea. View more activity … - + Ikusi jarduera gehiago ... @@ -3771,12 +3773,12 @@ Ez da gomendagarria erabiltzea. Checking for changes in remote '%1' - + Begiratzen ea aldaketarik dagoen urruneko '%1'-(e)an Checking for changes in local '%1' - + Begiratzen ea aldaketarik dagoen tokiko '%1'-(e)an @@ -3851,7 +3853,7 @@ Ez da gomendagarria erabiltzea. Please switch to your browser to proceed. - + Mesedez aldatu zure arakatzailera aurrera egiteko. @@ -3879,7 +3881,7 @@ Ez da gomendagarria erabiltzea. Register with a provider - + Erregistratu hornitzaile batekin @@ -4017,17 +4019,17 @@ Ez da gomendagarria erabiltzea. The checksum header is malformed. - + Kontroleko baturaren goiburua gaizki osatu da. The checksum header contained an unknown checksum type '%1' - + Kontroleko baturaren goiburuak '%1' motako kontroleko batura ezezagun bat dauka The downloaded file does not match the checksum, it will be resumed. - + Deskargatu den fitxategia ez dator bat kontroleko baturarekin, berrekin egingo da. @@ -4066,7 +4068,7 @@ Ez da gomendagarria erabiltzea. Server version downloaded, copied changed local file into conflict file - + Zerbitzari bertsioa deskargatu da, kopiaturikoak fitxategi lokala fitxategi gatazkatsu bihurtu du @@ -4186,7 +4188,7 @@ Ez da gomendagarria erabiltzea. Aborting … - + Bertan behera uzten ... From f1ffc16d8664441f5fa2cf3383ba252c84ee9899 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 10 Apr 2020 03:31:12 +0000 Subject: [PATCH 27/42] [tx-robot] updated from transifex --- translations/client_eu.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 876ed1d8d..a0a33c6b8 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -2875,7 +2875,7 @@ Ez da gomendagarria erabiltzea. SSL Cipher Debug View - + SSL zifratzearen arazketa ikuspegia @@ -3499,7 +3499,7 @@ Ez da gomendagarria erabiltzea. <p>Do you really want to remove the connection to the account <i>%1</i>?</p><p><b>Note:</b> This will <b>not</b> delete any files.</p> - + <p>Ziur zaude <i>%1</i> kontura konexioa kendu nahi duzula?</p><p><b>Oharra:</b> Honek <b>ez</b> du fitxategirik ezabatuko.</p> @@ -4042,7 +4042,7 @@ Ez da gomendagarria erabiltzea. %1 requires on a working system tray. If you are running XFCE, please follow <a href="http://docs.xfce.org/xfce/xfce4-panel/systray">these instructions</a>. Otherwise, please install a system tray application such as 'trayer' and try again. - + %1(e)k sistema-erretilu funtzionala behar du. XFCE exekutatzen ari bazara, mesedez jarraitu <a href="http://docs.xfce.org/xfce/xfce4-panel/systray">argibide hauek</a>. Bestela, mesedez instalatu 'trayer' bezalako sistema-erretilu aplikazio bat eta saiatu berriro. @@ -4050,7 +4050,7 @@ Ez da gomendagarria erabiltzea. <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> - + <p><small><a href="%1">%2</a> Git berrikuspenetik eraikia %3, %4 Qt %5 erabiliz, %6</small></p> From 8d76b88edbb11b1c59abe2309314ffdca1414adc Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 11 Apr 2020 03:30:49 +0000 Subject: [PATCH 28/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 +- .tx/nextcloud.client-desktop/et_translation | 204 ++++++++++++++++++++ translations/client_da.ts | 54 +++--- translations/client_sr.ts | 6 +- 4 files changed, 238 insertions(+), 34 deletions(-) create mode 100644 .tx/nextcloud.client-desktop/et_translation diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/.tx/nextcloud.client-desktop/et_translation b/.tx/nextcloud.client-desktop/et_translation new file mode 100644 index 000000000..4a1b42048 --- /dev/null +++ b/.tx/nextcloud.client-desktop/et_translation @@ -0,0 +1,204 @@ +[Desktop Entry] +Categories=Utility;X-SuSE-SyncUtility; +Type=Application +Exec=@APPLICATION_EXECUTABLE@ +Name=@APPLICATION_NAME@ desktop sync client +Comment=@APPLICATION_NAME@ desktop synchronization client +GenericName=Folder Sync +Icon=@APPLICATION_ICON_NAME@ +Keywords=@APPLICATION_NAME@;syncing;file;sharing; +X-GNOME-Autostart-Delay=3 +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations +Icon[et_EE]=@APPLICATION_ICON_NAME@ +Name[et_EE]=@APPLICATION_NAME@ töölaua sünkimise klient +Comment[et_EE]=@APPLICATION_NAME@ töölaua sünkroniseerimise klient +GenericName[et_EE]=Kausta Sünkroonimine diff --git a/translations/client_da.ts b/translations/client_da.ts index 8ecc1ebbb..000c19e7a 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -337,7 +337,7 @@ <p>Could not create local folder <i>%1</i>.</p> - + <p>Kunne ikke oprette lokal mappe <i>%1</i>.</p> @@ -417,7 +417,7 @@ Obtaining authorization from the browser. <a href='%1'>Click here</a> to re-open the browser. - + Indhenter bemyndigelse fra browseren. <a href='%1'>Klik her</a> for at genåbne browseren. @@ -579,7 +579,7 @@ There was an error while accessing the configuration file at %1. Please make sure the file can be accessed by your user. - + Der opstod en fejl, kunne ikke tilgå konfigurations filen %1. Sørg for at filen kan tilgås af din bruger. @@ -623,7 +623,7 @@ Please enter your end to end encryption passphrase:<br><br>User: %2<br>Account: %3<br> - + Venligst indtast din end-to-end krypterings kode:<br><br>Bruger: %2<br>Konto: %3<br> @@ -641,7 +641,7 @@ Authentication error: Either username or password are wrong. - + Godkendelses fejl: Brugernavn eller kode er forkert. @@ -656,12 +656,12 @@ The configured server for this client is too old - + Den konfigurerede server til denne klient er for gammel. Please update to the latest server and restart the client. - + Venligst opdater til den nyeste server og genstart klienten. @@ -686,7 +686,7 @@ Error returned from the server: <em>%1</em> - + Fejl meddelelse fra serveren: <em>%1</em> @@ -698,13 +698,13 @@ Could not parse the JSON returned from the server: <br><em>%1</em> - + Kunne ikke analysere den modtaget JSON fra serveren: <br><em>%1</em> The reply from the server did not contain all expected fields - + Svaret fra serveren indeholder ikke alle forventede informationer. @@ -712,7 +712,7 @@ Connect to %1 - + Forbind til %1 @@ -725,12 +725,12 @@ Unable to open the Browser, please copy the link to your Browser. - + Kunne ikke åbne browseren, venligst kopier linket og åben i en browser. Waiting for authorization - + Venter på godkendelse @@ -740,12 +740,12 @@ Starting authorization - + Påbegynder godkendelse Link copied to clipboard. - + Link kopieret til udklipsholder @@ -753,12 +753,12 @@ Local folder %1 does not exist. - + Lokal mappe %1 findes ikke. %1 should be a folder but is not. - + %1 burde være en mappe men er det ikke. @@ -768,7 +768,7 @@ %1 and %n other file(s) have been removed. - + %1 og %n andre filer er blevet fjernet.%1 og %n andre filer er blevet fjernet. @@ -779,7 +779,7 @@ %1 and %n other file(s) have been downloaded. - + %1 og %n anden fil er blevet hentet.%1 og %n andre filer er blevet hentet. @@ -790,7 +790,7 @@ %1 and %n other file(s) have been updated. - + %1 og %n anden fil er blevet opdateret.%1 og %n andre filer er blevet opdateret. @@ -801,7 +801,7 @@ %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 er blevet omdømt til %2 og %n anden fil er blevet omdømt.%1 er blevet omdømt til %2 og %n andre filer er blevet omdømt. @@ -812,7 +812,7 @@ %1 has been moved to %2 and %n other file(s) have been moved. - + %1 er blevet flyttet til %2 og %n anden fil er blevet flyttet.%1 er blevet flyttet til %2 og %n andre filer er blevet flyttet. @@ -822,12 +822,12 @@ %1 has and %n other file(s) have sync conflicts. - + %1 og %n anden fil har synkroniserings konflikter.%1 og %n andre filer har synkroniserings konflikter. %1 has a sync conflict. Please check the conflict file! - + %1 har synkroniserings konflikt. Venligst check den konflikterende fil!. @@ -1808,7 +1808,7 @@ Logs will be written to %1 Error returned from the server: <em>%1</em> - + Fejl meddelelse fra serveren: <em>%1</em> @@ -1818,12 +1818,12 @@ Logs will be written to %1 Could not parse the JSON returned from the server: <br><em>%1</em> - + Kunne ikke analysere den modtaget JSON fra serveren: <br><em>%1</em> The reply from the server did not contain all expected fields - + Svaret fra serveren indeholder ikke alle forventede informationer. diff --git a/translations/client_sr.ts b/translations/client_sr.ts index 3d19f7064..ff6fb3561 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -1396,12 +1396,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an &Automatically check for Updates - + &Аутоматски проверавај за ажурирања &Check for Update now - + &Провери ажурирања сад @@ -3447,7 +3447,7 @@ It is not advisable to use it. <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - + <p>%1 десктоп клијент</p> From 2c6628158f46197aa5ee133322186d008ac3620e Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 13 Apr 2020 03:42:45 +0000 Subject: [PATCH 29/42] [tx-robot] updated from transifex --- translations/client_pt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/client_pt.ts b/translations/client_pt.ts index ec5d8f356..f86246a7f 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -3495,7 +3495,7 @@ It is not advisable to use it. Cancel - + Cancelar From 54d862436e2565b3922a962cb0c93db96eaba61d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 14 Apr 2020 03:27:25 +0000 Subject: [PATCH 30/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 +-- translations/client_nb_NO.ts | 64 ++++++++++----------- 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index f13da96d7..9fa1910bb 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -35,7 +35,7 @@ No recently changed files - Nylig endrede filer + Ingen nylig endrede filer @@ -153,7 +153,7 @@ Create folder - + Opprett mappe @@ -239,7 +239,7 @@ Storage space: … - + Lagringsplass: … @@ -556,7 +556,7 @@ Certificate password: - + Passord for sertifikatet: @@ -636,7 +636,7 @@ No Nextcloud account configured - + Ingen Nextcloud-konto konfigurert @@ -1204,7 +1204,7 @@ Hvis synkroniseringen fortsetter som normalt, vil alle filene dine bli overskrev Waiting … - + Venter … @@ -1214,7 +1214,7 @@ Hvis synkroniseringen fortsetter som normalt, vil alle filene dine bli overskrev Preparing to sync … - + Forbereder synkronisering … @@ -1914,7 +1914,7 @@ kan be om flere rettigheter under behandlingen. Connect … - + Koble til … @@ -2555,7 +2555,7 @@ It is not advisable to use it. Loading … - + Laster... @@ -2804,7 +2804,7 @@ It is not advisable to use it. Username - + Brukernavn @@ -2931,7 +2931,7 @@ It is not advisable to use it. Edit - + Rediger @@ -3063,7 +3063,7 @@ It is not advisable to use it. The connection is not secure - + Tilkoblingen er ikke sikker @@ -3451,27 +3451,27 @@ It is not advisable to use it. Retry all uploads - + Prøv alle opplastinger igjen You renamed - + Du endret navn You deleted - + Du slettet You created - + Du opprettet You changed - + Du endret @@ -3479,7 +3479,7 @@ It is not advisable to use it. Confirm Account Removal - + Bekreft fjerning av konto @@ -3489,12 +3489,12 @@ It is not advisable to use it. Remove connection - + Fjern tilkobling Cancel - + Avbryt @@ -3502,7 +3502,7 @@ It is not advisable to use it. Invalid certificate detected - + Ugyldig sertifikat oppdaget @@ -3528,7 +3528,7 @@ It is not advisable to use it. Log in - + Logg inn @@ -3597,7 +3597,7 @@ It is not advisable to use it. Unresolved conflicts - + Uløst konflikter @@ -3607,7 +3607,7 @@ It is not advisable to use it. Error during synchronization - + Feil under synkronisering @@ -3642,7 +3642,7 @@ It is not advisable to use it. Resume all folders - + Gjenoppta alle mapper @@ -3652,7 +3652,7 @@ It is not advisable to use it. Log in … - + Logg inn … @@ -3692,12 +3692,12 @@ It is not advisable to use it. Resume all synchronization - + Gjennoppta all synkronisering Resume synchronization - + Gjenoppta synkronisering @@ -3722,12 +3722,12 @@ It is not advisable to use it. Settings … - + Innstillinger … New account … - + Ny konto … @@ -3853,7 +3853,7 @@ It is not advisable to use it. Copy link - + Kopier lenke @@ -4173,7 +4173,7 @@ It is not advisable to use it. Aborting … - + Avbryter … From 29fa924853f8d4075ebc48cd10a32f3b8babf8d3 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Tue, 14 Apr 2020 21:37:49 +0200 Subject: [PATCH 31/42] Use LINUX_APPLICATION_ID Signed-off-by: Nicolas Fella --- src/gui/systray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index 0a5d7bfd5..8edd054fc 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -121,7 +121,7 @@ void Systray::showMessage(const QString &title, const QString &message, MessageI { #ifdef USE_FDO_NOTIFICATIONS if (QDBusInterface(NOTIFICATIONS_SERVICE, NOTIFICATIONS_PATH, NOTIFICATIONS_IFACE).isValid()) { - const QVariantMap hints = {{QStringLiteral("desktop-entry"), QStringLiteral("com.nextcloud.desktopclient.nextcloud")}}; + const QVariantMap hints = {{QStringLiteral("desktop-entry"), LINUX_APPLICATION_ID}}; QList args = QList() << APPLICATION_NAME << quint32(0) << APPLICATION_ICON_NAME << title << message << QStringList() << hints << qint32(-1); QDBusMessage method = QDBusMessage::createMethodCall(NOTIFICATIONS_SERVICE, NOTIFICATIONS_PATH, NOTIFICATIONS_IFACE, "Notify"); From 159218d5ae16183576cde7b7703bd65d29fd3a16 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 15 Apr 2020 03:28:13 +0000 Subject: [PATCH 32/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- translations/client_lv.ts | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner diff --git a/translations/client_lv.ts b/translations/client_lv.ts index 30eb5d22a..c09cf13bb 100644 --- a/translations/client_lv.ts +++ b/translations/client_lv.ts @@ -1656,7 +1656,7 @@ Logs will be written to %1 Error - + Kļūda @@ -1669,7 +1669,7 @@ Logs will be written to %1 Error - + Kļūda @@ -2561,7 +2561,7 @@ It is not advisable to use it. Name - + Nosaukums @@ -2927,7 +2927,7 @@ It is not advisable to use it. Edit - + Rediģēt @@ -3488,7 +3488,7 @@ It is not advisable to use it. Cancel - + Atcelt From 6fc877577c84e2ed3b175ee1425255e52d1d37b4 Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Thu, 16 Apr 2020 03:47:24 +0200 Subject: [PATCH 33/42] [dolphin] Use CMake env vars for App Name and Icon strings Signed-off-by: Michael Schuster --- shell_integration/dolphin/ownclouddolphinpluginhelper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell_integration/dolphin/ownclouddolphinpluginhelper.h b/shell_integration/dolphin/ownclouddolphinpluginhelper.h index 762f110cb..6d5b77af8 100644 --- a/shell_integration/dolphin/ownclouddolphinpluginhelper.h +++ b/shell_integration/dolphin/ownclouddolphinpluginhelper.h @@ -35,7 +35,7 @@ public: QString contextMenuTitle() const { - return _strings.value("CONTEXT_MENU_TITLE", "Nextcloud"); + return _strings.value("CONTEXT_MENU_TITLE", APPLICATION_NAME); } QString shareActionTitle() const { @@ -43,7 +43,7 @@ public: } QString contextMenuIconName() const { - return _strings.value("CONTEXT_MENU_ICON", "Nextcloud"); + return _strings.value("CONTEXT_MENU_ICON", APPLICATION_ICON_NAME); } QString copyPrivateLinkTitle() const { return _strings["COPY_PRIVATE_LINK_MENU_TITLE"]; } From 685379beac2434e59ace18686dfb71c83803ca45 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 16 Apr 2020 03:27:37 +0000 Subject: [PATCH 34/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++--- translations/client_af.ts | 16 ++++----- translations/client_bg.ts | 16 ++++----- translations/client_ca.ts | 16 ++++----- translations/client_cs.ts | 16 ++++----- translations/client_da.ts | 16 ++++----- translations/client_de.ts | 16 ++++----- translations/client_el.ts | 16 ++++----- translations/client_en_GB.ts | 16 ++++----- translations/client_eo.ts | 16 ++++----- translations/client_es.ts | 16 ++++----- translations/client_es_AR.ts | 16 ++++----- translations/client_es_CL.ts | 16 ++++----- translations/client_es_CO.ts | 16 ++++----- translations/client_es_CR.ts | 16 ++++----- translations/client_es_DO.ts | 16 ++++----- translations/client_es_EC.ts | 16 ++++----- translations/client_es_GT.ts | 16 ++++----- translations/client_es_HN.ts | 16 ++++----- translations/client_es_MX.ts | 16 ++++----- translations/client_es_SV.ts | 16 ++++----- translations/client_et.ts | 16 ++++----- translations/client_eu.ts | 16 ++++----- translations/client_fa.ts | 16 ++++----- translations/client_fi.ts | 16 ++++----- translations/client_fr.ts | 16 ++++----- translations/client_gl.ts | 16 ++++----- translations/client_he.ts | 16 ++++----- translations/client_hr.ts | 16 ++++----- translations/client_hu.ts | 16 ++++----- translations/client_id.ts | 16 ++++----- translations/client_is.ts | 16 ++++----- translations/client_it.ts | 16 ++++----- translations/client_ja.ts | 16 ++++----- translations/client_ko.ts | 16 ++++----- translations/client_lt_LT.ts | 16 ++++----- translations/client_lv.ts | 16 ++++----- translations/client_nb_NO.ts | 16 ++++----- translations/client_nl.ts | 16 ++++----- translations/client_oc.ts | 16 ++++----- translations/client_pl.ts | 16 ++++----- translations/client_pt.ts | 16 ++++----- translations/client_pt_BR.ts | 16 ++++----- translations/client_ro.ts | 16 ++++----- translations/client_ru.ts | 16 ++++----- translations/client_sk.ts | 16 ++++----- translations/client_sl.ts | 16 ++++----- translations/client_sr.ts | 16 ++++----- translations/client_sv.ts | 16 ++++----- translations/client_th.ts | 16 ++++----- translations/client_tr.ts | 36 ++++++++++----------- translations/client_uk.ts | 16 ++++----- translations/client_zh_CN.ts | 16 ++++----- translations/client_zh_TW.ts | 16 ++++----- 54 files changed, 438 insertions(+), 438 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner diff --git a/translations/client_af.ts b/translations/client_af.ts index c61ce5a2f..789def3db 100644 --- a/translations/client_af.ts +++ b/translations/client_af.ts @@ -2887,7 +2887,7 @@ It is not advisable to use it. - + Share options @@ -2907,28 +2907,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser Open in blaaier @@ -3413,7 +3413,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_bg.ts b/translations/client_bg.ts index ebe683844..31fc27a2e 100644 --- a/translations/client_bg.ts +++ b/translations/client_bg.ts @@ -2889,7 +2889,7 @@ It is not advisable to use it. - + Share options @@ -2909,28 +2909,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser Отвори в браузъра @@ -3416,7 +3416,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_ca.ts b/translations/client_ca.ts index edd78dfc3..2aaa571a6 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -2909,7 +2909,7 @@ It is not advisable to use it. - + Share options Opcions de compartició @@ -2929,28 +2929,28 @@ It is not advisable to use it. Enviar l'enllaç privat per correu electrònic … - + Resharing this file is not allowed No es permet re-compartir el fitxer - - + + Copy public link Copia l'enllaç públic - + Copy internal link Copia l'enllaç intern - + Edit Editar - + Open in browser Obre-ho al navegador @@ -3437,7 +3437,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_cs.ts b/translations/client_cs.ts index ca020ca77..1ea87796d 100644 --- a/translations/client_cs.ts +++ b/translations/client_cs.ts @@ -2907,7 +2907,7 @@ Nedoporučuje se jí používat. - + Share options Možnosti sdílení @@ -2927,28 +2927,28 @@ Nedoporučuje se jí používat. Poslat soukromý odkaz e-mailem… - + Resharing this file is not allowed Příjemcům sdílení tohoto souboru není dovoleno ho sdílet dále dalším - - + + Copy public link Zkopírovat veřejný odkaz - + Copy internal link Zkopírovat interní odkaz - + Edit Upravit - + Open in browser Otevřít v prohlížeči @@ -3435,7 +3435,7 @@ Nedoporučuje se jí používat. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_da.ts b/translations/client_da.ts index 000c19e7a..0ab4dd712 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -2889,7 +2889,7 @@ It is not advisable to use it. - + Share options @@ -2909,28 +2909,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3415,7 +3415,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_de.ts b/translations/client_de.ts index 21bcc3bdf..a1c635429 100644 --- a/translations/client_de.ts +++ b/translations/client_de.ts @@ -2907,7 +2907,7 @@ Es wird davon abgeraten sie zu verwenden. - + Share options Freigabeoptionen @@ -2927,28 +2927,28 @@ Es wird davon abgeraten sie zu verwenden. Privaten Link als E-Mail verschicken … - + Resharing this file is not allowed Weiterteilen dieser Datei ist nicht erlaubt - - + + Copy public link Öffentlichen Link kopieren - + Copy internal link Kopiere internen Link - + Edit Bearbeiten - + Open in browser Im Browser öffnen @@ -3435,7 +3435,7 @@ Es wird davon abgeraten sie zu verwenden. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_el.ts b/translations/client_el.ts index ae65a8897..6c40f46c6 100644 --- a/translations/client_el.ts +++ b/translations/client_el.ts @@ -2906,7 +2906,7 @@ It is not advisable to use it. - + Share options Επιλογές κοινής χρήσης @@ -2926,28 +2926,28 @@ It is not advisable to use it. Αποστολή ιδιωτικού συνδέσμου με αλληλογραφία... - + Resharing this file is not allowed Δεν επιτρέπεται ο επαναδιαμοιρασμός - - + + Copy public link Αντιγραφή δημόσιου συνδέσμου - + Copy internal link Αντιγραφή εσωτερικού συνδέσμου - + Edit Επεξεργασία - + Open in browser Άνοιγμα στον περιηγητή @@ -3434,7 +3434,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_en_GB.ts b/translations/client_en_GB.ts index 9c80e2093..2ab1ec80b 100644 --- a/translations/client_en_GB.ts +++ b/translations/client_en_GB.ts @@ -2900,7 +2900,7 @@ It is not advisable to use it. - + Share options @@ -2920,28 +2920,28 @@ It is not advisable to use it. - + Resharing this file is not allowed Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser Open in browser @@ -3428,7 +3428,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_eo.ts b/translations/client_eo.ts index 3992a1edb..eabc01fae 100644 --- a/translations/client_eo.ts +++ b/translations/client_eo.ts @@ -2906,7 +2906,7 @@ It is not advisable to use it. - + Share options Opcioj pri kunhavigo @@ -2926,28 +2926,28 @@ It is not advisable to use it. - + Resharing this file is not allowed Re-kunhavigi ne estas permesata - - + + Copy public link Kopii publikan ligilon - + Copy internal link Kopii internan ligilon - + Edit - + Open in browser Malfermi per retumilo @@ -3433,7 +3433,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es.ts b/translations/client_es.ts index 329bd6cb1..4968ffc3b 100644 --- a/translations/client_es.ts +++ b/translations/client_es.ts @@ -2907,7 +2907,7 @@ No se recomienda usarla. - + Share options Opciones de compartir @@ -2927,28 +2927,28 @@ No se recomienda usarla. Enviar enlace privado por correo electrónico ... - + Resharing this file is not allowed No está permitido compartir de nuevo - - + + Copy public link Copiar enlace público - + Copy internal link Copiar enlace interno - + Edit Editar - + Open in browser Abrir en navegador @@ -3435,7 +3435,7 @@ No se recomienda usarla. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_AR.ts b/translations/client_es_AR.ts index e22b0f8be..4a0b36ba3 100644 --- a/translations/client_es_AR.ts +++ b/translations/client_es_AR.ts @@ -2887,7 +2887,7 @@ It is not advisable to use it. - + Share options @@ -2907,28 +2907,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3413,7 +3413,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_CL.ts b/translations/client_es_CL.ts index 5c2fb0a30..f8292e2ba 100644 --- a/translations/client_es_CL.ts +++ b/translations/client_es_CL.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_CO.ts b/translations/client_es_CO.ts index 360839dc2..415cca270 100644 --- a/translations/client_es_CO.ts +++ b/translations/client_es_CO.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_CR.ts b/translations/client_es_CR.ts index 7341d6048..ff7b8f2a5 100644 --- a/translations/client_es_CR.ts +++ b/translations/client_es_CR.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_DO.ts b/translations/client_es_DO.ts index b192bd82d..f5ce53c37 100644 --- a/translations/client_es_DO.ts +++ b/translations/client_es_DO.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_EC.ts b/translations/client_es_EC.ts index 4aa80efb0..de44670da 100644 --- a/translations/client_es_EC.ts +++ b/translations/client_es_EC.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_GT.ts b/translations/client_es_GT.ts index d56b2cab7..24b7457e0 100644 --- a/translations/client_es_GT.ts +++ b/translations/client_es_GT.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_HN.ts b/translations/client_es_HN.ts index ec937457c..f7ab466a4 100644 --- a/translations/client_es_HN.ts +++ b/translations/client_es_HN.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_MX.ts b/translations/client_es_MX.ts index e1932edae..1c23388e1 100644 --- a/translations/client_es_MX.ts +++ b/translations/client_es_MX.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_es_SV.ts b/translations/client_es_SV.ts index 0c3138aa0..f064435bf 100644 --- a/translations/client_es_SV.ts +++ b/translations/client_es_SV.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_et.ts b/translations/client_et.ts index 3c01f48c6..eac86b977 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -2887,7 +2887,7 @@ It is not advisable to use it. - + Share options @@ -2907,28 +2907,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link Kopeeri avalik link - + Copy internal link - + Edit - + Open in browser @@ -3415,7 +3415,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_eu.ts b/translations/client_eu.ts index a0a33c6b8..2fa127d03 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -2908,7 +2908,7 @@ Ez da gomendagarria erabiltzea. - + Share options Partekatze aukerak @@ -2928,28 +2928,28 @@ Ez da gomendagarria erabiltzea. Bidali esteka pribatua postaz... - + Resharing this file is not allowed Fitxategi hau birpartekatzea ez da onartzen - - + + Copy public link Kopiatu esteka publikoa - + Copy internal link Kopiatu barne esteka - + Edit Editatu - + Open in browser Ireki nabigatzailean @@ -3436,7 +3436,7 @@ Ez da gomendagarria erabiltzea. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_fa.ts b/translations/client_fa.ts index ffc30d16b..66e1501f4 100644 --- a/translations/client_fa.ts +++ b/translations/client_fa.ts @@ -2891,7 +2891,7 @@ It is not advisable to use it. - + Share options @@ -2911,28 +2911,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser بازکردن در مرورگر @@ -3418,7 +3418,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_fi.ts b/translations/client_fi.ts index 4c22537ff..5ca7bc8f7 100644 --- a/translations/client_fi.ts +++ b/translations/client_fi.ts @@ -2889,7 +2889,7 @@ It is not advisable to use it. - + Share options @@ -2909,28 +2909,28 @@ It is not advisable to use it. - + Resharing this file is not allowed Tämän tiedoston uudelleenjakaminen ei ole sallittu - - + + Copy public link Kopioi julkinen linkki - + Copy internal link Kopioi sisäinen linkki - + Edit Muokkaa - + Open in browser Avaa selaimessa @@ -3417,7 +3417,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_fr.ts b/translations/client_fr.ts index b006f0f44..3f5ea1620 100644 --- a/translations/client_fr.ts +++ b/translations/client_fr.ts @@ -2911,7 +2911,7 @@ Il est déconseillé de l'utiliser. - + Share options Options de partage @@ -2931,28 +2931,28 @@ Il est déconseillé de l'utiliser. Envoyer le lien privé par courriel ... - + Resharing this file is not allowed Repartager ce fichier n'est pas autorisé - - + + Copy public link Copier le lien public - + Copy internal link Copier le lien interne - + Edit Modifier - + Open in browser Ouvrir dans le navigateur @@ -3439,7 +3439,7 @@ Il est déconseillé de l'utiliser. OCC::Systray - + %1: %2 %1 : %2 diff --git a/translations/client_gl.ts b/translations/client_gl.ts index ed850a1ab..9a98b4d56 100644 --- a/translations/client_gl.ts +++ b/translations/client_gl.ts @@ -2908,7 +2908,7 @@ Recomendámoslle que non o use. - + Share options Opcións da compartición @@ -2928,28 +2928,28 @@ Recomendámoslle que non o use. Enviar a ligazón privada por correo… - + Resharing this file is not allowed Non está permitido volver compartir este ficheiro - - + + Copy public link Copiar a ligazón pública - + Copy internal link Copiar a ligazón interna - + Edit Editar - + Open in browser Abrir no navegador @@ -3436,7 +3436,7 @@ Recomendámoslle que non o use. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_he.ts b/translations/client_he.ts index 36d3372f7..285ea7d00 100644 --- a/translations/client_he.ts +++ b/translations/client_he.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options אפשרויות שיתוף @@ -2913,28 +2913,28 @@ It is not advisable to use it. שליחת קישור פרטי בדוא״ל… - + Resharing this file is not allowed אסור לשתף קובץ זה מחדש - - + + Copy public link העתקת קישור ציבורי - + Copy internal link העתקת קישור פנימי - + Edit עריכה - + Open in browser פתיחה בדפדפן @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 diff --git a/translations/client_hr.ts b/translations/client_hr.ts index 5ce839db8..b481d7a84 100644 --- a/translations/client_hr.ts +++ b/translations/client_hr.ts @@ -2908,7 +2908,7 @@ Nije preporučljivo koristiti ga. - + Share options Mogućnosti dijeljenja @@ -2928,28 +2928,28 @@ Nije preporučljivo koristiti ga. Pošalji privatnu poveznicu e-poštom… - + Resharing this file is not allowed Dijeljenje ove datoteke nije dopušteno - - + + Copy public link Kopiraj javnu poveznicu - + Copy internal link Kopiraj internu poveznicu - + Edit Uredi - + Open in browser Otvori u pregledniku @@ -3436,7 +3436,7 @@ Nije preporučljivo koristiti ga. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_hu.ts b/translations/client_hu.ts index 10bd0def7..49872d17c 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -2901,7 +2901,7 @@ It is not advisable to use it. - + Share options Megosztási beállítások @@ -2921,28 +2921,28 @@ It is not advisable to use it. - + Resharing this file is not allowed Ezt a fájlt nem lehet újra megosztani - - + + Copy public link Nyilvános hivatkozás másolása - + Copy internal link Belső hivatkozás másolása - + Edit Szerkesztés - + Open in browser Megnyitás böngészőben @@ -3429,7 +3429,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_id.ts b/translations/client_id.ts index cf7643323..e65a4477e 100644 --- a/translations/client_id.ts +++ b/translations/client_id.ts @@ -2899,7 +2899,7 @@ It is not advisable to use it. - + Share options @@ -2919,28 +2919,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3425,7 +3425,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 diff --git a/translations/client_is.ts b/translations/client_is.ts index 71329aea9..52b011680 100644 --- a/translations/client_is.ts +++ b/translations/client_is.ts @@ -2905,7 +2905,7 @@ Ekki er mælt með því að hún sé notuð. - + Share options Valkostir sameigna @@ -2925,28 +2925,28 @@ Ekki er mælt með því að hún sé notuð. Senda einkatengil með tölvupósti … - + Resharing this file is not allowed Endurdeiling þessarar skráar er ekki leyfð - - + + Copy public link Afrita opinberan tengil - + Copy internal link Afrita innri tengil - + Edit Breyta - + Open in browser Opna í vafra @@ -3433,7 +3433,7 @@ Ekki er mælt með því að hún sé notuð. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_it.ts b/translations/client_it.ts index 0a5c46802..3ba54c102 100644 --- a/translations/client_it.ts +++ b/translations/client_it.ts @@ -2908,7 +2908,7 @@ Non è consigliabile utilizzarlo. - + Share options Opzioni di condivisione @@ -2928,28 +2928,28 @@ Non è consigliabile utilizzarlo. Invia collegamento privato tramite email… - + Resharing this file is not allowed La ri-condivisione di questo file non è consentita - - + + Copy public link Copia collegamento pubblico - + Copy internal link Copia collegamento interno - + Edit Modifica - + Open in browser Apri nel browser @@ -3436,7 +3436,7 @@ Non è consigliabile utilizzarlo. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_ja.ts b/translations/client_ja.ts index 776707299..e17c4574e 100644 --- a/translations/client_ja.ts +++ b/translations/client_ja.ts @@ -2903,7 +2903,7 @@ It is not advisable to use it. - + Share options 共有オプション @@ -2923,28 +2923,28 @@ It is not advisable to use it. メールでプライベートリンクを送信… - + Resharing this file is not allowed このファイルの再共有は許可されていません - - + + Copy public link 公開リンクのコピー - + Copy internal link 内部リンクをコピー - + Edit - + Open in browser ブラウザーで開く @@ -3431,7 +3431,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_ko.ts b/translations/client_ko.ts index 094096e70..76f63bc82 100644 --- a/translations/client_ko.ts +++ b/translations/client_ko.ts @@ -2908,7 +2908,7 @@ It is not advisable to use it. - + Share options 공유 옵션 @@ -2928,28 +2928,28 @@ It is not advisable to use it. - + Resharing this file is not allowed 이 파일을 다시 공유할 수 없습니다. - - + + Copy public link 공개 링크 복사 - + Copy internal link 내부 링크 복사 - + Edit - + Open in browser 브라우저에서 열기 @@ -3436,7 +3436,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_lt_LT.ts b/translations/client_lt_LT.ts index 550336312..be4c22660 100644 --- a/translations/client_lt_LT.ts +++ b/translations/client_lt_LT.ts @@ -2896,7 +2896,7 @@ Patariama jo nenaudoti. - + Share options Bendrinimo parinktys @@ -2916,28 +2916,28 @@ Patariama jo nenaudoti. Siųsti privačią nuorodą el. paštu… - + Resharing this file is not allowed Pakartotinai dalintis failu negalima - - + + Copy public link Kopijuoti viešąją nuorodą - + Copy internal link Kopijuoti vidinę nuorodą - + Edit Taisyti - + Open in browser Atverti naršyklėje @@ -3424,7 +3424,7 @@ Patariama jo nenaudoti. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_lv.ts b/translations/client_lv.ts index c09cf13bb..0798624c7 100644 --- a/translations/client_lv.ts +++ b/translations/client_lv.ts @@ -2889,7 +2889,7 @@ It is not advisable to use it. - + Share options @@ -2909,28 +2909,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit Rediģēt - + Open in browser @@ -3415,7 +3415,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index 9fa1910bb..6edd56cf9 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -2893,7 +2893,7 @@ It is not advisable to use it. - + Share options Alternativer for deling @@ -2913,28 +2913,28 @@ It is not advisable to use it. - + Resharing this file is not allowed Videre deling av denne filen er ikke tillatt - - + + Copy public link Kopier offentlig lenke - + Copy internal link Kopier intern lenke - + Edit Rediger - + Open in browser Åpne i nettleser @@ -3421,7 +3421,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_nl.ts b/translations/client_nl.ts index a38a68c9b..a13c65f22 100644 --- a/translations/client_nl.ts +++ b/translations/client_nl.ts @@ -2913,7 +2913,7 @@ Het is niet te adviseren om het te gebruiken. - + Share options Deelopties @@ -2933,28 +2933,28 @@ Het is niet te adviseren om het te gebruiken. Verstuur privélink per e-mail --- - + Resharing this file is not allowed Verder delen van dit bestand is niet toegestaan - - + + Copy public link Kopieer openbare link - + Copy internal link Kopieer interne link - + Edit Bewerken - + Open in browser Openen in browser @@ -3441,7 +3441,7 @@ Het is niet te adviseren om het te gebruiken. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_oc.ts b/translations/client_oc.ts index 6f325fda9..144c2663c 100644 --- a/translations/client_oc.ts +++ b/translations/client_oc.ts @@ -2887,7 +2887,7 @@ It is not advisable to use it. - + Share options Opcions de partatge @@ -2907,28 +2907,28 @@ It is not advisable to use it. Enviar un ligam privat per mail … - + Resharing this file is not allowed Tornar partejar aqueste - - + + Copy public link Copiar lo ligam public - + Copy internal link Copiar lo ligam intèrn - + Edit Modificar - + Open in browser Dobrir dins lo navegador @@ -3415,7 +3415,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_pl.ts b/translations/client_pl.ts index b15949ee0..0a14eb30d 100644 --- a/translations/client_pl.ts +++ b/translations/client_pl.ts @@ -2908,7 +2908,7 @@ Nie zaleca się korzystania z niego. - + Share options Opcje udostępniania @@ -2928,28 +2928,28 @@ Nie zaleca się korzystania z niego. Wyślij link prywatny e-mailem... - + Resharing this file is not allowed Udostępnianie tego pliku jest zabronione - - + + Copy public link Kopiuj link publiczny - + Copy internal link Kopiuj link wewnętrzny - + Edit Edytuj - + Open in browser Otwórz w przeglądarce @@ -3436,7 +3436,7 @@ Nie zaleca się korzystania z niego. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_pt.ts b/translations/client_pt.ts index f86246a7f..8713b3c90 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -2894,7 +2894,7 @@ It is not advisable to use it. - + Share options Opções de partilha @@ -2914,28 +2914,28 @@ It is not advisable to use it. - + Resharing this file is not allowed Voltar a partilhar não é permitido - - + + Copy public link Copiar link publico - + Copy internal link Copiar ligação interna - + Edit - + Open in browser Abrir no navegador @@ -3422,7 +3422,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index 9efe91cd9..4297b75bf 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -2908,7 +2908,7 @@ Não é aconselhado usá-la. - + Share options Opções de compartilhamento @@ -2928,28 +2928,28 @@ Não é aconselhado usá-la. Enviar link privado por e-mail... - + Resharing this file is not allowed Não é permitido recompartilhar este arquivo - - + + Copy public link Copiar link público - + Copy internal link Copiar link interno - + Edit Editar - + Open in browser Abrir no navegador @@ -3436,7 +3436,7 @@ Não é aconselhado usá-la. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_ro.ts b/translations/client_ro.ts index 17699c90e..a7e4c6527 100644 --- a/translations/client_ro.ts +++ b/translations/client_ro.ts @@ -2887,7 +2887,7 @@ It is not advisable to use it. - + Share options @@ -2907,28 +2907,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link Copiză link public - + Copy internal link Copiază linkul intern - + Edit - + Open in browser Deschide în Browser @@ -3413,7 +3413,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_ru.ts b/translations/client_ru.ts index 3faaebf40..78c4bdf26 100644 --- a/translations/client_ru.ts +++ b/translations/client_ru.ts @@ -2904,7 +2904,7 @@ It is not advisable to use it. - + Share options Общий доступ… @@ -2924,28 +2924,28 @@ It is not advisable to use it. Отправить закрытую ссылку по электронной почте... - + Resharing this file is not allowed Повторное открытие доступа запрещено - - + + Copy public link Скопировать общедоступную ссылку - + Copy internal link Скопировать внутреннюю ссылку - + Edit Редактировать - + Open in browser Открыть в браузере @@ -3432,7 +3432,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 621cad338..ddc567d59 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -2907,7 +2907,7 @@ It is not advisable to use it. - + Share options Možnosti zdieľania @@ -2927,28 +2927,28 @@ It is not advisable to use it. Odoslať privátny odkaz e-mailom… - + Resharing this file is not allowed Opätovné sprístupňovanie tohto súboru je zakázané - - + + Copy public link Kopírovať verejný odkaz - + Copy internal link Kopírovať interný odkaz - + Edit Upraviť - + Open in browser Otvoriť v prehliadači @@ -3435,7 +3435,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 9599e4367..ba3165c1c 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -2896,7 +2896,7 @@ It is not advisable to use it. - + Share options Možnosti souporabe @@ -2916,28 +2916,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link Kopiraj javno povezavo - + Copy internal link Kopiraj krajevno povezavo - + Edit - + Open in browser Odpri v brskalniku @@ -3424,7 +3424,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_sr.ts b/translations/client_sr.ts index ff6fb3561..3024c6b9a 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -2908,7 +2908,7 @@ It is not advisable to use it. - + Share options Опције дељења @@ -2928,28 +2928,28 @@ It is not advisable to use it. Пошаљи приватну везу е-поштом… - + Resharing this file is not allowed Поновно дељење није дозвољено - - + + Copy public link Копирај јавну везу - + Copy internal link Копирај интерну везу - + Edit Измени - + Open in browser Отвори у веб читачу @@ -3436,7 +3436,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_sv.ts b/translations/client_sv.ts index e154cebdb..341ed1c43 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -2908,7 +2908,7 @@ Det är inte lämpligt att använda den. - + Share options Delningsalternativ @@ -2928,28 +2928,28 @@ Det är inte lämpligt att använda den. Skicka privat länk med e-post ... - + Resharing this file is not allowed Vidaredelning av denna fil är inte tillåtet - - + + Copy public link Kopiera publik länk - + Copy internal link Kopiera intern länk - + Edit Ändra - + Open in browser Öppna i webbläsare @@ -3436,7 +3436,7 @@ Det är inte lämpligt att använda den. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_th.ts b/translations/client_th.ts index e7f53e9c6..97b984528 100644 --- a/translations/client_th.ts +++ b/translations/client_th.ts @@ -2891,7 +2891,7 @@ It is not advisable to use it. - + Share options @@ -2911,28 +2911,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser @@ -3418,7 +3418,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_tr.ts b/translations/client_tr.ts index 119923d9c..826181a93 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -485,7 +485,7 @@ Connected - Bağlandı + Bağlantı kuruldu @@ -1926,7 +1926,7 @@ güncelleyici başka izinler isteyebilir. Connect … - Bağlantı kuruluyor … + Bağlan … @@ -1975,7 +1975,7 @@ güncelleyici başka izinler isteyebilir. <html><head/><body><p>Failed to connect to the secure server address specified. How do you wish to proceed?</p></body></html> - <html><head/><body><p>Belirtilen güvenli sunucu adresine bağlanılamadı. Nasıl ilerlemek istersiniz?</p></body></html> + <html><head/><body><p>Belirtilen güvenli sunucu adresi ile bağlantı kurulamadı. Nasıl ilerlemek istersiniz?</p></body></html> @@ -1995,7 +1995,7 @@ güncelleyici başka izinler isteyebilir. <html><head/><body><p>Failed to connect to the secure server address <em>%1</em>. How do you wish to proceed?</p></body></html> - <html><head/><body><p><em>%1</em> güvenli sunucu adresine bağlanılamadı. Nasıl ilerlemek istersiniz?</p></body></html> + <html><head/><body><p><em>%1</em> güvenli sunucu adresi ile bağlantı kurulamadı. Nasıl ilerlemek istersiniz?</p></body></html> @@ -2008,7 +2008,7 @@ güncelleyici başka izinler isteyebilir. Connect to %1 - %1 ile bağlan + %1 ile bağlantı kur @@ -2034,7 +2034,7 @@ güncelleyici başka izinler isteyebilir. Connect to %1 - %1 ile bağlan + %1 ile bağlantı kur @@ -2104,7 +2104,7 @@ Kullanmanız önerilmez. Failed to connect to %1 at %2:<br/>%3 - %2 üzerinde %1 adresine bağlanılamadı:<br/>%3 + %1 ile %2 zamanında bağlantı kurulamadı:<br/>%3 @@ -2114,7 +2114,7 @@ Kullanmanız önerilmez. Timeout while trying to connect to %1 at %2. - %2 üzerinde %1 bağlantısı yapılırken zaman aşımı. + %1 ile %2 zamanında bağlantı kurulurken zaman aşımı. @@ -2906,7 +2906,7 @@ Kullanmanız önerilmez. - + Share options Paylaşım seçenekleri @@ -2926,28 +2926,28 @@ Kullanmanız önerilmez. Kişisel bağlantıyı e-posta ile paylaş … - + Resharing this file is not allowed Bu dosya yeniden paylaşılamaz - - + + Copy public link Herkese açık bağlantıyı kopyala - + Copy internal link İç bağlantıyı kopyala - + Edit Düzenle - + Open in browser Tarayıcıda aç @@ -3094,7 +3094,7 @@ Kullanmanız önerilmez. Cannot connect securely to <i>%1</i>: - <i>%1</i> üzerine güvenli şekilde bağlanılamıyor: + <i>%1</i> ile güvenli bağlantı kurulamadı: @@ -3177,7 +3177,7 @@ Kullanmanız önerilmez. A network connection timeout happened. - Bir ağ zaman aşımı oluştu. + Bir ağ bağlantısı zaman aşımı oluştu. @@ -3434,7 +3434,7 @@ Kullanmanız önerilmez. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_uk.ts b/translations/client_uk.ts index ee5a2398f..782a56964 100644 --- a/translations/client_uk.ts +++ b/translations/client_uk.ts @@ -2887,7 +2887,7 @@ It is not advisable to use it. - + Share options @@ -2907,28 +2907,28 @@ It is not advisable to use it. - + Resharing this file is not allowed - - + + Copy public link - + Copy internal link - + Edit - + Open in browser Відкрити у бравзері @@ -3415,7 +3415,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index 3871822bb..ef3d08c5b 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -2907,7 +2907,7 @@ It is not advisable to use it. - + Share options 共享选项 @@ -2927,28 +2927,28 @@ It is not advisable to use it. 通过电子邮件发送私人链接… - + Resharing this file is not allowed 不允许再次分享此文件 - - + + Copy public link 复制公开链接 - + Copy internal link 复制内部链接 - + Edit 编辑 - + Open in browser 在浏览器中打开 @@ -3435,7 +3435,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1:%2 diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index 770807d2b..dde16b833 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -2907,7 +2907,7 @@ It is not advisable to use it. - + Share options 分享選項 @@ -2927,28 +2927,28 @@ It is not advisable to use it. 用電子郵件發送私人連結 - + Resharing this file is not allowed 此檔案不允許二次分享 - - + + Copy public link 複製公共連結 - + Copy internal link 複製內部連結 - + Edit 編輯 - + Open in browser 用瀏覽器打開 @@ -3435,7 +3435,7 @@ It is not advisable to use it. OCC::Systray - + %1: %2 %1: %2 From 870f336a4cb72f46d26e1a0c7dcd2d4d2b60199b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 17 Apr 2020 03:24:03 +0000 Subject: [PATCH 35/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner From d077c7884ed1fc796ce531d8bee53500d45e1c91 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Fri, 17 Apr 2020 12:44:25 +0200 Subject: [PATCH 36/42] Fix build of Dolphin integration config.h needs to be included in the header already since we use APPLICATION_ICON_NAME there. This got introduced in 6fc877577c84e2ed3b175ee1425255e52d1d37b4 Signed-off-by: Nicolas Fella --- shell_integration/dolphin/ownclouddolphinpluginhelper.cpp | 1 - shell_integration/dolphin/ownclouddolphinpluginhelper.h | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/shell_integration/dolphin/ownclouddolphinpluginhelper.cpp b/shell_integration/dolphin/ownclouddolphinpluginhelper.cpp index 1bb10e6c5..59d2308e2 100644 --- a/shell_integration/dolphin/ownclouddolphinpluginhelper.cpp +++ b/shell_integration/dolphin/ownclouddolphinpluginhelper.cpp @@ -22,7 +22,6 @@ #include #include #include "ownclouddolphinpluginhelper.h" -#include "config.h" OwncloudDolphinPluginHelper* OwncloudDolphinPluginHelper::instance() { diff --git a/shell_integration/dolphin/ownclouddolphinpluginhelper.h b/shell_integration/dolphin/ownclouddolphinpluginhelper.h index 6d5b77af8..f6659e417 100644 --- a/shell_integration/dolphin/ownclouddolphinpluginhelper.h +++ b/shell_integration/dolphin/ownclouddolphinpluginhelper.h @@ -23,6 +23,7 @@ #include #include #include "ownclouddolphinpluginhelper_export.h" +#include "config.h" class OWNCLOUDDOLPHINPLUGINHELPER_EXPORT OwncloudDolphinPluginHelper : public QObject { Q_OBJECT From ebfe796ad82de84290723f98f2cc867a441de552 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 18 Apr 2020 03:23:49 +0000 Subject: [PATCH 37/42] [tx-robot] updated from transifex --- translations/client_zh_CN.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index ef3d08c5b..d17f4e545 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -2914,7 +2914,7 @@ It is not advisable to use it. Share via %1 - 通过 %1 共享 + 通过 %1 共享 From 90dd893ddd5108ffe855464f3750bef19312d2f4 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 21 Apr 2020 03:24:07 +0000 Subject: [PATCH 38/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index d22b0ab25..38762ed8c 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-Synchronisierung -Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de_DE]=Synchronisierungsordner +Icon[de]=@APPLICATION_ICON_NAME@ +Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de]=Synchronisierungsordner From e961eac5c18c01f8111d39efe51375ce6171b3ec Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 22 Apr 2020 03:25:56 +0000 Subject: [PATCH 39/42] [tx-robot] updated from transifex --- translations/client_lt_LT.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/client_lt_LT.ts b/translations/client_lt_LT.ts index be4c22660..e4a3f8a88 100644 --- a/translations/client_lt_LT.ts +++ b/translations/client_lt_LT.ts @@ -1464,7 +1464,7 @@ Jei tęsite sinchronizavimą, Jūsų ankstesni failai bus perrašyti senesniais. Could not retrieve or create the public link share. Error: %1 - Nepavyko gauti ar sukurti viešos dalinimosi nuorodos. Klaida: + Nepavyko gauti ar sukurti viešinio per viešąją nuorodą. Klaida: %1 From 0514fdd933ab48ecc657289360b94ffc2a14098b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 23 Apr 2020 03:29:16 +0000 Subject: [PATCH 40/42] [tx-robot] updated from transifex --- translations/client_hu.ts | 38 +++++++++++++++++++------------------- translations/client_lv.ts | 22 +++++++++++----------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/translations/client_hu.ts b/translations/client_hu.ts index 49872d17c..2abeacea1 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -153,7 +153,7 @@ Create folder - + Mappa létrehozása @@ -239,7 +239,7 @@ Storage space: … - + Tárhely mérete: ... @@ -1209,7 +1209,7 @@ A szinkronizálás folytatásával az összes fájlja felül lesz írva egy rég Waiting … - + Várakozás ... @@ -1450,7 +1450,7 @@ A szinkronizálás folytatásával az összes fájlja felül lesz írva egy rég Password for share required - + A megosztáshoz jelszó szükséges @@ -1889,7 +1889,7 @@ for additional privileges during the process. Checking update server … - + Frissítési kiszolgáló ellenőrzése … @@ -1922,7 +1922,7 @@ for additional privileges during the process. Connect … - + Csatlakozás ... @@ -2066,7 +2066,7 @@ It is not advisable to use it. This URL is secure. You can use it. - + Ez az URL biztonságos. Használhatja. @@ -2563,7 +2563,7 @@ It is not advisable to use it. Loading … - + Betöltés ... @@ -2673,7 +2673,7 @@ It is not advisable to use it. Password for share required - + A megosztáshoz jelszó szükséges @@ -2789,7 +2789,7 @@ It is not advisable to use it. Share with users or groups … - + Megosztás felhasználókkal vagy csoportokkal … @@ -3464,22 +3464,22 @@ It is not advisable to use it. You renamed - + Átnevezted You deleted - + Törölted You created - + Létrehoztad You changed - + Módosítottad @@ -3487,7 +3487,7 @@ It is not advisable to use it. Confirm Account Removal - + Fiók törlésének megerősítése @@ -3660,7 +3660,7 @@ It is not advisable to use it. Log in … - + Bejelentkezés … @@ -3730,17 +3730,17 @@ It is not advisable to use it. Settings … - + Beállítások ... New account … - + Új fiók … View more activity … - + Több tevékenység megtekintése … diff --git a/translations/client_lv.ts b/translations/client_lv.ts index 0798624c7..e6f8ba716 100644 --- a/translations/client_lv.ts +++ b/translations/client_lv.ts @@ -107,7 +107,7 @@ Browser Authentication - + Pārlūka autentifikācija @@ -140,7 +140,7 @@ &Choose … - + &Izvēlies ... @@ -153,7 +153,7 @@ Create folder - + Izveidot mapi @@ -189,7 +189,7 @@ End to end encryption mnemonic - + No gala līdz galam šifrēšanas mnemonika @@ -551,7 +551,7 @@ Browse … - + Pārlūkot ... @@ -636,7 +636,7 @@ No Nextcloud account configured - + Nextcloud konts nav konfigurēts @@ -915,17 +915,17 @@ If this action was unintended you can restore the lost data now. Delete all files? - + Dzēst visus failus? Delete all files - + Dzēst visus failus Restore deleted files - + Atjaunot izdzēstos failus @@ -1005,7 +1005,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Setup Error. - + Uzstādījumu kļūda. @@ -1025,7 +1025,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an No valid folder selected! - + Nav izvēlēta derīga mape! From 3d44a71755b519492097bb8f18bc098695eddcb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20V=C3=A1radi?= Date: Sun, 19 Apr 2020 17:11:38 +0200 Subject: [PATCH 41/42] Qt 5.5 compatibility #ifdef MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: István Váradi --- src/libsync/syncengine.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libsync/syncengine.cpp b/src/libsync/syncengine.cpp index 63626c30a..91be03ebb 100644 --- a/src/libsync/syncengine.cpp +++ b/src/libsync/syncengine.cpp @@ -326,6 +326,11 @@ void SyncEngine::deleteStaleErrorBlacklistEntries(const SyncFileItemVector &sync _journal->deleteStaleErrorBlacklistEntries(blacklist_file_paths); } +#if (QT_VERSION < 0x050600) +template +constexpr typename std::add_const::type &qAsConst(T &t) noexcept { return t; } +#endif + void SyncEngine::conflictRecordMaintenance() { // Remove stale conflict entries from the database From c126f1a540cfc8e00320b14a7c26a88ab44afc97 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 24 Apr 2020 03:39:24 +0000 Subject: [PATCH 42/42] [tx-robot] updated from transifex --- .tx/nextcloud.client-desktop/bg_translation | 4 ++-- .tx/nextcloud.client-desktop/de_translation | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tx/nextcloud.client-desktop/bg_translation b/.tx/nextcloud.client-desktop/bg_translation index ab6c662a9..ab38af43d 100644 --- a/.tx/nextcloud.client-desktop/bg_translation +++ b/.tx/nextcloud.client-desktop/bg_translation @@ -199,6 +199,6 @@ X-GNOME-Autostart-Delay=3 # Translations Icon[bg_BG]=@APPLICATION_ICON_NAME@ -Name[bg_BG]=@APPLICATION_NAME@ клиент за синхронизиране на десктоп -Comment[bg_BG]=@APPLICATION_NAME@ клиент за синхронизиране на десктоп +Name[bg_BG]=@APPLICATION_NAME@ десктоп клиент за синхронизиране +Comment[bg_BG]=@APPLICATION_NAME@ десктоп клиент за синхронизиране GenericName[bg_BG]=Синхронизиране на папка diff --git a/.tx/nextcloud.client-desktop/de_translation b/.tx/nextcloud.client-desktop/de_translation index 38762ed8c..d22b0ab25 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]=@APPLICATION_ICON_NAME@ -Name[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -Comment[de]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung -GenericName[de]=Synchronisierungsordner +Icon[de_DE]=@APPLICATION_ICON_NAME@ +Name[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +Comment[de_DE]=@APPLICATION_NAME@ Client zur Desktop-Synchronisierung +GenericName[de_DE]=Synchronisierungsordner