diff --git a/src/gui/application.cpp b/src/gui/application.cpp index b6ec7780cc..2829442b15 100644 --- a/src/gui/application.cpp +++ b/src/gui/application.cpp @@ -62,11 +62,11 @@ static const char optionsC[] = " --logwindow : open a window to show log output.\n" " --logfile : write log output to file .\n" " --logdir : write each sync log output in a new file\n" - " in directory .\n" + " in folder .\n" " --logexpire : removes logs older than hours.\n" " (to be used with --logdir)\n" " --logflush : flush the log file after every write.\n" - " --confdir : Use the given configuration directory.\n" + " --confdir : Use the given configuration folder.\n" ; QString applicationTrPath() diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index 69f76def39..f8fe7b0b1b 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -168,7 +168,7 @@ void Folder::checkLocalPath() _syncResult.setErrorString(tr("Local folder %1 does not exist.").arg(_definition.localPath)); _syncResult.setStatus( SyncResult::SetupError ); } else if( !fi.isDir() ) { - _syncResult.setErrorString(tr("%1 should be a directory but is not.").arg(_definition.localPath)); + _syncResult.setErrorString(tr("%1 should be a folder but is not.").arg(_definition.localPath)); _syncResult.setStatus( SyncResult::SetupError ); } else if( !fi.isReadable() ) { _syncResult.setErrorString(tr("%1 is not readable.").arg(_definition.localPath)); diff --git a/src/gui/folderman.cpp b/src/gui/folderman.cpp index b5edbe673e..f47ed0cc5b 100644 --- a/src/gui/folderman.cpp +++ b/src/gui/folderman.cpp @@ -1135,7 +1135,7 @@ QString FolderMan::checkPathValidityForNewFolder(const QString& path, bool forNe } if( !selFile.isDir() ) { - return tr("The selected path is not a directory!"); + return tr("The selected path is not a folder!"); } if ( !selFile.isWritable() ) { diff --git a/src/gui/folderwizard.cpp b/src/gui/folderwizard.cpp index 998632acbd..68b6b70abb 100644 --- a/src/gui/folderwizard.cpp +++ b/src/gui/folderwizard.cpp @@ -78,7 +78,7 @@ FolderWizardLocalPath::FolderWizardLocalPath() } _ui.aliasLineEdit->setText( newAlias ); - _ui.aliasLineEdit->setToolTip(tr("The directory alias is a descriptive name for this sync connection.")); + _ui.aliasLineEdit->setToolTip(tr("The folder alias is a descriptive name for this sync connection.")); _ui.warnLabel->setTextFormat(Qt::RichText); _ui.warnLabel->hide(); } diff --git a/src/gui/ignorelisteditor.cpp b/src/gui/ignorelisteditor.cpp index d18c40f6a3..508062bdb2 100644 --- a/src/gui/ignorelisteditor.cpp +++ b/src/gui/ignorelisteditor.cpp @@ -36,7 +36,7 @@ IgnoreListEditor::IgnoreListEditor(QWidget *parent) : setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); ui->setupUi(this); - ui->descriptionLabel->setText(tr("Files or directories matching a pattern will not be synchronized.\n\n" + ui->descriptionLabel->setText(tr("Files or folders matching a pattern will not be synchronized.\n\n" "Items where deletion is allowed will be deleted if they prevent a " "directory from being removed. " "This is useful for meta data.")); diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index 359baeb010..0aa7d43194 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -395,12 +395,19 @@ void ownCloudGui::setupContextMenu() // In particular QTBUG-47863 #3672 (tray menu fails to update and // becomes unresponsive) and QTBUG-48068 #3722 (click signal is // emitted several times) + // The Qt version check intentionally uses 5.0.0 (where platformMenu() + // was introduced) instead of 5.5.0 to avoid issues where the Qt + // version used to build is different from the one used at runtime. +#ifdef Q_OS_LINUX +#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) QObject* platformMenu = reinterpret_cast(_tray->contextMenu()->platformMenu()); if (platformMenu && platformMenu->metaObject()->className() == QLatin1String("QDBusPlatformMenu")) { _qdbusmenuWorkaround = true; qDebug() << "Enabled QDBusPlatformMenu workaround"; } +#endif +#endif } _contextMenu->setTitle(Theme::instance()->appNameGUI() ); // We must call deleteLater because we might be called from the press in one of the action. diff --git a/src/gui/wizard/owncloudadvancedsetuppage.cpp b/src/gui/wizard/owncloudadvancedsetuppage.cpp index a933761112..3538fb71bd 100644 --- a/src/gui/wizard/owncloudadvancedsetuppage.cpp +++ b/src/gui/wizard/owncloudadvancedsetuppage.cpp @@ -139,12 +139,12 @@ void OwncloudAdvancedSetupPage::updateStatus() t = tr("%1 folder '%2' is synced to local folder '%3'") .arg(Theme::instance()->appName()).arg(_remoteFolder) .arg(QDir::toNativeSeparators(locFolder)); - _ui.rSyncEverything->setText(tr("Sync the directory '%1'").arg(_remoteFolder)); + _ui.rSyncEverything->setText(tr("Sync the folder '%1'").arg(_remoteFolder)); } const bool dirNotEmpty(QDir(locFolder).entryList(QDir::AllEntries | QDir::NoDotAndDotDot).count() > 0); if(dirNotEmpty) { - t += tr("

Warning: The local directory is not empty. " + t += tr("

Warning: The local folder is not empty. " "Pick a resolution!

"); } _ui.resolutionWidget->setVisible(dirNotEmpty); diff --git a/src/gui/wizard/owncloudadvancedsetuppage.ui b/src/gui/wizard/owncloudadvancedsetuppage.ui index 15e477a664..660e43a5a4 100644 --- a/src/gui/wizard/owncloudadvancedsetuppage.ui +++ b/src/gui/wizard/owncloudadvancedsetuppage.ui @@ -197,7 +197,7 @@ - <html><head/><body><p>If this box is checked, existing content in the local directory will be erased to start a clean sync from the server.</p><p>Do not check this if the local content should be uploaded to the servers directory.</p></body></html> + <html><head/><body><p>If this box is checked, existing content in the local folder will be erased to start a clean sync from the server.</p><p>Do not check this if the local content should be uploaded to the servers folder.</p></body></html> Start a &clean sync (Erases the local folder!) diff --git a/src/libsync/discoveryphase.cpp b/src/libsync/discoveryphase.cpp index 07b01799de..dd7b45c647 100644 --- a/src/libsync/discoveryphase.cpp +++ b/src/libsync/discoveryphase.cpp @@ -80,7 +80,7 @@ bool DiscoveryJob::checkSelectiveSyncNewFolder(const QString& path) return false; } - // Go in the main thread to do a PROPFIND to know the size of this directory + // Go in the main thread to do a PROPFIND to know the size of this folder qint64 result = -1; { diff --git a/src/libsync/owncloudpropagator.cpp b/src/libsync/owncloudpropagator.cpp index 506e617787..c89cdb5c50 100644 --- a/src/libsync/owncloudpropagator.cpp +++ b/src/libsync/owncloudpropagator.cpp @@ -208,7 +208,7 @@ void PropagateItemJob::slotRestoreJobCompleted(const SyncFileItem& item ) || item._status == SyncFileItem::Restoration) { done( SyncFileItem::SoftError, msg); } else { - done( item._status, tr("A file or directory was removed from a read only share, but restoring failed: %1").arg(item._errorString) ); + done( item._status, tr("A file or folder was removed from a read only share, but restoring failed: %1").arg(item._errorString) ); } } diff --git a/src/libsync/propagatorjobs.cpp b/src/libsync/propagatorjobs.cpp index 7c4df9cb8b..47c16451d5 100644 --- a/src/libsync/propagatorjobs.cpp +++ b/src/libsync/propagatorjobs.cpp @@ -95,9 +95,9 @@ bool PropagateLocalRemove::removeRecursively(const QString& path) if (success) { success = QDir().rmdir(absolute); if (!success) { - _error += PropagateLocalRemove::tr("Could not remove directory '%1';") + _error += PropagateLocalRemove::tr("Could not remove folder '%1';") .arg(QDir::toNativeSeparators(absolute)) + " "; - qDebug() << "Error removing directory" << absolute; + qDebug() << "Error removing folder" << absolute; } } return success; @@ -141,14 +141,14 @@ void PropagateLocalMkdir::start() QDir newDir(_propagator->_localDir + _item->_file); QString newDirStr = QDir::toNativeSeparators(newDir.path()); if( Utility::fsCasePreserving() && _propagator->localFileNameClash(_item->_file ) ) { - qDebug() << "WARN: new directory to create locally already exists!"; + qDebug() << "WARN: new folder to create locally already exists!"; done( SyncFileItem::NormalError, tr("Attention, possible case sensitivity clash with %1").arg(newDirStr) ); return; } _propagator->addTouchedFile(newDirStr); QDir localDir(_propagator->_localDir); if (!localDir.mkpath(_item->_file)) { - done( SyncFileItem::NormalError, tr("could not create directory %1").arg(newDirStr) ); + done( SyncFileItem::NormalError, tr("could not create folder %1").arg(newDirStr) ); return; } diff --git a/src/libsync/syncengine.cpp b/src/libsync/syncengine.cpp index 2c8b15dc1b..62f6c108ea 100644 --- a/src/libsync/syncengine.cpp +++ b/src/libsync/syncengine.cpp @@ -98,7 +98,7 @@ QString SyncEngine::csyncErrorToString(CSYNC_STATUS err) break; case CSYNC_STATUS_STATEDB_LOAD_ERROR: errStr = tr("CSync failed to load or create the journal file. " - "Make sure you have read and write permissions in the local sync directory."); + "Make sure you have read and write permissions in the local sync folder."); break; case CSYNC_STATUS_STATEDB_CORRUPTED: errStr = tr("CSync failed to load the journal file. The journal file is corrupted."); @@ -146,7 +146,7 @@ QString SyncEngine::csyncErrorToString(CSYNC_STATUS err) errStr = tr("CSync failed to access") + " "; // filename gets added. break; case CSYNC_STATUS_FILE_EXISTS: - errStr = tr("CSync tried to create a directory that already exists."); + errStr = tr("CSync tried to create a folder that already exists."); break; case CSYNC_STATUS_OUT_OF_SPACE: errStr = tr("CSync: No space on %1 server available.").arg(qApp->applicationName()); @@ -161,13 +161,13 @@ QString SyncEngine::csyncErrorToString(CSYNC_STATUS err) errStr = tr("The service is temporarily unavailable"); break; case CSYNC_STATUS_STORAGE_UNAVAILABLE: - errStr = tr("The mounted directory is temporarily not available on the server"); + errStr = tr("The mounted folder is temporarily not available on the server"); break; case CSYNC_STATUS_OPENDIR_ERROR: - errStr = tr("An error occurred while opening a directory"); + errStr = tr("An error occurred while opening a folder"); break; case CSYNC_STATUS_READDIR_ERROR: - errStr = tr("Error while reading directory."); + errStr = tr("Error while reading folder."); break; case CSYNC_STATUS_INVALID_CHARACTERS: // Handled in callee @@ -594,7 +594,7 @@ void SyncEngine::startSync() if (!QDir(_localPath).exists()) { // No _tr, it should only occur in non-mirall - emit csyncError("Unable to find local sync directory."); + emit csyncError("Unable to find local sync folder."); finalize(); return; } @@ -981,20 +981,20 @@ void SyncEngine::checkForPermission() qDebug() << "checkForPermission: ERROR" << (*it)->_file; (*it)->_instruction = CSYNC_INSTRUCTION_ERROR; (*it)->_status = SyncFileItem::NormalError; - (*it)->_errorString = tr("Not allowed because you don't have permission to add sub-directories in that directory"); + (*it)->_errorString = tr("Not allowed because you don't have permission to add subfolders that folder"); for (SyncFileItemVector::iterator it_next = it + 1; it_next != _syncedItems.end() && (*it_next)->_file.startsWith(path); ++it_next) { it = it_next; (*it)->_instruction = CSYNC_INSTRUCTION_ERROR; (*it)->_status = SyncFileItem::NormalError; - (*it)->_errorString = tr("Not allowed because you don't have permission to add parent directory"); + (*it)->_errorString = tr("Not allowed because you don't have permission to add parent folder"); } } else if (!(*it)->_isDirectory && !perms.contains("C")) { qDebug() << "checkForPermission: ERROR" << (*it)->_file; (*it)->_instruction = CSYNC_INSTRUCTION_ERROR; (*it)->_status = SyncFileItem::NormalError; - (*it)->_errorString = tr("Not allowed because you don't have permission to add files in that directory"); + (*it)->_errorString = tr("Not allowed because you don't have permission to add files in that folder"); } break; } @@ -1040,7 +1040,7 @@ void SyncEngine::checkForPermission() it = it_next; if ((*it)->_instruction != CSYNC_INSTRUCTION_REMOVE) { - qWarning() << "non-removed job within a removed directory" + qWarning() << "non-removed job within a removed folder" << (*it)->_file << (*it)->_instruction; continue; } diff --git a/src/libsync/utility_unix.cpp b/src/libsync/utility_unix.cpp index 3c108f28eb..ed71c088dd 100644 --- a/src/libsync/utility_unix.cpp +++ b/src/libsync/utility_unix.cpp @@ -59,7 +59,7 @@ void setLaunchOnStartup_private(const QString &appName, const QString& guiName, QString desktopFileLocation = userAutoStartPath+appName+QLatin1String(".desktop"); if (enable) { if (!QDir().exists(userAutoStartPath) && !QDir().mkpath(userAutoStartPath)) { - qDebug() << "Could not create autostart directory"; + qDebug() << "Could not create autostart folder"; return; } QFile iniFile(desktopFileLocation); diff --git a/translations/client_ca.ts b/translations/client_ca.ts index fb658f1657..3311f575ed 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -91,7 +91,7 @@ Storage space: ... - + Espai d'emmagatzematze: ... @@ -143,7 +143,7 @@ Stop syncing - + Atura la sincronització @@ -213,7 +213,7 @@ Remove connection - + Elimina la connexió @@ -238,12 +238,12 @@ %1 (%3%) of %2 in use. Some folders, including network mounted or shared folders, might have different limits. - + %1 (%3%) de %2 en ús. Algunes carpetes, incloent les carpetes muntades a través de xarxa o les compartides, poden tenir límits diferents. %1 of %2 in use - + %1 de %2 en ús @@ -773,17 +773,17 @@ Temps restant total %5 Waiting... - + S'està esperant... Waiting for %n other folder(s)... - + S'està esperant %n altra carpeta...S'està esperant %n altres carpetes Preparing to sync... - + S'està preparant per sincronitzar... @@ -1740,7 +1740,7 @@ No és aconsellada usar-la. File has changed since discovery - + El fitxer ha canviat des de que es va descobrir @@ -1748,7 +1748,7 @@ No és aconsellada usar-la. ; Restoration Failed: %1 - + ; Ha fallat la restauració: %1 @@ -2240,33 +2240,33 @@ No és aconsellada usar-la. Sharing of external directories is not yet working. - + La compartició de carpetes externes encara no funciona. Public sh&aring requires a password - + La comp&artició pública requereix una contrasenya Cannot find a folder to upload to. - + No es pot trobar una carpeta a la què pujar-ho. Waiting to upload... - + S'està esperant per pujar-ho... Unable to register in sync space. - + No es pot registrar a l'espai de sincronització. Sync of registered file was not successful yet. - + La sincronització del fitxer registrat encara no s'ha fet amb èxit. @@ -2446,12 +2446,12 @@ No és aconsellada usar-la. Untrusted Certificate - + Certificat no fiable Cannot connect securely to <i>%1</i>: - + No es pot connectar de forma segura a <i>%1</i>: @@ -2847,34 +2847,34 @@ No és aconsellada usar-la. Obre %1 en el navegador - + Unknown status Estat desconegut - + Settings... Arranjament... - + Details... Detalls... - + Help Ajuda - + Quit %1 Surt %1 - - + + Sign in... Acredita... @@ -2895,54 +2895,54 @@ No és aconsellada usar-la. - - + + Sign out Surt - + Sign out everywhere Desconnectat de tot arreu - + Sign in everywhere... Connectat a tot arreu... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently No hi ha elements sincronitzats recentment - + Discovering '%1' Descobrint '%1' - + Syncing %1 of %2 (%3 left) Sincronitzant %1 de %2 (%3 pendents) - + Syncing %1 (%2 left) Sincronitzant %1 (%2 pendents) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Actualitzat diff --git a/translations/client_cs.ts b/translations/client_cs.ts index 589d63785f..bda8d07ee3 100644 --- a/translations/client_cs.ts +++ b/translations/client_cs.ts @@ -2852,34 +2852,34 @@ Nedoporučuje se jí používat. Otevřít %1 v prohlížeči - + Unknown status Neznámý stav - + Settings... Nastavení... - + Details... Podrobnosti... - + Help Nápověda - + Quit %1 Ukončit %1 - - + + Sign in... Přihlásit... @@ -2900,54 +2900,54 @@ Nedoporučuje se jí používat. - - + + Sign out Odhlásit - + Sign out everywhere Vše odhlásit - + Sign in everywhere... Všude přihlásit... - + 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 - + Discovering '%1' Prohledávám '%1' - + Syncing %1 of %2 (%3 left) Synchronizuji %1 ze %2 (zbývá %3) - + Syncing %1 (%2 left) Synchronizuji %1 (zbývá %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Aktuální diff --git a/translations/client_de.ts b/translations/client_de.ts index e89baf38cb..c9a8746ca4 100644 --- a/translations/client_de.ts +++ b/translations/client_de.ts @@ -68,7 +68,7 @@ %1@%2 - + %1@%2 @@ -81,7 +81,7 @@ Remove the account configuration from the client - + Konto von diesem Computer entfernen @@ -91,7 +91,7 @@ Storage space: ... - + Speicherplatz: ... @@ -123,17 +123,17 @@ Remove folder - + Ordner entfernen Folder creation failed - + Ordner anlegen fehlgeschlagen <p>Could not create local folder <i>%1</i>. - + <p>Konnte lokalen Ordner <i>%1</i> nicht anlegen. @@ -143,7 +143,7 @@ Stop syncing - + Synchonisation stoppen @@ -169,32 +169,32 @@ Diese Funktion ist nur für Wartungszwecke gedacht. Es werden keine Dateien entf %1 as <i>%2</i> - + %1 als <i>%2</i> Connected to %1. - + Verbunden mit %1. Server %1 is temporarily unavailable. - + Server %1 ist derzeit nicht verfügbar. Signed out from %1. - + Abgemeldet von %1. No connection to %1 at %2. - + Keine Verbindung zu %1 auf %2 There are new folders that were not synchronized because they are too big: %1 - + Einige neue Ordner wurden nicht synchronisiert, weil sie zu groß sind: %1 @@ -204,17 +204,17 @@ Diese Funktion ist nur für Wartungszwecke gedacht. Es werden keine Dateien entf Confirm Account Delete - + Konto wirklich entfernen? <p>Do you really want to remove the connection to the account <i>%1</i>?</p><p><b>Note:</b> This will <b>not</b> delete any files.</p> - + <p>Wollen Sie wirklich die Verbindung zum Konto <i>%1</i> lösen?</p><p><b>Anmerkung:</b> Dieser Vorgang wird <b>keine</b> Dateien löschen.</p> Remove connection - + Verbindung entfernen @@ -234,17 +234,17 @@ Diese Funktion ist nur für Wartungszwecke gedacht. Es werden keine Dateien entf <p>Do you really want to stop syncing the folder <i>%1</i>?</p><p><b>Note:</b> This will <b>not</b> delete any files.</p> - + <p>Möchten Sie wirklich die Synchronisation des Ordners <i>%1</i> stoppen?</p><p><b>Anmerkung:</b> Dies wird <b>keine</b> Dateien löschen.</p> %1 (%3%) of %2 in use. Some folders, including network mounted or shared folders, might have different limits. - + %1 (%3%) von %2 Serverkapazität verwendet. Einige Ordner, einschließlich über das Netzwerk verbundene oder freigegebene Ordner oder geteilte ordner können unterschiedliche Beschränkungen aufweisen. %1 of %2 in use - + %1 von %2 Serverkapazität verwendet @@ -262,7 +262,7 @@ Diese Funktion ist nur für Wartungszwecke gedacht. Es werden keine Dateien entf Signed out - + Abgemeldet @@ -292,7 +292,7 @@ Diese Funktion ist nur für Wartungszwecke gedacht. Es werden keine Dateien entf Unknown account state - + Unbekannten Konto-Zustand @@ -519,7 +519,7 @@ Diese Funktion ist nur für Wartungszwecke gedacht. Es werden keine Dateien entf A new folder larger than %1 MB has been added: %2. Please go in the settings to select it if you wish to download it. - + Ein neue Order größer als %1 MB wurde hinzugefügt: %2. Bitte besuchen Sie die Einstellungen, falls sie ihn herunterladen wollen. @@ -621,12 +621,12 @@ Sind Sie sicher, dass sie diese Operation durchführen wollen? No valid folder selected! - + Kein gültige Ordner gewählt! The selected path is not a directory! - + Der gewählte Pfad ist kein Ordner! @@ -664,7 +664,7 @@ Sind Sie sicher, dass sie diese Operation durchführen wollen? Add Folder to Synchronize - + Zu synchronisierenden Ordner hinzufügen. @@ -675,7 +675,7 @@ Sind Sie sicher, dass sie diese Operation durchführen wollen? Syncing selected files in your account with - + Synchronisiere gewählte Dateien in Ihrem Konto mit @@ -688,12 +688,12 @@ Sind Sie sicher, dass sie diese Operation durchführen wollen? You need to be connected to add a folder - + Sie müssen verbunden sein, um einen Ordner hinzuzufügen Adding folder is disabled because your are already syncing all your files. If you want to sync multiple folders, please remove the currently configured root folder. - + Sie können keinen weiteren Ordner hinzufügen, da Sie bereits alle Dateien synchronisieren. Falls sie mehrere Ordner synchronisieren wollen, entferen Sie zunächst den konfigurierten Wurzel-Ordner. @@ -708,12 +708,12 @@ Sind Sie sicher, dass sie diese Operation durchführen wollen? Error while loading the list of folders from the server. - + Fehler beim Empfang der Ordnerliste vom Server. Signed out - + Abgemeldet @@ -723,7 +723,7 @@ Sind Sie sicher, dass sie diese Operation durchführen wollen? Syncing %1 - + Synchronisiere %1 @@ -772,17 +772,17 @@ Gesamtzeit übrig %5 Waiting... - + Warte... Waiting for %n other folder(s)... - + Warte auf einen anderen OrdnerWarte auf %n andere Ordner Preparing to sync... - + Bereite Synchronisation vor... @@ -857,7 +857,7 @@ Gesamtzeit übrig %5 Failed to list a folder. Error: %1 - + Konnte Ordner nicht listen. Fehler: %1 @@ -1008,7 +1008,7 @@ Gesamtzeit übrig %5 Reading from keychain failed with error: '%1' - + Schlüsselbund fehlgeschlagen mit Fehler: '%1' @@ -1020,7 +1020,11 @@ Gesamtzeit übrig %5 User: %2 Account: %3 - + Bitte Kennwort für %1 eingeben: + +Benutzer: %2 +Konto: %3 + @@ -2248,7 +2252,7 @@ Es ist nicht ratsam, diese zu benutzen. Cannot find a folder to upload to. - + Kein keinen Ordner zum Hochladen auffindbar. @@ -2413,7 +2417,7 @@ Es ist nicht ratsam, diese zu benutzen. No support for SSL session tickets/identifiers - + Keine Unterstützung für SSL session tickets @@ -2443,12 +2447,12 @@ Es ist nicht ratsam, diese zu benutzen. Untrusted Certificate - + Nicht vertrauenswürdiges Zertifikat Cannot connect securely to <i>%1</i>: - + Kann keine sichere Verbindung zu <i>%1</i> herstellen: @@ -2616,7 +2620,7 @@ Es ist nicht ratsam, diese zu benutzen. Filename contains invalid characters that can not be synced cross platform. - + Dateiname enthält Zeichen die nicht auf allen Betriebssystemen dargestellt werden können. @@ -2666,7 +2670,7 @@ Es ist nicht ratsam, diese zu benutzen. File is ignored because it's hidden. - + Datei wird ignoriert, weil sie versteckt ist. @@ -2681,7 +2685,7 @@ Es ist nicht ratsam, diese zu benutzen. Invalid characters, please rename "%1" - + Ungültige Zeichenm bitte benennen Sie "%1" um @@ -2816,7 +2820,7 @@ Es ist nicht ratsam, diese zu benutzen. Open in browser - + Im Browser öffnen @@ -2844,102 +2848,102 @@ Es ist nicht ratsam, diese zu benutzen. %1 im Browser öffnen - + Unknown status Unbekannter Status - + Settings... Einstellungen … - + Details... Details … - + Help Hilfe - + Quit %1 %1 beenden - - + + Sign in... Anmeldung… Disconnected from %1 - + Von %1 trennen Disconnected from accounts: - + Getrennt von Konten: Account %1: %2 - + Konto %1: %2 - - + + Sign out Abmeldung - + Sign out everywhere - + Überall abmelden... - + Sign in everywhere... - + Überall anmelden... - + Crash now Only shows in debug mode to allow testing the crash handler Jetzt abstürzen lassen - + No items synced recently Keine kürzlich synchronisierten Elemente - + Discovering '%1' »%1« wird entdeckt - + Syncing %1 of %2 (%3 left) Synchronisiere %1 von %2 (%3 übrig) - + Syncing %1 (%2 left) Synchronisiere %1 (%2 übrig) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Aktuell diff --git a/translations/client_el.ts b/translations/client_el.ts index a5c2543114..e2f391c8af 100644 --- a/translations/client_el.ts +++ b/translations/client_el.ts @@ -773,17 +773,17 @@ Total time left %5 Waiting... - + Αναμονή... Waiting for %n other folder(s)... - + Αναμονή για %n άλλο φάκελο...Αναμονή για %n άλλους φακέλους... Preparing to sync... - + Προετοιμασία για συγχρονισμό... @@ -2853,34 +2853,34 @@ It is not advisable to use it. Άνοιγμα %1 στον περιηγητή - + Unknown status Άγνωστη κατάσταση - + Settings... Ρυθμίσεις... - + Details... Λεπτομέρειες... - + Help Βοήθεια - + Quit %1 Κλείσιμο %1 - - + + Sign in... Σύνδεση... @@ -2901,54 +2901,54 @@ It is not advisable to use it. - - + + Sign out Αποσύνδεση - + Sign out everywhere Αποσύνδεση από παντού - + Sign in everywhere... Συνδεση παντού... - + Crash now Only shows in debug mode to allow testing the crash handler Κατάρρευση τώρα - + No items synced recently Κανένα στοιχείο δεν συγχρονίστηκε πρόσφατα - + Discovering '%1' Εντοπισμός '%1' - + Syncing %1 of %2 (%3 left) Συγχρονισμός %1 από %2 (%3 απομένουν) - + Syncing %1 (%2 left) Συγχρονισμός %1 (%2 απομένουν) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Ενημερωμένο diff --git a/translations/client_en.ts b/translations/client_en.ts index 71ea25412f..78f0052a41 100644 --- a/translations/client_en.ts +++ b/translations/client_en.ts @@ -2843,34 +2843,34 @@ It is not advisable to use it. - + Unknown status - + Settings... - + Details... - + Help - + Quit %1 - - + + Sign in... @@ -2891,54 +2891,54 @@ It is not advisable to use it. - - + + Sign out - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently - + Discovering '%1' - + Syncing %1 of %2 (%3 left) - + Syncing %1 (%2 left) - + %1 (%2, %3) - + Up to date diff --git a/translations/client_es.ts b/translations/client_es.ts index a106731fd2..0b037c0caf 100644 --- a/translations/client_es.ts +++ b/translations/client_es.ts @@ -2848,34 +2848,34 @@ No se recomienda usarla. Abrir %1 en el navegador - + Unknown status Estado desconocido - + Settings... Configuraciones... - + Details... Detalles... - + Help Ayuda - + Quit %1 Salir de %1 - - + + Sign in... Registrarse... @@ -2896,54 +2896,54 @@ No se recomienda usarla. - - + + Sign out Cerrar sesión - + Sign out everywhere Cerrar sesión en todas las partes - + Sign in everywhere... Iniciar sesión en cualquier parte... - + 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 - + Discovering '%1' Descubriendo '%1' - + Syncing %1 of %2 (%3 left) Sincronizando %1 de %2 (quedan %3) - + Syncing %1 (%2 left) Sincronizando %1 (quedan %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Actualizado diff --git a/translations/client_es_AR.ts b/translations/client_es_AR.ts index f8ccd6db50..3d4d437fb8 100644 --- a/translations/client_es_AR.ts +++ b/translations/client_es_AR.ts @@ -2834,34 +2834,34 @@ It is not advisable to use it. Abrir %1 en el navegador... - + Unknown status Estado desconocido - + Settings... Configuraciones... - + Details... Detalles... - + Help Ayuda - + Quit %1 Cancelar %1 - - + + Sign in... Iniciando sesión... @@ -2882,54 +2882,54 @@ It is not advisable to use it. - - + + Sign out Salir - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently No se sincronizaron elementos recientemente - + Discovering '%1' - + Syncing %1 of %2 (%3 left) - + Syncing %1 (%2 left) - + %1 (%2, %3) %1 (%2, %3) - + Up to date actualizado diff --git a/translations/client_et.ts b/translations/client_et.ts index 947e7debe0..74b702a75c 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -2838,34 +2838,34 @@ Selle kasutamine pole soovitatav. Ava %1 veebilehitsejas - + Unknown status Tundmatu staatus - + Settings... Seaded... - + Details... Üksikasjad... - + Help Abiinfo - + Quit %1 Lõpeta %1 - - + + Sign in... Logi sisse... @@ -2886,54 +2886,54 @@ Selle kasutamine pole soovitatav. - - + + Sign out Logi välja - + Sign out everywhere Logi kõikjalt välja - + Sign in everywhere... Logi kõikjale sisse... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently Ühtegi üksust pole hiljuti sünkroniseeritud - + Discovering '%1' '%1' avastamine - + Syncing %1 of %2 (%3 left) Sünkroniseerin %1 %2-st (%3 veel) - + Syncing %1 (%2 left) Sünkroniseerin %1 (%2 veel) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Ajakohane diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 0d84062d10..fff0397de6 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -2836,34 +2836,34 @@ Ez da gomendagarria erabltzea. Ireki %1 arakatzailean - + Unknown status Egoera ezezaguna - + Settings... Ezarpenak... - + Details... Xehetasunak... - + Help Laguntza - + Quit %1 %1etik Irten - - + + Sign in... Saioa hasi... @@ -2884,54 +2884,54 @@ Ez da gomendagarria erabltzea. - - + + Sign out Saioa bukatu - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently Ez da azken aldian ezer sinkronizatu - + Discovering '%1' - + Syncing %1 of %2 (%3 left) Sinkronizatzen %1 %2tik (%3 faltan) - + Syncing %1 (%2 left) Sinkronizatzen %1 (%2faltan) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Eguneratua diff --git a/translations/client_fa.ts b/translations/client_fa.ts index d52633b69f..daea6e0f99 100644 --- a/translations/client_fa.ts +++ b/translations/client_fa.ts @@ -2834,34 +2834,34 @@ It is not advisable to use it. - + Unknown status - + Settings... - + Details... - + Help راه‌نما - + Quit %1 - - + + Sign in... @@ -2882,54 +2882,54 @@ It is not advisable to use it. - - + + Sign out - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently - + Discovering '%1' - + Syncing %1 of %2 (%3 left) - + Syncing %1 (%2 left) - + %1 (%2, %3) - + Up to date تا تاریخ diff --git a/translations/client_fi.ts b/translations/client_fi.ts index 413fd70631..b0e3f1920d 100644 --- a/translations/client_fi.ts +++ b/translations/client_fi.ts @@ -780,7 +780,7 @@ Aikaa jäljellä yhteensä %5 Preparing to sync... - + Valmistaudutaan synkronointiin... @@ -2436,12 +2436,12 @@ Osoitteen käyttäminen ei ole suositeltavaa. Untrusted Certificate - + Varmenne ei ole luotettu Cannot connect securely to <i>%1</i>: - + Yhteyttä kohteeseen <i>%1</i> ei voi muodostaa turvallisesti: @@ -2837,34 +2837,34 @@ Osoitteen käyttäminen ei ole suositeltavaa. Avaa %1 selaimeen - + Unknown status Tuntematon tila - + Settings... Asetukset... - + Details... Tiedot... - + Help Ohje - + Quit %1 Lopeta %1 - - + + Sign in... Kirjaudu sisään... @@ -2885,54 +2885,54 @@ Osoitteen käyttäminen ei ole suositeltavaa. - - + + Sign out Kirjaudu ulos - + Sign out everywhere Kirjaudu ulos kaikkialta - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently Kohteita ei ole synkronoitu äskettäin - + Discovering '%1' - + Syncing %1 of %2 (%3 left) Synkronoidaan %1/%2 (%3 jäljellä) - + Syncing %1 (%2 left) Synkronoidaan %1 (%2 jäljellä) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Ajan tasalla diff --git a/translations/client_fr.ts b/translations/client_fr.ts index 0bc4829a48..465d5485a2 100644 --- a/translations/client_fr.ts +++ b/translations/client_fr.ts @@ -2852,34 +2852,34 @@ Il est déconseillé de l'utiliser. Ouvrir %1 dans le navigateur - + Unknown status Statut inconnu - + Settings... Paramètres... - + Details... Détails... - + Help Aide - + Quit %1 Quitter %1 - - + + Sign in... Se connecter... @@ -2900,54 +2900,54 @@ Il est déconseillé de l'utiliser. - - + + Sign out Se déconnecter - + Sign out everywhere Déconnecter tous les comptes - + Sign in everywhere... Connecter tous les comptes - + 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 - + Discovering '%1' Découverte de '%1' - + Syncing %1 of %2 (%3 left) Synchronisation de %1 sur %2 (%3 restant) - + Syncing %1 (%2 left) Synchronisation de %1 (%2 restant) - + %1 (%2, %3) %1 (%2, %3) - + Up to date À jour diff --git a/translations/client_gl.ts b/translations/client_gl.ts index b67c377ab5..53309aca28 100644 --- a/translations/client_gl.ts +++ b/translations/client_gl.ts @@ -2849,34 +2849,34 @@ Recomendámoslle que non o use. Abrir %1 nun navegador - + Unknown status Estado descoñecido - + Settings... Axustes... - + Details... Detalles... - + Help Axuda - + Quit %1 Saír de %1 - - + + Sign in... Rexistrarse... @@ -2897,54 +2897,54 @@ Recomendámoslle que non o use. - - + + Sign out Desconectar - + Sign out everywhere Desconectar de todos - + Sign in everywhere... Rexistrarse en todos... - + Crash now Only shows in debug mode to allow testing the crash handler Quebrou agora - + No items synced recently Non hai elementos sincronizados recentemente - + Discovering '%1' Atopando «%1» - + Syncing %1 of %2 (%3 left) Sincronizando %1 of %2 (restan %3) - + Syncing %1 (%2 left) Sincronizando %1 (restan %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Actualizado diff --git a/translations/client_hu.ts b/translations/client_hu.ts index 8a472359b2..bfe1b12418 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -2832,34 +2832,34 @@ It is not advisable to use it. - + Unknown status Ismeretlen állapot - + Settings... Beállítások... - + Details... Részletek... - + Help Súgó - + Quit %1 %1 kilépés - - + + Sign in... Belépés... @@ -2880,54 +2880,54 @@ It is not advisable to use it. - - + + Sign out Kilépés - + Sign out everywhere Kijelentkezés mindenhonnan - + Sign in everywhere... Kijelentkezés mindenhonnan... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently - + Discovering '%1' '%1' felderítése - + Syncing %1 of %2 (%3 left) %1/%2 szinkronizálása (%3 maradt) - + Syncing %1 (%2 left) %1 szinkronizálása (%2 maradt) - + %1 (%2, %3) - + Up to date Naprakész diff --git a/translations/client_it.ts b/translations/client_it.ts index 836c569851..8d0e799588 100644 --- a/translations/client_it.ts +++ b/translations/client_it.ts @@ -772,17 +772,17 @@ Totale tempo rimanente %5 Waiting... - + Attendere... Waiting for %n other folder(s)... - + In attesa di %n altra cartella...In attesa di %n altre cartelle... Preparing to sync... - + Preparazione della sincronizzazione... @@ -2849,34 +2849,34 @@ Non è consigliabile utilizzarlo. Apri %1 nel browser... - + Unknown status Stato sconosciuto - + Settings... Impostazioni... - + Details... Dettagli... - + Help Aiuto - + Quit %1 Esci da %1 - - + + Sign in... Accedi... @@ -2897,54 +2897,54 @@ Non è consigliabile utilizzarlo. - - + + Sign out Esci - + Sign out everywhere Disconnetti ovunque - + Sign in everywhere... Accedi ovunque... - + Crash now Only shows in debug mode to allow testing the crash handler Chiusura immediata - + No items synced recently Nessun elemento sincronizzato di recente - + Discovering '%1' Rilevamento '%1' - + Syncing %1 of %2 (%3 left) Sincronizzazione di %1 di %2 (%3 rimanenti) - + Syncing %1 (%2 left) Sincronizzazione di %1 (%2 rimanenti) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Aggiornato diff --git a/translations/client_ja.ts b/translations/client_ja.ts index cec6aed70c..e1be63caea 100644 --- a/translations/client_ja.ts +++ b/translations/client_ja.ts @@ -2846,34 +2846,34 @@ It is not advisable to use it. %1をブラウザーで開く - + Unknown status 不明な状態 - + Settings... 設定... - + Details... 詳細... - + Help ヘルプ - + Quit %1 %1 を終了 - - + + Sign in... サインイン... @@ -2894,54 +2894,54 @@ It is not advisable to use it. - - + + Sign out サインアウト - + Sign out everywhere 全サーバーからサインアウト - + Sign in everywhere... 全サーバーにサインイン... - + Crash now Only shows in debug mode to allow testing the crash handler クラッシュしました。 - + No items synced recently 最近同期されたアイテムはありません。 - + Discovering '%1' '%1'を検索中 - + Syncing %1 of %2 (%3 left) 同期中 %2 中 %1 (残り %3) - + Syncing %1 (%2 left) 同期中 %1 (残り %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date 最新です diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index 35b8637e0b..52db19bb8e 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -2843,34 +2843,34 @@ Det er ikke tilrådelig å bruke den. Åpne %1 i nettleser - + Unknown status Ukjent status - + Settings... Innstillinger... - + Details... Detaljer... - + Help Hjelp - + Quit %1 Avslutt %1 - - + + Sign in... Logg inn... @@ -2891,54 +2891,54 @@ Det er ikke tilrådelig å bruke den. - - + + Sign out Logg ut - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler Krasj nå - + No items synced recently Ingenting synkronisert nylig - + Discovering '%1' Påviser '%1' - + Syncing %1 of %2 (%3 left) Synkroniserer %1 av %2 (%3 gjenstår) - + Syncing %1 (%2 left) Synkroniserer %1 (%2 gjenstår) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Oppdatert diff --git a/translations/client_nl.ts b/translations/client_nl.ts index 0682e81a3b..489c691906 100644 --- a/translations/client_nl.ts +++ b/translations/client_nl.ts @@ -2852,34 +2852,34 @@ We adviseren deze site niet te gebruiken. Open %1 in browser - + Unknown status Onbekende status - + Settings... Instellingen... - + Details... Details ... - + Help Help - + Quit %1 %1 afsluiten - - + + Sign in... Inloggen... @@ -2900,54 +2900,54 @@ We adviseren deze site niet te gebruiken. - - + + Sign out Uitloggen - + Sign out everywhere Overal afmelden - + Sign in everywhere... Overal aanmelden - + Crash now Only shows in debug mode to allow testing the crash handler Crash nu - + No items synced recently Recent niets gesynchroniseerd - + Discovering '%1' '%1' onderzoeken - + Syncing %1 of %2 (%3 left) Sync %1 van %2 (%3 over) - + Syncing %1 (%2 left) Sync %1 (%2 over) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Bijgewerkt diff --git a/translations/client_pl.ts b/translations/client_pl.ts index bb633b9362..3bb9770e5e 100644 --- a/translations/client_pl.ts +++ b/translations/client_pl.ts @@ -2839,34 +2839,34 @@ Niezalecane jest jego użycie. Otwórz %1 w przeglądarce - + Unknown status Nieznany status - + Settings... Ustawienia... - + Details... Szczegóły... - + Help Pomoc - + Quit %1 Wyjdź %1 - - + + Sign in... Loguję... @@ -2887,54 +2887,54 @@ Niezalecane jest jego użycie. - - + + Sign out Wyloguj - + Sign out everywhere Wyloguj z wszystkich - + Sign in everywhere... Zaloguj do wszystkich... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently Brak ostatnich synchronizacji - + Discovering '%1' Rozpoznaję '%1' - + Syncing %1 of %2 (%3 left) Synchronizacja %1 z %2 (%3 pozostało) - + Syncing %1 (%2 left) Synchronizuję %1 (%2 pozostało) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Aktualne diff --git a/translations/client_pt.ts b/translations/client_pt.ts index 396c35b90a..3218504cf1 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -2845,34 +2845,34 @@ It is not advisable to use it. Abrir %1 no browser - + Unknown status Estado desconhecido - + Settings... Configurações... - + Details... Detalhes... - + Help Ajuda - + Quit %1 Sair do %1 - - + + Sign in... Iniciar sessão... @@ -2893,54 +2893,54 @@ It is not advisable to use it. - - + + Sign out Terminar sessão - + Sign out everywhere Terminar a sessão em todo o lado - + Sign in everywhere... Iniciar a sessão em todo o lado... - + Crash now Only shows in debug mode to allow testing the crash handler Crash agora - + No items synced recently Sem itens sincronizados recentemente - + Discovering '%1' Descobrindo '%1' - + Syncing %1 of %2 (%3 left) Sincronizar %1 de %2 (%3 faltando) - + Syncing %1 (%2 left) A sincronizar %1 (%2 em falta) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Atualizado diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index 9b1b9bb64a..920ef6cc92 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -17,7 +17,7 @@ Pick a local folder on your computer to sync - Selecione um diretório no seu computador para ser sincronizado: + Selecione um diretório no seu computador para ser sincronizado @@ -173,27 +173,27 @@ Connected to %1. - Conectado a %1 + Conectado a %1. Server %1 is temporarily unavailable. - O Servidor %1 está temporariamente indisponível + O Servidor %1 está temporariamente indisponível. Signed out from %1. - Assibndado por %1 + Assibndado por %1. No connection to %1 at %2. - Sem conexão para %1 em %2 + Sem conexão para %1 em %2. There are new folders that were not synchronized because they are too big: %1 - Há novas pastas que não foram sincronizados, porque elas são muito grandes: 1% + Há novas pastas que não foram sincronizados, porque elas são muito grandes: %1 @@ -606,7 +606,7 @@ Você tem certeza que quer executar esta operação? User Abort. - Usuário Abortou + Usuário Abortou. @@ -762,7 +762,7 @@ Você tem certeza que quer executar esta operação? %1 of %2, file %3 of %4 Total time left %5 %1 de %2, arquivo %3 de %4 -Total de tempo que falta 5% +Total de tempo que falta %5 @@ -772,17 +772,17 @@ Total de tempo que falta 5% Waiting... - + Esperando... Waiting for %n other folder(s)... - + Esperando por %n outra pasta...Esperando por %n outras pastas... Preparing to sync... - + Preparando para sincronizar... @@ -1400,7 +1400,7 @@ por privilégios adicionais durante o processo. %1 folder '%2' is synced to local folder '%3' - %1 Pasta '% 2' está sincronizada com pasta local '% 3' + %1 Pasta '%2' está sincronizada com pasta local '%3' @@ -1504,7 +1504,7 @@ It is not advisable to use it. <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> - <font color="green">Conectado com sucesso a %1: 2% versão %3 (%4)</font><br/><br/> + <font color="green">Conectado com sucesso a %1: %2 versão %3 (%4)</font><br/><br/> @@ -1765,7 +1765,7 @@ It is not advisable to use it. Attention, possible case sensitivity clash with %1 - Atenção, possível caso de sensibilidade de minúscula/maiúscula, choque com 1% + Atenção, possível caso de sensibilidade de minúscula/maiúscula, choque com %1 @@ -2014,7 +2014,7 @@ It is not advisable to use it. The proxy server needs a username and password. - O servidor de proxy necessita de usuário e senha + O servidor de proxy necessita de usuário e senha. @@ -2341,7 +2341,7 @@ It is not advisable to use it. State/Province: - Estado/Província + Estado/Província: @@ -2849,34 +2849,34 @@ It is not advisable to use it. Abrir %1 no navegador - + Unknown status Status desconhecido - + Settings... Configurações... - + Details... Detalhes... - + Help Ajuda - + Quit %1 Sair %1 - - + + Sign in... Conectar em... @@ -2897,54 +2897,54 @@ It is not advisable to use it. - - + + Sign out Sair - + Sign out everywhere Sair de todos os lugares - + Sign in everywhere... Desconectar de todos os lugares... - + 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 - + Discovering '%1' Descobrir '%1' - + Syncing %1 of %2 (%3 left) Sincronizar %1 de %2 (%3 faltando) - + Syncing %1 (%2 left) Sincronizando %1 (%2 faltando) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Até a data @@ -3085,7 +3085,7 @@ It is not advisable to use it. &Username: - Nome de &Usuário + Nome de &Usuário: @@ -3100,7 +3100,7 @@ It is not advisable to use it. Enter the ownCloud password. - Digite a senha ownCloud: + Digite a senha ownCloud. @@ -3120,7 +3120,7 @@ It is not advisable to use it. Enter the url of the ownCloud you want to connect to (without http or https). - Digite a URL do ownCloud que você deseja se conectar (sem http ou https) + Digite a URL do ownCloud que você deseja se conectar (sem http ou https). diff --git a/translations/client_ru.ts b/translations/client_ru.ts index 53fd3cea82..300749e3c4 100644 --- a/translations/client_ru.ts +++ b/translations/client_ru.ts @@ -2854,34 +2854,34 @@ It is not advisable to use it. Открыть %1 в браузере - + Unknown status Неизвестный статус - + Settings... Настройки... - + Details... Детали... - + Help Помощь - + Quit %1 Закрыть %1 - - + + Sign in... Войти... @@ -2902,54 +2902,54 @@ It is not advisable to use it. - - + + Sign out Выйти из аккаунта - + Sign out everywhere Выйти везде - + Sign in everywhere... Войти везде... - + Crash now Only shows in debug mode to allow testing the crash handler Критическая ошибка! - + No items synced recently Недавно ничего не синхронизировалось - + Discovering '%1' Ищем '%1' - + Syncing %1 of %2 (%3 left) Синхронизация %1 из %2 (осталось %3) - + Syncing %1 (%2 left) Синхронизация %1 (осталось %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Актуальная версия diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 83b7bae1cf..345fb293d2 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -2845,34 +2845,34 @@ Nie je vhodné ju používať. Otvoriť %1 v prehliadači - + Unknown status Neznámy stav - + Settings... Nastavenia... - + Details... Podrobnosti... - + Help Pomoc - + Quit %1 Ukončiť %1 - - + + Sign in... Prihlásiť do... @@ -2893,54 +2893,54 @@ Nie je vhodné ju používať. - - + + Sign out Odhlásiť - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler Zlyhanie - + No items synced recently Žiadne nedávno synchronizované položky - + Discovering '%1' Prehľadávam '%1' - + Syncing %1 of %2 (%3 left) Synchronizuje sa %1 z %2 (zostáva %3) - + Syncing %1 (%2 left) Synchronizuje sa %1 (zostáva %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Až do dnešného dňa diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 2177e970f2..f828971d1e 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -2839,34 +2839,34 @@ Uporaba ni priporočljiva. Odpri %1 v brskalniku - + Unknown status Neznano stanje - + Settings... Nastavitve ... - + Details... Podrobnosti ... - + Help Pomoč - + Quit %1 Končaj %1 - - + + Sign in... Prijava ... @@ -2887,54 +2887,54 @@ Uporaba ni priporočljiva. - - + + Sign out Odjava - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently Ni nedavno usklajenih predmetov - + Discovering '%1' Poteka preučevanje '%1' - + Syncing %1 of %2 (%3 left) Poteka usklajevanje %1 od %2 (preostaja %3) - + Syncing %1 (%2 left) Usklajevanje %1 (%2 do konca) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Ni posodobitev diff --git a/translations/client_sr.ts b/translations/client_sr.ts index 79f6c6ece5..f49f41952d 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -2845,34 +2845,34 @@ It is not advisable to use it. Отвори %1 у прегледачу - + Unknown status Непознато стање - + Settings... Поставке... - + Details... Детаљи... - + Help Помоћ - + Quit %1 Напусти %1 - - + + Sign in... Пријави се... @@ -2893,54 +2893,54 @@ It is not advisable to use it. - - + + Sign out Одјави се - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler Падни сада - + No items synced recently Ништа није недавно синхронизовано - + Discovering '%1' Откривам „%1“ - + Syncing %1 of %2 (%3 left) Синхронизујем %1 од %2 (преостало %3) - + Syncing %1 (%2 left) Синхронизујем %1 (преостало %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Ажурно diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 9457503476..34b75bf723 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -2838,34 +2838,34 @@ Det är inte lämpligt använda den. Öppna %1 i webbläsaren - + Unknown status Okänd status - + Settings... Inställningar... - + Details... Detaljer... - + Help Hjälp - + Quit %1 Avsluta %1 - - + + Sign in... Logga in... @@ -2886,54 +2886,54 @@ Det är inte lämpligt använda den. - - + + Sign out Logga ut - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently Inga filer har synkroniseras nyligen - + Discovering '%1' Söker igenom '%1' - + Syncing %1 of %2 (%3 left) Synkroniserar %1 av %2 (%3 kvar) - + Syncing %1 (%2 left) Synkroniserar %1 (%2 kvar) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Aktuell version diff --git a/translations/client_th.ts b/translations/client_th.ts index b4a2f76848..52600119b2 100644 --- a/translations/client_th.ts +++ b/translations/client_th.ts @@ -2841,34 +2841,34 @@ It is not advisable to use it. เปิด %1 ในเบราว์เซอร์ - + Unknown status สถานะที่ไม่รู้จัก - + Settings... ตั้งค่า... - + Details... รายละเอียด... - + Help ช่วยเหลือ - + Quit %1 ออก %1 - - + + Sign in... เข้าสู่ระบบ... @@ -2889,54 +2889,54 @@ It is not advisable to use it. - - + + Sign out ออกจากระบบ - + Sign out everywhere ออกจากระบบได้จากทุกที่ - + Sign in everywhere... เข้าสู่ระบบได้จากทุกที่ ... - + Crash now Only shows in debug mode to allow testing the crash handler ความผิดพลาดในขณะนี้ - + No items synced recently ไม่มีรายการที่ถูกประสานข้อมูลเมื่อเร็วๆ นี้ - + Discovering '%1' กำลังค้นหา '%1' - + Syncing %1 of %2 (%3 left) กำลังประสานข้อมูล %1 จาก %2 (เหลือ %3) - + Syncing %1 (%2 left) กำลังประสานข้อมูล %1 (เหลือ %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date ถึงวันที่ diff --git a/translations/client_tr.ts b/translations/client_tr.ts index ef5bd7fd80..63af3997bb 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -2849,34 +2849,34 @@ Kullanmanız önerilmez. %1'ı tarayıcıda aç - + Unknown status Bilinmeyen durum - + Settings... Ayarlar... - + Details... Ayrıntılar... - + Help Yardım - + Quit %1 %1'tan çık - - + + Sign in... Oturum aç... @@ -2897,54 +2897,54 @@ Kullanmanız önerilmez. - - + + Sign out Oturumu kapat - + Sign out everywhere Her yerden oturumları kapat - + Sign in everywhere... Her yerde oturum aç... - + 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 - + Discovering '%1' Ortaya çıkarılan: %1 - + Syncing %1 of %2 (%3 left) Eşitlenen %1/%2 (%3 kaldı) - + Syncing %1 (%2 left) Eşitlenen %1 (%2 kaldı) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Güncel diff --git a/translations/client_uk.ts b/translations/client_uk.ts index ee1051f944..f563aab493 100644 --- a/translations/client_uk.ts +++ b/translations/client_uk.ts @@ -2844,34 +2844,34 @@ It is not advisable to use it. Відкрити %1 в браузері - + Unknown status Невідомий статус - + Settings... Налаштування... - + Details... Деталі... - + Help Допомога - + Quit %1 Закрити %1 - - + + Sign in... Ввійти... @@ -2892,54 +2892,54 @@ It is not advisable to use it. - - + + Sign out Вийти - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler Критична помилка - + No items synced recently Нещодавно нічого не синхронізувалося - + Discovering '%1' Виявлення '%1' - + Syncing %1 of %2 (%3 left) Синхронізовано %1 з %2 (залишилося %3) - + Syncing %1 (%2 left) Синхронізовано %1 (залишилося %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date Оновлено diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index 913d356e02..f2c815d0d6 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -2839,34 +2839,34 @@ It is not advisable to use it. 在浏览器中打开%1 - + Unknown status 未知状态 - + Settings... 设置... - + Details... 细节... - + Help 帮助 - + Quit %1 退出 %1 - - + + Sign in... 登录... @@ -2887,54 +2887,54 @@ It is not advisable to use it. - - + + Sign out 注销 - + Sign out everywhere 从所有位置登出 - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler 发生了崩溃 - + No items synced recently 近期没有项目被同步 - + Discovering '%1' 正在发现 '%1' - + Syncing %1 of %2 (%3 left) 同步 %2 中的 %1 (剩余 %3) - + Syncing %1 (%2 left) 同步 %1 (剩余 %2) - + %1 (%2, %3) %1 (%2, %3) - + Up to date 更新 diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index 46d9154e27..d1bcc088e3 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -2832,34 +2832,34 @@ It is not advisable to use it. 瀏覽器中開啟 %1 - + Unknown status 未知狀態 - + Settings... 設定… - + Details... 細節… - + Help 說明 - + Quit %1 離開 %1 - - + + Sign in... 登入中... @@ -2880,54 +2880,54 @@ It is not advisable to use it. - - + + Sign out 登出 - + Sign out everywhere - + Sign in everywhere... - + Crash now Only shows in debug mode to allow testing the crash handler - + No items synced recently 最近沒有項目被同步 - + Discovering '%1' 正在檢索 '%1' - + Syncing %1 of %2 (%3 left) - + Syncing %1 (%2 left) - + %1 (%2, %3) - + Up to date 最新的