diff --git a/doc/troubleshooting.rst b/doc/troubleshooting.rst index 6ba1657050..d48f592dba 100644 --- a/doc/troubleshooting.rst +++ b/doc/troubleshooting.rst @@ -129,7 +129,7 @@ Logging to a Temporary Directory 1. Open the ownCloud Desktop Client. -2. Press F12 or Ctrl-L on your keyboard. +2. Press F12 or Ctrl-L or Cmd+L on your keyboard. The Log Output window opens. diff --git a/mirall.desktop.in b/mirall.desktop.in index d7d0cb456e..05f0bb9fba 100644 --- a/mirall.desktop.in +++ b/mirall.desktop.in @@ -97,6 +97,72 @@ MimeType=application/vnd.@APPLICATION_EXECUTABLE@; # Translations +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + +# Translations + + # Translations Comment[oc]=@APPLICATION_NAME@ sincronizacion del client Icon[oc]=@APPLICATION_EXECUTABLE@ diff --git a/src/common/c_jhash.h b/src/common/c_jhash.h index cd1549d7e6..038a62b672 100644 --- a/src/common/c_jhash.h +++ b/src/common/c_jhash.h @@ -25,6 +25,10 @@ #define _C_JHASH_H #include +#include +#ifndef Q_FALLTHROUGH +#define Q_FALLTHROUGH() // Was added in Qt 5.8 +#endif #define c_hashsize(n) ((uint8_t) 1 << (n)) #define c_hashmask(n) (xhashsize(n) - 1) @@ -207,30 +211,29 @@ static inline uint64_t c_jhash64(const uint8_t *k, uint64_t length, uint64_t int /* handle the last 23 bytes */ c += length; switch(len) { -#pragma GCC diagnostic ignored "-Wimplicit-fallthrough" - case 23: c+=((uint64_t)k[22]<<56); - case 22: c+=((uint64_t)k[21]<<48); - case 21: c+=((uint64_t)k[20]<<40); - case 20: c+=((uint64_t)k[19]<<32); - case 19: c+=((uint64_t)k[18]<<24); - case 18: c+=((uint64_t)k[17]<<16); - case 17: c+=((uint64_t)k[16]<<8); + case 23: c+=((uint64_t)k[22]<<56); Q_FALLTHROUGH(); + case 22: c+=((uint64_t)k[21]<<48); Q_FALLTHROUGH(); + case 21: c+=((uint64_t)k[20]<<40); Q_FALLTHROUGH(); + case 20: c+=((uint64_t)k[19]<<32); Q_FALLTHROUGH(); + case 19: c+=((uint64_t)k[18]<<24); Q_FALLTHROUGH(); + case 18: c+=((uint64_t)k[17]<<16); Q_FALLTHROUGH(); + case 17: c+=((uint64_t)k[16]<<8); Q_FALLTHROUGH(); /* the first byte of c is reserved for the length */ - case 16: b+=((uint64_t)k[15]<<56); - case 15: b+=((uint64_t)k[14]<<48); - case 14: b+=((uint64_t)k[13]<<40); - case 13: b+=((uint64_t)k[12]<<32); - case 12: b+=((uint64_t)k[11]<<24); - case 11: b+=((uint64_t)k[10]<<16); - case 10: b+=((uint64_t)k[ 9]<<8); - case 9: b+=((uint64_t)k[ 8]); - case 8: a+=((uint64_t)k[ 7]<<56); - case 7: a+=((uint64_t)k[ 6]<<48); - case 6: a+=((uint64_t)k[ 5]<<40); - case 5: a+=((uint64_t)k[ 4]<<32); - case 4: a+=((uint64_t)k[ 3]<<24); - case 3: a+=((uint64_t)k[ 2]<<16); - case 2: a+=((uint64_t)k[ 1]<<8); + case 16: b+=((uint64_t)k[15]<<56); Q_FALLTHROUGH(); + case 15: b+=((uint64_t)k[14]<<48); Q_FALLTHROUGH(); + case 14: b+=((uint64_t)k[13]<<40); Q_FALLTHROUGH(); + case 13: b+=((uint64_t)k[12]<<32); Q_FALLTHROUGH(); + case 12: b+=((uint64_t)k[11]<<24); Q_FALLTHROUGH(); + case 11: b+=((uint64_t)k[10]<<16); Q_FALLTHROUGH(); + case 10: b+=((uint64_t)k[ 9]<<8); Q_FALLTHROUGH(); + case 9: b+=((uint64_t)k[ 8]); Q_FALLTHROUGH(); + case 8: a+=((uint64_t)k[ 7]<<56); Q_FALLTHROUGH(); + case 7: a+=((uint64_t)k[ 6]<<48); Q_FALLTHROUGH(); + case 6: a+=((uint64_t)k[ 5]<<40); Q_FALLTHROUGH(); + case 5: a+=((uint64_t)k[ 4]<<32); Q_FALLTHROUGH(); + case 4: a+=((uint64_t)k[ 3]<<24); Q_FALLTHROUGH(); + case 3: a+=((uint64_t)k[ 2]<<16); Q_FALLTHROUGH(); + case 2: a+=((uint64_t)k[ 1]<<8); Q_FALLTHROUGH(); case 1: a+=((uint64_t)k[ 0]); /* case 0: nothing left to add */ } diff --git a/src/gui/application.cpp b/src/gui/application.cpp index e75dfe88e1..747f7aef6d 100644 --- a/src/gui/application.cpp +++ b/src/gui/application.cpp @@ -20,6 +20,7 @@ #include #include "config.h" +#include "common/asserts.h" #include "account.h" #include "accountstate.h" #include "connectionvalidator.h" @@ -423,6 +424,18 @@ void Application::slotCrash() Utility::crash(); } +void Application::slotCrashEnforce() +{ + ENFORCE(1==0); +} + + +void Application::slotCrashFatal() +{ + qFatal("la Qt fatale"); +} + + void Application::slotownCloudWizardDone(int res) { AccountManager *accountMan = AccountManager::instance(); diff --git a/src/gui/application.h b/src/gui/application.h index 2aa69e577b..c29ca8b41d 100644 --- a/src/gui/application.h +++ b/src/gui/application.h @@ -72,6 +72,8 @@ public slots: // TODO: this should not be public void slotownCloudWizardDone(int); void slotCrash(); + void slotCrashEnforce(); + void slotCrashFatal(); /** * Will download a virtual file, and open the result. * The argument is the filename of the virtual file (including the extension) diff --git a/src/gui/ignorelisteditor.ui b/src/gui/ignorelisteditor.ui index 450e12bd64..de7d897f7a 100644 --- a/src/gui/ignorelisteditor.ui +++ b/src/gui/ignorelisteditor.ui @@ -6,8 +6,8 @@ 0 0 - 516 - 546 + 555 + 609 diff --git a/src/gui/lockwatcher.h b/src/gui/lockwatcher.h index ae8f2cd01d..ce9b7b461b 100644 --- a/src/gui/lockwatcher.h +++ b/src/gui/lockwatcher.h @@ -22,6 +22,8 @@ #include #include +#include + namespace OCC { /** diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index cbd1530008..8ba0ed3e2e 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -660,6 +660,9 @@ void ownCloudGui::updateContextMenu() if (_actionCrash) { _contextMenu->addAction(_actionCrash); + _contextMenu->addAction(_actionCrashEnforce); + _contextMenu->addAction(_actionCrashFatal); + } _contextMenu->addSeparator(); @@ -798,10 +801,16 @@ void ownCloudGui::setupActions() connect(_actionLogout, &QAction::triggered, this, &ownCloudGui::slotLogout); if (_app->debugMode()) { - _actionCrash = new QAction(tr("Crash now", "Only shows in debug mode to allow testing the crash handler"), this); + _actionCrash = new QAction("Crash now - Div by zero", this); connect(_actionCrash, &QAction::triggered, _app, &Application::slotCrash); + _actionCrashEnforce = new QAction("Crash now - ENFORCE()", this); + connect(_actionCrashEnforce, &QAction::triggered, _app, &Application::slotCrashEnforce); + _actionCrashFatal = new QAction("Crash now - qFatal", this); + connect(_actionCrashFatal, &QAction::triggered, _app, &Application::slotCrashFatal); } else { _actionCrash = 0; + _actionCrashEnforce = 0; + _actionCrashFatal = 0; } } diff --git a/src/gui/owncloudgui.h b/src/gui/owncloudgui.h index a1aacfc4d6..b12fdf7b55 100644 --- a/src/gui/owncloudgui.h +++ b/src/gui/owncloudgui.h @@ -152,6 +152,9 @@ private: QAction *_actionAbout; QAction *_actionQuit; QAction *_actionCrash; + QAction *_actionCrashEnforce; + QAction *_actionCrashFatal; + QList _recentItemsActions; Application *_app; diff --git a/src/gui/settingsdialogmac.cpp b/src/gui/settingsdialogmac.cpp index 5c728a7df3..bd6ce374e0 100644 --- a/src/gui/settingsdialogmac.cpp +++ b/src/gui/settingsdialogmac.cpp @@ -80,12 +80,12 @@ SettingsDialogMac::SettingsDialogMac(ownCloudGui *gui, QWidget *parent) addAction(closeDialogAction); // People perceive this as a Window, so also make Ctrl+W work QAction *closeWindowAction = new QAction(this); - closeWindowAction->setShortcut(QKeySequence("Ctrl+W")); + closeWindowAction->setShortcut(QKeySequence("Ctrl+W")); // on macOS Ctrl is Cmd connect(closeWindowAction, &QAction::triggered, this, &SettingsDialogMac::close); addAction(closeWindowAction); // People perceive this as a Window, so also make Ctrl+H work QAction *hideWindowAction = new QAction(this); - hideWindowAction->setShortcut(QKeySequence("Ctrl+H")); + hideWindowAction->setShortcut(QKeySequence("Ctrl+H")); // on macOS Ctrl is Cmd connect(hideWindowAction, &QAction::triggered, this, &SettingsDialogMac::hide); addAction(hideWindowAction); @@ -121,6 +121,11 @@ SettingsDialogMac::SettingsDialogMac(ownCloudGui *gui, QWidget *parent) connect(showLogWindow, &QAction::triggered, gui, &ownCloudGui::slotToggleLogBrowser); addAction(showLogWindow); + QAction *showLogWindow2 = new QAction(this); + showLogWindow2->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_L)); // on macOS Ctrl is Cmd + connect(showLogWindow2, &QAction::triggered, gui, &ownCloudGui::slotToggleLogBrowser); + addAction(showLogWindow2); + ConfigFile cfg; cfg.restoreGeometry(this); _activitySettings->setNotificationRefreshInterval(cfg.notificationRefreshInterval()); diff --git a/src/libsync/abstractnetworkjob.cpp b/src/libsync/abstractnetworkjob.cpp index 6773bd2e53..fe529829ce 100644 --- a/src/libsync/abstractnetworkjob.cpp +++ b/src/libsync/abstractnetworkjob.cpp @@ -55,6 +55,9 @@ AbstractNetworkJob::AbstractNetworkJob(AccountPtr account, const QString &path, , _path(path) , _redirectCount(0) { + // Since we hold a QSharedPointer to the account, this makes no sense. (issue #6893) + ASSERT(account != parent); + _timer.setSingleShot(true); _timer.setInterval((httpTimeout ? httpTimeout : 300) * 1000); // default to 5 minutes. connect(&_timer, &QTimer::timeout, this, &AbstractNetworkJob::slotTimeout); diff --git a/src/libsync/account.cpp b/src/libsync/account.cpp index 1cb9e619dd..f900515150 100644 --- a/src/libsync/account.cpp +++ b/src/libsync/account.cpp @@ -262,7 +262,7 @@ QNetworkReply *Account::sendRawRequest(const QByteArray &verb, const QUrl &url, SimpleNetworkJob *Account::sendRequest(const QByteArray &verb, const QUrl &url, QNetworkRequest req, QIODevice *data) { - auto job = new SimpleNetworkJob(sharedFromThis(), this); + auto job = new SimpleNetworkJob(sharedFromThis()); job->startRequest(verb, url, req, data); return job; } diff --git a/translations/client_ca.ts b/translations/client_ca.ts index 53ef3d86b3..97de1ff54d 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Temps d'espera de la connexió esgotat. - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Surt - + Continue Continua - + Error accessing the configuration file S'ha produït un error en accedir al fitxer de configuració - + There was an error while accessing the configuration file at %1. Hi ha hagut un error en accedir al fitxer de configuració a %1. - + Quit ownCloud Surt de l'ownCloud @@ -906,92 +906,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an S'ha trobat un diari de sincronització antic '%1', però no s'ha pogut eliminar. Assegureu-vos que no hi ha cap aplicació que actualment en faci ús. - + (backup) (copia de seguretat) - + (backup %1) (copia de seguretat %1) - + Undefined State. Estat indefinit. - + Waiting to start syncing. S'està esperant per començar a sincronitzar. - + Preparing for sync. S'està preparant per la sincronització. - + Sync is running. S'està sincronitzant. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. La darrera sincronització va ser correcta. - + Setup Error. Error de configuració. - + User Abort. Cancel·la usuari. - + Sync is paused. La sincronització està en pausa. - + %1 (Sync is paused) %1 (Sync està pausat) - + No valid folder selected! No s'ha seleccionat cap directori vàlid! - + The selected path is not a folder! La ruta seleccionada no és un directori! - + You have no permission to write to the selected folder! No teniu permisos per escriure en la carpeta seleccionada! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2353,17 +2353,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery El fitxer ha canviat des de que es va descobrir - + Error writing metadata to the database Error en escriure les metadades a la base de dades @@ -2508,27 +2508,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. El fitxer local s'ha eliminat durant la sincronització. - + Local file changed during sync. El fitxer local ha canviat durant la sincronització. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2536,22 +2536,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. El fitxer local s'ha eliminat durant la sincronització. - + Local file changed during sync. El fitxer local ha canviat durant la sincronització. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2720,7 +2720,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Xarxa - + Account Compte @@ -2748,8 +2748,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Xarxa - - + + Account Compte @@ -3724,15 +3724,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Inicia la sessió - - + + Log out Surt @@ -3762,27 +3762,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Estat desconegut - + Settings... Arranjament... - + Details... Detalls... - + Help Ajuda - + Quit %1 Surt %1 @@ -3858,89 +3858,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pausa totes les carpetes - + Unpause all synchronization Reprèn totes les sincronitzacions - + Unpause synchronization Reprèn la sincronització - + Pause all synchronization Pausa totes les sincronitzacions - + Pause synchronization Pausa la sincronització - + Log out of all accounts Surt de tots els comptes - + Log in to all accounts... Connecta a tots els comptes... - + New account... Compte nou... - - + + About %1 Sobre %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently No hi ha elements sincronitzats recentment - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Sincronitzant %1 de %2 (%3 pendents) - + Syncing %1 of %2 S'està sincronitzant %1 de %2 - + Syncing %1 (%2 left) Sincronitzant %1 (%2 pendents) - + Syncing %1 S'està sincronitzant %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_cs.ts b/translations/client_cs.ts index 57c9bc778d..8bf64ea372 100644 --- a/translations/client_cs.ts +++ b/translations/client_cs.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Připojení vypršelo - + Unknown error: network reply was deleted Neznámá chyba: odpověď sítě byla smazána - + Server replied "%1 %2" to "%3 %4" Odpověď serveru "%1 %2" do "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Ukončit - + Continue Pokračovat - + Error accessing the configuration file Chyba přístupu ke konfiguračnímu souboru - + There was an error while accessing the configuration file at %1. Došlo k chybě při přístupu ke konfigurační soubor %1. - + Quit ownCloud Ukončit ownCloud @@ -909,92 +909,92 @@ Pokračováním v synchronizaci způsobí přepsání všech vašich souborů st Byl nalezen starý záznam synchronizace '%1', ale nebylo možné jej odebrat. Ujistěte se, že není aktuálně používán jinou aplikací. - + (backup) (záloha) - + (backup %1) (záloha %1) - + Undefined State. Nedefinovaný stav. - + Waiting to start syncing. Čeká na spuštění synchronizace. - + Preparing for sync. Příprava na synchronizaci. - + Sync is running. Synchronizace probíhá. - + Sync was successful, unresolved conflicts. Synchronizace byla úspěšně dokončena, nevyřešené konflikty - + Last Sync was successful. Poslední synchronizace byla úspěšná. - + Setup Error. Chyba nastavení. - + User Abort. Zrušení uživatelem. - + Sync is paused. Synchronizace pozastavena. - + %1 (Sync is paused) %1 (Synchronizace je pozastavena) - + No valid folder selected! Nebyl vybrán platný adresář! - + The selected path is not a folder! Vybraná cesta nevede do adresáře! - + You have no permission to write to the selected folder! Nemáte oprávnění pro zápis do zvoleného adresáře! - + There is already a sync from the server to this local folder. Please pick another local folder! Ze serveru se do tohoto umístění již synchronizuje. Prosím zvolte jinou místní složku! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Místní adresář %1 již obsahuje podadresář použitý pro synchronizaci odesílání. Zvolte prosím jiný! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Místní adresář %1 je již obsažen ve adresáři použitém pro synchronizaci. Vyberte prosím jiný! @@ -2356,17 +2356,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Stažený soubor je prázdný, přestože server oznámil, že měl být %1. - + File %1 cannot be saved because of a local file name clash! Soubor %1 nemohl být uložen z důvodu kolize názvu se souborem v místním systému! - + File has changed since discovery Soubor se mezitím změnil - + Error writing metadata to the database Chyba zápisu metadat do databáze @@ -2511,27 +2511,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Místní soubor byl odstraněn během synchronizace. - + Local file changed during sync. Místní soubor byl změněn během synchronizace. - + Unexpected return code from server (%1) Neočekávaný návratový kód ze serveru (%1) - + Missing File ID from server Chybějící souborové ID ze serveru - + Missing ETag from server Chybějící ETag ze serveru @@ -2539,22 +2539,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Chybí adresa URL - + The local file was removed during sync. Místní soubor byl odstraněn během synchronizace. - + Local file changed during sync. Místní soubor byl změněn během synchronizace. - + The server did not acknowledge the last chunk. (No e-tag was present) Server nepotvrdil poslední část dat. (Nebyl nalezen e-tag) @@ -2723,7 +2723,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Síť - + Account Účet @@ -2751,8 +2751,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Síť - - + + Account Účet @@ -3727,15 +3727,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Přihlásit... - - + + Log out Odhlásit se @@ -3765,27 +3765,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Neznámý stav - + Settings... Nastavení... - + Details... Podrobnosti... - + Help Nápověda - + Quit %1 Ukončit %1 @@ -3861,89 +3861,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pozastavit všechny adresáře - + Unpause all synchronization Spustit veškerou synchronizaci - + Unpause synchronization Spustit synchronizaci - + Pause all synchronization Pozastavit veškerou synchronizaci - + Pause synchronization Pozastavit synchronizaci - + Log out of all accounts Odhlásit ze všech účtů - + Log in to all accounts... Přihlásit ke všem účtům... - + New account... Nový účet... - - + + About %1 O %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Selhání - - - + No items synced recently Žádné položky nebyly nedávno synchronizovány - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Synchronizuji %1 ze %2 (zbývá %3) - + Syncing %1 of %2 Synchronizace %1 z %2 - + Syncing %1 (%2 left) Synchronizuji %1 (zbývá %2) - + Syncing %1 Synchronizuji %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_de.ts b/translations/client_de.ts index 585157ff13..fd47f03ca8 100644 --- a/translations/client_de.ts +++ b/translations/client_de.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Zeitüberschreitung bei der Verbindung - + Unknown error: network reply was deleted Unbekannter Fehler: Netzwerk-Antwort wurde gelöscht - + Server replied "%1 %2" to "%3 %4" Server hat "%1 %2" auf "%3 %4" geantwortet @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. Fortsetzen bedeutet <b>das diese Einstellungen gelöscht werden</b>. - + Continuing will mean <b>ignoring these settings</b>. Fortsetzen bedeutet <b>das diese Einstellungen ignoriert werden</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. Einige Einstellungen wurden in neueren Versionen dieses Programms eingestellt und nutzen Funktionen die in dieser Version nicht verfügbar sind. <br><br>%1<br><br> Die aktuelle Konfigurations-Datei wurde bereits an folgenden Ort gesichert: <i>%2</i> - + Quit Beenden - + Continue Fortsetzen - + Error accessing the configuration file Fehler beim Zugriff auf die Konfigurationsdatei - + There was an error while accessing the configuration file at %1. Es ist ein Fehler beim Zugriff auf die Konfigurationsdatei unter %1 aufgetreten. - + Quit ownCloud ownCloud verlassen @@ -915,92 +915,92 @@ Wenn diese Synchronisation fortgesetzt wird, werden Dateien eventuell von älter Ein altes Synchronisations-Journal '%1' wurde gefunden, konnte jedoch nicht entfernt werden. Bitte stellen Sie sicher, dass keine Anwendung es verwendet. - + (backup) (Sicherung) - + (backup %1) (Sicherung %1) - + Undefined State. Undefinierter Zustand. - + Waiting to start syncing. Wartet auf Beginn der Synchronistation - + Preparing for sync. Synchronisation wird vorbereitet. - + Sync is running. Synchronisation läuft. - + Sync was successful, unresolved conflicts. Synchronisation war erfolgreich, ungelöster Konflikte. - + Last Sync was successful. Die letzte Synchronisation war erfolgreich. - + Setup Error. Installationsfehler. - + User Abort. Benutzer-Abbruch - + Sync is paused. Synchronisation wurde angehalten. - + %1 (Sync is paused) %1 (Synchronisation ist pausiert) - + No valid folder selected! Kein gültige Ordner gewählt! - + The selected path is not a folder! Der gewählte Pfad ist kein Ordner! - + You have no permission to write to the selected folder! Sie haben keine Schreibberechtigung für den ausgewählten Ordner! - + There is already a sync from the server to this local folder. Please pick another local folder! Es exisitiert bereits eine Synchronisation vom Server zu diesem lokalen Ordner. Bitte wählen Sie ein anderes lokales Verzeichnis! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Der lokale Ordner %1 liegt innerhalb eines synchronisierten Ordners. Bitte wählen Sie einen anderen aus! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Der lokale Ordner %1 liegt in einem Ordner, der bereits synchronisiert wird. Bitte wählen Sie einen anderen aus! @@ -2366,17 +2366,17 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese Die heruntergeladene Datei ist leer, obwohl der Server %1 als Größe übermittelt hat. - + File %1 cannot be saved because of a local file name clash! Die Datei %1 kann aufgrund eines Konfliktes mit dem lokalen Dateinamen nicht gespeichert geladen werden! - + File has changed since discovery Datei ist seit der Entdeckung geändert worden - + Error writing metadata to the database Fehler beim Schreiben der Metadaten in die Datenbank @@ -2521,27 +2521,27 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese OCC::PropagateUploadFileNG - + The local file was removed during sync. Die lokale Datei wurde während der Synchronisation gelöscht. - + Local file changed during sync. Eine lokale Datei wurde während der Synchronisation geändert. - + Unexpected return code from server (%1) Unerwarteter Rückgabe-Code Antwort vom Server (%1) - + Missing File ID from server Fehlende Datei-ID vom Server - + Missing ETag from server Fehlender ETag vom Server @@ -2549,22 +2549,22 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese OCC::PropagateUploadFileV1 - + Poll URL missing Poll-URL fehlt - + The local file was removed during sync. Die lokale Datei wurde während der Synchronisation gelöscht. - + Local file changed during sync. Eine lokale Datei wurde während der Synchronisation geändert. - + The server did not acknowledge the last chunk. (No e-tag was present) Der Server hat den letzten Block nicht bestätigt. (Der E-Tag war nicht vorhanden) @@ -2733,7 +2733,7 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese Netzwerk - + Account Benutzerkonto @@ -2761,8 +2761,8 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese Netzwerk - - + + Account Benutzerkonto @@ -3738,15 +3738,15 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese - - + + Log in... Einloggen... - - + + Log out Abmelden @@ -3776,27 +3776,27 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese Der Server mit Konto %1 läuft mit einer nicht unterstützten Version %2. Die Verwendung dieses Clienten mit nicht unterstützten Serverversionen ist ungetestet und möglicherweise gefährlich. Fortfahren auf eigenes Risiko. - + Unknown status Unbekannter Status - + Settings... Einstellungen … - + Details... Details … - + Help Hilfe - + Quit %1 %1 beenden @@ -3872,89 +3872,83 @@ Dies ist ein neuer experimenteller Modus.Wenn du dich dafür entscheidest, diese Stoppe alle Ordner - + Unpause all synchronization Setze gesamte Synchronisation fort - + Unpause synchronization Setze Synchronisation fort - + Pause all synchronization Stoppe gesamte Synchronisation - + Pause synchronization Stoppe Synchronisation - + Log out of all accounts Bei allen Konten abmelden - + Log in to all accounts... Bei allen Konten anmelden... - + New account... Neues Konto... - - + + About %1 Über %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Absturz - - - + No items synced recently Keine kürzlich synchronisierten Elemente - + Checking for changes in remote '%1' Änderungen der entfernten Ressource '%1' werden geprüft - + Checking for changes in local '%1' Änderungen der lokalen Ressource '%1' werden geprüft - + Syncing %1 of %2 (%3 left) Synchronisiere %1 von %2 (%3 übrig) - + Syncing %1 of %2 Synchronisiere %1 von %2 - + Syncing %1 (%2 left) Synchronisiere %1 (%2 übrig) - + Syncing %1 Synchronisiere %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_el.ts b/translations/client_el.ts index e6126bfff7..7b05206168 100644 --- a/translations/client_el.ts +++ b/translations/client_el.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Η σύνδεση έληξε. - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Έξοδος - + Continue Συνέχεια - + Error accessing the configuration file Σφάλμα πρόσβασης στο αρχείο ρυθμίσεων - + There was an error while accessing the configuration file at %1. Υπήρξε σφάλμα κατά την πρόσβαση του αρχείου ρυθμίσεων στο %1 - + Quit ownCloud Έξοδος ownCloud @@ -911,92 +911,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Βρέθηκε ένα παλαιότερο αρχείο συγχρονισμού '%1', αλλά δεν μπόρεσε να αφαιρεθεί. Παρακαλώ βεβαιωθείτε ότι καμμία εφαρμογή δεν το χρησιμοποιεί αυτή τη στιγμή. - + (backup) (αντίγραφο ασφαλείας) - + (backup %1) (αντίγραοφ ασφαλέιας %1) - + Undefined State. Απροσδιόριστη Κατάσταση. - + Waiting to start syncing. Αναμονή έναρξης συγχρονισμού. - + Preparing for sync. Προετοιμασία για συγχρονισμό. - + Sync is running. Ο συγχρονισμός εκτελείται. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Ο τελευταίος συγχρονισμός ήταν επιτυχής. - + Setup Error. Σφάλμα Ρύθμισης. - + User Abort. Ματαίωση από Χρήστη. - + Sync is paused. Παύση συγχρονισμού. - + %1 (Sync is paused) %1 (Παύση συγχρονισμού) - + No valid folder selected! Δεν επιλέχθηκε έγκυρος φάκελος! - + The selected path is not a folder! Η επιλεγμένη διαδρομή δεν είναι φάκελος! - + You have no permission to write to the selected folder! Δεν έχετε δικαιώματα εγγραφής στον επιλεγμένο φάκελο! - + There is already a sync from the server to this local folder. Please pick another local folder! Υπάρχει ήδη συγχρονισμός από το διακομιστή σε αυτόν τον τοπικό φάκελο. Επιλέξτε έναν άλλο τοπικό φάκελο! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Ο τοπικός φάκελος %1 περιέχει ήδη ένα φάκελο που χρησιμοποιείται σε μια σύνδεση συγχρονισμού φακέλου. Παρακαλώ επιλέξτε άλλον! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Ο τοπικός φάκελος %1 περιέχεται ήδη σε φάκελο που χρησιμοποιείται σε μια σύνδεση συγχρονισμού. Παρακαλώ επιλέξτε άλλον! @@ -2358,17 +2358,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Το ληφθέν αρχείο είναι άδειο, παρόλο που ο διακομιστής ανακοίνωσε ότι θα έπρεπε να ήταν% 1. - + File %1 cannot be saved because of a local file name clash! Το αρχείο %1 δεν είναι δυνατό να αποθηκευτεί λόγω διένεξης με το όνομα ενός τοπικού ονόματος αρχείου! - + File has changed since discovery Το αρχείο έχει αλλάξει από όταν ανακαλύφθηκε - + Error writing metadata to the database Σφάλμα εγγραφής μεταδεδομένων στην βάση δεδομένων @@ -2513,27 +2513,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Το τοπικό αρχείο αφαιρέθηκε κατά το συγχρονισμό. - + Local file changed during sync. Το τοπικό αρχείο τροποποιήθηκε κατά τον συγχρονισμό. - + Unexpected return code from server (%1) Ο διακομιστής επέστρεψε απροσδόκητο κωδικό (%1) - + Missing File ID from server Απουσία ID αρχείου από τον διακομιστή - + Missing ETag from server Απουσία ETag από τον διακομιστή @@ -2541,22 +2541,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Η διεύθυνση poll URL λείπει - + The local file was removed during sync. Το τοπικό αρχείο αφαιρέθηκε κατά το συγχρονισμό. - + Local file changed during sync. Το τοπικό αρχείο τροποποιήθηκε κατά τον συγχρονισμό. - + The server did not acknowledge the last chunk. (No e-tag was present) Ο διακομιστής δεν αναγνώρισε το τελευταίο τμήμα. (Δεν υπήρχε e-tag) @@ -2725,7 +2725,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Δίκτυο - + Account Λογαριασμός @@ -2753,8 +2753,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Δίκτυο - - + + Account Λογαριασμός @@ -3729,15 +3729,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Σύνδεση... - - + + Log out Αποσύνδεση @@ -3767,27 +3767,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Άγνωστη κατάσταση - + Settings... Ρυθμίσεις... - + Details... Λεπτομέρειες... - + Help Βοήθεια - + Quit %1 Κλείσιμο %1 @@ -3863,89 +3863,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Παύση όλων των φακέλων - + Unpause all synchronization Αναίρεση παύσης όλων των συγχρονισμών - + Unpause synchronization Αναίρεση παύσης συγχρονσμού - + Pause all synchronization Παύση όλων των συγχρονισμών - + Pause synchronization Παύση συγχρονισμού - + Log out of all accounts Έξοδος από όλους τους λογαριασμούς - + Log in to all accounts... Είσοδος σε όλους τους λογαριασμούς - + New account... Νέος λογαριασμός... - - + + About %1 Σχετικά %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Κατάρρευση τώρα - - - + No items synced recently Κανένα στοιχείο δεν συγχρονίστηκε πρόσφατα - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Συγχρονισμός %1 από %2 (%3 απομένουν) - + Syncing %1 of %2 Συγχρονισμός %1 από %2 - + Syncing %1 (%2 left) Συγχρονισμός %1 (%2 απομένουν) - + Syncing %1 Συγχρονισμός %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_en.ts b/translations/client_en.ts index 042cfb0f26..a248aa2b10 100644 --- a/translations/client_en.ts +++ b/translations/client_en.ts @@ -97,17 +97,17 @@ OCC::AbstractNetworkJob - + Connection timed out - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -587,42 +587,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit - + Continue - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud @@ -931,92 +931,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an - + (backup) - + (backup %1) - + Undefined State. - + Waiting to start syncing. - + Preparing for sync. - + Sync is running. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. - + Setup Error. - + User Abort. - + Sync is paused. - + %1 (Sync is paused) - + No valid folder selected! - + The selected path is not a folder! - + You have no permission to write to the selected folder! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2377,17 +2377,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database @@ -2532,27 +2532,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. - + Local file changed during sync. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2560,22 +2560,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. - + Local file changed during sync. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2744,7 +2744,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Account @@ -2772,8 +2772,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Account @@ -3752,15 +3752,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... - - + + Log out @@ -3790,27 +3790,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status - + Settings... - + Details... - + Help - + Quit %1 @@ -3886,89 +3886,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts - + Log in to all accounts... - + New account... - - + + About %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) - + Syncing %1 of %2 - + Syncing %1 (%2 left) - + Syncing %1 - + %1 (%2, %3) diff --git a/translations/client_es.ts b/translations/client_es.ts index 79ab99fb30..617cbf39d5 100644 --- a/translations/client_es.ts +++ b/translations/client_es.ts @@ -4,7 +4,7 @@ Could not make directories in trash - No se pueden crear carpetas en la papelera. + No se pueden crear directorios en la papelera. @@ -56,7 +56,7 @@ Refresh - Refrescar + Actualizar @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Tiempo de conexión agotado - + Unknown error: network reply was deleted Error desconocido: la respuesta de red fue eliminada - + Server replied "%1 %2" to "%3 %4" El servidor respondió "%1 %2" a "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. Continuar significa que <b>borrará estas opciones:</b>. - + Continuing will mean <b>ignoring these settings</b>. Continuar significa que <b>ignorará estas opciones:</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. Algunas opciones han sido configuradas con nuevas versiones del cliente y por ello algunas opciones no están disponibles en esta versión.<br><br>%1<br><br>El archivo de configuración debe ser respaldado en<i>%2</i>. - + Quit Salir - + Continue Continuar - + Error accessing the configuration file Error al acceder al archivo de configuración - + There was an error while accessing the configuration file at %1. Ha ocurrido un error al acceder al archivo de configuración %1. - + Quit ownCloud Salir de ownCloud @@ -915,92 +915,92 @@ Si continua con la sincronización todos los archivos serán remplazados por su Se ha encontrado un antiguo registro de sincronización '%1'; pero no se ha podido eliminar. Por favor, asegúrese de que ninguna aplicación la esté utilizando. - + (backup) (copia de seguridad) - + (backup %1) (copia de seguridad %1) - + Undefined State. Estado no definido. - + Waiting to start syncing. Esperando para comenzar la sincronización. - + Preparing for sync. Preparándose para sincronizar. - + Sync is running. Sincronización en funcionamiento. - + Sync was successful, unresolved conflicts. La sincronización se ha realizado. pero hay conflictos sin resolver. - + Last Sync was successful. La última sincronización se ha realizado con éxito. - + Setup Error. Error de configuración. - + User Abort. Interrumpido por el usuario. - + Sync is paused. La sincronización está en pausa. - + %1 (Sync is paused) %1 (Sincronización en pausa) - + No valid folder selected! ¡La carpeta seleccionada no es válida! - + The selected path is not a folder! ¡La ruta seleccionada no es un directorio! - + You have no permission to write to the selected folder! ¡Usted no tiene permiso para escribir en la carpeta seleccionada! - + There is already a sync from the server to this local folder. Please pick another local folder! Ya existe una tarea de sincronización entre el servidor y esta carpeta. Por favor elija otra carpeta local. - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! El directorio local %1 ya contiene un directorio usado en una conexión de sincronización de directorios. Por favor, elija otro. - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! El directorio local %1 está dentro de un directorio usado en una conexión de sincronización de directorios. Por favor, elija otro. @@ -2367,17 +2367,17 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p El archivo descargado está vacio aunque el servidor dice que deberia haber sido %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede guardarse debido a un conflicto con el nombre de otro archivo local! - + File has changed since discovery El archivo ha cambiado desde que fue descubierto - + Error writing metadata to the database Error al escribir los metadatos en la base de datos @@ -2522,27 +2522,27 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p OCC::PropagateUploadFileNG - + The local file was removed during sync. El archivo local ha sido eliminado durante la sincronización. - + Local file changed during sync. Un archivo local fue modificado durante la sincronización. - + Unexpected return code from server (%1) Respuesta inesperada del servidor (%1) - + Missing File ID from server Perdido ID del archivo en el servidor - + Missing ETag from server Perdido ETag del servidor @@ -2550,22 +2550,22 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p OCC::PropagateUploadFileV1 - + Poll URL missing Falta la URL de la encuesta - + The local file was removed during sync. El archivo local ha sido eliminado durante la sincronización. - + Local file changed during sync. Un archivo local fue modificado durante la sincronización. - + The server did not acknowledge the last chunk. (No e-tag was present) El servidor no reconoció la última parte. (No había una e-tag presente) @@ -2734,7 +2734,7 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p Red - + Account Cuenta @@ -2762,8 +2762,8 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p Red - - + + Account Cuenta @@ -3738,15 +3738,15 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p - - + + Log in... Inicio de sesión... - - + + Log out Cerrar sesión @@ -3776,27 +3776,27 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p El servidor de la cuenta %1 ejecuta una versión %2 no compatible. Este cliente con versiones del servidor no compatibles es potencialmente peligroso. Continúa bajo tu responsabilidad. - + Unknown status Estado desconocido - + Settings... Configuraciones... - + Details... Detalles... - + Help Ayuda - + Quit %1 Salir de %1 @@ -3872,89 +3872,83 @@ Este es un nuevo modo experimental. Si decide usarlo, por favor informe de los p Pausar todas las carpetas - + Unpause all synchronization Reanudar toda la sincronización - + Unpause synchronization Reanudar la sincronización - + Pause all synchronization Pausar todas las sincronizaciones - + Pause synchronization Pausar la sincronización - + Log out of all accounts Terminar sessión en todas las cuentas - + Log in to all accounts... Iniciar sesión en todas las cuentas... - + New account... Nueva cuenta ... - - + + About %1 Acerca de %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Se ha producido un fallo - - - + No items synced recently No se han sincronizado elementos recientemente - + Checking for changes in remote '%1' Buscando cambios en remoto: '%1' - + Checking for changes in local '%1' Buscando cambios en local '%1' - + Syncing %1 of %2 (%3 left) Sincronizando %1 de %2 (quedan %3) - + Syncing %1 of %2 Sincronizando %1 de %2 - + Syncing %1 (%2 left) Sincronizando %1 (quedan %2) - + Syncing %1 Sincronizando %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_es_AR.ts b/translations/client_es_AR.ts index 9e20aa7890..785c2b6d0d 100644 --- a/translations/client_es_AR.ts +++ b/translations/client_es_AR.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Tiempo de conexión agotado - + Unknown error: network reply was deleted Error desconocido: la respuesta de la red fue eliminada - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Salir - + Continue Continuar - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud Salir de ownCloud @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Una antigua sincronización con journaling '%1' fue encontrada, pero no se pudo eliminar. Por favor, asegurate que ninguna aplicación la está utilizando. - + (backup) (Copia de seguridad) - + (backup %1) (Copia de seguridad %1) - + Undefined State. Estado no definido. - + Waiting to start syncing. Esperando para comenzar sincronización. - + Preparing for sync. Preparando la sincronización. - + Sync is running. Sincronización en funcionamiento. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. La última sincronización fue exitosa. - + Setup Error. Error de configuración. - + User Abort. Interrumpir. - + Sync is paused. La sincronización está en pausa. - + %1 (Sync is paused) %1 (Sincronización en pausa) - + No valid folder selected! Carpeta válida no seleccionada! - + The selected path is not a folder! - + You have no permission to write to the selected folder! ¡No tenés permisos para escribir el directorio seleccionado! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2345,17 +2345,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database Error escribiendo metadatos a la base de datos @@ -2500,27 +2500,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. - + Local file changed during sync. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2528,22 +2528,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. - + Local file changed during sync. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2712,7 +2712,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Red - + Account Cuenta @@ -2740,8 +2740,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Red - - + + Account Cuenta @@ -3714,15 +3714,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... - - + + Log out Cerrar la sesión @@ -3752,27 +3752,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Estado desconocido - + Settings... Configuraciones... - + Details... Detalles... - + Help Ayuda - + Quit %1 Cancelar %1 @@ -3848,89 +3848,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts - + Log in to all accounts... - + New account... - - + + About %1 Sobre %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently No se sincronizaron elementos recientemente - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) - + Syncing %1 of %2 - + Syncing %1 (%2 left) - + Syncing %1 Sincronizando %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_et.ts b/translations/client_et.ts index e70387ace0..51ec51a3de 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Ühendus aegus - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Lõpeta - + Continue Jätka - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud Sulge ownCloud @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Leiti vana sünkroniseeringu zurnaal '%1', kuid selle eemaldamine ebaõnnenstus. Palun veendu, et seda kasutaks ükski programm. - + (backup) (varukoopia) - + (backup %1) (varukoopia %1) - + Undefined State. Määramata staatus. - + Waiting to start syncing. Oodatakse sünkroonimise alustamist. - + Preparing for sync. Valmistun sünkroniseerima. - + Sync is running. Sünkroniseerimine on käimas. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Viimane sünkroniseerimine oli edukas. - + Setup Error. Seadistamise viga. - + User Abort. Kasutaja tühistamine. - + Sync is paused. Sünkroniseerimine on peatatud. - + %1 (Sync is paused) %1 (Sünkroniseerimine on peatatud) - + No valid folder selected! Sobilikku kausta pole valitud! - + The selected path is not a folder! Valitud asukoht pole kaust! - + You have no permission to write to the selected folder! Sul puuduvad õigused valitud kataloogi kirjutamiseks! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2346,17 +2346,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! Faili %1 ei saa salvestada kuna on nime konflikt kohaliku failiga! - + File has changed since discovery Faili on pärast avastamist muudetud - + Error writing metadata to the database @@ -2501,27 +2501,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Kohalik fail on eemaldatud sünkroniseeringu käigus. - + Local file changed during sync. Kohalik fail muutus sünkroniseeringu käigus. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2529,22 +2529,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Küsitluse URL puudub - + The local file was removed during sync. Kohalik fail on eemaldatud sünkroniseeringu käigus. - + Local file changed during sync. Kohalik fail muutus sünkroniseeringu käigus. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2713,7 +2713,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Võrk - + Account Konto @@ -2741,8 +2741,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Võrk - - + + Account Konto @@ -3717,15 +3717,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Logi sisse... - - + + Log out Logi välja @@ -3755,27 +3755,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Tundmatu staatus - + Settings... Seaded... - + Details... Üksikasjad... - + Help Abiinfo - + Quit %1 Lõpeta %1 @@ -3851,89 +3851,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts Logi välja kõikidelt kontodelt - + Log in to all accounts... Logi sisse kõikidesse kontodesse... - + New account... - - + + About %1 Rakendusest %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Jookse kokku - - - + No items synced recently Ühtegi üksust pole hiljuti sünkroniseeritud - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Sünkroniseerin %1 %2-st (%3 veel) - + Syncing %1 of %2 - + Syncing %1 (%2 left) Sünkroniseerin %1 (%2 veel) - + Syncing %1 Sünkroniseerimine %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_eu.ts b/translations/client_eu.ts index a2ab42e896..0c1235c18a 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Konexioa denboraz kanpo - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Irten - + Continue Jarraitu - + Error accessing the configuration file Errorea ezarpen fitxategia atzitzean - + There was an error while accessing the configuration file at %1. Errore bat gertatu da ezarpen fitxategia atzitzean %1-etan - + Quit ownCloud Irten ownCloud-etik @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Aurkitu da '%1' sinkronizazio erregistro zaharra, baina ezin da ezabatu. Ziurtatu aplikaziorik ez dela erabiltzen ari. - + (backup) - + (backup %1) - + Undefined State. Definitu gabeko egoera. - + Waiting to start syncing. Itxoiten sinkronizazioa hasteko. - + Preparing for sync. Sinkronizazioa prestatzen. - + Sync is running. Sinkronizazioa martxan da. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Azkeneko sinkronizazioa ongi burutu zen. - + Setup Error. Konfigurazio errorea. - + User Abort. Erabiltzaileak bertan behera utzi. - + Sync is paused. Sinkronizazioa pausatuta dago. - + %1 (Sync is paused) %1 (Sinkronizazioa pausatuta dago) - + No valid folder selected! Ez da karpeta egokirik hautatu! - + The selected path is not a folder! Hautatutako bidea ez da karpeta bat! - + You have no permission to write to the selected folder! Ez daukazu hautatutako karpetan idazteko baimenik! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2348,17 +2348,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database Errorea metadatuak datu-basean idaztean @@ -2503,27 +2503,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Fitxategi lokala ezabatu da sinkronizazioan. - + Local file changed during sync. Fitxategi lokala aldatu da sinkronizazioan. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2531,22 +2531,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. Fitxategi lokala ezabatu da sinkronizazioan. - + Local file changed during sync. Fitxategi lokala aldatu da sinkronizazioan. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2715,7 +2715,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sarea - + Account Kontua @@ -2743,8 +2743,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sarea - - + + Account Kontua @@ -3717,15 +3717,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Saioa hasi... - - + + Log out Saioa bukatu @@ -3755,27 +3755,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Egoera ezezaguna - + Settings... Ezarpenak... - + Details... Xehetasunak... - + Help Laguntza - + Quit %1 %1etik Irten @@ -3851,89 +3851,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts Saioa bukatu kontu guztietan - + Log in to all accounts... Saioa hasi kontu guztietan... - + New account... - - + + About %1 %1 buruz - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently Ez da azken aldian ezer sinkronizatu - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Sinkronizatzen %1 %2tik (%3 faltan) - + Syncing %1 of %2 - + Syncing %1 (%2 left) Sinkronizatzen %1 (%2faltan) - + Syncing %1 %1 Sinkronizatzen - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_fa.ts b/translations/client_fa.ts index f580166854..bf3fcff1fa 100644 --- a/translations/client_fa.ts +++ b/translations/client_fa.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out زمان ارتباط تمام شد - + Unknown error: network reply was deleted خطای ناشناخته: پاسخ شبکه پاک شد - + Server replied "%1 %2" to "%3 %4" سرور "1% 2%" به "3% 4%" پاسخ داد @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit خروج - + Continue ادامه - + Error accessing the configuration file خطای دسترسی به پرونده پیکربندی - + There was an error while accessing the configuration file at %1. خطایی هنگام دسترسی به پرونده پیکربندی در 1% وحود دارد. - + Quit ownCloud خروج از ownCloud @@ -911,92 +911,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an یک مجله همگام قدیمی '1%' پیدا شد، اما حذف نمی شود. لطفا مطمئن شوید که هیچ برنامه ای در حال حاضر از آن استفاده نمی کند. - + (backup) (backup) - + (backup %1) (پشتیبان %1) - + Undefined State. موقعیت تعریف نشده - + Waiting to start syncing. انتظار برای شروع همگام‌سازی - + Preparing for sync. آماده سازی برای همگام سازی کردن. - + Sync is running. همگام سازی در حال اجراست - + Sync was successful, unresolved conflicts. - + Last Sync was successful. آخرین همگام سازی موفقیت آمیز بود - + Setup Error. خطا در پیکر بندی. - + User Abort. خارج کردن کاربر. - + Sync is paused. همگام سازی فعلا متوقف شده است - + %1 (Sync is paused) %1 (همگام‌سازی موقتا متوقف شده است) - + No valid folder selected! هیچ پوشه‌ی معتبری انتخاب نشده است! - + The selected path is not a folder! مسیر انتخاب شده یک پوشه نیست! - + You have no permission to write to the selected folder! شما اجازه نوشتن در پوشه های انتخاب شده را ندارید! - + There is already a sync from the server to this local folder. Please pick another local folder! در حال حاضر یک همگام سازی از سرور به این پوشه محلی وجود دارد. لطفا یک پوشه محلی دیگر را انتخاب کنید! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! پوشه محلی 1% از قبل شامل یک پوشه استفاده شده در یک اتصال همگام سازی پوشه است. لطفا یکی دیگر را انتخاب کنید! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! پوشه محلی 1% از قبل یک پوشه استفاده شده در یک اتصال همگام سازی پوشه دارد. لطفا یکی دیگر را انتخاب کنید! @@ -2356,17 +2356,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss پرونده دانلود شده خالی است با وجود اینکه سرور اعلام کرده است این باید 1% باشد. - + File %1 cannot be saved because of a local file name clash! پرونده 1% بخاطر یک پرونده محلی به نام برخورد ذخیره نمی شود! - + File has changed since discovery پرونده از زمان کشف تغییر کرده است. - + Error writing metadata to the database خطا در نوشتن متادیتا در پایگاه داده @@ -2511,27 +2511,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. فایل محلی در حین همگام‌سازی حذف شده است. - + Local file changed during sync. فایل محلی در حین همگام‌سازی تغییر کرده است. - + Unexpected return code from server (%1) کد بازگشت غیر منتظره از سرور (1%) - + Missing File ID from server فاقد شناسه پرونده از سرور - + Missing ETag from server فاقد ETag از سرور @@ -2539,22 +2539,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing فاقد آدرس نظرسنجی - + The local file was removed during sync. فایل محلی در حین همگام‌سازی حذف شده است. - + Local file changed during sync. فایل محلی در حین همگام‌سازی تغییر کرده است. - + The server did not acknowledge the last chunk. (No e-tag was present) سرور آخرین تکه را تایید نکرد. (برچسب الکترونیکی وجود نداشت) @@ -2723,7 +2723,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss شبکه - + Account حساب کاربری @@ -2751,8 +2751,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss شبکه - - + + Account حساب کاربری @@ -3726,15 +3726,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... ورود... - - + + Log out خروج @@ -3764,27 +3764,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status وضعیت نامعلوم - + Settings... تنظیمات... - + Details... جزئیات... - + Help راه‌نما - + Quit %1 خروج %1 @@ -3860,89 +3860,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss توقف تمام پوشه‌ها - + Unpause all synchronization شروع مجدد تمام همگام سازی ها - + Unpause synchronization شروع مجدد همگام سازی - + Pause all synchronization توقف تمام همگام سازی ها - + Pause synchronization توقف همگام سازی - + Log out of all accounts خروج از تمام حساب ها - + Log in to all accounts... ورود به تمام حساب ها... - + New account... حساب جدید... - - + + About %1 درباره %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently هیچ موردی به تازگی همگام‌سازی نشده است - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) همگام‌سازی %1 از%2 (%3 باقیمانده) - + Syncing %1 of %2 همگام سازی 1% از 2% - + Syncing %1 (%2 left) همگام‌سازی %1 (%2 باقیمانده) - + Syncing %1 همگام‌سازی %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_fi.ts b/translations/client_fi.ts index fcf1b05b51..fce9945d44 100644 --- a/translations/client_fi.ts +++ b/translations/client_fi.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Yhteys aikakatkaistiin - + Unknown error: network reply was deleted Tuntematon virhe: verkkovastaus poistettiin - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Lopeta - + Continue Jatka - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud Lopeta ownCloud @@ -904,92 +904,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an - + (backup) (varmuuskopio) - + (backup %1) (varmuuskopio %1) - + Undefined State. Määrittelemätön tila. - + Waiting to start syncing. Odotetaan synkronoinnin aloitusta. - + Preparing for sync. Valmistellaan synkronointia. - + Sync is running. Synkronointi on meneillään. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Viimeisin synkronointi suoritettiin onnistuneesti. - + Setup Error. Asetusvirhe. - + User Abort. - + Sync is paused. Synkronointi on keskeytetty. - + %1 (Sync is paused) %1 (Synkronointi on keskeytetty) - + No valid folder selected! Kelvollista kansiota ei ole valittu! - + The selected path is not a folder! Valittu polku ei ole kansio! - + You have no permission to write to the selected folder! Sinulla ei ole kirjoitusoikeutta valittuun kansioon! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Paikallinen kansio %1 sisältää kansion, jota käytetään kansion synkronointiyhteydessä. Valitse toinen kansio! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2350,17 +2350,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery Tiedosto on muuttunut löytymisen jälkeen - + Error writing metadata to the database Virhe kirjoittaessa metadataa tietokantaan @@ -2505,27 +2505,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Paikallinen tiedosto poistettiin synkronoinnin aikana. - + Local file changed during sync. Paikallinen tiedosto muuttui synkronoinnin aikana. - + Unexpected return code from server (%1) Odottamaton paluukoodi palvelimelta (%1) - + Missing File ID from server - + Missing ETag from server @@ -2533,22 +2533,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. Paikallinen tiedosto poistettiin synkronoinnin aikana. - + Local file changed during sync. Paikallinen tiedosto muuttui synkronoinnin aikana. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2717,7 +2717,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Verkko - + Account Tili @@ -2745,8 +2745,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Verkko - - + + Account Tili @@ -3721,15 +3721,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Kirjaudu sisään... - - + + Log out Kirjaudu ulos @@ -3759,27 +3759,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Tuntematon tila - + Settings... Asetukset... - + Details... Tiedot... - + Help Ohje - + Quit %1 Lopeta %1 @@ -3855,89 +3855,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Keskeytä kaikki kansiot - + Unpause all synchronization Palauta kaikki synkronointi - + Unpause synchronization Palauta synkronointi - + Pause all synchronization Keskeytä kaikki synkronointi - + Pause synchronization Keskeytä synkronointi - + Log out of all accounts Kirjaudu ulos kaikista tileistä - + Log in to all accounts... Kirjaudu kaikille tileille... - + New account... Uusi tili... - - + + About %1 Tietoja - %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently Kohteita ei ole synkronoitu äskettäin - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Synkronoidaan %1/%2 (%3 jäljellä) - + Syncing %1 of %2 Synkronoidaan %1/%2 - + Syncing %1 (%2 left) Synkronoidaan %1 (%2 jäljellä) - + Syncing %1 Synkronoidaan %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_fr.ts b/translations/client_fr.ts index 0cdee8c3d6..341305e461 100644 --- a/translations/client_fr.ts +++ b/translations/client_fr.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Délai de connexion dépassé - + Unknown error: network reply was deleted Erreur inconnue : La réponse du réseau a été supprimée - + Server replied "%1 %2" to "%3 %4" Le serveur a répondu "%1 %2" à "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. En continuant vous allez <b>effacer ces paramètres</b>. - + Continuing will mean <b>ignoring these settings</b>. En continuant vous allez <b>ignorer ces paramètres</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. Certains paramètres ont été configurés dans des versions plus récentes de ce logiciel client et utilisent des fonctionnalités non disponibles dans cette version.<br><br>%1<br><br>Le fichier de configuration actuel a été d'ores et déjà sauvegardé en tant que <i>%2</i>. - + Quit Quitter - + Continue Continuer - + Error accessing the configuration file Erreur lors de l'accès au fichier de configuration - + There was an error while accessing the configuration file at %1. Une erreur s'est produite lors de l'accès au fichier de configuration situé dans %1. - + Quit ownCloud Quitter ownCloud @@ -916,92 +916,92 @@ Continuer la synchronisation comme d'habitude fera en sorte que tous les fi Un ancien fichier journal '%1' a été trouvé, mais ne peut être supprimé. Veuillez vous assurer qu’aucune application ne l'utilise en ce moment. - + (backup) (sauvegarde) - + (backup %1) (sauvegarde %1) - + Undefined State. Statut indéfini. - + Waiting to start syncing. En attente de synchronisation. - + Preparing for sync. Préparation de la synchronisation. - + Sync is running. Synchronisation en cours - + Sync was successful, unresolved conflicts. Synchronisation réussie, conflits non résolus. - + Last Sync was successful. Synchronisation terminée avec succès - + Setup Error. Erreur d'installation. - + User Abort. Abandon par l'utilisateur. - + Sync is paused. La synchronisation est en pause. - + %1 (Sync is paused) %1 (Synchronisation en pause) - + No valid folder selected! Aucun dossier valable sélectionné ! - + The selected path is not a folder! Le chemin sélectionné n'est pas un dossier ! - + You have no permission to write to the selected folder! Vous n'avez pas la permission d'écrire dans le dossier sélectionné ! - + There is already a sync from the server to this local folder. Please pick another local folder! Il y a déjà une synchronisation depuis le serveur vers ce dossier local. Merci de choisir un autre dossier local ! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Le dossier local %1 contient un dossier déjà utilisé pour une synchronisation de dossiers. Veuillez en choisir un autre ! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Le dossier local %1 se trouve dans un dossier déjà configuré pour une synchronisation de dossier. Veuillez en choisir un autre ! @@ -1740,7 +1740,7 @@ Les fichiers de log seront écrits dans %1 Get update - Obtenir la mise à jour + Télécharger la version @@ -2371,17 +2371,17 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' Le fichier téléchargé est vide bien que le serveur indique que sa taille devrait être de %1. - + File %1 cannot be saved because of a local file name clash! Le fichier %1 n'a pas pu être sauvegardé en raison d'un conflit sur le nom du fichier local ! - + File has changed since discovery Le fichier a changé depuis sa découverte - + Error writing metadata to the database Erreur à l'écriture des métadonnées dans la base de données @@ -2526,27 +2526,27 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' OCC::PropagateUploadFileNG - + The local file was removed during sync. Fichier local supprimé pendant la synchronisation. - + Local file changed during sync. Fichier local modifié pendant la synchronisation. - + Unexpected return code from server (%1) Le serveur a retourné un code inattendu (%1) - + Missing File ID from server L'identifiant de fichier est manquant sur le serveur - + Missing ETag from server L'information Etag de modification de fichier est manquante sur le serveur @@ -2554,22 +2554,22 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' OCC::PropagateUploadFileV1 - + Poll URL missing URL de sondage manquante - + The local file was removed during sync. Fichier local supprimé pendant la synchronisation. - + Local file changed during sync. Fichier local modifié pendant la synchronisation. - + The server did not acknowledge the last chunk. (No e-tag was present) Le serveur n'a pas confirmé la réception du dernier morceau. (Aucun e-tag n'était présent). @@ -2738,7 +2738,7 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' Réseau - + Account Compte @@ -2766,8 +2766,8 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' Réseau - - + + Account Compte @@ -3743,15 +3743,15 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' - - + + Log in... Connexion... - - + + Log out Se déconnecter @@ -3781,27 +3781,27 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' - + Unknown status Statut inconnu - + Settings... Paramètres... - + Details... Toutes les modifications... - + Help Aide... - + Quit %1 Quitter %1 @@ -3877,89 +3877,83 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' Mettre en pause tous les dossiers - + Unpause all synchronization Relancer toutes les synchronisations - + Unpause synchronization Relancer la synchronisation - + Pause all synchronization Mettre en pause toutes les synchronisations - + Pause synchronization Mettre en pause la synchronisation - + Log out of all accounts Se déconnecter de tous les comptes - + Log in to all accounts... Se connecter à tous les comptes... - + New account... Nouveau compte… - - + + About %1 À propos de %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Plantage maintenant - - - + No items synced recently Aucun élément synchronisé récemment - + Checking for changes in remote '%1' Vérification des changements distants '%1' - + Checking for changes in local '%1' Vérification des changements locaux '%1' - + Syncing %1 of %2 (%3 left) Synchronisation de %1 sur %2 (%3 restantes) - + Syncing %1 of %2 Synchronisation %1 sur %2 - + Syncing %1 (%2 left) Synchronisation de %1 (%2 restantes) - + Syncing %1 Synchronisation de %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_gl.ts b/translations/client_gl.ts index b436ffd618..bec6cdbbf5 100644 --- a/translations/client_gl.ts +++ b/translations/client_gl.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Esgotouse o tempo de conexión - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Saír - + Continue Continuar - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Atopouse un rexistro de sincronización antigo en «%1» máis non pode ser retirado. Asegúrese de que non o está a usar ningunha aplicación. - + (backup) (copia de seguranza) - + (backup %1) (copia de seguranza %1) - + Undefined State. Estado sen definir. - + Waiting to start syncing. - + Preparing for sync. Preparando para sincronizar. - + Sync is running. Estase sincronizando. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. A última sincronización fíxose correctamente. - + Setup Error. Erro de configuración. - + User Abort. Interrompido polo usuario. - + Sync is paused. Sincronización en pausa. - + %1 (Sync is paused) %1 (sincronización en pausa) - + No valid folder selected! Non seleccionou ningún cartafol correcto! - + The selected path is not a folder! - + You have no permission to write to the selected folder! Vostede non ten permiso para escribir neste cartafol! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2347,17 +2347,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! Non foi posíbel gardar o ficheiro %1 por mor dunha colisión co nome dun ficheiro local! - + File has changed since discovery O ficheiro cambiou após seren atopado - + Error writing metadata to the database @@ -2502,27 +2502,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. O ficheiro local retirarase durante a sincronización. - + Local file changed during sync. O ficheiro local cambiou durante a sincronización. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2530,22 +2530,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Non se atopa o URL requirido - + The local file was removed during sync. O ficheiro local retirarase durante a sincronización. - + Local file changed during sync. O ficheiro local cambiou durante a sincronización. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2714,7 +2714,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Rede - + Account Conta @@ -2742,8 +2742,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Rede - - + + Account Conta @@ -3718,15 +3718,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... - - + + Log out Desconectar @@ -3756,27 +3756,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Estado descoñecido - + Settings... Axustes... - + Details... Detalles... - + Help Axuda - + Quit %1 Saír de %1 @@ -3852,89 +3852,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts - + Log in to all accounts... - + New account... - - + + About %1 Sobre %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Quebrou agora - - - + No items synced recently Non hai elementos sincronizados recentemente - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Sincronizando %1 of %2 (restan %3) - + Syncing %1 of %2 - + Syncing %1 (%2 left) Sincronizando %1 (restan %2) - + Syncing %1 Sincronizando %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_hu.ts b/translations/client_hu.ts index ff111f83d5..da0f9f0bb2 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out A kapcsolat időtúllépés miatt megszakadt - + Unknown error: network reply was deleted Ismeretlen hiba: hálózati válasz törölve - + Server replied "%1 %2" to "%3 %4" Szerver válasza "%1 %2" "%3 %4"-re @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Kilépés - + Continue Folytatás - + Error accessing the configuration file Hiba történt egy konfigurációs fájl elérésében - + There was an error while accessing the configuration file at %1. Hiba történt a (z) %1 konfigurációs fájl elérésekor. - + Quit ownCloud Kilépés egy sajátCloud-ból @@ -903,92 +903,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Meglelt egy régi '%1' szinkronfüzet, de nem sikerült eltávolítani. Győződjön meg róla, hogy egyetlen alkalmazás sem használja azt. - + (backup) (biztonsági mentés) - + (backup %1) (biztonsági mentés: %1) - + Undefined State. Ismeretlen állapot. - + Waiting to start syncing. Várakozás a szinkronizálás elindítására. - + Preparing for sync. Előkészítés szinkronizációhoz. - + Sync is running. Szinkronizálás fut. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Legutolsó szinkronizálás sikeres volt. - + Setup Error. Beállítás hiba. - + User Abort. Felhasználó megszakította. - + Sync is paused. Szinkronizálás megállítva. - + %1 (Sync is paused) %1 (szinkronizálás megállítva) - + No valid folder selected! Nincs érvényes könyvtár kiválasztva! - + The selected path is not a folder! A kiválasztott elérési út nem könyvtár! - + You have no permission to write to the selected folder! Nincs joga a kiválasztott könyvtár írásához! - + There is already a sync from the server to this local folder. Please pick another local folder! Már van szinkronizálás a szerverről a helyi mappára. Kérjük, válasszon másik helyi mappát! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! A %1 helyi mappa már tartalmaz egy mappát a mappák szinkronizációjában. Kérem válasszon egyet! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! A %1 helyi mappa már tartalmazza a mappát és a szinkronizálási kapcsolatokat. Kérjük válasszon egyet! @@ -2350,17 +2350,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss A letöltött fájl üres, annak ellenére, hogy a kiszolgáló bejelentette, hogy %1-nek kell lennie. - + File %1 cannot be saved because of a local file name clash! A %1 fájl nem menthető el a helyi fájlnév ütközése miatt! - + File has changed since discovery A fájl felfedezése óta megváltozott - + Error writing metadata to the database Hiba történt a metaadatok megadásához a adatbázisban @@ -2505,27 +2505,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. A helyi fájl el lett távolítva a szinkronizálás alatt. - + Local file changed during sync. A helyi file a szinkronizálás során megváltozott - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2533,22 +2533,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. A helyi fájl el lett távolítva a szinkronizálás alatt. - + Local file changed during sync. A helyi file a szinkronizálás során megváltozott - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2717,7 +2717,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Hálózat - + Account Fiók @@ -2745,8 +2745,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Hálózat - - + + Account Fiók @@ -3720,15 +3720,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Bejelentkezés... - - + + Log out Kilépés @@ -3758,27 +3758,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Ismeretlen állapot - + Settings... Beállítások... - + Details... Részletek... - + Help Súgó - + Quit %1 %1 kilépés @@ -3854,89 +3854,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization Szüntesse meg az összes szinkronizálást - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts Jelentkezzen ki minden fiókból - + Log in to all accounts... Jelentkezzen be az összes fiókba ... - + New account... Új fiók ... - - + + About %1 %1 névjegye - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently Mostanában nincs szinkronizált elem - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) %1/%2 szinkronizálása (%3 maradt) - + Syncing %1 of %2 - + Syncing %1 (%2 left) %1 szinkronizálása (%2 maradt) - + Syncing %1 %1 szinkronizálása - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_it.ts b/translations/client_it.ts index 51a06c3316..7070e1308a 100644 --- a/translations/client_it.ts +++ b/translations/client_it.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Connessione scaduta - + Unknown error: network reply was deleted Errore sconosciuto: la risposta di rete è stata eliminata - + Server replied "%1 %2" to "%3 %4" Il server ha risposto "%1 %2" a "%3 %4" @@ -354,7 +354,7 @@ %1 of %2 in use - %1% di %2 in uso + %1 di %2 in uso @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Esci - + Continue Continua - + Error accessing the configuration file Errore accedendo al file di configurazione - + There was an error while accessing the configuration file at %1. Si è verificato un errore durante l'accesso al file di configurazione su %1. - + Quit ownCloud Esci da ownCloud @@ -907,92 +907,92 @@ Se continui normalmente la sincronizzazione provocherai la sovrascrittura di tut È stato trovato un vecchio registro di sincronizzazione '%1', ma non può essere rimosso. Assicurati che nessuna applicazione lo stia utilizzando. - + (backup) (copia di sicurezza) - + (backup %1) (copia di sicurezza %1) - + Undefined State. Stato non definito. - + Waiting to start syncing. In attesa di iniziare la sincronizzazione. - + Preparing for sync. Preparazione della sincronizzazione. - + Sync is running. La sincronizzazione è in corso. - + Sync was successful, unresolved conflicts. La sincronia ha avuto successo, nessun conflitto. - + Last Sync was successful. L'ultima sincronizzazione è stata completata correttamente. - + Setup Error. Errore di configurazione. - + User Abort. Interrotto dall'utente. - + Sync is paused. La sincronizzazione è sospesa. - + %1 (Sync is paused) %1 (La sincronizzazione è sospesa) - + No valid folder selected! Nessuna cartella valida selezionata! - + The selected path is not a folder! Il percorso selezionato non è una cartella! - + You have no permission to write to the selected folder! Non hai i permessi di scrittura per la cartella selezionata! - + There is already a sync from the server to this local folder. Please pick another local folder! Esiste già una sincronizzazione dal server a questa cartella locale. Seleziona un'altra cartella locale! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! La cartella locale %1 contiene già una cartella utilizzata in una connessione di sincronizzazione delle cartelle. Selezionane un'altra! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! La cartella locale %1 è già contenuta in una cartella utilizzata in una connessione di sincronizzazione delle cartelle. Selezionane un'altra! @@ -2353,17 +2353,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Il file scaricato è vuoto nonostante il server indicasse una dimensione di %1. - + File %1 cannot be saved because of a local file name clash! Il file %1 non può essere salvato a causa di un conflitto con un file locale. - + File has changed since discovery Il file è stato modificato dal suo rilevamento - + Error writing metadata to the database Errore durante la scrittura dei metadati nel database @@ -2508,27 +2508,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Il file locale è stato rimosso durante la sincronizzazione. - + Local file changed during sync. Un file locale è cambiato durante la sincronizzazione. - + Unexpected return code from server (%1) Codice di uscita inatteso dal server (%1) - + Missing File ID from server File ID mancante dal server - + Missing ETag from server ETag mancante dal server @@ -2536,22 +2536,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing URL di richiesta mancante - + The local file was removed during sync. Il file locale è stato rimosso durante la sincronizzazione. - + Local file changed during sync. Un file locale è cambiato durante la sincronizzazione. - + The server did not acknowledge the last chunk. (No e-tag was present) Il server non ha riconosciuto l'ultimo pezzo. (Non era presente alcun e-tag) @@ -2720,7 +2720,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Rete - + Account Account @@ -2748,8 +2748,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Rete - - + + Account Account @@ -3724,15 +3724,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Accedi... - - + + Log out Esci @@ -3762,27 +3762,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Stato sconosciuto - + Settings... Impostazioni... - + Details... Dettagli... - + Help Aiuto - + Quit %1 Esci da %1 @@ -3858,89 +3858,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sospendi tutte le cartelle - + Unpause all synchronization Riprendi tutte le sincronizzazioni - + Unpause synchronization Riprendi la sincronizzazione - + Pause all synchronization Sospendi tutte le sincronizzazioni - + Pause synchronization Sospendi la sincronizzazione - + Log out of all accounts Disconnetti tutti gli account - + Log in to all accounts... Accedi a tutti gli account... - + New account... Nuovo account... - - + + About %1 Informazioni su %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Chiusura immediata - - - + No items synced recently Nessun elemento sincronizzato di recente - + Checking for changes in remote '%1' Controllo per cambiamenti in '%1' remoto - + Checking for changes in local '%1' Controllo cambiamenti in '%1 ' locale - + Syncing %1 of %2 (%3 left) Sincronizzazione di %1 di %2 (%3 rimanenti) - + Syncing %1 of %2 Sincronizzazione di %1 di %2 - + Syncing %1 (%2 left) Sincronizzazione di %1 (%2 rimanenti) - + Syncing %1 Sincronizzazione di %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_ja.ts b/translations/client_ja.ts index 10d9ce96cc..f8bf7340c1 100644 --- a/translations/client_ja.ts +++ b/translations/client_ja.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out 接続タイムアウト - + Unknown error: network reply was deleted 未知のエラーです:ネットワーク応答が削除されました - + Server replied "%1 %2" to "%3 %4" サーバの返答は "%1 %2" から "%3 %4"です @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit 終了 - + Continue 続ける - + Error accessing the configuration file 設定ファイルのアクセスでエラーが発生しました - + There was an error while accessing the configuration file at %1. 設定ファイルの %1 行目にアクセスしている時にエラーが発生しました。 - + Quit ownCloud ownCloudを終了 @@ -909,92 +909,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an 古い同期ジャーナル '%1' が見つかりましたが、削除できませんでした。それを現在使用しているアプリケーションが存在しないか確認してください。 - + (backup) (バックアップ) - + (backup %1) (%1をバックアップ) - + Undefined State. 未定義の状態。 - + Waiting to start syncing. 同期開始を待機中 - + Preparing for sync. 同期の準備中。 - + Sync is running. 同期を実行中です。 - + Sync was successful, unresolved conflicts. - + Last Sync was successful. 最後の同期は成功しました。 - + Setup Error. 設定エラー。 - + User Abort. ユーザーによる中止。 - + Sync is paused. 同期を一時停止しました。 - + %1 (Sync is paused) %1 (同期を一時停止) - + No valid folder selected! 有効なフォルダーが選択されていません! - + The selected path is not a folder! 指定のパスは、フォルダーではありません! - + You have no permission to write to the selected folder! 選択されたフォルダーに書き込み権限がありません - + There is already a sync from the server to this local folder. Please pick another local folder! すでに同期されたフォルダーがあります。別のフォルダーを選択してください! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! ローカルフォルダー %1 にはすでに同期フォルダーとして利用されてるフォルダーを含んでいます。他のフォルダーを選択してください。 - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! ローカルフォルダー %1 には同期フォルダーとして利用されているフォルダーがあります。他のフォルダーを選択してください。 @@ -2354,17 +2354,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss サーバーが通知しているファイルは %1 であるべきですが、ダウンロードファイルは空でした。 - + File %1 cannot be saved because of a local file name clash! %1 はローカルファイル名が衝突しているため保存できません! - + File has changed since discovery ファイルは発見以降に変更されました - + Error writing metadata to the database メタデータのデータベースへの書き込みに失敗 @@ -2509,27 +2509,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. ローカルファイルを同期中に削除します。 - + Local file changed during sync. ローカルのファイルが同期中に変更されました。 - + Unexpected return code from server (%1) サーバー (%1) からの予期しない戻りコード - + Missing File ID from server サーバーからファイルIDの戻りがありません - + Missing ETag from server サーバーからETagの戻りがありません @@ -2537,22 +2537,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing ポーリングURLがありません - + The local file was removed during sync. ローカルファイルを同期中に削除します。 - + Local file changed during sync. ローカルのファイルが同期中に変更されました。 - + The server did not acknowledge the last chunk. (No e-tag was present) サーバーは最終チャンクを認識しませんでした。(e-tag が存在しませんでした) @@ -2721,7 +2721,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss ネットワーク - + Account アカウント @@ -2749,8 +2749,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss ネットワーク - - + + Account アカウント @@ -2868,7 +2868,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Recipients can view or download contents. - + 相手はコンテンツを表示またはダウンロードできます。 @@ -2883,7 +2883,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Recipients can view, download, edit, delete and upload contents. - + 相手はコンテンツを表示、ダウンロード、編集、削除、およびアップロードできます。 @@ -3725,15 +3725,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... ログイン... - - + + Log out ログアウト @@ -3763,27 +3763,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status 不明な状態 - + Settings... 設定... - + Details... 詳細... - + Help ヘルプ - + Quit %1 %1 を終了 @@ -3859,89 +3859,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss すべてのフォルダーの同期を一時停止 - + Unpause all synchronization すべての同期を再開 - + Unpause synchronization 同期を再開 - + Pause all synchronization すべての同期を一時停止 - + Pause synchronization 同期を一時停止 - + Log out of all accounts 全てのアカウントからログアウト - + Log in to all accounts... 全てのアカウントにログイン - + New account... 新規アカウント... - - + + About %1 %1 について - - Crash now - Only shows in debug mode to allow testing the crash handler - クラッシュしました。 - - - + No items synced recently 最近同期されたアイテムはありません。 - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) 同期中 %2 中 %1 (残り %3) - + Syncing %1 of %2 %2 の %1 を同期しています - + Syncing %1 (%2 left) 同期中 %1 (残り %2) - + Syncing %1 同期中 %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index 8b51d0b056..720841ea66 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Forbindelsen fikk tidsavbrudd - + Unknown error: network reply was deleted Ukjent feil: nettverkssvar ble slettet - + Server replied "%1 %2" to "%3 %4" Server svarte "%1 %2" til "%3 %4" @@ -207,7 +207,7 @@ Create virtual files for new files (Experimental) - + Opprett virtuelle filer for nye filer (eksperimentelt) @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. Å fortsette vil<b> slette disse innstillingene </b>. - + Continuing will mean <b>ignoring these settings</b>. Å fortsette vil <b> ignorere disse innstillingene </b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Avslutt - + Continue Fortsett - + Error accessing the configuration file Feil ved lesing av konfigurasjonsfil - + There was an error while accessing the configuration file at %1. En feil oppstod ved aksessering av konfigurasjonsfilen på %1. - + Quit ownCloud Avslutt ownCloud @@ -910,92 +910,92 @@ Hvis synkroniseringen fortsetter som normalt, vil alle filene dine bli overskrev En gammel synkroniseringsjournal '%1' ble funnet men kunne ikke fjernes. Pass på at ingen applikasjoner bruker den. - + (backup) (sikkerhetskopi) - + (backup %1) (sikkerhetskopi %1) - + Undefined State. Udefinert tilstand. - + Waiting to start syncing. Venter på å starte synkronisering. - + Preparing for sync. Forbereder synkronisering. - + Sync is running. Synkronisering kjører. - + Sync was successful, unresolved conflicts. Synkronisering var vellykket, uløste konflikter. - + Last Sync was successful. Siste synkronisering var vellykket. - + Setup Error. Feil med oppsett. - + User Abort. Brukeravbrudd. - + Sync is paused. Synkronisering er satt på pause. - + %1 (Sync is paused) %1 (Synkronisering er satt på pause) - + No valid folder selected! Ingen gyldig mappe valgt! - + The selected path is not a folder! Den valgte stien er ikke en mappe! - + You have no permission to write to the selected folder! Du har ikke skrivetilgang til den valgte mappen! - + There is already a sync from the server to this local folder. Please pick another local folder! Det er allerede en synkronisering fra serveren til denne lokale mappen. Velg en annen mappe! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Den lokale mappen %1 inneholder allerede en mappe brukt i en mappe-synkronisering. Velg en annen! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Den lokale mappen %1 er allerede en undermappe av en mappe brukt i en mappe-synkronisering. Velg en annen! @@ -2362,17 +2362,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Nedlastet fil er tom, selv om serveren annonserte at den skulle være %1. - + File %1 cannot be saved because of a local file name clash! Fil %1 kan ikke lagres på grunn av lokal konflikt med filnavn. - + File has changed since discovery Filen er endret siden den ble oppdaget - + Error writing metadata to the database Feil ved skriving av metadata til databasen @@ -2517,27 +2517,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Den lokale filen ble fjernet under synkronisering. - + Local file changed during sync. Lokal fil endret under synkronisering. - + Unexpected return code from server (%1) Uventet returkode fra serveren (%1) - + Missing File ID from server Mangler File ID fra server - + Missing ETag from server Mangler ETag fra server @@ -2545,22 +2545,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Forespørsels-URL mangler - + The local file was removed during sync. Den lokale filen ble fjernet under synkronisering. - + Local file changed during sync. Lokal fil endret under synkronisering. - + The server did not acknowledge the last chunk. (No e-tag was present) Serveren godtok ikke den siste deloverføringen. (Ingen e-tag var tilstede) @@ -2729,7 +2729,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Nettverk - + Account Konto @@ -2757,8 +2757,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Nettverk - - + + Account Konto @@ -3183,12 +3183,12 @@ This is a new, experimental mode. If you decide to use it, please report any iss Download file(s) - + Last ned filLast ned filer Replace file(s) by virtual file - + Erstatt fil(er) med virtuelle filErstatt fil(er) med virtuelle filer @@ -3733,15 +3733,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Logg inn.. - - + + Log out Logg ut @@ -3771,27 +3771,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Ukjent status - + Settings... Innstillinger... - + Details... Detaljer... - + Help Hjelp - + Quit %1 Avslutt %1 @@ -3867,89 +3867,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sett alle mapper på pause - + Unpause all synchronization Fortsett all synkronisering - + Unpause synchronization Fortsett synkronisering - + Pause all synchronization Sett all synkronisering på pause - + Pause synchronization Sett synkronisering på pause - + Log out of all accounts Logg ut av alle kontoer - + Log in to all accounts... Logg inn på alle kontoer... - + New account... Ny konto... - - + + About %1 Om %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Krasj nå - - - + No items synced recently Ingenting synkronisert nylig - + Checking for changes in remote '%1' Sjekker for endringer i ekstern '%1' - + Checking for changes in local '%1' Sjekker for endringer i lokal '%1' - + Syncing %1 of %2 (%3 left) Synkroniserer %1 av %2 (%3 gjenstår) - + Syncing %1 of %2 Synkroniserer %1 av %2 - + Syncing %1 (%2 left) Synkroniserer %1 (%2 gjenstår) - + Syncing %1 Synkroniserer %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_nl.ts b/translations/client_nl.ts index 1505b552fa..52b98458c6 100644 --- a/translations/client_nl.ts +++ b/translations/client_nl.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Time-out verbinding - + Unknown error: network reply was deleted Onbekende fout: antwoord van het netwerk is verwijderd - + Server replied "%1 %2" to "%3 %4" Server antwoordde "%1 %2" naar "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Afsluiten - + Continue Verder - + Error accessing the configuration file Fout bij benaderen configuratiebestand - + There was an error while accessing the configuration file at %1. Er trad een fout op bij het benaderen configuratiebestand op %1 - + Quit ownCloud Verlaten ownCloud @@ -910,92 +910,92 @@ Doorgaan met deze synchronisatie overschrijft al uw bestanden door een eerdere v Een oud synchronisatieverslag '%1' is gevonden maar kan niet worden verwijderd. Zorg ervoor dat geen applicatie dit bestand gebruikt. - + (backup) (backup) - + (backup %1) (backup %1) - + Undefined State. Ongedefiniëerde staat - + Waiting to start syncing. In afwachting van synchronisatie. - + Preparing for sync. Synchronisatie wordt voorbereid - + Sync is running. Bezig met synchroniseren. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Laatste synchronisatie was geslaagd. - + Setup Error. Installatiefout. - + User Abort. Afgebroken door gebruiker. - + Sync is paused. Synchronisatie gepauzeerd. - + %1 (Sync is paused) %1 (Synchronisatie onderbroken) - + No valid folder selected! Geen geldige map geselecteerd! - + The selected path is not a folder! Het geselecteerde pad is geen map! - + You have no permission to write to the selected folder! U heeft geen permissie om te schrijven naar de geselecteerde map! - + There is already a sync from the server to this local folder. Please pick another local folder! Er wordt vanaf de server al naar deze lokale map gesynchroniseerd. Kies een andere lokale map! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Lokale map %1 bevat al een map die wordt gebruikt voor een map-synchronisatie verbinding. Kies een andere! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Lokale map %1 zit al in een map die wordt gebruikt voor een map-synchronisatie verbinding. Kies een andere! @@ -2362,17 +2362,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Het gedownloade bestand is leeg, hoewel de server meldde dat het %1 zou moeten zijn. - + File %1 cannot be saved because of a local file name clash! Bestand %1 kan niet worden opgeslagen wegens een lokaal bestandsnaam conflict! - + File has changed since discovery Het bestand is gewijzigd sinds het is gevonden - + Error writing metadata to the database Fout bij schrijven van Metadata naar de database @@ -2517,27 +2517,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Het lokale bestand werd verwijderd tijdens sync. - + Local file changed during sync. Lokaal bestand gewijzigd bij sync. - + Unexpected return code from server (%1) Onverwachte reactie van server (%1) - + Missing File ID from server Ontbrekende File ID van de server - + Missing ETag from server Ontbrekende ETag van de server @@ -2545,22 +2545,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing URL opvraag ontbreekt - + The local file was removed during sync. Het lokale bestand werd verwijderd tijdens sync. - + Local file changed during sync. Lokaal bestand gewijzigd bij sync. - + The server did not acknowledge the last chunk. (No e-tag was present) De server heeft het laatste deel niet bevestigd (er was geen e-tag aanwezig) @@ -2729,7 +2729,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Netwerk - + Account Account @@ -2757,8 +2757,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Netwerk - - + + Account Account @@ -3734,15 +3734,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Inloggen... - - + + Log out Afmelden @@ -3772,27 +3772,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Onbekende status - + Settings... Instellingen... - + Details... Details ... - + Help Help - + Quit %1 %1 afsluiten @@ -3868,89 +3868,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pauzeer alle mappen - + Unpause all synchronization Hervat alle synchronisatie - + Unpause synchronization Hervat synchronisatie - + Pause all synchronization Pauzeer alle synchronisatie - + Pause synchronization Pauzeer synchronisatie - + Log out of all accounts Uitloggen van alle accounts... - + Log in to all accounts... Inloggen op alle accounts... - + New account... Nieuw account... - - + + About %1 About %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Crash nu - - - + No items synced recently Recent niets gesynchroniseerd - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Sync %1 van %2 (%3 over) - + Syncing %1 of %2 Synchroniseren %1 van %2 - + Syncing %1 (%2 left) Sync %1 (%2 over) - + Syncing %1 Synchroniseren %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_pl.ts b/translations/client_pl.ts index ee488743ac..7aa7392c75 100644 --- a/translations/client_pl.ts +++ b/translations/client_pl.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Przekroczono czas odpowiedzi - + Unknown error: network reply was deleted Nieznany błąd: odpowiedź sieci została usunięta - + Server replied "%1 %2" to "%3 %4" Serwer odpowiedział "%1 %2" do "%3 %4" @@ -207,7 +207,7 @@ Create virtual files for new files (Experimental) - + Stwórz piki wirtualne dla nowych plików (funkcja eksperymentalna) @@ -364,7 +364,7 @@ The server version %1 is unsupported! Proceed at your own risk. - + Wersja %1 serwera nie jest obsługiwana! Wchodzisz na własne ryzyko. @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. Kontynuowanie oznacza <b> usunięcie tych ustawień </b> - + Continuing will mean <b>ignoring these settings</b>. Kontynuowanie oznacza <b> zignorowanie tych ustawień </b> - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. Część ustawień została skonfigurowana w nowszej wersji klienta i nie jest dostępna w tej wersji <br><br>%1<br><br> Aktualna konfiguracja została zarchiwizowana w <i>%2</i> - + Quit Wyjdź - + Continue Kontynuuj - + Error accessing the configuration file Błąd przy dostępie do pliku konfiguracji - + There was an error while accessing the configuration file at %1. Wystąpił błąd podczas próby dostępu do pliku konfiguracyjnego %1. - + Quit ownCloud Wyłącz ownCloud @@ -907,92 +907,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Stary sync journal '%1' został znaleziony, lecz nie mógł być usunięty. Proszę się upewnić, że żaden program go obecnie nie używa. - + (backup) (kopia zapasowa) - + (backup %1) (kopia zapasowa %1) - + Undefined State. Niezdefiniowany stan - + Waiting to start syncing. Poczekaj na rozpoczęcie synchronizacji. - + Preparing for sync. Przygotowuję do synchronizacji - + Sync is running. Synchronizacja w toku - + Sync was successful, unresolved conflicts. - + Synchronizacja udana, nierozwiązane konflikty. - + Last Sync was successful. Ostatnia synchronizacja zakończona powodzeniem. - + Setup Error. Błąd ustawień. - + User Abort. Użytkownik anulował. - + Sync is paused. Synchronizacja wstrzymana - + %1 (Sync is paused) %1 (Synchronizacja jest zatrzymana) - + No valid folder selected! Nie wybrano poprawnego folderu. - + The selected path is not a folder! Wybrana ścieżka nie jest katalogiem! - + You have no permission to write to the selected folder! Nie masz uprawnień, aby zapisywać w tym katalogu! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Lokalny folder %1 już zawiera folder użyty na potrzeby synchronizacji. Proszę wybrać inny folder lokalny. - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Lokalny folder %1 już zawiera folder użyty na potrzeby synchronizacji. Proszę wybrać inny folder lokalny. @@ -1558,7 +1558,7 @@ Pozycje, dla których usuwanie jest dozwolone zostaną usunięte, jeżeli uprawn <no filter> - + <no filter> @@ -2354,17 +2354,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pobrany plik jest pusty pomimo tego, że według zapowiedzi serwera powinien mieć %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database Błąd podczas zapisu metadanych do bazy @@ -2509,27 +2509,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Pliki lokalny został usunięty podczas synchronizacji. - + Local file changed during sync. Lokalny plik zmienił się podczas synchronizacji. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2537,22 +2537,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing - + The local file was removed during sync. Pliki lokalny został usunięty podczas synchronizacji. - + Local file changed during sync. Lokalny plik zmienił się podczas synchronizacji. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2721,7 +2721,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sieć - + Account Konto @@ -2749,8 +2749,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sieć - - + + Account Konto @@ -3725,15 +3725,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Zaloguj... - - + + Log out Wyloguj @@ -3763,27 +3763,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Nieznany status - + Settings... Ustawienia... - + Details... Szczegóły... - + Help Pomoc - + Quit %1 Wyjdź %1 @@ -3859,89 +3859,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Wstrzymaj wszystkie katalogi - + Unpause all synchronization Wznów wszystkie synchronizacje - + Unpause synchronization Wznów synchronizację - + Pause all synchronization Wstrzymaj wszystkie synchronizacje - + Pause synchronization Wstrzymaj synchronizację - + Log out of all accounts Wyloguj się się ze wszystkich kont - + Log in to all accounts... Zaloguj się do wszystkich kont - + New account... Nowe konto... - - + + About %1 O %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - - - - + No items synced recently Brak ostatnich synchronizacji - + Checking for changes in remote '%1' Sprawdzanie zmian w lokalizacji zdalnej '%1' - + Checking for changes in local '%1' Sprawdzanie zmian w lokalizacji lokalnej '%1' - + Syncing %1 of %2 (%3 left) Synchronizacja %1 z %2 (%3 pozostało) - + Syncing %1 of %2 Synchronizowanie %1 of %2 - + Syncing %1 (%2 left) Synchronizuję %1 (%2 pozostało) - + Syncing %1 Synchronizowanie %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_pt.ts b/translations/client_pt.ts index 65af94b431..a8532457eb 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out A ligação expirou - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" O Servidor respondeu "%1 %2" até "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Sair - + Continue Continuar - + Error accessing the configuration file Erro a aceder ao ficheiro de configuração - + There was an error while accessing the configuration file at %1. Ocorreu um erro enquanto se acedia ao ficheiro de configuração em %1. - + Quit ownCloud Sair do ownCloud @@ -911,92 +911,92 @@ Continuando a sincronização fará com que todos os seus ficheiros sejam substi Foi encontrado um 'journal' de sincronização, mas não foi possível removê-lo. Por favor, certifique-se que nenhuma aplicação o está a utilizar. - + (backup) (cópia de segurança) - + (backup %1) (cópia de segurança %1) - + Undefined State. Estado indefinido. - + Waiting to start syncing. A aguardar para iniciar a sincronização. - + Preparing for sync. A preparar para sincronizar. - + Sync is running. A sincronização está em execução. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. A última sincronização foi bem sucedida. - + Setup Error. Erro de instalação. - + User Abort. Abortado pelo utilizador. - + Sync is paused. A sincronização está pausada. - + %1 (Sync is paused) %1 (A sincronização está pausada) - + No valid folder selected! Não foi selecionada nenhuma pasta válida! - + The selected path is not a folder! O caminho selecionado não é uma pasta! - + You have no permission to write to the selected folder! Não tem permissão para gravar para a pasta selecionada! - + There is already a sync from the server to this local folder. Please pick another local folder! Já existe uma sincronização do servidor para esta pasta local. Por favor escolha outra pasta local! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! A pasta local %1 já contém uma pasta utilizada numa ligação de sincronização de pasta. Por favor, escolha outra! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! A pasta local %1 já contém uma pasta usada numa ligação de sincronização de pasta. Por favor, escolha outra! @@ -1431,7 +1431,7 @@ Note that this selects only what pool upgrades are taken from, and that there ar Sharing error - + Erro de partilha @@ -1646,7 +1646,7 @@ Os itens onde é permitido a eliminação serão eliminados se estes impedirem a Permanently save logs - + Guardar registos permanentemente @@ -2068,7 +2068,7 @@ poderá pedir por privilégios adicionais durante o processo. Copy link to clipboard - + Copiar ligação para a área de transferência @@ -2271,7 +2271,7 @@ Não é aconselhada a sua utilização. Enable experimental feature? - + Ativar funcionalidades experimentais @@ -2358,17 +2358,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss O ficheiro transferido está vazio, apesar do servidor indicar que este deveria ter %1. - + File %1 cannot be saved because of a local file name clash! Ficheiro %1 não pode ser guardado devido à existência de um ficheiro local com o mesmo nome. - + File has changed since discovery O ficheiro alterou-se desde a sua descoberta - + Error writing metadata to the database Erro ao gravar os metadados para a base de dados @@ -2513,27 +2513,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. O arquivo local foi removido durante a sincronização. - + Local file changed during sync. Ficheiro local alterado durante a sincronização. - + Unexpected return code from server (%1) Código de resposta inesperado do servidor (%1) - + Missing File ID from server ID do ficheiro no servidor em falta - + Missing ETag from server ETag do servidor em falta @@ -2541,22 +2541,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing URL poll em falta - + The local file was removed during sync. O arquivo local foi removido durante a sincronização. - + Local file changed during sync. Ficheiro local alterado durante a sincronização. - + The server did not acknowledge the last chunk. (No e-tag was present) O servidor não reconheceu a última parte. (Nenhuma e-tag estava presente) @@ -2725,7 +2725,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Rede - + Account Conta @@ -2753,8 +2753,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Rede - - + + Account Conta @@ -2929,7 +2929,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Copy link to clipboard - + Copiar endereço para a área de transferência @@ -3018,7 +3018,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Copy link to clipboard - + Copiar endereço para a área de transferência @@ -3729,15 +3729,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Iniciar sessão... - - + + Log out Terminar sessão @@ -3767,27 +3767,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Estado desconhecido - + Settings... Configurações... - + Details... Detalhes... - + Help Ajuda - + Quit %1 Sair do %1 @@ -3863,89 +3863,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pausar todas as pastas - + Unpause all synchronization Continuar toda a sincronização - + Unpause synchronization Continuar sincronização - + Pause all synchronization Pausar toda a sincronização - + Pause synchronization Pausar sincronização - + Log out of all accounts Sair de todas as contas - + Log in to all accounts... Entrar em todas as contas... - + New account... Nova conta... - - + + About %1 Sobre %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Crash agora - - - + No items synced recently Sem itens sincronizados recentemente - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Sincronizar %1 de %2 (%3 faltando) - + Syncing %1 of %2 A sincronizar %1 de %2 - + Syncing %1 (%2 left) A sincronizar %1 (%2 em falta) - + Syncing %1 A sincronizar %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index 9ea94f14fd..66f74e6bb6 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Conexão expirou - + Unknown error: network reply was deleted Erro desconhecido: a resposta da rede foi excluída - + Server replied "%1 %2" to "%3 %4" Resposta do servidor "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. Continuar significa <b>excluir essas configurações</b>. - + Continuing will mean <b>ignoring these settings</b>. Continuar significa <b>ignorar essas configurações</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. Algumas configurações foram realizadas em versões mais recentes deste cliente e usam recursos que não estão disponíveis nesta versão.<br><br>%1<br><br>O arquivo de configuração atual já foi feito backup em <i>%2</i>. - + Quit Sair - + Continue Continuar - + Error accessing the configuration file Erro acessando o arquivo de configuração - + There was an error while accessing the configuration file at %1. Ocorreu um erro ao acessar o arquivo de configuração em %1. - + Quit ownCloud Sair do ownCloud @@ -913,92 +913,92 @@ Continuar a sincronização como normal fará com que todos os seus arquivos sej Uma velha revista de sincronização '%1' foi encontrada, mas não pôde ser removida. Por favor, certifique-se de que nenhuma aplicação está a usá-la. - + (backup) (backup) - + (backup %1) (backup %1) - + Undefined State. Estado indefinido. - + Waiting to start syncing. À espera do início da sincronização. - + Preparing for sync. Preparando para sincronização. - + Sync is running. A sincronização está ocorrendo. - + Sync was successful, unresolved conflicts. A sincronização foi bem-sucedida, conflitos não resolvidos. - + Last Sync was successful. A última sincronização foi feita com sucesso. - + Setup Error. Erro de Configuração. - + User Abort. Usuário Abortou. - + Sync is paused. Sincronização pausada. - + %1 (Sync is paused) %1 (Pausa na Sincronização) - + No valid folder selected! Nenhuma pasta válida selecionada! - + The selected path is not a folder! O caminho selecionado não é uma pasta! - + You have no permission to write to the selected folder! Voce não tem permissão para escrita na pasta selecionada! - + There is already a sync from the server to this local folder. Please pick another local folder! Já existe uma sincronização do servidor para esta pasta local. Por favor, escolha uma outra pasta local! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! A pasta local %1 já contém uma pasta utilizada numa ligação de sincronização de pasta. Por favor, escolha outra! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! A pasta local %1 já está contida em uma pasta usada em uma conexão de sincronização de pastas. Por favor, escolha outra! @@ -1373,12 +1373,12 @@ Continuar a sincronização como normal fará com que todos os seus arquivos sej &Update Channel - + &Atualizar o Canal • - + @@ -2363,17 +2363,17 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr O arquivo baixado está vazio apesar do servidor anunciou que deveria ter %1. - + File %1 cannot be saved because of a local file name clash! O arquivo %1 não pode ser salvo devido a um confronto com um nome de arquivo local! - + File has changed since discovery Arquivo foi alterado desde a descoberta - + Error writing metadata to the database Ocorreu um erro ao escrever metadados ao banco de dados @@ -2518,27 +2518,27 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr OCC::PropagateUploadFileNG - + The local file was removed during sync. O arquivo local foi removido durante a sincronização. - + Local file changed during sync. Arquivo local modificado durante a sincronização. - + Unexpected return code from server (%1) Código de retorno inesperado do servidor (%1) - + Missing File ID from server Falta ID do arquivo do servidor - + Missing ETag from server Falta ETag do servidor @@ -2546,22 +2546,22 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr OCC::PropagateUploadFileV1 - + Poll URL missing Faltando conjunto de URL - + The local file was removed during sync. O arquivo local foi removido durante a sincronização. - + Local file changed during sync. Arquivo local modificado durante a sincronização. - + The server did not acknowledge the last chunk. (No e-tag was present) O servidor não reconheceu o último pedaço. (Nenhuma e-tag estava presente) @@ -2730,7 +2730,7 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr Rede - + Account Conta @@ -2758,8 +2758,8 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr Rede - - + + Account Conta @@ -3735,15 +3735,15 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr - - + + Log in... Entrar... - - + + Log out Sair @@ -3773,27 +3773,27 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr O servidor na conta %1 executa uma versão não suportada %2. A utilização deste cliente com versões de servidor não suportadas não foi testada e é potencialmente perigosa. Prossiga por sua conta e risco. - + Unknown status Status desconhecido - + Settings... Configurações... - + Details... Detalhes... - + Help Ajuda - + Quit %1 Sair %1 @@ -3869,89 +3869,83 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr Pausar todas as pastas - + Unpause all synchronization Retomar toda a sincronização - + Unpause synchronization Retomar sincronização - + Pause all synchronization Dar uma pausa em toda a sincronização - + Pause synchronization Dar uma pausa na sincronização - + Log out of all accounts Desconectar todas as contas - + Log in to all accounts... Conectar todas as contas... - + New account... Nova conta... - - + + About %1 Sobre %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Quebrar agora - - - + No items synced recently Não há itens sincronizados recentemente - + Checking for changes in remote '%1' Verificando alterações remotamente '%1' - + Checking for changes in local '%1' Verificação de alterações local '%1' - + Syncing %1 of %2 (%3 left) Sincronizar %1 de %2 (%3 faltando) - + Syncing %1 of %2 Sincronizando %1 de %2 - + Syncing %1 (%2 left) Sincronizando %1 (%2 faltando) - + Syncing %1 Sincronizando %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_ru.ts b/translations/client_ru.ts index 2a61052bf2..1bc4b12a46 100644 --- a/translations/client_ru.ts +++ b/translations/client_ru.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Время ожидания соединения превышено - + Unknown error: network reply was deleted Неизвестная ошибка: сетевой ответ был удален - + Server replied "%1 %2" to "%3 %4" Сервер ответил от "%1 %2" до "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. Продолжение будет означать <b>удаление этих настроек</b>. - + Continuing will mean <b>ignoring these settings</b>. Продолжение будет означать <b>игнорирование этих настроек</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. Некоторые настройки были сделаны в клиенте более новой версии, чем данный, и используют возможности, которые не доступны в этой версии.<br><br>%1<br><br>Резервная копия текущей конфигурации уже сохранена в <i>%2</i>. - + Quit Выход - + Continue Продолжить - + Error accessing the configuration file Ошибка при доступе к файлу конфигурации - + There was an error while accessing the configuration file at %1. При обращении к файлу конфигурации %1 произошла ошибка. - + Quit ownCloud Выйти из ownCloud @@ -913,92 +913,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Найден старый журнал синхронизации '%1', и он не может быть удалён. Убедитесь что он не открыт в другом приложении. - + (backup) (резервная копия) - + (backup %1) (резервная копия %1) - + Undefined State. Неопределенное состояние. - + Waiting to start syncing. Ожидание запуска синхронизации. - + Preparing for sync. Подготовка к синхронизации. - + Sync is running. Идет синхронизация. - + Sync was successful, unresolved conflicts. Синхронизация успешна, есть неразрешённые конфликты. - + Last Sync was successful. Последняя синхронизация прошла успешно. - + Setup Error. Ошибка установки. - + User Abort. Отмена пользователем. - + Sync is paused. Синхронизация приостановлена. - + %1 (Sync is paused) %! (синхронизация приостановлена) - + No valid folder selected! Не выбран валидный каталог! - + The selected path is not a folder! Выбранный путь не является каталогом! - + You have no permission to write to the selected folder! У вас недостаточно прав для записи в выбранный каталог! - + There is already a sync from the server to this local folder. Please pick another local folder! Уже есть синхронизация с сервера в этот локальный каталог. Пожалуйста, выберите другой локальный каталог! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Локальная директория %1 уже содержит папку, которая используется для синхронизации. Пожалуйста выберите другую! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Локальная директория %1 уже содержит директорию, которая используется для синхронизации. Пожалуйста выберите другую! @@ -1373,12 +1373,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an &Update Channel - + Канал обновлений: • - + @@ -2367,17 +2367,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Скачанный файл пуст, хотя сервер заявил, что он должен быть %1. - + File %1 cannot be saved because of a local file name clash! Файл %1 не может быть сохранён из-за локального конфликта имен! - + File has changed since discovery После обнаружения файл был изменен - + Error writing metadata to the database Ошибка записи метаданных в базу данных @@ -2522,27 +2522,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Локальный файл был удалён в процессе синхронизации. - + Local file changed during sync. Локальный файл изменился в процессе синхронизации. - + Unexpected return code from server (%1) Неожиданный код завершения от сервера (%1) - + Missing File ID from server Отсутствует код файла от сервера - + Missing ETag from server Отсутствует ETag с сервера @@ -2550,22 +2550,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Не хватает сформированного URL - + The local file was removed during sync. Локальный файл был удалён в процессе синхронизации. - + Local file changed during sync. Локальный файл изменился в процессе синхронизации. - + The server did not acknowledge the last chunk. (No e-tag was present) Сервер не смог подтвердить последнюю часть данных.(Отсутствовали теги e-tag) @@ -2734,7 +2734,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Сеть - + Account Уч.запись @@ -2762,8 +2762,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Сеть - - + + Account Уч.запись @@ -3738,15 +3738,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Вход... - - + + Log out Выйти @@ -3776,27 +3776,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss Учётная запись сервера %1 работает с неподдерживаемой версией %2. Использование клиента с неподдерживаемой версией сервера не тестировалось и потенциально опасно. Продолжайте на свой страх и риск. - + Unknown status Неизвестный статус - + Settings... Настройки... - + Details... Детали... - + Help Помощь - + Quit %1 Закрыть %1 @@ -3872,89 +3872,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Поставить на паузу все папки - + Unpause all synchronization Возобновить все синхронизации - + Unpause synchronization Возобновить синхронизацию - + Pause all synchronization Приостановить все синхронизации - + Pause synchronization Приостановить синхронизацию - + Log out of all accounts Выйти из всех учетных записей - + Log in to all accounts... Войти во все учетные записи... - + New account... Новая учётная запись… - - + + About %1 Про %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Критическая ошибка! - - - + No items synced recently Недавно ничего не синхронизировалось - + Checking for changes in remote '%1' Проверяю измененеия в удалённом '%1' - + Checking for changes in local '%1' Проверяю изменения в локальном '%1' - + Syncing %1 of %2 (%3 left) Синхронизация %1 из %2 (осталось %3) - + Syncing %1 of %2 Синхронизирую %1 из %2 - + Syncing %1 (%2 left) Синхронизация %1 (осталось %2) - + Syncing %1 Синхронизация %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 2c5e82e535..654ade96e1 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Pripojenie expirovalo - + Unknown error: network reply was deleted Neznáma chyba: odpoveď siete bola odstránená - + Server replied "%1 %2" to "%3 %4" Server odpovedal "%1 %2" na "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Koniec - + Continue Pokračovať - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Starý synchronizačný žurnál '%1' nájdený, avšak neodstrániteľný. Prosím uistite sa, že žiadna aplikácia ho práve nevyužíva. - + (backup) (záloha) - + (backup %1) (záloha %1) - + Undefined State. Nedefinovaný stav. - + Waiting to start syncing. Čaká sa na začiatok synchronizácie - + Preparing for sync. Príprava na synchronizáciu. - + Sync is running. Synchronizácia prebieha. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Posledná synchronizácia sa úspešne skončila. - + Setup Error. Chyba pri inštalácii. - + User Abort. Zrušené používateľom. - + Sync is paused. Synchronizácia je pozastavená. - + %1 (Sync is paused) %1 (Synchronizácia je pozastavená) - + No valid folder selected! Nebol zvolený platný priečinok. - + The selected path is not a folder! Zvolená cesta nie je priečinok. - + You have no permission to write to the selected folder! Nemáte oprávnenia pre zápis do daného priečinka! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2347,17 +2347,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! Súbor %1 nie je možné uložiť, pretože jeho názov koliduje s názvom lokálneho súboru! - + File has changed since discovery Súbor sa medzitým zmenil - + Error writing metadata to the database Chyba pri zápise metadát do databázy @@ -2502,27 +2502,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Lokálny súbor bol odstránený počas synchronizácie. - + Local file changed during sync. Lokálny súbor bol zmenený počas synchronizácie. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2530,22 +2530,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Chýba URL adresa - + The local file was removed during sync. Lokálny súbor bol odstránený počas synchronizácie. - + Local file changed during sync. Lokálny súbor bol zmenený počas synchronizácie. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2714,7 +2714,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sieť - + Account Účet @@ -2742,8 +2742,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sieť - - + + Account Účet @@ -3718,15 +3718,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Prihlásiť sa... - - + + Log out Odhlásiť @@ -3756,27 +3756,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Neznámy stav - + Settings... Nastavenia... - + Details... Podrobnosti... - + Help Pomoc - + Quit %1 Ukončiť %1 @@ -3852,89 +3852,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pozastaviť všetky priečinky - + Unpause all synchronization Zrušiť pozastavenie všetkej synchronizácie - + Unpause synchronization Zrušiť pozastavenie synchronizácie - + Pause all synchronization Pozastaviť všetku synchronizáciu - + Pause synchronization Pozastaviť synchronizáciu - + Log out of all accounts Odhlásiť sa zo všetkých účtov - + Log in to all accounts... Prihlásiť sa do všetkých účtov... - + New account... - - + + About %1 O %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Zlyhanie - - - + No items synced recently Žiadne nedávno synchronizované položky - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Synchronizuje sa %1 z %2 (zostáva %3) - + Syncing %1 of %2 - + Syncing %1 (%2 left) Synchronizuje sa %1 (zostáva %2) - + Syncing %1 Synchronizuje sa %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_sl.ts b/translations/client_sl.ts index af57a749f3..f757199d96 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Povezava je časovno potekla - + Unknown error: network reply was deleted Neznana napaka: odziv strežnika je bil izbrisan - + Server replied "%1 %2" to "%3 %4" Strežnik je odgovoril "%1 %2" v "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Končaj - + Continue Nadaljuj - + Error accessing the configuration file Napaka dostopa do nastavitvene datoteke - + There was an error while accessing the configuration file at %1. Med dostopom do nastavitvene datoteke na %1 je prišlo do napake. - + Quit ownCloud Končaj ownCloud @@ -911,92 +911,92 @@ Z nadaljevanjem usklajevanja bodo vse trenutne datoteke prepisane s starejšimi Obstaja starejši dnevnik usklajevanja '%1', vendar ga ni mogoče odstraniti. Preverite, ali je datoteka v uporabi. - + (backup) (varnostna kopija) - + (backup %1) (varnostna kopija %1) - + Undefined State. Nedoločeno stanje. - + Waiting to start syncing. Čakanje začetek usklajevanja - + Preparing for sync. Poteka priprava za usklajevanje. - + Sync is running. Usklajevanje je v teku. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Zadnje usklajevanje je bilo uspešno končano. - + Setup Error. Napaka nastavitve. - + User Abort. Uporabniška prekinitev. - + Sync is paused. Usklajevanje je začasno v premoru. - + %1 (Sync is paused) %1 (usklajevanje je v premoru) - + No valid folder selected! Ni izbrane veljavne mape! - + The selected path is not a folder! Izbrana pot ni mapa! - + You have no permission to write to the selected folder! Ni ustreznih dovoljenj za pisanje v izbrano mapo! - + There is already a sync from the server to this local folder. Please pick another local folder! Za to krajevno pot je že ustvarjeno mesto za usklajevanje. Izbrati je treba drugo. - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Krajevna mapa %1 že vključuje mapo, ki je določena za usklajevanje. Izbrati je treba drugo. - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Krajevna mapa %1 je že v določena za usklajevanje. Izbrati je treba drugo. @@ -2358,17 +2358,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Prejeta datoteka je prazna, čeprav je na strežniku velikosti %1. - + File %1 cannot be saved because of a local file name clash! Datoteke %1 ni mogoče shraniti zaradi neskladja z imenom obstoječe datoteke! - + File has changed since discovery Datoteka je bila spremenjena po usklajevanju seznama datotek - + Error writing metadata to the database Napaka zapisovanja metapodatkov v podatkovno zbirko @@ -2513,27 +2513,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Krajevna datoteka je bila med usklajevanjem odstranjena. - + Local file changed during sync. Krajevna datoteka je bila med usklajevanjem spremenjena. - + Unexpected return code from server (%1) Napaka: nepričakovan odziv s strežnika (%1). - + Missing File ID from server Na strežniku manjka ID datoteke - + Missing ETag from server Na strežniku manjka ETag datoteke @@ -2541,22 +2541,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Preveri manjkajoči naslov URL - + The local file was removed during sync. Krajevna datoteka je bila med usklajevanjem odstranjena. - + Local file changed during sync. Krajevna datoteka je bila med usklajevanjem spremenjena. - + The server did not acknowledge the last chunk. (No e-tag was present) Strežnik ne sprejme zadnjega paketa (ni navedene e-oznake) @@ -2725,7 +2725,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Omrežje - + Account Račun @@ -2753,8 +2753,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Omrežje - - + + Account Račun @@ -3729,15 +3729,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Prijava ... - - + + Log out Odjava @@ -3767,27 +3767,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Neznano stanje - + Settings... Nastavitve ... - + Details... Podrobnosti ... - + Help Pomoč - + Quit %1 Končaj %1 @@ -3863,89 +3863,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Ustavi usklajevanje vseh map - + Unpause all synchronization Nadaljuj usklajevanje vsega - + Unpause synchronization Nadaljuj usklajevanje - + Pause all synchronization Ustavi vse usklajevanje - + Pause synchronization Ustavi usklajevanje - + Log out of all accounts Odjavi vse račune - + Log in to all accounts... Prijavi z vsemi računi ... - + New account... Nov račun ... - - + + About %1 O %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Sesuj zdaj - - - + No items synced recently Ni nedavno usklajenih predmetov - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Poteka usklajevanje %1 od %2 (preostaja %3) - + Syncing %1 of %2 Poteka usklajevanje %1 od %2 - + Syncing %1 (%2 left) Usklajevanje %1 (%2 do konca) - + Syncing %1 Usklajevanje %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_sr.ts b/translations/client_sr.ts index 7a794cccc0..6457dda6c2 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Време повезивања истекло - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Напусти - + Continue Настави - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Пронађен је стари журнал синхронизације „%1“ али се не може уклонити. Проверите да га нека апликација тренутно не користи. - + (backup) (резерва) - + (backup %1) (резерва %1) - + Undefined State. Неодређено стање. - + Waiting to start syncing. - + Preparing for sync. Припремам синхронизацију. - + Sync is running. Синхронизација у току. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Последња синхронизација је била успешна. - + Setup Error. Грешка подешавања. - + User Abort. Корисник прекинуо. - + Sync is paused. Синхронизација је паузирана. - + %1 (Sync is paused) %1 (синхронизација паузирана) - + No valid folder selected! - + The selected path is not a folder! - + You have no permission to write to the selected folder! Немате дозволе за упис у изабрану фасциклу! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -2347,17 +2347,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! Фајл %1 се не може сачувати јер се судара са називом локалног фајла! - + File has changed since discovery Фајл је измењен у међувремену - + Error writing metadata to the database @@ -2502,27 +2502,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Локални фајл је уклоњен током синхронизације. - + Local file changed during sync. Локални фајл измењен током синхронизације. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2530,22 +2530,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Адреса упита недостаје - + The local file was removed during sync. Локални фајл је уклоњен током синхронизације. - + Local file changed during sync. Локални фајл измењен током синхронизације. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2714,7 +2714,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Мрежа - + Account Налог @@ -2742,8 +2742,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Мрежа - - + + Account Налог @@ -3718,15 +3718,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Пријави се... - - + + Log out Одјава @@ -3756,27 +3756,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Непознато стање - + Settings... Поставке... - + Details... Детаљи... - + Help Помоћ - + Quit %1 Напусти %1 @@ -3852,89 +3852,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts Одјави се са свих налога - + Log in to all accounts... Пријави се на све налоге... - + New account... - - + + About %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Падни сада - - - + No items synced recently Ништа није недавно синхронизовано - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Синхронизујем %1 од %2 (преостало %3) - + Syncing %1 of %2 - + Syncing %1 (%2 left) Синхронизујем %1 (преостало %2) - + Syncing %1 Синхронизујем %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 033c3ae716..531e284197 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Tidsgräns för anslutningen överskreds - + Unknown error: network reply was deleted Okänt fel: nätverkssvaret raderades - + Server replied "%1 %2" to "%3 %4" Servern svarade "%1 %2" på "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Avsluta - + Continue Fortsätt - + Error accessing the configuration file Kunde inte komma åt konfigurationsfilen - + There was an error while accessing the configuration file at %1. Ett fel uppstod vid läsning av konfigurationsfil vid %1. - + Quit ownCloud Avsluta ownCloud @@ -906,92 +906,92 @@ Om du fortsätter synkningen kommer alla dina filer återställas med en äldre En gammal synkroniseringsjournal '%1' hittades, men kunde inte raderas. Vänligen se till att inga program för tillfället använder den. - + (backup) (säkerhetskopia) - + (backup %1) (säkerhetkopia %1) - + Undefined State. Okänt tillstånd. - + Waiting to start syncing. Väntar på att starta synkronisering. - + Preparing for sync. Förbereder synkronisering - + Sync is running. Synkronisering pågår. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Senaste synkronisering lyckades. - + Setup Error. Inställningsfel. - + User Abort. Användare Avbryt - + Sync is paused. Synkronisering är pausad. - + %1 (Sync is paused) %1 (Synk är stoppad) - + No valid folder selected! Ingen giltig mapp markerad! - + The selected path is not a folder! Den markerade sökvägen är inte en mapp! - + You have no permission to write to the selected folder! Du har inga skrivrättigheter till den valda mappen! - + There is already a sync from the server to this local folder. Please pick another local folder! Det pågår redan en synkronisering från servern till denna lokala mappen. Vänligen välj en annan lokal mapp. - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! Den lokala mappen %1 innehåller redan en mapp som synkas. Var god välj en annan! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! Den lokala mappen %1 finns redan inuti en mapp som synkas. Var god välj en annan! @@ -2353,17 +2353,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Den nedladdade filen är tom men servern sa att den skulle vara %1. - + File %1 cannot be saved because of a local file name clash! Fil %1 kan inte sparas eftersom namnet krockar med en lokal fil! - + File has changed since discovery Filen har ändrats sedan upptäckten - + Error writing metadata to the database Fel vid skrivning av metadata till databasen @@ -2508,27 +2508,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Den lokala filen togs bort under synkronisering. - + Local file changed during sync. Lokal fil ändrades under synk. - + Unexpected return code from server (%1) Oväntad svarskod från servern (%1) - + Missing File ID from server Saknar Fil-ID från servern - + Missing ETag from server Saknar ETag från servern @@ -2536,22 +2536,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Hämtnings-URL saknas - + The local file was removed during sync. Den lokala filen togs bort under synkronisering. - + Local file changed during sync. Lokal fil ändrades under synk. - + The server did not acknowledge the last chunk. (No e-tag was present) Servern bekräftade inte senaste leveransen. (Ingen e-tagg fanns) @@ -2720,7 +2720,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Nätverk - + Account Konto @@ -2748,8 +2748,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Nätverk - - + + Account Konto @@ -3724,15 +3724,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Logga in... - - + + Log out Logga ut @@ -3762,27 +3762,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Okänd status - + Settings... Inställningar... - + Details... Detaljer... - + Help Hjälp - + Quit %1 Avsluta %1 @@ -3858,89 +3858,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Pausa alla mappar - + Unpause all synchronization Sluta pausa all synkroinisering - + Unpause synchronization Sluta pausa synkronisering - + Pause all synchronization Pausa all synkronisering - + Pause synchronization Pausa synkronisering - + Log out of all accounts Logga ut från alla konton - + Log in to all accounts... Logga in på alla konton... - + New account... Nytt konto... - - + + About %1 Om %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Krascha nu - - - + No items synced recently Inga filer har synkroniseras nyligen - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Synkroniserar %1 av %2 (%3 kvar) - + Syncing %1 of %2 Synkroniserar %1 av %2 - + Syncing %1 (%2 left) Synkroniserar %1 (%2 kvar) - + Syncing %1 Synkroniserar %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_th.ts b/translations/client_th.ts index 798ed2133e..656985c905 100644 --- a/translations/client_th.ts +++ b/translations/client_th.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out หมดเวลาการเชื่อมต่อ - + Unknown error: network reply was deleted ข้อผิดพลาดที่ไม่รู้จัก: การตอบกลับของเครือข่ายถูกลบแล้ว - + Server replied "%1 %2" to "%3 %4" เซิร์ฟเวอร์ตอบกลับ "%1 %2" ถึง "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. กำลังทำต่อหมายถึง <b>กำลังลบการตั้งค่าเหล่านี้</b> - + Continuing will mean <b>ignoring these settings</b>. กำลังทำต่อหมายถึง <b>กำลังละเว้นการตั้งค่าเหล่านี้</b> - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. การตั้งค่าบางอย่างได้ถูกกำหนดค่าในเวอร์ชันที่ใหม่กว่าของไคลเอ็นต์นี้และเปิดใช้คุณลักษณะที่ไม่สามารถใช้ได้ในเวอร์ชันนี้ <br><br>%1<br><br>ไฟล์การตั้งค่าปัจจุบันได้ถูกสำรองข้อมูลไปที่ <i>%2</i> แล้ว - + Quit ออก - + Continue ดำเนินการต่อ - + Error accessing the configuration file เกิดข้อผิดพลาดขณะกำลังเข้าถึงไฟล์กำหนดค่า - + There was an error while accessing the configuration file at %1. เกิดข้อผิดพลาดขณะกำลังเข้าถึงไฟล์กำหนดค่า %1 - + Quit ownCloud ออกจาก ownCloud @@ -914,92 +914,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an บนบันทึกการประสานข้อมูลเก่า '%1' แต่ไม่สามารถลบออกได้ กรุณาตรวจสอบให้แน่ใจว่าไม่มีแอพฯ หรือการทำงานใดๆที่ใช้มันอยู่ - + (backup) (สำรองข้อมูล) - + (backup %1) (สำรองข้อมูล %1) - + Undefined State. สถานะที่ยังไม่ได้ถูกกำหนด - + Waiting to start syncing. กำลังรอเริ่มต้นการประสานข้อมูล - + Preparing for sync. กำลังเตรียมการประสานข้อมูล - + Sync is running. การประสานข้อมูลกำลังทำงาน - + Sync was successful, unresolved conflicts. ซิงค์สำเร็จแต่ยังมีข้อขัดแย้งที่ยังไม่ได้รับการแก้ไข - + Last Sync was successful. ประสานข้อมูลครั้งล่าสุดเสร็จเรียบร้อยแล้ว - + Setup Error. เกิดข้อผิดพลาดในการติดตั้ง - + User Abort. ยกเลิกผู้ใช้ - + Sync is paused. การประสานข้อมูลถูกหยุดไว้ชั่วคราว - + %1 (Sync is paused) %1 (การประสานข้อมูลถูกหยุดชั่วคราว) - + No valid folder selected! เลือกโฟลเดอร์ไม่ถูกต้อง! - + The selected path is not a folder! เส้นทางที่เลือกไม่ใช่โฟลเดอร์! - + You have no permission to write to the selected folder! คุณมีสิทธิ์ที่จะเขียนโฟลเดอร์ที่เลือกนี้! - + There is already a sync from the server to this local folder. Please pick another local folder! โฟลเดอร์ต้นทางนี้ได้ถูกประสานข้อมูลกับเซิร์ฟเวอร์แล้ว โปรดเลือกโฟลเดอร์ต้นทางอื่นๆ! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! เนื้อหาโฟลเดอร์ต้นทาง %1 ได้ถูกใช้ไปแล้วในโฟลเดอร์ที่ประสานข้อมูล กรุณาเลือกอีกอันหนึ่ง! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! เนื้อหาของโฟลเดอร์ต้นทาง %1 ไดถูกใช้ไปแล้วในโฟลเดอร์ที่ประสานข้อมูล กรุณาเลือกอีกอันหนึ่ง! @@ -1374,12 +1374,12 @@ Continuing the sync as normal will cause all your files to be overwritten by an &Update Channel - + และอัพเดทแชนแนล • - + @@ -2368,17 +2368,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss ไฟล์ที่ดาวน์โหลดว่างเปล่าแม้ว่าเซิร์ฟเวอร์ประกาศว่าควรจะเป็น %1 - + File %1 cannot be saved because of a local file name clash! ไฟล์ %1 ไม่สามารถบันทึกได้เพราะชื่อไฟล์ต้นทางเหมือนกัน! - + File has changed since discovery ไฟล์มีการเปลี่ยนแปลงตั้งแต่ถูกพบ - + Error writing metadata to the database ข้อผิดพลาดในการเขียนข้อมูลเมตาไปยังฐานข้อมูล @@ -2523,27 +2523,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. ไฟล์ต้นทางถูกลบออกในระหว่างการประสานข้อมูล - + Local file changed during sync. ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะกำลังประสานข้อมูล - + Unexpected return code from server (%1) มีรหัสข้อผิดพลาดตอบกลับมาจากเซิร์ฟเวอร์ (%1) - + Missing File ID from server ไฟล์ไอดีได้หายไปจากเซิร์ฟเวอร์ - + Missing ETag from server ETag ได้หายไปจากเซิร์ฟเวอร์ @@ -2551,22 +2551,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing URL แบบสำรวจความคิดเห็นหายไป - + The local file was removed during sync. ไฟล์ต้นทางถูกลบออกในระหว่างการประสานข้อมูล - + Local file changed during sync. ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะกำลังประสานข้อมูล - + The server did not acknowledge the last chunk. (No e-tag was present) เซิร์ฟเวอร์ไม่ยอมรับส่วนสุดท้าย (ไม่มี e-tag ในปัจจุบัน) @@ -2735,7 +2735,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss เครือข่าย - + Account บัญชี @@ -2763,8 +2763,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss เครือข่าย - - + + Account บัญชี @@ -3738,15 +3738,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... เข้าสู่ระบบ... - - + + Log out ออกจากระบบ @@ -3776,27 +3776,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss เซิร์ฟเวอร์ในบัญชี %1 ไม่รองรับการทำงานกับ %2 ซึ่งอาจเป็นอันตราย ดำเนินการตามความเสี่ยงของคุณเอง - + Unknown status สถานะที่ไม่รู้จัก - + Settings... ตั้งค่า... - + Details... รายละเอียด... - + Help ช่วยเหลือ - + Quit %1 ออก %1 @@ -3872,89 +3872,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss หยุดโฟลเดอร์ทั้งหมดชั่วคราว - + Unpause all synchronization ประสานข้อมูลทั้งหมดต่อ - + Unpause synchronization ประสานข้อมูลต่อ - + Pause all synchronization หยุดการประสานข้อมูลทั้งหมดชั่วคราว - + Pause synchronization หยุดการประสานข้อมูลชั่วคราว - + Log out of all accounts ออกจากระบบของบัญชีทั้งหมด - + Log in to all accounts... เข้าสู่ระบบของบัญชีทั้งหมด... - + New account... สร้างบัญชีใหม่... - - + + About %1 เกี่ยวกับ %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - ความผิดพลาดในขณะนี้ - - - + No items synced recently ไม่มีรายการที่ถูกประสานข้อมูลเมื่อเร็วๆ นี้ - + Checking for changes in remote '%1' กำลังตรวจหาการเปลี่ยนแปลงในรีโมต '%1' - + Checking for changes in local '%1' กำลังตรวจหาการเปลี่ยนแปลงที่ต้นทาง '%1' - + Syncing %1 of %2 (%3 left) กำลังประสานข้อมูล %1 จาก %2 (เหลือ %3) - + Syncing %1 of %2 กำลังประสานข้อมูล %1 จากทั้งหมด %2 - + Syncing %1 (%2 left) กำลังประสานข้อมูล %1 (เหลือ %2) - + Syncing %1 กำลังประสานข้อมูล %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_tr.ts b/translations/client_tr.ts index bbdd251590..af99bd61dd 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Bağlantı zaman aşımına uğradı - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Çıkış - + Continue Devam et - + Error accessing the configuration file - + There was an error while accessing the configuration file at %1. - + Quit ownCloud ownCloud'dan çık @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Eski eşitleme günlüğü '%1' bulundu ancak kaldırılamadı. Başka bir uygulama tarafından kullanılmadığından emin olun. - + (backup) (yedek) - + (backup %1) (yedek %1) - + Undefined State. Tanımlanmamış Durum. - + Waiting to start syncing. Eşitlemenin başlanması bekleniyor. - + Preparing for sync. Eşitleme için hazırlanıyor. - + Sync is running. Eşitleme çalışıyor. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Son Eşitleme başarılı oldu. - + Setup Error. Kurulum Hatası. - + User Abort. Kullanıcı İptal Etti. - + Sync is paused. Eşitleme duraklatıldı. - + %1 (Sync is paused) %1 (Eşitleme duraklatıldı) - + No valid folder selected! Geçerli klasör seçilmedi! - + The selected path is not a folder! Seçilen yol bir klasör değil! - + You have no permission to write to the selected folder! Seçilen klasöre yazma izniniz yok! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! %1 yerel klasörü zaten bir eşitleme klasörü içermektedir. Lütfen farklı bir seçim yapın! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! %1 yerel klasörü zaten bir eşitleme klasörü içindedir. Lütfen farklı bir seçim yapın! @@ -2348,17 +2348,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss Sunucu boyutunu %1 olarak duyurmasına rağmen indirilen dosya boş. - + File %1 cannot be saved because of a local file name clash! Yerel bir dosya ismi ile çakıştığından, %1 dosyası kaydedilemedi! - + File has changed since discovery Dosya, bulunduğundan itibaren değişmiş - + Error writing metadata to the database Veritabanına üstveri yazma hatası @@ -2503,27 +2503,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. Eşitleme sırasında yerel dosya kaldırıldı. - + Local file changed during sync. Eşitleme sırasında yerel dosya değişti. - + Unexpected return code from server (%1) (%1) Sunucusundan bilinmeyen dönüş kodu - + Missing File ID from server - + Missing ETag from server @@ -2531,22 +2531,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Getirme URL'si eksik - + The local file was removed during sync. Eşitleme sırasında yerel dosya kaldırıldı. - + Local file changed during sync. Eşitleme sırasında yerel dosya değişti. - + The server did not acknowledge the last chunk. (No e-tag was present) Sunucu son yığını onaylamadı. (Mevcut e-etiket bulunamadı) @@ -2715,7 +2715,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Account Hesap @@ -2743,8 +2743,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Account Hesap @@ -3719,15 +3719,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Giriş yap... - - + + Log out Çıkış yap @@ -3757,27 +3757,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Bilinmeyen durum - + Settings... Ayarlar... - + Details... Ayrıntılar... - + Help Yardım - + Quit %1 %1'tan çık @@ -3853,89 +3853,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss Tüm klasörleri durdur - + Unpause all synchronization Tüm eşitlemeleri devam ettir - + Unpause synchronization Eşitlemeyi devam ettir - + Pause all synchronization Tüm eşitlemeleri durdur - + Pause synchronization Eşitlemeyi durdur - + Log out of all accounts Tüm hesaplardan çıkış yap - + Log in to all accounts... Tüm hesaplara giriş yap... - + New account... Yeni hesap... - - + + About %1 %1 hakkında - - Crash now - Only shows in debug mode to allow testing the crash handler - Şimdi çök - - - + No items synced recently Yakın zamanda eşitlenen öge yok - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Eşitlenen %1/%2 (%3 kaldı) - + Syncing %1 of %2 %2 nin %1 i eşitleniyor - + Syncing %1 (%2 left) Eşitlenen %1 (%2 kaldı) - + Syncing %1 %1 eşitleniyor - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_uk.ts b/translations/client_uk.ts index 6cb3b84889..6c7c02d227 100644 --- a/translations/client_uk.ts +++ b/translations/client_uk.ts @@ -4,18 +4,18 @@ Could not make directories in trash - + Неможливо створити теку в смітнику Could not move '%1' to '%2' - + Не вдалося перемістити '%1' в '%2' Moving to the trash is not implemented on this platform - + Переміщення в смітник неможливе на цій платформі @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out Час очікування з'єднання вичерпано - + Unknown error: network reply was deleted Незнайома помилка: відповідь мережі була видалена - + Server replied "%1 %2" to "%3 %4" Сервер відповів "%1 %2" на "%3 %4" @@ -202,12 +202,12 @@ Remove folder sync connection - + Видалити синхронізацію теки Create virtual files for new files (Experimental) - + Створити віртуальні файли для нових файлів (Експриментально) @@ -217,17 +217,17 @@ <p>Could not create local folder <i>%1</i>. - + <p>Не вдалося створити локальну теку <i>%1</i>. Confirm Folder Sync Connection Removal - + Підтвердьте видалення синхронізації теки Remove Folder Sync Connection - + Видалити синхронізацію теки @@ -262,12 +262,12 @@ Server %1 is currently in maintenance mode. - + Сервер %1 наразі в режимі технічного обслуговування Signed out from %1. - + Вийшов із %1. @@ -317,7 +317,7 @@ Remove connection - + Видалити з'єднання @@ -397,7 +397,7 @@ Maintenance mode - + Режим технічного обслуговування @@ -412,7 +412,7 @@ Asking Credentials - + Запит облікових даних @@ -425,12 +425,12 @@ %1 on %2 - + %1 на %2 %1 on %2 (disconnected) - + %1 на %2 (від'єднаний) @@ -465,7 +465,7 @@ The sync activity list has been copied to the clipboard. - + Список подій синхронізації скопійовано до буферу обміну. @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit Вийти - + Continue Продовжити - + Error accessing the configuration file - + Помилка доступу до файлу конфігурації - + There was an error while accessing the configuration file at %1. - + Quit ownCloud Вийти з ownCloud @@ -647,7 +647,7 @@ Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -709,7 +709,7 @@ %1 should be a folder but is not. - + %1 повинна бути текою, але нею не є. @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an Знайдено старий журнал синхронізації '%1', його неможливо видалити. Будь ласка, впевніться що він не відкритий в іншій програмі. - + (backup) (Резервна копія) - + (backup %1) (Резервна копія %1) - + Undefined State. Невизначений стан. - + Waiting to start syncing. Очікування початку синхронізації. - + Preparing for sync. Підготовка до синхронізації - + Sync is running. Синхронізація запущена. - + Sync was successful, unresolved conflicts. - + Last Sync was successful. Остання синхронізація була успішною. - + Setup Error. Помилка встановлення. - + User Abort. Скасовано користувачем. - + Sync is paused. Синхронізація призупинена. - + %1 (Sync is paused) %1 (Синхронізація призупинена) - + No valid folder selected! - + The selected path is not a folder! - + You have no permission to write to the selected folder! У вас немає прав на запис в цю теку! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! @@ -1085,7 +1085,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Syncing %1 Example text: "Syncing 'foo.txt', 'bar.txt'" - + Синхронізація %1 @@ -2310,7 +2310,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -2346,19 +2346,19 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! Файл %1 не збережено через локальний конфлікт назви файлу! - + File has changed since discovery Файл змінився з моменту знаходження - + Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -2394,7 +2394,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -2426,7 +2426,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -2447,7 +2447,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -2461,7 +2461,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Error writing metadata to the database - + Помилка запису метаданих до бази даних @@ -2495,33 +2495,33 @@ This is a new, experimental mode. If you decide to use it, please report any iss Error writing metadata to the database - + Помилка запису метаданих до бази даних OCC::PropagateUploadFileNG - + The local file was removed during sync. Локальний файл було видалено під час синхронізації. - + Local file changed during sync. Локальний файл змінився під час синхронізації. - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2529,22 +2529,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing Не вистачає сформованого URL - + The local file was removed during sync. Локальний файл було видалено під час синхронізації. - + Local file changed during sync. Локальний файл змінився під час синхронізації. - + The server did not acknowledge the last chunk. (No e-tag was present) @@ -2713,7 +2713,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Мережа - + Account Обліковий запис @@ -2741,8 +2741,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss Мережа - - + + Account Обліковий запис @@ -2865,12 +2865,12 @@ This is a new, experimental mode. If you decide to use it, please report any iss Download / View - + Завантаження / Перегляд Download / View / Upload - + Завантаження / Перегляд / Вивантаження @@ -3717,15 +3717,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... Увійти... - - + + Log out Вихід @@ -3755,27 +3755,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status Невідомий статус - + Settings... Налаштування... - + Details... Деталі... - + Help Допомога - + Quit %1 Закрити %1 @@ -3851,89 +3851,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts Вийти зі всіх облікових записів - + Log in to all accounts... Увійти до всіх облікових записів... - + New account... Новий обліковий запис... - - + + About %1 Про %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - Критична помилка - - - + No items synced recently Нещодавно нічого не синхронізувалося - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) Синхронізовано %1 з %2 (залишилося %3) - + Syncing %1 of %2 - + Синхронізовано %1 з %2 - + Syncing %1 (%2 left) Синхронізовано %1 (залишилося %2) - + Syncing %1 - + Синхронізація %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index dc30bb45a3..aa46e7f71f 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out 连接超时 - + Unknown error: network reply was deleted 未知错误:网络相应被删除 - + Server replied "%1 %2" to "%3 %4" 服务器返回"%1 %2" to "%3 %4"  @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. 继续操作意味着<b>删除这些设置</b> - + Continuing will mean <b>ignoring these settings</b>. 继续操作意味着<b>忽略这些设置</b> - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit 退出 - + Continue 继续 - + Error accessing the configuration file 访问配置文件时发生错误 - + There was an error while accessing the configuration file at %1. 访问配置文件 %1 时发生错误。 - + Quit ownCloud 退出 ownCloud @@ -911,92 +911,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an 一个旧的同步日志 '%1' 被找到,但是不能被移除。请确定没有应用程序正在使用它。 - + (backup) (备份) - + (backup %1) (备份 %1) - + Undefined State. 未知状态。 - + Waiting to start syncing. 等待启动同步。 - + Preparing for sync. 准备同步。 - + Sync is running. 同步正在运行。 - + Sync was successful, unresolved conflicts. 同步成功,但有未解决的冲突。 - + Last Sync was successful. 最后一次同步成功。 - + Setup Error. 安装失败 - + User Abort. 用户撤销。 - + Sync is paused. 同步已暂停。 - + %1 (Sync is paused) %1 (同步已暂停) - + No valid folder selected! 没有选择有效的文件夹! - + The selected path is not a folder! 选择的路径不是一个文件夹! - + You have no permission to write to the selected folder! 你没有写入所选文件夹的权限! - + There is already a sync from the server to this local folder. Please pick another local folder! 已经有一个从服务器到此文件夹的同步设置。请选择其他本地文件夹! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! 本地文件夹 %1 包含有正在使用的同步文件夹,请选择另一个! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! 本地文件夹 %1 是正在使用的同步文件夹,请选择另一个! @@ -2357,17 +2357,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss 虽然服务器宣称已完成 %1,但实际下载文件为空。 - + File %1 cannot be saved because of a local file name clash! 由于本地文件名冲突,文件 %1 无法保存。 - + File has changed since discovery 自从发现文件以来,它已经被改变了 - + Error writing metadata to the database 向数据库写入元数据错误 @@ -2512,27 +2512,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. 本地文件在同步时已删除。 - + Local file changed during sync. 本地文件在同步时已修改。 - + Unexpected return code from server (%1) 从服务器得到了意外的返回值(%1) - + Missing File ID from server 服务器端文件 ID缺失 - + Missing ETag from server 服务器端ETag缺失 @@ -2540,22 +2540,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing 缺少轮询 URL - + The local file was removed during sync. 本地文件在同步时已删除。 - + Local file changed during sync. 本地文件在同步时已修改。 - + The server did not acknowledge the last chunk. (No e-tag was present) 服务器未确认上一分块。(找不到 E-tag) @@ -2724,7 +2724,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss 网络 - + Account 账户 @@ -2752,8 +2752,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss 网络 - - + + Account 账户 @@ -3462,7 +3462,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss There is insufficient space available on the server for some uploads. - + 该文件在服务器上不可用 @@ -3728,15 +3728,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... 登录 - - + + Log out 注销 @@ -3766,27 +3766,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status 未知状态 - + Settings... 设置... - + Details... 细节... - + Help 帮助 - + Quit %1 退出 %1 @@ -3862,89 +3862,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss 暂停所有文件夹 - + Unpause all synchronization 解除暂停所有同步 - + Unpause synchronization 解除暂停同步 - + Pause all synchronization 暂停所有同步 - + Pause synchronization 暂停同步 - + Log out of all accounts 注销所有账户 - + Log in to all accounts... 登录所有账户 - + New account... 新账号…… - - + + About %1 关于%1 - - Crash now - Only shows in debug mode to allow testing the crash handler - 发生了崩溃 - - - + No items synced recently 近期没有项目被同步 - + Checking for changes in remote '%1' 检查远端文件 '%1' 的变动 - + Checking for changes in local '%1' 检查本地文件 '%1' 的变动 - + Syncing %1 of %2 (%3 left) 同步 %2 中的 %1 (剩余 %3) - + Syncing %1 of %2 正在同步 %1,共 %2 - + Syncing %1 (%2 left) 同步 %1 (剩余 %2) - + Syncing %1 正在同步 %1 - + %1 (%2, %3) %1 (%2, %3) diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index 7650987336..0ce96ebb81 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -95,17 +95,17 @@ OCC::AbstractNetworkJob - + Connection timed out 連線逾時 - + Unknown error: network reply was deleted - + Server replied "%1 %2" to "%3 %4" @@ -579,42 +579,42 @@ OCC::Application - + Continuing will mean <b>deleting these settings</b>. - + Continuing will mean <b>ignoring these settings</b>. - + Some settings were configured in newer versions of this client and use features that are not available in this version.<br><br>%1<br><br>The current configuration file was already backed up to <i>%2</i>. - + Quit 離開 - + Continue 繼續 - + Error accessing the configuration file 存取配置文件時錯誤 - + There was an error while accessing the configuration file at %1. - + Quit ownCloud 退出 ownCloud @@ -902,92 +902,92 @@ Continuing the sync as normal will cause all your files to be overwritten by an 發現較舊的同步處理日誌'%1',但無法移除。請確認沒有應用程式正在使用它。 - + (backup) (備份) - + (backup %1) (備份 %1) - + Undefined State. 未知狀態 - + Waiting to start syncing. 正在等待同步開始 - + Preparing for sync. 正在準備同步。 - + Sync is running. 同步執行中 - + Sync was successful, unresolved conflicts. - + Last Sync was successful. 最後一次同步成功 - + Setup Error. 安裝失敗 - + User Abort. 使用者中斷。 - + Sync is paused. 同步已暫停 - + %1 (Sync is paused) %1 (同步暫停) - + No valid folder selected! 沒有選擇有效的資料夾 - + The selected path is not a folder! 所選的路徑並非資料夾! - + You have no permission to write to the selected folder! 您沒有權限來寫入被選取的資料夾! - + There is already a sync from the server to this local folder. Please pick another local folder! - + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! 本地資料夾 %1 裡已經有被資料夾同步功能使用的資料夾,請選擇其他資料夾! - + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! 本地資料夾 %1 是被包含在一個已經被資料夾同步功能使用的資料夾,請選擇其他資料夾! @@ -2349,17 +2349,17 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + File %1 cannot be saved because of a local file name clash! 檔案 %1 無法存檔,因為本地端的檔案名稱已毀損! - + File has changed since discovery 尋找的過程中檔案已經被更改 - + Error writing metadata to the database 寫入後設資料(metadata) 時發生錯誤 @@ -2504,27 +2504,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileNG - + The local file was removed during sync. 本地端的檔案在同步過程中被刪除。 - + Local file changed during sync. 本地端的檔案在同步過程中被更改。 - + Unexpected return code from server (%1) - + Missing File ID from server - + Missing ETag from server @@ -2532,22 +2532,22 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateUploadFileV1 - + Poll URL missing 缺少輪詢的超連結 - + The local file was removed during sync. 本地端的檔案在同步過程中被刪除。 - + Local file changed during sync. 本地端的檔案在同步過程中被更改。 - + The server did not acknowledge the last chunk. (No e-tag was present) 伺服器不承認檔案的最後一個分割檔。(e-tag不存在) @@ -2716,7 +2716,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss 網路 - + Account 帳號 @@ -2744,8 +2744,8 @@ This is a new, experimental mode. If you decide to use it, please report any iss 網路 - - + + Account 帳號 @@ -3720,15 +3720,15 @@ This is a new, experimental mode. If you decide to use it, please report any iss - - + + Log in... 登入... - - + + Log out 登出 @@ -3758,27 +3758,27 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unknown status 未知狀態 - + Settings... 設定… - + Details... 細節… - + Help 說明 - + Quit %1 離開 %1 @@ -3854,89 +3854,83 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Unpause all synchronization - + Unpause synchronization - + Pause all synchronization - + Pause synchronization - + Log out of all accounts 登出所有的帳戶 - + Log in to all accounts... 登入所有的帳戶 - + New account... - - + + About %1 關於 %1 - - Crash now - Only shows in debug mode to allow testing the crash handler - 發生非預期結果 - - - + No items synced recently 最近沒有項目被同步 - + Checking for changes in remote '%1' - + Checking for changes in local '%1' - + Syncing %1 of %2 (%3 left) 同步中 %1 的 %2 (剩餘 %3) - + Syncing %1 of %2 - + Syncing %1 (%2 left) 同步中 %1 (剩餘 %2) - + Syncing %1 同步 %1 - + %1 (%2, %3) %1 (%2, %3)