diff --git a/client.qrc b/client.qrc index 00db6b163b9c..2abbd8fc8047 100644 --- a/client.qrc +++ b/client.qrc @@ -38,6 +38,7 @@ resources/copy.svg resources/state-sync.svg resources/add.png + resources/state-info.svg diff --git a/resources/state-info.svg b/resources/state-info.svg new file mode 100644 index 000000000000..14b52e326b6f --- /dev/null +++ b/resources/state-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/gui/activitylistmodel.cpp b/src/gui/activitylistmodel.cpp index 5b084784b48c..d35fd1368a20 100644 --- a/src/gui/activitylistmodel.cpp +++ b/src/gui/activitylistmodel.cpp @@ -103,10 +103,12 @@ QVariant ActivityListModel::data(const QModelIndex &index, int role) const || a._status == SyncFileItem::BlacklistedError) { return QIcon(QLatin1String(":/client/resources/state-error.svg")); } else if(a._status == SyncFileItem::SoftError - || a._status == SyncFileItem::FileIgnored || a._status == SyncFileItem::Conflict - || a._status == SyncFileItem::Restoration){ + || a._status == SyncFileItem::Restoration + || a._status == SyncFileItem::FileLocked){ return QIcon(QLatin1String(":/client/resources/state-warning.svg")); + } else if(a._status == SyncFileItem::FileIgnored){ + return QIcon(QLatin1String(":/client/resources/state-info.svg")); } return QIcon(QLatin1String(":/client/resources/state-sync.svg")); } diff --git a/src/gui/activitywidget.cpp b/src/gui/activitywidget.cpp index 71a86dd28b6d..c293a0384a8a 100644 --- a/src/gui/activitywidget.cpp +++ b/src/gui/activitywidget.cpp @@ -121,6 +121,11 @@ void ActivityWidget::slotProgressInfo(const QString &folder, const ProgressInfo continue; } + if(activity._status == SyncFileItem::FileLocked && !QFileInfo(f->path() + activity._file).exists()){ + _model->removeActivityFromActivityList(activity); + continue; + } + if(activity._status == SyncFileItem::FileIgnored && !QFileInfo(f->path() + activity._file).exists()){ _model->removeActivityFromActivityList(activity); diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index 97625c5c64a0..f5aedacf07f1 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -351,6 +351,10 @@ void Folder::showSyncResultPopup() createGuiLog(_syncResult.firstItemError()->_file, LogStatusError, errorCount); } + if (int lockedCount = _syncResult.numLockedItems()) { + createGuiLog(_syncResult.firstItemLocked()->_file, LogStatusFileLocked, lockedCount); + } + qCInfo(lcFolder) << "Folder sync result: " << int(_syncResult.status()); } diff --git a/src/gui/folder.h b/src/gui/folder.h index 05bd62a4e4f6..48a2e52f70ec 100644 --- a/src/gui/folder.h +++ b/src/gui/folder.h @@ -344,7 +344,8 @@ private slots: LogStatusNew, LogStatusError, LogStatusConflict, - LogStatusUpdated + LogStatusUpdated, + LogStatusFileLocked }; void createGuiLog(const QString &filename, LogStatus status, int count, diff --git a/src/gui/sharedialog.cpp b/src/gui/sharedialog.cpp index 57126988bfca..bc45eed20ab6 100644 --- a/src/gui/sharedialog.cpp +++ b/src/gui/sharedialog.cpp @@ -194,7 +194,7 @@ void ShareDialog::slotSharesFetched(const QList> &shares) const QString versionString = _accountState->account()->serverVersion(); qCInfo(lcSharing) << versionString << "Fetched" << shares.count() << "shares"; foreach (auto share, shares) { - if (share->getShareType() != Share::TypeLink) { + if (share->getShareType() != Share::TypeLink || share->getUidOwner() != share->account()->davUser()) { continue; } diff --git a/src/gui/sharelinkwidget.ui b/src/gui/sharelinkwidget.ui index c0b85261f668..c2fe47103f5f 100644 --- a/src/gui/sharelinkwidget.ui +++ b/src/gui/sharelinkwidget.ui @@ -7,7 +7,7 @@ 0 0 350 - 136 + 160 @@ -29,6 +29,131 @@ 0 + + + + + 1 + 0 + + + + + + + + + 1 + 0 + + + + Password: + + + 20 + + + + + + + false + + + + :/client/resources/more.svg:/client/resources/more.svg + + + QToolButton::InstantPopup + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 123 + 121 + 134 + + + + + + + + TextLabel + + + Qt::PlainText + + + true + + + + + + + + 1 + 0 + + + + QLineEdit::Password + + + + + + + + :/client/resources/confirm.svg:/client/resources/confirm.svg + + + true + + + + + + + + :/client/resources/confirm.svg:/client/resources/confirm.svg + + + true + + + @@ -102,60 +227,6 @@ - - - - false - - - - :/client/resources/more.svg:/client/resources/more.svg - - - QToolButton::InstantPopup - - - - - - - - 1 - 0 - - - - Password: - - - 20 - - - - - - - - 1 - 0 - - - - QLineEdit::Password - - - - - - - - :/client/resources/confirm.svg:/client/resources/confirm.svg - - - true - - - @@ -172,77 +243,6 @@ - - - - - 1 - 0 - - - - - - - - - :/client/resources/confirm.svg:/client/resources/confirm.svg - - - true - - - - - - - - - - - - 255 - 0 - 0 - - - - - - - - - 255 - 0 - 0 - - - - - - - - - 123 - 121 - 134 - - - - - - - - TextLabel - - - Qt::PlainText - - - true - - - diff --git a/src/gui/sharemanager.cpp b/src/gui/sharemanager.cpp index 4bc32182aec9..1f96f2c6fae1 100644 --- a/src/gui/sharemanager.cpp +++ b/src/gui/sharemanager.cpp @@ -52,12 +52,16 @@ static void updateFolder(const AccountPtr &account, const QString &path) Share::Share(AccountPtr account, const QString &id, + const QString &uidowner, + const QString &ownerDisplayName, const QString &path, const ShareType shareType, const Permissions permissions, const QSharedPointer shareWith) : _account(account) , _id(id) + , _uidowner(uidowner) + , _ownerDisplayName(ownerDisplayName) , _path(path) , _shareType(shareType) , _permissions(permissions) @@ -80,6 +84,16 @@ QString Share::getId() const return _id; } +QString Share::getUidOwner() const +{ + return _uidowner; +} + +QString Share::getOwnerDisplayName() const +{ + return _ownerDisplayName; +} + Share::ShareType Share::getShareType() const { return _shareType; @@ -153,6 +167,8 @@ bool LinkShare::isPasswordSet() const LinkShare::LinkShare(AccountPtr account, const QString &id, + const QString &uidowner, + const QString &ownerDisplayName, const QString &path, const QString &name, const QString &token, @@ -160,7 +176,7 @@ LinkShare::LinkShare(AccountPtr account, bool passwordSet, const QUrl &url, const QDate &expireDate) - : Share(account, id, path, Share::TypeLink, permissions) + : Share(account, id, uidowner, ownerDisplayName, path, Share::TypeLink, permissions) , _name(name) , _token(token) , _passwordSet(passwordSet) @@ -393,6 +409,8 @@ QSharedPointer ShareManager::parseLinkShare(const QJsonObject &data) return QSharedPointer(new LinkShare(_account, data.value("id").toVariant().toString(), // "id" used to be an integer, support both + data.value("uid_owner").toString(), + data.value("displayname_owner").toString(), data.value("path").toString(), data.value("name").toString(), data.value("token").toString(), @@ -410,6 +428,8 @@ QSharedPointer ShareManager::parseShare(const QJsonObject &data) return QSharedPointer(new Share(_account, data.value("id").toVariant().toString(), // "id" used to be an integer, support both + data.value("uid_owner").toVariant().toString(), + data.value("displayname_owner").toVariant().toString(), data.value("path").toString(), (Share::ShareType)data.value("share_type").toInt(), (Share::Permissions)data.value("permissions").toInt(), diff --git a/src/gui/sharemanager.h b/src/gui/sharemanager.h index 18d060bae8ad..db48771b18ce 100644 --- a/src/gui/sharemanager.h +++ b/src/gui/sharemanager.h @@ -54,6 +54,8 @@ class Share : public QObject */ explicit Share(AccountPtr account, const QString &id, + const QString &owner, + const QString &ownerDisplayName, const QString &path, const ShareType shareType, const Permissions permissions = SharePermissionDefault, @@ -71,6 +73,16 @@ class Share : public QObject */ QString getId() const; + /* + * Get the uid_owner + */ + QString getUidOwner() const; + + /* + * Get the owner display name + */ + QString getOwnerDisplayName() const; + /* * Get the shareType */ @@ -110,6 +122,8 @@ class Share : public QObject protected: AccountPtr _account; QString _id; + QString _uidowner; + QString _ownerDisplayName; QString _path; ShareType _shareType; Permissions _permissions; @@ -134,6 +148,8 @@ class LinkShare : public Share public: explicit LinkShare(AccountPtr account, const QString &id, + const QString &uidowner, + const QString &ownerDisplayName, const QString &path, const QString &name, const QString &token, diff --git a/src/gui/shareusergroupwidget.cpp b/src/gui/shareusergroupwidget.cpp index d576b1edb167..bb0ebad65853 100644 --- a/src/gui/shareusergroupwidget.cpp +++ b/src/gui/shareusergroupwidget.cpp @@ -190,13 +190,23 @@ void ShareUserGroupWidget::slotSharesFetched(const QList> layout->setContentsMargins(0, 0, 0, 0); int x = 0; int height = 0; + QList linkOwners({}); foreach (const auto &share, shares) { // We don't handle link shares, only TypeUser or TypeGroup if (share->getShareType() == Share::TypeLink) { + if(!share->getUidOwner().isEmpty() && + share->getUidOwner() != share->account()->davUser()){ + linkOwners.append(share->getOwnerDisplayName()); + } continue; } + // the owner of the file that shared it first + if(x == 0 && !share->getUidOwner().isEmpty()){ + _ui->mainOwnerLabel->setText(QString("Shared with you by ").append(share->getOwnerDisplayName())); + } + ShareUserLine *s = new ShareUserLine(share, _maxSharingPermissions, _isFile, _parentScrollArea); connect(s, &ShareUserLine::resizeRequested, this, &ShareUserGroupWidget::slotAdjustScrollWidgetSize); connect(s, &ShareUserLine::visualDeletionDone, this, &ShareUserGroupWidget::getShares); @@ -210,7 +220,18 @@ void ShareUserGroupWidget::slotSharesFetched(const QList> } } - scrollArea->setFrameShape(x > 3 ? QFrame::StyledPanel : QFrame::NoFrame); + foreach (const QString &owner, linkOwners) { + auto ownerLabel = new QLabel(QString(owner + " shared via link")); + layout->addWidget(ownerLabel); + ownerLabel->setVisible(true); + + x++; + if (x <= 6) { + height = newViewPort->sizeHint().height(); + } + } + + scrollArea->setFrameShape(x > 6 ? QFrame::StyledPanel : QFrame::NoFrame); scrollArea->setVisible(!shares.isEmpty()); scrollArea->setFixedHeight(height); scrollArea->setWidget(newViewPort); diff --git a/src/gui/shareusergroupwidget.ui b/src/gui/shareusergroupwidget.ui index 51682bb05601..ed1e43e7f799 100644 --- a/src/gui/shareusergroupwidget.ui +++ b/src/gui/shareusergroupwidget.ui @@ -32,6 +32,13 @@ 0 + + + + + + + diff --git a/src/libsync/owncloudpropagator.cpp b/src/libsync/owncloudpropagator.cpp index bf358153efd8..ac03a1b97184 100644 --- a/src/libsync/owncloudpropagator.cpp +++ b/src/libsync/owncloudpropagator.cpp @@ -269,6 +269,7 @@ void PropagateItemJob::done(SyncFileItem::Status statusArg, const QString &error case SyncFileItem::FileIgnored: case SyncFileItem::NoStatus: case SyncFileItem::BlacklistedError: + case SyncFileItem::FileLocked: // nothing break; } diff --git a/src/libsync/owncloudpropagator_p.h b/src/libsync/owncloudpropagator_p.h index cb266a80d935..90841e53796b 100644 --- a/src/libsync/owncloudpropagator_p.h +++ b/src/libsync/owncloudpropagator_p.h @@ -93,7 +93,7 @@ inline SyncFileItem::Status classifyError(QNetworkReply::NetworkError nerror, if (anotherSyncNeeded) { *anotherSyncNeeded = true; } - return SyncFileItem::SoftError; + return SyncFileItem::FileLocked; } return SyncFileItem::NormalError; diff --git a/src/libsync/progressdispatcher.cpp b/src/libsync/progressdispatcher.cpp index e17279a53e0c..179d283193dd 100644 --- a/src/libsync/progressdispatcher.cpp +++ b/src/libsync/progressdispatcher.cpp @@ -91,7 +91,8 @@ bool Progress::isWarningKind(SyncFileItem::Status kind) return kind == SyncFileItem::SoftError || kind == SyncFileItem::NormalError || kind == SyncFileItem::FatalError || kind == SyncFileItem::FileIgnored || kind == SyncFileItem::Conflict || kind == SyncFileItem::Restoration - || kind == SyncFileItem::DetailError || kind == SyncFileItem::BlacklistedError; + || kind == SyncFileItem::DetailError || kind == SyncFileItem::BlacklistedError + || kind == SyncFileItem::FileLocked; } bool Progress::isIgnoredKind(SyncFileItem::Status kind) diff --git a/src/libsync/propagatedownload.cpp b/src/libsync/propagatedownload.cpp index 07c7c5f18c45..da2d88b82798 100644 --- a/src/libsync/propagatedownload.cpp +++ b/src/libsync/propagatedownload.cpp @@ -571,6 +571,12 @@ void PropagateDownloadFile::slotGetFinished() qCWarning(lcPropagateDownload) << "server replied 404, assuming file was deleted"; } + // Getting a 423 means that the file is locked + const bool fileLocked = _item->_httpErrorCode == 423; + if (fileLocked) { + qCWarning(lcPropagateDownload) << "server replied 423, file is Locked"; + } + // Don't keep the temporary file if it is empty or we // used a bad range header or the file's not on the server anymore. if (_tmpFile.size() == 0 || badRangeHeader || fileNotFound) { diff --git a/src/libsync/syncfileitem.h b/src/libsync/syncfileitem.h index 461627ba36c5..e054ab83a467 100644 --- a/src/libsync/syncfileitem.h +++ b/src/libsync/syncfileitem.h @@ -59,6 +59,7 @@ class SyncFileItem Conflict, FileIgnored, ///< The file is in the ignored list (or blacklisted with no retries left) + FileLocked, ///< The file is locked Restoration, ///< The file was restored because what should have been done was not allowed /** For errors that should only appear in the error view. diff --git a/src/libsync/syncfilestatustracker.cpp b/src/libsync/syncfilestatustracker.cpp index 6dc2514ff892..c492b34d54c5 100644 --- a/src/libsync/syncfilestatustracker.cpp +++ b/src/libsync/syncfilestatustracker.cpp @@ -105,7 +105,8 @@ static inline bool showWarningInSocketApi(const SyncFileItem &item) return item._instruction == CSYNC_INSTRUCTION_IGNORE || status == SyncFileItem::FileIgnored || status == SyncFileItem::Conflict - || status == SyncFileItem::Restoration; + || status == SyncFileItem::Restoration + || status == SyncFileItem::FileLocked; } SyncFileStatusTracker::SyncFileStatusTracker(SyncEngine *syncEngine) diff --git a/src/libsync/syncresult.cpp b/src/libsync/syncresult.cpp index 8550b4628e55..a3481c74fad2 100644 --- a/src/libsync/syncresult.cpp +++ b/src/libsync/syncresult.cpp @@ -28,6 +28,7 @@ SyncResult::SyncResult() , _numNewConflictItems(0) , _numOldConflictItems(0) , _numErrorItems(0) + , _numLockedItems(0) { } @@ -139,6 +140,13 @@ void SyncResult::processCompletedItem(const SyncFileItemPtr &item) _folderStructureWasChanged = true; } + if(item->_status == SyncFileItem::FileLocked){ + _numLockedItems++; + if (!_firstItemLocked) { + _firstItemLocked = item; + } + } + // Process the item to the gui if (item->_status == SyncFileItem::FatalError || item->_status == SyncFileItem::NormalError) { //: this displays an error string (%2) for a file %1 diff --git a/src/libsync/syncresult.h b/src/libsync/syncresult.h index 6c484ee4d2a2..1a0c680ca5cd 100644 --- a/src/libsync/syncresult.h +++ b/src/libsync/syncresult.h @@ -72,12 +72,16 @@ class OWNCLOUDSYNC_EXPORT SyncResult int numErrorItems() const { return _numErrorItems; } bool hasUnresolvedConflicts() const { return _numNewConflictItems + _numOldConflictItems > 0; } + int numLockedItems() const { return _numLockedItems; } + bool hasLockedFiles() const { return _numLockedItems > 0; } + const SyncFileItemPtr &firstItemNew() const { return _firstItemNew; } const SyncFileItemPtr &firstItemDeleted() const { return _firstItemDeleted; } const SyncFileItemPtr &firstItemUpdated() const { return _firstItemUpdated; } const SyncFileItemPtr &firstItemRenamed() const { return _firstItemRenamed; } const SyncFileItemPtr &firstNewConflictItem() const { return _firstNewConflictItem; } const SyncFileItemPtr &firstItemError() const { return _firstItemError; } + const SyncFileItemPtr &firstItemLocked() const { return _firstItemLocked; } void processCompletedItem(const SyncFileItemPtr &item); @@ -101,6 +105,7 @@ class OWNCLOUDSYNC_EXPORT SyncResult int _numNewConflictItems; int _numOldConflictItems; int _numErrorItems; + int _numLockedItems; SyncFileItemPtr _firstItemNew; SyncFileItemPtr _firstItemDeleted; @@ -108,6 +113,7 @@ class OWNCLOUDSYNC_EXPORT SyncResult SyncFileItemPtr _firstItemRenamed; SyncFileItemPtr _firstNewConflictItem; SyncFileItemPtr _firstItemError; + SyncFileItemPtr _firstItemLocked; }; } diff --git a/translations/client_bg.ts b/translations/client_bg.ts index 57d3790c0b17..48f606ef7ded 100644 --- a/translations/client_bg.ts +++ b/translations/client_bg.ts @@ -568,17 +568,17 @@ Приемане - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Възника грешка при запис на метаданните в базата данни @@ -750,120 +750,120 @@ %1 не може да бъде прочетен. - + %1 has been removed. %1 names a file. %1 е премахнат. - + %1 has been downloaded. %1 names a file. %1 е свален. - + %1 has been updated. %1 names a file. %1 е качен. - + %1 has been renamed to %2. %1 and %2 name files. %1 е преименуван на %2. - + %1 has been moved to %2. %1 е преместен в %2. - + %1 and %n other file(s) have been removed. %1 е премахнат.%1 и %n други файла са премахнати. - + %1 and %n other file(s) have been downloaded. %1 и %n друг файл са свалени.%1 и %n други файлове са свалени. - + %1 and %n other file(s) have been updated. %1 и %n друг файл са актуализирани.%1 и %n други файлове са актуализирани. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 е преименуван на %2.%1 е преименуван на %2 и %n други файла са преименувани. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 е преместен в %2.%1 е преместен в %2 и %n други файла са преместени. - + %1 has and %n other file(s) have sync conflicts. Възникна конфликт при синхронизирането на %1.Възникна конфликт при синхронизирането на %1 и %n други файла. - + %1 has a sync conflict. Please check the conflict file! Възникна конфликт при синхронизирането %1. Проверете файла! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 не може да бъде синхронизиран. За подробности проверете журнала.%1 и %n други файла не могат да бъдат синхронизирани. За подробности проверете журнала. - + %1 could not be synced due to an error. See the log for details. %1 не може да бъде синхронизиран поради грешка. За подробности проверете журнала. - + Sync Activity Активност от синхронизиране - + Could not read system exclude file - + A new folder larger than %1 MB has been added: %2. Добавена е нова папка по-голяма от %1 MB: %2. - + A folder from an external storage has been added. Добавена е папка от външно хранилище. - + Please go in the settings to select it if you wish to download it. Моля, отидете в настройки, ако желаете да го свалите. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,46 +880,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Засечено е резервно копие - + Normal Synchronisation Нормално синхронизиране - + Keep Local Files as Conflict @@ -2247,7 +2247,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database @@ -2275,32 +2275,32 @@ It is not advisable to use it. Свободното място на диска е по-малко от %1 - + File was deleted from server - + The file could not be downloaded completely. Целият файл не може да бъде свален. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database @@ -2313,7 +2313,7 @@ It is not advisable to use it. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2674,22 +2674,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: Парола: - + Expiration date: - + TextLabel @@ -2762,22 +2762,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... - + Copy link Копирай връзката - + No results for '%1' Няма резултат за '%1' - + I shared something with you Споделих нещо с вас @@ -2795,22 +2795,22 @@ It is not advisable to use it. може да редактира - + Can reshare Може да споделя повторно - + Can create Може да създава - + Can change Може да променя - + Can delete Може да изтрива @@ -3896,7 +3896,7 @@ It is not advisable to use it. Преди известно време - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_ca.ts b/translations/client_ca.ts index 72a27050c431..5c37cd1f6f4d 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + Aquest compte suporta xifratge d'extrem a extrem Enable encryption - + Activa el xifratge @@ -568,17 +568,17 @@ Accepta - + Synced Sincronitzat - + Retry all uploads Torna a provar totes les pujades - + <br/>Account %1 does not have activities enabled. <br/>El compte %1 no té les activitats habilitades. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database S'ha produït un error a l'escriure les metadades a la base de dades @@ -750,122 +750,122 @@ No es pot llegir %1. - + %1 has been removed. %1 names a file. S'ha suprimit '%1' - + %1 has been downloaded. %1 names a file. S'ha descarregat %1 - + %1 has been updated. %1 names a file. S'ha actualitzat %1 - + %1 has been renamed to %2. %1 and %2 name files. %1 s'ha renomenat a %2. - + %1 has been moved to %2. %1 s'ha mogut a %2. - + %1 and %n other file(s) have been removed. %1 i %n altre fitxer s'ha esborrat.%1 i %n altres fitxers s'han suprimit. - + %1 and %n other file(s) have been downloaded. %1 i %n altre fitxer s'han descarregat.%1 i %n altres fitxers s'han descarregat. - + %1 and %n other file(s) have been updated. %1 i %n altre fitxer s'han actualitzat.%1 i %n altres fitxers s'han actualitzat. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 s'ha reanomenat a %2 i %n altre fitxer s'ha reanomenat.%1 s'ha renomenat a %2 i %n altres fitxers s'han reanomenat. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 s'ha mogut a %2 i %n altre fitxer s'ha mogut.%1 s'ha mogut a %2 i %n altres fitxers s'han mogut. - + %1 has and %n other file(s) have sync conflicts. %1 i %n altre fitxer tenen conflictes de sincronització%1 i %n altres fitxers tenen conflictes de sincronització - + %1 has a sync conflict. Please check the conflict file! %1 té conflictes de sincronització. Comproveu el fitxer conflictiu! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 i %n altre fitxer no s'han sincronitzat per errors. Consulteu el registre per obtenir més informació.%1 i %n altres fitxers no s'han sincronitzat per errors. Consulteu el registre per obtenir més informació. - + %1 could not be synced due to an error. See the log for details. %1 no s'ha pogut sincronitzar degut a un error. Mireu el registre per més detalls. - + Sync Activity Activitat de sincronització - + Could not read system exclude file No s'ha pogut llegir el fitxer d'exclusió del sistema - + A new folder larger than %1 MB has been added: %2. S'ha afegit una carpeta de més de %1 MB: %2. - + A folder from an external storage has been added. S'ha afegit una carpeta d'una font d'emmagatzematge extern. - + Please go in the settings to select it if you wish to download it. Si us plau aneu al paràmetres per seleccionar si voleu descarregar-ho - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. La carpeta %1 es va crear, però es va excloure de la sincronització anteriorment. Les dades que hi ha dins no es sincronitzaran. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. El fitxer %1 es va crear, però es va excloure de la sincronització anteriorment. No es sincronitzarà. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -878,7 +878,7 @@ Això significa que és possible que el client de sincronització no pugui carre %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -889,22 +889,22 @@ Si decidiu conservar els fitxers, es tornarà a sincronitzar amb el servidor si Si decidiu suprimir els fitxers, no estaran disponibles per a vosaltres, tret que en sigueu el propietari. - + Download new files? Descarregar nous fitxers? - + Download new files Descarrega nous fitxers - + Keep local files Manté els fitxers locals - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -913,7 +913,7 @@ Esteu segurs que voleu sincronitzar aquestes accions amb el servidor? Si s’ha produït un accident i decidiu conservar els vostres fitxers, es tornaran a sincronitzar des del servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -922,17 +922,17 @@ Això pot ser per què es va restablir una còpia de seguretat al servidor. Continuar la sincronització com a normal farà que tots els vostres fitxers siguin sobreescrits per un fitxer anterior en un estat anterior. Voleu mantenir els fitxers locals més recents com a fitxers de conflicte? - + Backup detected Còpia de seguretat detectada - + Normal Synchronisation Sincronització normal - + Keep Local Files as Conflict Manté els fitxers locals com a conflicte @@ -2265,7 +2265,7 @@ No és aconsellable fer-la servir. OCC::PropagateDirectory - + Error writing metadata to the database S'ha produït un error en escriure metadades a la base de dades @@ -2293,32 +2293,32 @@ No és aconsellable fer-la servir. L'espai lliure del disc dur és inferior a %1 - + File was deleted from server El fitxer s'ha suprimit del servidor - + The file could not be downloaded completely. No s'ha pogut descarregar el fitxer completament. - + The downloaded file is empty despite that the server announced it should have been %1. El fitxer descarregat és buit malgrat que el servidor ha dit que hauria d'haver estat %1. - + File %1 cannot be saved because of a local file name clash! El fitxer %1 no es pot desar a causa d’un conflicte de nom amb un fitxer local. - + File has changed since discovery El fitxer ha canviat des que es va descobrir - + Error writing metadata to the database S'ha produït un error en escriure metadades a la base de dades @@ -2331,7 +2331,7 @@ No és aconsellable fer-la servir. ; Ha fallat la restauració: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 S'ha suprimit un fitxer o carpeta d’una compartició de només lectura, però la restauració ha fallat: %1 @@ -2692,22 +2692,22 @@ No és aconsellable fer-la servir. OCC::ShareLinkWidget - + &Share link &Comparteix l'enllaç - + Password: Contrasenya: - + Expiration date: Data de caducitat: - + TextLabel TextLabel @@ -2780,22 +2780,22 @@ No és aconsellable fer-la servir. OCC::ShareUserGroupWidget - + Share with users or groups ... Comparteix amb usuaris o grups ... - + Copy link Copia l'enllaç - + No results for '%1' No hi ha resultats per '%1' - + I shared something with you He compartit una cosa amb tu @@ -2813,22 +2813,22 @@ No és aconsellable fer-la servir. pot editar - + Can reshare Pot re-compartir - + Can create Pot crear - + Can change Pot canviar - + Can delete Pot suprimir @@ -2856,7 +2856,7 @@ No és aconsellable fer-la servir. SSL Cipher Debug View - + Visor del Depurador de xifratge SSL @@ -3421,7 +3421,7 @@ No és aconsellable fer-la servir. The host "%1" provided an invalid certificate. Continue? - + El servidor "%1" ha proporcionat un certificat no vàlid. Voleu continuar? @@ -3619,7 +3619,7 @@ No és aconsellable fer-la servir. Crash now Only shows in debug mode to allow testing the crash handler - + Fallada ara @@ -3915,7 +3915,7 @@ No és aconsellable fer-la servir. Fa una estona - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_cs.ts b/translations/client_cs.ts index da8c6ad97507..8989c8abe985 100644 --- a/translations/client_cs.ts +++ b/translations/client_cs.ts @@ -568,17 +568,17 @@ Přijmout - + Synced Synchronizováno - + Retry all uploads Zkusit znovu všechna nahrání - + <br/>Account %1 does not have activities enabled. <br/>Účet %1 nemá zapnuté aktivity. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Chyba zápisu metadat do databáze @@ -750,119 +750,119 @@ %1 není čitelný. - + %1 has been removed. %1 names a file. %1 byl odebrán. - + %1 has been downloaded. %1 names a file. %1 byl stažen. - + %1 has been updated. %1 names a file. %1 byl aktualizován. - + %1 has been renamed to %2. %1 and %2 name files. %1 byl přejmenován na %2. - + %1 has been moved to %2. %1 byl přemístěn do %2. - + %1 and %n other file(s) have been removed. %1 soubor bude smazán.%1 a %n další soubory budou smazány.%1 a %n další soubory budou smazány.%1 a %n další soubory budou smazány. - + %1 and %n other file(s) have been downloaded. %1 soubor byl stažen.%1 a %n další soubory byly staženy.%1 a %n další soubory byly staženy.%1 a %n další soubory byly staženy. - + %1 and %n other file(s) have been updated. %1 soubor byl aktualizován.%1 a %n další soubory byly aktualizovány.%1 a %n další soubory byly aktualizovány.%1 a %n další soubory byly aktualizovány. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 byl přejmenován na %2.%1 byl přejmenován na %2 a %n další soubory byly přejmenovány.%1 byl přejmenován na %2 a %n další soubory byly přejmenovány.%1 byl přejmenován na %2 a %n další soubory byly přejmenovány. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 byl přesunut do %2.%1 byl přesunut do %2 a %n dalších souborů bylo přesunuto.%1 byl přesunut do %2 a %n dalších souborů bylo přesunuto.%1 byl přesunut do %2 a %n dalších souborů bylo přesunuto. - + %1 has and %n other file(s) have sync conflicts. %1 má problém se synchronizací.%1 a %n dalších souborů má problém se synchronizací.%1 a %n dalších souborů má problém se synchronizací.%1 a %n dalších souborů má problém se synchronizací. - + %1 has a sync conflict. Please check the conflict file! %1 má problém se synchronizací. Zkontrolujte soubor s konflikty. - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 soubor nemůže být synchronizován kvůli chybám. Shlédněte log pro detaily.%1 a %n dalších souborů nemohou být synchronizovány kvůli chybám. Shlédněte log pro detaily.%1 a %n dalších souborů nemohou být synchronizovány kvůli chybám. Shlédněte log pro detaily.%1 a %n dalších souborů nemohou být synchronizovány kvůli chybám. Shlédněte log pro detaily. - + %1 could not be synced due to an error. See the log for details. %1 nebyl kvůli chybě synchronizován. Podrobnosti jsou k nalezení v záznamu událostí. - + Sync Activity Průběh synchronizace - + Could not read system exclude file Nezdařilo se přečtení systémového exclude souboru - + A new folder larger than %1 MB has been added: %2. Nová složka větší než %1 MB byla přidána: %2. - + A folder from an external storage has been added. Byla přidána složka z externího úložiště. - + Please go in the settings to select it if you wish to download it. Pokud to chcete stáhnout, jděte do nastavení a vyberte to. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Složka %1 byla vytvořena ale byla dříve vynechána ze synchronizace. Nebude synchronizována. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Soubor %1 byl vytvořen ale byl dříve byl vynechán ze synchronizace. Nebude synchronizován. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -875,7 +875,7 @@ To znamená, že synchronizační klient nemusí místní změny okamžitě nahr %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -886,22 +886,22 @@ Pokud se rozhodnete soubory ponechat, budou znovu synchronizovány se serverem p Pokud se soubory rozhodnete smazat, nebudou vám dostupné, pokud nejste vlastník. - + Download new files? Stáhnout nové soubory? - + Download new files Stáhnout nové soubory - + Keep local files Ponechat místní soubory - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -910,7 +910,7 @@ Jste si jisti, že chcete tyto akce synchronizovat se serverem? Pokud to byl omyl a chcete si soubory ponechat, budou opět synchronizovány ze serveru. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -919,17 +919,17 @@ Toto může být způsobeno obnovením zálohy na straně serveru. Pokračováním v synchronizaci způsobí přepsání všech vašich souborů staršími soubory z dřívějšího stavu. Přejete si ponechat své místní nejaktuálnější soubory jako konfliktní soubory? - + Backup detected Záloha nalezena - + Normal Synchronisation Normální synchronizace - + Keep Local Files as Conflict Ponechat místní soubory jako konflikt @@ -2262,7 +2262,7 @@ Nedoporučuje se jí používat. OCC::PropagateDirectory - + Error writing metadata to the database Chyba zápisu metadat do databáze @@ -2290,32 +2290,32 @@ Nedoporučuje se jí používat. Volné místo na disku je méně než %1 - + File was deleted from server Soubor byl smazán ze serveru - + The file could not be downloaded completely. Soubor nemohl být kompletně stažen. - + The downloaded file is empty despite that the server announced it should have been %1. Stažený soubor je prázdný, přestože soubor oznámil, že měl mí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 @@ -2328,7 +2328,7 @@ Nedoporučuje se jí používat. ; Obnovení selhalo: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Soubor nebo adresář by odebrán ze sdílení pouze pro čtení, ale jeho obnovení selhalo: %1 @@ -2689,22 +2689,22 @@ Nedoporučuje se jí používat. OCC::ShareLinkWidget - + &Share link Odkaz pro &sdílení - + Password: Heslo: - + Expiration date: Datum skončení platnosti: - + TextLabel Textový popisek @@ -2777,22 +2777,22 @@ Nedoporučuje se jí používat. OCC::ShareUserGroupWidget - + Share with users or groups ... Sdílet s uživateli nebo skupinami… - + Copy link Zkopírovat odkaz - + No results for '%1' Žádné výsledky pro „%1“ - + I shared something with you Něco jsem vám nasdílel @@ -2810,22 +2810,22 @@ Nedoporučuje se jí používat. lze upravovat - + Can reshare Může sdílet dál - + Can create Může vytvářet - + Can change Může měnit - + Can delete Může mazat @@ -3912,7 +3912,7 @@ Nedoporučuje se jí používat. Před nějakým časem - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_da.ts b/translations/client_da.ts index d24da4b91ad3..b11aa7d6f9c2 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -568,17 +568,17 @@ Accepter - + Synced S - + Retry all uploads - + <br/>Account %1 does not have activities enabled. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Fejl ved skrivning af metadata til databasen @@ -750,118 +750,118 @@ %1 kan ikke læses. - + %1 has been removed. %1 names a file. %1 er fjernet. - + %1 has been downloaded. %1 names a file. %1 er hentet. - + %1 has been updated. %1 names a file. %1 er blevet opdateret. - + %1 has been renamed to %2. %1 and %2 name files. %1 er blevet omdøbt til %2. - + %1 has been moved to %2. %1 er blevet flyttet til %2. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. - + Sync Activity Synkroniseringsaktivitet - + Could not read system exclude file - + A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -870,7 +870,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -878,46 +878,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Hent nye filer? - + Download new files Hent nye filer - + Keep local files Behold lokale filer - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected - + Normal Synchronisation Normal synkronisering - + Keep Local Files as Conflict @@ -2242,7 +2242,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database @@ -2270,32 +2270,32 @@ It is not advisable to use it. - + File was deleted from server - + The file could not be downloaded completely. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database @@ -2308,7 +2308,7 @@ It is not advisable to use it. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2669,22 +2669,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel @@ -2757,22 +2757,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2790,22 +2790,22 @@ It is not advisable to use it. kan redigere - + Can reshare - + Can create - + Can change - + Can delete @@ -3890,7 +3890,7 @@ It is not advisable to use it. - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_de.ts b/translations/client_de.ts index 4f9c1931c7ef..71014c5f5c11 100644 --- a/translations/client_de.ts +++ b/translations/client_de.ts @@ -568,17 +568,17 @@ Akzeptieren - + Synced Synchronisiert - + Retry all uploads Alle Uploads neu starten - + <br/>Account %1 does not have activities enabled. <br/>Für Konto %1 sind serverseitig keine Aktivitäten aktiviert. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Fehler beim Schreiben der Metadaten in die Datenbank @@ -750,120 +750,120 @@ %1 ist nicht lesbar. - + %1 has been removed. %1 names a file. %1 wurde gelöscht. - + %1 has been downloaded. %1 names a file. %1 wurde heruntergeladen. - + %1 has been updated. %1 names a file. %1 wurde aktualisiert. - + %1 has been renamed to %2. %1 and %2 name files. %1 wurde in %2 umbenannt. - + %1 has been moved to %2. %1 wurde in %2 verschoben. - + %1 and %n other file(s) have been removed. %1 und %n andere Datei wurde gelöscht.%1 und %n andere Dateien wurden gelöscht. - + %1 and %n other file(s) have been downloaded. %1 und %n andere Datei wurde heruntergeladen.%1 und %n andere Dateien wurden heruntergeladen. - + %1 and %n other file(s) have been updated. %1 und %n andere Datei wurde aktualisiert.%1 und %n andere Dateien wurden aktualisiert. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 wurde in %2 umbenannt und %n andere Datei wurde umbenannt.%1 wurde in %2 umbenannt und %n andere Dateien wurden umbenannt. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 wurde in %2 verschoben und %n andere Datei wurde verschoben.%1 wurde in %2 verschoben und %n andere Dateien wurden verschoben. - + %1 has and %n other file(s) have sync conflicts. %1 und %n andere Datei haben Konflikte beim Abgleichen.%1 und %n andere Dateien haben Konflikte beim Abgleichen. - + %1 has a sync conflict. Please check the conflict file! Es gab einen Konflikt bei der Synchronisierung von %1. Bitte prüfen Sie die Konfliktdatei! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 und %n weitere Datei konnten aufgrund von Fehlern nicht synchronisiert werden. Schauen Sie in das Protokoll für Details.%1 und %n weitere Dateien konnten aufgrund von Fehlern nicht synchronisiert werden. Details finden Sie im Protokoll. - + %1 could not be synced due to an error. See the log for details. %1 konnte aufgrund eines Fehlers nicht synchronisiert werden. Details finden Sie im Protokoll. - + Sync Activity Synchronisierungsaktivität - + Could not read system exclude file Systemeigene Ausschlussdatei kann nicht gelesen werden - + A new folder larger than %1 MB has been added: %2. Ein neues Verzeichnis größer als %1 MB wurde hinzugefügt: %2. - + A folder from an external storage has been added. Ein Verzeichnis von einem externen Speicher wurde hinzugefügt. - + Please go in the settings to select it if you wish to download it. Bitte wechseln Sie zu den Einstellungen, falls Sie das Verzeichnis herunterladen möchten. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Der Ordner %1 wurde erstellt, wurde jedoch zuvor von der Synchronisierung ausgeschlossen. Die darin enthaltenen Daten werden nicht synchronisiert. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Die Datei % 1 wurde erstellt, jedoch bereits zuvor von der Synchronisierung ausgeschlossen. Sie wird nicht synchronisiert werden. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Dies bedeutet, dass der Synchronisierungs-Client lokale Änderungen möglicherwe %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Wenn Sie sich dazu entscheiden, diese Dateien zu behalten, werden diese wieder z Wenn Sie sich zum Löschen der Dateien entscheiden, sind diese nicht mehr verfügbar, außer Sie sind der Eigentümer. - + Download new files? Neue Dateien herunterladen? - + Download new files Neue Dateien herunterladen - + Keep local files Lokale Dateien behalten - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ Sind Sie sich sicher, dass Sie diese Aktion mit Ihrem Server synchronisieren mö Falls dies ein Missgeschick war und Sie sich zum Behalten der Dateien entscheiden, werden diese wieder vom Server synchronisiert. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Der Grund dafür ist möglicherweise, dass auf dem Server ein Backup eingespielt Wenn diese Synchronisierung fortgesetzt wird, werden Dateien eventuell von älteren Versionen überschrieben. Möchten Sie die neueren lokalen Dateien als Konflikt-Dateien behalten? - + Backup detected Backup erkannt - + Normal Synchronisation Normale Synchronisierung - + Keep Local Files as Conflict Lokale Konfliktdateien behalten @@ -2262,7 +2262,7 @@ Es ist nicht ratsam, sie zu benutzen. OCC::PropagateDirectory - + Error writing metadata to the database Fehler beim Schreiben der Metadaten in die Datenbank @@ -2290,32 +2290,32 @@ Es ist nicht ratsam, sie zu benutzen. Der freie Speicher auf der Festplatte ist weniger als %1 - + File was deleted from server Die Datei wurde vom Server gelöscht - + The file could not be downloaded completely. Die Datei konnte nicht vollständig herunter geladen werden. - + The downloaded file is empty despite that the server announced it should have been %1. 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 Konflikts 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 @@ -2328,7 +2328,7 @@ Es ist nicht ratsam, sie zu benutzen. ; Wiederherstellung fehlgeschlagen: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Eine Datei oder ein Ordner wurde von einer Nur-Lese-Freigabe wiederhergestellt, aber die Wiederherstellung ist mit folgendem Fehler fehlgeschlagen: %1 @@ -2689,22 +2689,22 @@ Es ist nicht ratsam, sie zu benutzen. OCC::ShareLinkWidget - + &Share link &Link teilen - + Password: Passwort: - + Expiration date: Ablaufdatum: - + TextLabel TextLabel @@ -2777,22 +2777,22 @@ Es ist nicht ratsam, sie zu benutzen. OCC::ShareUserGroupWidget - + Share with users or groups ... Mit Benutzern oder Gruppen teilen … - + Copy link Link kopieren - + No results for '%1' Keine Ergebnisse für '%1' - + I shared something with you Ich habe etwas mit Ihnen geteilt @@ -2810,22 +2810,22 @@ Es ist nicht ratsam, sie zu benutzen. kann bearbeiten - + Can reshare kann weiterteilen - + Can create kann erstellen - + Can change kann ändern - + Can delete kann löschen @@ -3912,7 +3912,7 @@ Es ist nicht ratsam, sie zu benutzen. vor einiger Zeit - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_el.ts b/translations/client_el.ts index 84a6d8748171..cc921929b3a1 100644 --- a/translations/client_el.ts +++ b/translations/client_el.ts @@ -568,17 +568,17 @@ Αποδοχή - + Synced Συγχρονίστηκε - + Retry all uploads Επανάληψη όλων των μεταφορτώσεων - + <br/>Account %1 does not have activities enabled. <br/>Ο λογαριασμός %1 δεν έχει ενεργοποιήσει τις δραστηριότητες. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Σφάλμα εγγραφής μεταδεδομένων στην βάση δεδομένων @@ -750,120 +750,120 @@ Το %1 δεν είναι αναγνώσιμο. - + %1 has been removed. %1 names a file. Το %1 αφαιρέθηκε. - + %1 has been downloaded. %1 names a file. Το %1 έχει ληφθεί. - + %1 has been updated. %1 names a file. Το %1 έχει ενημερωθεί. - + %1 has been renamed to %2. %1 and %2 name files. Το %1 έχει μετονομαστεί σε %2. - + %1 has been moved to %2. Το %1 έχει μετακινηθεί στο %2. - + %1 and %n other file(s) have been removed. %1 και%n άλλo αρχείo(α) έχουν καταργηθεί.%1 και%n άλλo αρχείo(α) έχουν καταργηθεί. - + %1 and %n other file(s) have been downloaded. %1 και%n άλλο αρχείο(ο) έχουν ληφθεί.%1 και%n άλλο αρχείο(ο) έχουν ληφθεί. - + %1 and %n other file(s) have been updated. %1 και%n άλλο αρχείο(α) έχουν ενημερωθεί.%1 και%n άλλο αρχείο(α) έχουν ενημερωθεί. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 μετονομάστηκε σε %2 και %n άλλο αρχείο(α) έχουν μετονομαστεί.%1 μετονομάστηκε σε %2 και %n άλλο αρχείο(α) έχουν μετονομαστεί. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 έχει μετακινηθεί σε %2 και %n άλλo αρχείο(α) έχουν μετακινηθεί.%1 έχει μετακινηθεί σε %2 και %n άλλo αρχείο(α) έχουν μετακινηθεί. - + %1 has and %n other file(s) have sync conflicts. %1 έχει και %n άλλο αρχείο(α) έχουν διένεξη συγχρονισμού.%1 έχει και %n άλλο αρχείο(α) έχουν διένεξη συγχρονισμού. - + %1 has a sync conflict. Please check the conflict file! %1 έχει μια διένεξη συγχρονισμού. Παρακαλώ ελέγξτε τη διένεξη του αρχείου! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 και %n άλλο(α) αρχείο(α) δεν μπορούν να συγχρονιστούν λόγω σφαλμάτων. Δείτε το ιστορικό για λεπτομέρειες%1 και %n άλλο αρχείο(α) δεν μπορούν να συγχρονιστούν λόγω σφαλμάτων. Δείτε το ημερολόγιο για λεπτομέρειες. - + %1 could not be synced due to an error. See the log for details. %1 δεν ήταν δυνατό να συγχρονιστεί εξαιτίας ενός σφάλματος. Δείτε το αρχείο καταγραφής για λεπτομέρειες. - + Sync Activity Δραστηριότητα Συγχρονισμού - + Could not read system exclude file Αδυναμία ανάγνωσης αρχείου αποκλεισμού συστήματος - + A new folder larger than %1 MB has been added: %2. Προστέθηκε ένας νέος φάκελος μεγαλύτερος από %1 MB: %2 - + A folder from an external storage has been added. Προστέθηκε ένας φάκελος από εξωτερικό αποθηκευτικό χώρο. - + Please go in the settings to select it if you wish to download it. Μεταβείτε στις ρυθμίσεις για να το επιλέξετε εάν επιθυμείτε να το κατεβάσετε. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Λήψη νέων αρχείων; - + Download new files Λήψη νέων αρχείων - + Keep local files Διατήρηση τοπικών αρχείων - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Αν αυτό ήταν ένα ατύχημα και αποφασίσατε να διατηρήσετε τα αρχεία σας, θα συγχρονιστούν εκ νέου από το διακομιστή. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -913,17 +913,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Η συνέχιση του συγχρονισμού κανονικά θα προκαλέσει την αντικατάσταση όλων των αρχείων σας από παλιότερο αρχείο σε προηγούμενη κατάσταση. Θέλετε να διατηρήσετε τα τοπικά σας πιο πρόσφατα αρχεία ως αρχεία σύγκρουσης; - + Backup detected Ανιχνεύθηκε αντίγραφο ασφαλείας - + Normal Synchronisation Κανονικός συγχρονισμός - + Keep Local Files as Conflict Διατήρηση τοπικών αρχείων ως Διένεξη @@ -2252,7 +2252,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database Σφάλμα εγγραφής μεταδεδομένων στην βάση δεδομένων @@ -2280,32 +2280,32 @@ It is not advisable to use it. Ο διαθέσιμος χώρος στο δίσκο είναι λιγότερος από %1 - + File was deleted from server Το αρχείο διαγράφηκε από τον διακομιστή - + The file could not be downloaded completely. Η λήψη του αρχείου δεν ολοκληρώθηκε. - + The downloaded file is empty despite that the server announced it should have been %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 Σφάλμα εγγραφής μεταδεδομένων στην βάση δεδομένων @@ -2318,7 +2318,7 @@ It is not advisable to use it. ; Η Αποκατάσταση Απέτυχε: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Ένα αρχείο ή ένας κατάλογος αφαιρέθηκε από ένα διαμοιρασμένο κατάλογο μόνο για ανάγνωση, αλλά η επαναφορά απέτυχε: %1 @@ -2679,22 +2679,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: Συνθηματικό : - + Expiration date: Ημερομηνία λήξης: - + TextLabel TextLabel @@ -2767,22 +2767,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... Διαμοιρασμός με χρήστες ή ομάδες ... - + Copy link Αντιγραφή συνδέσμου - + No results for '%1' Κανένα αποτέλεσμα για '%1' - + I shared something with you @@ -2800,22 +2800,22 @@ It is not advisable to use it. δυνατότητα επεξεργασίας - + Can reshare Δυνατότητα να διαμοιραστεί ξανά - + Can create Δυνατότητα δημιουργίας - + Can change - + Can delete Μπορεί να διαγράψει @@ -3902,7 +3902,7 @@ It is not advisable to use it. Λίγη ώρα πριν - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_en.ts b/translations/client_en.ts index 34a5783e7e86..1e26e8296fa6 100644 --- a/translations/client_en.ts +++ b/translations/client_en.ts @@ -570,17 +570,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. @@ -667,7 +667,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database @@ -752,36 +752,36 @@ - + %1 has been removed. %1 names a file. - + %1 has been downloaded. %1 names a file. - + %1 has been updated. %1 names a file. - + %1 has been renamed to %2. %1 and %2 name files. - + %1 has been moved to %2. - + %1 and %n other file(s) have been removed. @@ -789,7 +789,7 @@ - + %1 and %n other file(s) have been downloaded. @@ -797,7 +797,7 @@ - + %1 and %n other file(s) have been updated. @@ -805,7 +805,7 @@ - + %1 has been renamed to %2 and %n other file(s) have been renamed. @@ -813,7 +813,7 @@ - + %1 has been moved to %2 and %n other file(s) have been moved. @@ -821,7 +821,7 @@ - + %1 has and %n other file(s) have sync conflicts. @@ -829,12 +829,12 @@ - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. @@ -842,49 +842,49 @@ - + %1 could not be synced due to an error. See the log for details. - + Sync Activity - + Could not read system exclude file - + A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -893,7 +893,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -901,46 +901,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected - + Normal Synchronisation - + Keep Local Files as Conflict @@ -2268,7 +2268,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database @@ -2296,32 +2296,32 @@ It is not advisable to use it. - + File was deleted from server - + The file could not be downloaded completely. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database @@ -2334,7 +2334,7 @@ It is not advisable to use it. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2695,22 +2695,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel @@ -2783,22 +2783,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2816,22 +2816,22 @@ It is not advisable to use it. - + Can reshare - + Can create - + Can change - + Can delete @@ -3934,7 +3934,7 @@ It is not advisable to use it. - + %1: %2 this displays an error string (%2) for a file %1 diff --git a/translations/client_en_GB.ts b/translations/client_en_GB.ts index f11c43985274..46f5791da9a3 100644 --- a/translations/client_en_GB.ts +++ b/translations/client_en_GB.ts @@ -568,17 +568,17 @@ Accept - + Synced - + Retry all uploads Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>Account %1 does not have activities enabled. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error writing metadata to the database @@ -750,120 +750,120 @@ %1 is not readable. - + %1 has been removed. %1 names a file. %1 has been removed. - + %1 has been downloaded. %1 names a file. %1 has been downloaded. - + %1 has been updated. %1 names a file. %1 has been updated. - + %1 has been renamed to %2. %1 and %2 name files. %1 has been renamed to %2. - + %1 has been moved to %2. %1 has been moved to %2. - + %1 and %n other file(s) have been removed. %1 and %n other file have been removed.%1 and %n other files have been removed. - + %1 and %n other file(s) have been downloaded. %1 and %n other file have been downloaded.%1 and %n other files have been downloaded. - + %1 and %n other file(s) have been updated. %1 and %n other file have been updated.%1 and %n other files have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 has been renamed to %2 and %n other file have been renamed.%1 has been renamed to %2 and %n other files have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 has been moved to %2 and %n other file have been moved.%1 has been moved to %2 and %n other files have been moved. - + %1 has and %n other file(s) have sync conflicts. %1 has and %n other file have sync conflicts.%1 has and %n other files have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 and %n other file could not be synced due to errors. See the log for details.%1 and %n other files could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. %1 could not be synced due to an error. See the log for details. - + Sync Activity Sync Activity - + Could not read system exclude file Could not read system exclude file - + A new folder larger than %1 MB has been added: %2. A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ This means that the synchronization client might not upload local changes immedi %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ If you decide to keep the files, they will be re-synced with the server if you h If you decide to delete the files, they will be unavailable to you, unless you are the owner. - + Download new files? Download new files? - + Download new files Download new files - + Keep local files Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Backup detected - + Normal Synchronisation Normal Synchronisation - + Keep Local Files as Conflict Keep Local Files as Conflict @@ -2263,7 +2263,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database Error writing metadata to the database @@ -2291,32 +2291,32 @@ It is not advisable to use it. Free space on disk is less than %1 - + File was deleted from server File was deleted from server - + The file could not be downloaded completely. The file could not be downloaded completely. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! File %1 cannot be saved because of a local file name clash! - + File has changed since discovery File has changed since discovery - + Error writing metadata to the database Error writing metadata to the database @@ -2329,7 +2329,7 @@ It is not advisable to use it. ; Restoration Failed: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 A file or folder was removed from a read only share, but restoring failed: %1 @@ -2690,22 +2690,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link &Share link - + Password: Password: - + Expiration date: Expiration date: - + TextLabel TextLabel @@ -2778,22 +2778,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... Share with users or groups ... - + Copy link Copy link - + No results for '%1' No results for '%1' - + I shared something with you I shared something with you @@ -2811,22 +2811,22 @@ It is not advisable to use it. can edit - + Can reshare Can reshare - + Can create Can create - + Can change Can change - + Can delete Can delete @@ -3913,7 +3913,7 @@ It is not advisable to use it. Some time ago - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_eo.ts b/translations/client_eo.ts index 46701e28452a..a70759117b34 100644 --- a/translations/client_eo.ts +++ b/translations/client_eo.ts @@ -568,17 +568,17 @@ Akcepti - + Synced Sinkronigita - + Retry all uploads Reprovi ĉiujn alŝutoj - + <br/>Account %1 does not have activities enabled. <br/>Konto %1 ne havas ebligitajn aktivaĵojn. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Eraro dum konservado de pridatumoj en la datumbazo @@ -750,120 +750,120 @@ %1 ne estas legebla. - + %1 has been removed. %1 names a file. %1 estis forigita. - + %1 has been downloaded. %1 names a file. %1 estis elŝutita. - + %1 has been updated. %1 names a file. %1 estis ĝisdatigita. - + %1 has been renamed to %2. %1 and %2 name files. %1 estis alinomita al %2. - + %1 has been moved to %2. %1 estis movita al %2. - + %1 and %n other file(s) have been removed. %1 estis forigita.%1 kaj %n plia(j) dosiero(j) estis forigitaj. - + %1 and %n other file(s) have been downloaded. %1 estis elŝutita.%1 kaj %n plia(j) dosiero(j) estis elŝutitaj. - + %1 and %n other file(s) have been updated. %1 ĝisdatiĝis.%1 kaj %n plia(j) dosiero(j) ĝisdatiĝis. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 estis alinomita al %2.%1 estis alinomita al %2, kaj %n plia(j) dosiero(j) estis alinomitaj. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 estis movita al %2.%1 estis movita al %2, kaj %n plia(j) dosiero(j) estis movitaj. - + %1 has and %n other file(s) have sync conflicts. %1 havas sinkronigajn konfliktojn.%1 kaj %n plia(j) dosiero(j) havas sinkronigajn konfliktojn. - + %1 has a sync conflict. Please check the conflict file! %1 havas sinkronigan konflikton. Bv. kontroli la dosieron pri konfliktoj! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 ne estis sinkronigita pro eraroj. Vidu la protokolon por detaloj.%1 kaj %n plia(j) dosiero(j) ne estis sinkronigitaj pro eraroj. Vidu la protokolon por detaloj. - + %1 could not be synced due to an error. See the log for details. %1 ne estis sinkronigita pro eraro. Vidu la protokolon por detaloj. - + Sync Activity Sinkronigaj aktivaĵoj - + Could not read system exclude file Ne eblis legi la sisteman dosieron pri esceptoj - + A new folder larger than %1 MB has been added: %2. Nova dosierujo pli granda ol %1 MB estis aldonita: %2. - + A folder from an external storage has been added. Dosierujo el ekstera konservejo estis aldonita. - + Please go in the settings to select it if you wish to download it. Bv. iri al la agordoj por elekti, ĉu vi volas elŝuti ĝin. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. La dosierujo %1 estis kreita sed estis eksigita el sinkronigo antaŭe. Datumoj ene de ĝi ne estos sinkronigitaj. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. La dosiero %1 estis kreita sed estis eksigita el sinkronigo antaŭe. Ĝi ne estos sinkronigita. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Tio signifas, ke la sinkroniga kliento eble ne alŝutas tuj lokajn ŝanĝojn kaj %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Se vi decidas gardi la dosierojn, ili estos resinkronigitaj al la servilo, se vi Se vi decidas forigi la dosierojn, ili ne plus estos haveblaj al vi, krom se vi estas la posedanto. - + Download new files? Ĉu elŝuti la novajn dosierojn? - + Download new files Elŝuti la novajn dosierojn - + Keep local files Gardi la lokajn dosierojn - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Se tio estis neintenca kaj se vi decidas gardi viajn dosierojn, ili estos resinkronigitaj el la servilo. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Tio estas eble kaŭzita de restaŭro de savkopio ĉe la servilo. Se vi plu sinkronigas, la sinkronigo anstataŭigos ĉiujn viajn dosierojn per antaŭaj versioj el viaj dosieroj. Ĉu vi volas gardi la plej freŝajn dosierojn kiel konfliktajn dosierojn? - + Backup detected Savkopio eltrovita - + Normal Synchronisation Kutima sinkronigo - + Keep Local Files as Conflict Konservi la lokajn dosierojn kiel konfliktojn @@ -2262,7 +2262,7 @@ Uzi ĝin ne konsilindas. OCC::PropagateDirectory - + Error writing metadata to the database Eraro dum skribo de pridatumoj en la datumbazo @@ -2290,32 +2290,32 @@ Uzi ĝin ne konsilindas. Libera diskospaco estas malpli ol %1 - + File was deleted from server Dosiero estis forigita el la servilo - + The file could not be downloaded completely. La dosiero ne estis elŝutita plene. - + The downloaded file is empty despite that the server announced it should have been %1. La elŝutita dosiero malplenas, kvankam la servilo anoncis, ke ĝi estos %1. - + File %1 cannot be saved because of a local file name clash! Dosiero %1 ne eblis esti konservita pro konflikto kun loka dosiernomo! - + File has changed since discovery Dosiero ŝanĝiĝis ekde sia malkovro - + Error writing metadata to the database Eraro dum konservado de pridatumoj en la datumbazo @@ -2328,7 +2328,7 @@ Uzi ĝin ne konsilindas. ; malsukcesis la restaŭro: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Dosiero aŭ dosierujo estis forigita el nurlega kunhavo, sed restaŭrado malsukcesis: %1 @@ -2689,22 +2689,22 @@ Uzi ĝin ne konsilindas. OCC::ShareLinkWidget - + &Share link &Kunhava ligilo - + Password: Pasvorto: - + Expiration date: Limdato: - + TextLabel TextLabel @@ -2777,22 +2777,22 @@ Uzi ĝin ne konsilindas. OCC::ShareUserGroupWidget - + Share with users or groups ... Kunhavigi kun uzantoj aŭ grupoj... - + Copy link Kopii ligilon - + No results for '%1' Neniu rezulto por „%1“ - + I shared something with you Mi kunhavigis ion kun vi @@ -2810,22 +2810,22 @@ Uzi ĝin ne konsilindas. povas redakti - + Can reshare Eblas rekunhavigi - + Can create Povas krei - + Can change Eblas ŝanĝi - + Can delete Povas forigi @@ -3911,7 +3911,7 @@ Uzi ĝin ne konsilindas. Antaŭ nelonge - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es.ts b/translations/client_es.ts index 4dbe590d5323..68d04594d339 100644 --- a/translations/client_es.ts +++ b/translations/client_es.ts @@ -568,17 +568,17 @@ Aceptar - + Synced Sincronizado - + Retry all uploads Reintentar todas las subidas - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir los metadatos en la base de datos @@ -750,120 +750,120 @@ %1 es ilegible. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 ha sido movido a %2. - + %1 and %n other file(s) have been removed. %1 y otro archivo han sido borrados.%1 y otros %n archivos han sido borrados. - + %1 and %n other file(s) have been downloaded. %1 y otro archivo han sido descargados.%1 y otros %n archivos han sido descargados. - + %1 and %n other file(s) have been updated. %1 y otro archivo han sido actualizados.%1 y otros %n archivos han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado a %2 y otro archivo ha sido renombrado.%1 ha sido renombrado a %2 y otros %n archivos han sido renombrado. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 ha sido movido a %2 y otro archivo ha sido movido.%1 ha sido movido a %2 y otros %n archivos han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y otro archivo han tenido conflictos al sincronizar.%1 y otros %n archivos han tenido conflictos al sincronizar. - + %1 has a sync conflict. Please check the conflict file! Conflicto al sincronizar %1. ¡Por favor compruebe el archivo! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y otro archivo no pudieron ser sincronizados debido a errores. Para más detalles vea el registro.%1 y otros %n archivos no se han podido sincronizar debido a errores. Para más detalles vea el registro. - + %1 could not be synced due to an error. See the log for details. %1 no se ha podido sincronizar debido a un error. Para más detalles, vea el registro. - + Sync Activity Actividad de la sincronización - + Could not read system exclude file No se ha podido leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una carpeta mayor de %1 MB ha sido añadida: %2. - + A folder from an external storage has been added. Una carpeta de almacenamiento externo ha sido añadida. - + Please go in the settings to select it if you wish to download it. Por favor vaya a opciones a seleccionarlo si desea descargar esto. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Se ha creado la carpeta %1 pero se excluyó de la sincronización con anterioridad. Los datos en su interior no se sincronizarán. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Se ha creado el archivo %1 pero se excluyó de la sincronización con anterioridad. No se sincronizará. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Esto significa que el cliente de sincronización podría no subir inmediatamente %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Si decides mantener los archivos, se resubirán al servidor si tienes permisos p Si decides eliminar los archivos, no podrás disponer de ellos a no ser que seas el propietario. - + Download new files? ¿Descargar los archivos nuevos? - + Download new files Descargar archivos nuevos - + Keep local files Mantener los archivos locales - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si ha sido un accidente, y decide mantener los archivos, serán re-sincronizados con el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Esto puede deberse a que una copia de seguridad fue restaurada en el servidor. Si continua con la sincronización todos los archivos serán remplazados por su versión previa. ¿Desea mantener los archivos locales en su versión actual como archivos en conflicto? - + Backup detected Backup detectado - + Normal Synchronisation Sincronización normal - + Keep Local Files as Conflict Mantener los archivos locales en caso de conflicto @@ -2262,7 +2262,7 @@ No se recomienda usarla. OCC::PropagateDirectory - + Error writing metadata to the database Error al escribir los metadatos en la base de datos @@ -2290,32 +2290,32 @@ No se recomienda usarla. El espacio libre en el disco es inferior a %1 - + File was deleted from server Se ha eliminado el archivo del servidor - + The file could not be downloaded completely. No se ha podido descargar el archivo completamente. - + The downloaded file is empty despite that the server announced it should have been %1. El archivo descargado está vacío a pesar de que el servidor comunicó que debería 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 @@ -2328,7 +2328,7 @@ No se recomienda usarla. ; Fallo al restaurar: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o directorio ha sido eliminado de una carpeta compartida de solo lectura pero la recuperación ha fallado: %1 @@ -2689,22 +2689,22 @@ No se recomienda usarla. OCC::ShareLinkWidget - + &Share link Compartir enlace - + Password: Contraseña: - + Expiration date: Fecha de caducidad - + TextLabel EtiquetaDeTexto @@ -2777,22 +2777,22 @@ No se recomienda usarla. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link Copiar enlace - + No results for '%1' No hay resultados para '%1' - + I shared something with you He compartido algo contigo @@ -2810,22 +2810,22 @@ No se recomienda usarla. puede editar - + Can reshare Puede compartir - + Can create Puede crear - + Can change Puede cambiar - + Can delete Puede eliminar @@ -3912,7 +3912,7 @@ No se recomienda usarla. Hace tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_AR.ts b/translations/client_es_AR.ts index 953a2c2eb3c9..3a8333118059 100644 --- a/translations/client_es_AR.ts +++ b/translations/client_es_AR.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error escribiendo metadatos a la base de datos @@ -750,118 +750,118 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado - + %1 has been renamed to %2. %1 and %2 name files. - + %1 has been moved to %2. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. - + Sync Activity Actividad de Sync - + Could not read system exclude file - + A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -870,7 +870,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -878,46 +878,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected - + Normal Synchronisation Sincronizacón Normal. - + Keep Local Files as Conflict Mantener Archivos Locales como Conflicto @@ -2242,7 +2242,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database Error escribiendo metadatos a la base de datos @@ -2270,32 +2270,32 @@ It is not advisable to use it. - + File was deleted from server - + The file could not be downloaded completely. - + The downloaded file is empty despite that the server announced it should have been %1. - + 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 @@ -2308,7 +2308,7 @@ It is not advisable to use it. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2669,22 +2669,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2757,22 +2757,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuario o grupo ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2790,22 +2790,22 @@ It is not advisable to use it. podés editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3891,7 +3891,7 @@ It is not advisable to use it. - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_CL.ts b/translations/client_es_CL.ts index a6e45ccef6c4..3bab0d1e35a0 100644 --- a/translations/client_es_CL.ts +++ b/translations/client_es_CL.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_CO.ts b/translations/client_es_CO.ts index 7372cb3c2ec6..18675de346b1 100644 --- a/translations/client_es_CO.ts +++ b/translations/client_es_CO.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_CR.ts b/translations/client_es_CR.ts index b277212d0664..8381bb83ff79 100644 --- a/translations/client_es_CR.ts +++ b/translations/client_es_CR.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_DO.ts b/translations/client_es_DO.ts index d3e203907cea..61ec8395e6bd 100644 --- a/translations/client_es_DO.ts +++ b/translations/client_es_DO.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_EC.ts b/translations/client_es_EC.ts index 493f8fb235bd..3a3fa55ef4cb 100644 --- a/translations/client_es_EC.ts +++ b/translations/client_es_EC.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_GT.ts b/translations/client_es_GT.ts index 9156c44ed927..a5c7ef7db42f 100644 --- a/translations/client_es_GT.ts +++ b/translations/client_es_GT.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_HN.ts b/translations/client_es_HN.ts index b597ae54169e..a32574c04932 100644 --- a/translations/client_es_HN.ts +++ b/translations/client_es_HN.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_MX.ts b/translations/client_es_MX.ts index e095426a27da..2e36dc68ff58 100644 --- a/translations/client_es_MX.ts +++ b/translations/client_es_MX.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_es_SV.ts b/translations/client_es_SV.ts index e4456b5a47a3..03b0cb4cc0a9 100644 --- a/translations/client_es_SV.ts +++ b/translations/client_es_SV.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>La cuenta %1 no tiene las actividades habilitadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Error al escribir metadatos a la base de datos @@ -750,120 +750,120 @@ No se puede leer %1. - + %1 has been removed. %1 names a file. %1 ha sido eliminado. - + %1 has been downloaded. %1 names a file. %1 ha sido descargado. - + %1 has been updated. %1 names a file. %1 ha sido actualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 ha sido renombrado a %2. - + %1 has been moved to %2. %1 se ha movido a %2. - + %1 and %n other file(s) have been removed. %1 y %n otro(s) archivo(s) han sido eliminados. %1 y %n otro(s) archivo(s) han sido eliminados. - + %1 and %n other file(s) have been downloaded. %1 y %n otro(s) archivo(s) han sido descargados. %1 y %n otro(s) archivo(s) han sido descargados. - + %1 and %n other file(s) have been updated. %1 y %n otro(s) archivo(s) han sido actualizados.%1 y %n otro(s) archivo(s) han sido actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. %1 ha sido renombrado como %2 y %n otro(s) archivo(s) han sido renombrados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos.%1 se ha movido a %2 y %n otro(s) archivo(s) han sido movidos. - + %1 has and %n other file(s) have sync conflicts. %1 y %n otro(s) archivo(s) tienen confictos de sincronización.%1 y %n otro(s) archivo(s) tienen confictos de sincronización. - + %1 has a sync conflict. Please check the conflict file! %1 tiene un conflicto de sincronización. ¡Por favor verifica el archivo con conflicto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. %1 y %n otro(s) archivo(s) no puideron ser sincronizado por errores. Consulta la bitácora para más detalles. - + %1 could not be synced due to an error. See the log for details. %1 no pudo ser sincronizado por un error. Consulta la bitácora para más detalles. - + Sync Activity Sincronizar Actividad - + Could not read system exclude file No fue posible leer el archivo de exclusión del sistema - + A new folder larger than %1 MB has been added: %2. Una nueva carpeta de más de %1 MB ha sido agregada: %2 - + A folder from an external storage has been added. Una carpeta de un almacenamiento externo ha sido agregada. - + Please go in the settings to select it if you wish to download it. Por favor ve a las configuraciones para seleccionarlo si deseas descargarlo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Si esto fue un accidente y decides mantener tus archivos, estos se re-sincronizaran desde el servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuar con la sincronización como normal causará que todos tus archivos sea ¿Quieres mantener tu copia local más reciente como archivos en conflicto? - + Backup detected Respaldo detectado - + Normal Synchronisation Sincronización Normal - + Keep Local Files as Conflict Mantener los Archivos Locales como Conflictos @@ -2253,7 +2253,7 @@ No es recomendable usarlo. OCC::PropagateDirectory - + Error writing metadata to the database Se presentó un error al escribir los metadatos a la base de datos @@ -2281,32 +2281,32 @@ No es recomendable usarlo. El espacio disponible en disco es menos del 1% - + File was deleted from server El archivo fue borrado del servidor - + The file could not be downloaded completely. El archivo no pudo ser descargado por completo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! ¡El archivo %1 no puede ser guardado debido a un conflicto en su nombre con un 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 a la base de datos @@ -2319,7 +2319,7 @@ No es recomendable usarlo. ; La Restauración Falló: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un archivo o carpeta fue eliminado de un elemento compartido de solo lectura, pero la restauracion falló: %1 @@ -2680,22 +2680,22 @@ No es recomendable usarlo. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel EtiquetaDeTexto @@ -2768,22 +2768,22 @@ No es recomendable usarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios o grupos ... - + Copy link - + No results for '%1' No se encontraron resultados para '%1' - + I shared something with you Compartí algo contigo @@ -2801,22 +2801,22 @@ No es recomendable usarlo. puede editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3903,7 +3903,7 @@ No es recomendable usarlo. Hace algún tiempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_et.ts b/translations/client_et.ts index e2d825cb0c00..9b35e86e094d 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database @@ -750,118 +750,118 @@ %1 pole loetav. - + %1 has been removed. %1 names a file. %1 on eemaldatud. - + %1 has been downloaded. %1 names a file. %1 on alla laaditud. - + %1 has been updated. %1 names a file. %1 on uuendatud. - + %1 has been renamed to %2. %1 and %2 name files. %1 on ümber nimetatud %2. - + %1 has been moved to %2. %1 on tõstetud %2. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. %1 sünkroniseerimine ebaõnnestus tõrke tõttu. Lisainfot vaata logist. - + Sync Activity Sünkroniseerimise tegevus - + Could not read system exclude file Süsteemi väljajätmiste faili lugemine ebaõnnestus - + A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -870,7 +870,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -878,46 +878,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Leiti varukoopia - + Normal Synchronisation Tavaline sünkroonimine - + Keep Local Files as Conflict @@ -2243,7 +2243,7 @@ Selle kasutamine pole soovitatav. OCC::PropagateDirectory - + Error writing metadata to the database @@ -2271,32 +2271,32 @@ Selle kasutamine pole soovitatav. - + File was deleted from server Fail on serverist kustutatud - + The file could not be downloaded completely. Faili täielik allalaadimine ebaõnnestus. - + The downloaded file is empty despite that the server announced it should have been %1. - + 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 @@ -2309,7 +2309,7 @@ Selle kasutamine pole soovitatav. ; Taastamine ebaõnnestus: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2670,22 +2670,22 @@ Selle kasutamine pole soovitatav. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel Tekstisilt @@ -2758,22 +2758,22 @@ Selle kasutamine pole soovitatav. OCC::ShareUserGroupWidget - + Share with users or groups ... Jaga kasutajate või gruppidega ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2791,22 +2791,22 @@ Selle kasutamine pole soovitatav. saab muuta - + Can reshare - + Can create - + Can change - + Can delete @@ -3893,7 +3893,7 @@ Selle kasutamine pole soovitatav. Mõni aeg tagasi - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_eu.ts b/translations/client_eu.ts index cc8b72142200..4b0557b0c8df 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -29,7 +29,7 @@ Syncing %1 - + %1 sinkronizatzen @@ -189,7 +189,7 @@ End to end encryption mnemonic - + Amaitu muturretik muturrerako zifratzea @@ -279,7 +279,7 @@ Enable encryption - + Gaitu zifratzea @@ -568,17 +568,17 @@ Onartu - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>%1 kontuak ez ditu jarduerak gaituta. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Errorea metadatuak datu-basean idaztean @@ -750,120 +750,120 @@ %1 ezin da irakurri. - + %1 has been removed. %1 names a file. %1 ezabatua izan da. - + %1 has been downloaded. %1 names a file. %1 deskargatu da. - + %1 has been updated. %1 names a file. %1 kargatu da. - + %1 has been renamed to %2. %1 and %2 name files. %1 %2-(e)ra berrizendatu da. - + %1 has been moved to %2. %1 %2-(e)ra mugitu da. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. - %1 ezin izan da sinkronizatu akats bat dela eta. Ikusi egunerkoa zehaztapen gehiago izateko. + %1 ezin izan da sinkronizatu errore bat dela eta. Ikusi egunkaria xehetasun gehiago izateko. - + Sync Activity Sinkronizazio Jarduerak - + Could not read system exclude file Ezin izan da sistemako baztertutakoen fitxategia irakurri - + A new folder larger than %1 MB has been added: %2. %1 MB baino handiagoa den karpeta berri bat gehitu da: %2. - + A folder from an external storage has been added. Kanpoko biltegi bateko karpeta gehitu da. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,48 +880,48 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Fitxategi berriak deskargatu? - + Download new files Fitxategi berriak deskargatu - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected - + Normal Synchronisation - + Keep Local Files as Conflict - + Mantendu fitxategi lokalak gatazka gisa @@ -1413,7 +1413,7 @@ Continuing the sync as normal will cause all your files to be overwritten by an Sharing error - Akatsa partekatzerakoan + Errorea partekatzerakoan @@ -1538,7 +1538,7 @@ Ezabatzeko baimena duten itemak ezabatuko dira hauek karpeta bat ezabatzea uzten Legal notice - + Ohar legala @@ -2247,7 +2247,7 @@ Ez da gomendagarria erabltzea. OCC::PropagateDirectory - + Error writing metadata to the database Errorea metadatuak datu-basean idaztean @@ -2275,32 +2275,32 @@ Ez da gomendagarria erabltzea. - + File was deleted from server Fitxategia zerbitzaritik ezabatua izan da - + The file could not be downloaded completely. - + The downloaded file is empty despite that the server announced it should have been %1. - + Deskargatutako fitxategia hutsik dago zerbitzariak %1 izan beharko lituzkeela iragarri badu ere. - + 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 @@ -2313,7 +2313,7 @@ Ez da gomendagarria erabltzea. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2346,7 +2346,7 @@ Ez da gomendagarria erabltzea. Error removing '%1': %2; - Akatsa '%1' ezabatzerakoan: %2; + Errorea '%1' ezabatzerakoan: %2; @@ -2674,22 +2674,22 @@ Ez da gomendagarria erabltzea. OCC::ShareLinkWidget - + &Share link - + Password: Pasahitza: - + Expiration date: - Iraungitze data: + Iraungitze-data: - + TextLabel TestuEtiketa @@ -2726,7 +2726,7 @@ Ez da gomendagarria erabltzea. Expiration Date - Iraungitze data + Iraungitze-data @@ -2762,22 +2762,22 @@ Ez da gomendagarria erabltzea. OCC::ShareUserGroupWidget - + Share with users or groups ... Elkarbanatu erabiltzaile edo taldearekin... - + Copy link Esteka kopiatu - + No results for '%1' - + I shared something with you Zerbait partekatu dut zurekin @@ -2795,22 +2795,22 @@ Ez da gomendagarria erabltzea. editatu dezake - + Can reshare Birparteka daiteke - + Can create Sortu dezake - + Can change Aldatu dezake - + Can delete Ezabatu dezake @@ -3202,7 +3202,7 @@ Ez da gomendagarria erabltzea. Permission denied. - + Baimena ukatuta @@ -3277,7 +3277,7 @@ Ez da gomendagarria erabltzea. Unresolved conflict. - + Ebatzi gabeko gatazka. @@ -3292,7 +3292,7 @@ Ez da gomendagarria erabltzea. Invalid characters, please rename "%1" - + Baliogabeko karaktereak, aldatu "%1" izena @@ -3548,7 +3548,7 @@ Ez da gomendagarria erabltzea. Unresolved conflicts - + Ebatzi gabeko gatazkak @@ -3857,7 +3857,7 @@ Ez da gomendagarria erabltzea. %n days ago - + duela egun %nduela %n egun @@ -3895,7 +3895,7 @@ Ez da gomendagarria erabltzea. - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_fa.ts b/translations/client_fa.ts index 5bc318823aa9..4d2042ff2120 100644 --- a/translations/client_fa.ts +++ b/translations/client_fa.ts @@ -4,7 +4,7 @@ %1 (%2, %3) - + %1 (%2, %3) @@ -29,58 +29,58 @@ Syncing %1 - + در حال همگام سازی %1 No recently changed files - + هیچ فایل اخیرا تغییر نکرده است Sync paused - + همگام سازی موقتا متوقف شد Syncing - + در حال همگام سازی Open website - + باز کردن وب سایت Recently changed - + اخیرا تغییر یافته Pause synchronization - + متوقف سازی موقت همگام سازی Help - + راهنما Settings - + تنظیمات Log out - + خروج Quit sync client - + خروج از همگام سازی مشتری @@ -101,18 +101,18 @@ Could not make directories in trash - + امکان ایجاد پوشه در سطل آشغال وجود ندارد Could not move '%1' to '%2' - + امکان انتقال '%1' به '%2' وجود ندارد Moving to the trash is not implemented on this platform - + انتقال فایل به سطل آشغال در این فلتفرم پیاده سازی نشده است @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + این حساب کاربری امکان رمزنگاری انتها-به-انتها را دارد Enable encryption - + فعال سازی رمزنگاری @@ -527,7 +527,7 @@ %1 - + %1 @@ -565,20 +565,20 @@ Accept - + تایید - + Synced - + همگام سازی شد - + Retry all uploads تلاش مجدد برای بارگذاری همه - + <br/>Account %1 does not have activities enabled. <br/>فعالیت های حساب 1% فعال نیست. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database خطا در نوشتن متادیتا در پایگاه داده @@ -750,120 +750,120 @@ %1 قابل خواندن نیست. - + %1 has been removed. %1 names a file. %1 حذف شده است. - + %1 has been downloaded. %1 names a file. %1 بارگزاری شد. - + %1 has been updated. %1 names a file. %1 بروز رسانی شده است. - + %1 has been renamed to %2. %1 and %2 name files. %1 به %2 تغییر نام داده شده است. - + %1 has been moved to %2. %1 به %2 انتقال داده شده است. - + %1 and %n other file(s) have been removed. 1% و n% پرونده های دیگر حذف شده اند.1% و n% پرونده های دیگر حذف شده اند. - + %1 and %n other file(s) have been downloaded. 1% و n% پرونده های دیگر دانلود شده اند.1% و n% پرونده های دیگر دانلود شده اند. - + %1 and %n other file(s) have been updated. 1% و n% پرونده های دیگر به روز رسانی شده اند. 1% و n% پرونده های دیگر به روز رسانی شده اند. - + %1 has been renamed to %2 and %n other file(s) have been renamed. 1% به 2% تغییر نام داده شده و n% پرونده های دیگر تغییر نام داده شده اند.1% به 2% تغییر نام داده شده و n% پرونده های دیگر تغییر نام داده شده اند. - + %1 has been moved to %2 and %n other file(s) have been moved. 1% به 2% منتقل شده و n% پرونده های دیگر منتقل شده اند.1% به 2% منتقل شده و n% پرونده های دیگر منتقل شده اند. - + %1 has and %n other file(s) have sync conflicts. 1% و n% سایر پرونده ها ناسازگاری همگام سازی دارند.1% و n% سایر پرونده ها ناسازگاری همگام سازی دارند. - + %1 has a sync conflict. Please check the conflict file! 1% داراری ناسازگاری همگام سازی است. لطفا پرونده ناسازگار را بررسی نمایید. - + %1 and %n other file(s) could not be synced due to errors. See the log for details. 1% و n% سایر پرونده ها به دلیل خطاها نمی توانند همگام سازی شوند. برای جزییات log را مشاهده کنید.1% و n% سایر پرونده ها به دلیل خطاها نمی توانند همگام سازی شوند. برای جزییات log را مشاهده کنید. - + %1 could not be synced due to an error. See the log for details. 1% به دلیل خطاها نمی تواند همگام سازی شود. برای جزییات log را مشاهده کنید. - + Sync Activity فعالیت همگام سازی - + Could not read system exclude file نمی توان پرونده خارجی سیستم را خواند. - + A new folder larger than %1 MB has been added: %2. یک پوشه جدید بزرگتر از 1% MB اضافه شده است: 2%. - + A folder from an external storage has been added. یک پوشه از یک مخزن خارجی اضافه شده است. - + Please go in the settings to select it if you wish to download it. اگر می خواهید این را دانلود کنید لطفا به تنظیمات بروید تا آن را انتخاب کنید. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + آیا فایل های جدید بارگزاری شود؟ - + Download new files دانلود همه فایلهای جدید - + Keep local files نگهداری فایل های محلی - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ If this was an accident and you decide to keep your files, they will be re-synce اگر این یک اتفاق بوده و شما تصمیم دارید پرونده هایتان را نگه دارید، آن ها از سرور مجددا همگام سازی خواهند شد. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -913,17 +913,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an ادامه همگام سازی به طور معمول سبب خواهد شد که تمام پرونده های شما توسط یک فایل قدیمی تر در یک وضعیت جدیدتر بازنویسی شوند. آیا شما می خواهید پرونده های اخیر محلیتان را به عنوان پرونده های ناسازگار نگهداری کنید؟ - + Backup detected پشتیبان شناسایی شد - + Normal Synchronisation همگام سازی معمول - + Keep Local Files as Conflict پرونده های محلی را به عنوان ناسازگار نگه دارید @@ -1910,7 +1910,7 @@ for additional privileges during the process. Free space: %1 - + فضای خالی: %1 @@ -1926,7 +1926,7 @@ for additional privileges during the process. There isn't enough free space in the local folder! - + فضای خالی کافی در پوشه محلی وجود ندارد! @@ -2013,7 +2013,7 @@ for additional privileges during the process. Keep your data secure and under your control - + داده های خود را امن و تحت کنترل خود نگه دارید @@ -2055,7 +2055,7 @@ It is not advisable to use it. Could not load certificate. Maybe wrong password? - + امکان بارگزاری گواهی وجود ندارد، ممکن است رمز عبور اشتباه باشد؟ @@ -2143,7 +2143,7 @@ It is not advisable to use it. creating folder on Nextcloud: %1 - + ایجاد پوشه در نکس کلود: %1 @@ -2250,7 +2250,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database خطا در نوشتن متادیتا در پایگاه داده @@ -2278,32 +2278,32 @@ It is not advisable to use it. فضای خالی دیسک کمتر از %1 است - + File was deleted from server فایل از روی سرور حذف شد - + The file could not be downloaded completely. فایل به طور کامل قابل دانلود نیست. - + The downloaded file is empty despite that the server announced it should have been %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 خطا در نوشتن متادیتا در پایگاه داده @@ -2316,7 +2316,7 @@ It is not advisable to use it. ؛ بازگردانی شکست خورد: 1% - + A file or folder was removed from a read only share, but restoring failed: %1 یک پرونده یا پوشه از یک اشتراک فقط خواندنی حذف شد، اما بازگردانی شکست خورد: 1% @@ -2651,7 +2651,7 @@ It is not advisable to use it. Icon - + آیکون @@ -2677,22 +2677,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + &لینک اشتراک - + Password: کلمه عبور - + Expiration date: تاریخ انقضا - + TextLabel برچسب متنی @@ -2734,12 +2734,12 @@ It is not advisable to use it. Unshare - + لغو اشتراک Add another link - + افزودن آدرس دیگر @@ -2765,22 +2765,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... اشتراک گذاری با کاربران یا گروه ها ... - + Copy link کپی کردن آدرس لینک - + No results for '%1' هیچ نتیجه ای برای '1%' وجود ندارد - + I shared something with you من چیزی را با شما به اشتراک گذاشتم @@ -2798,24 +2798,24 @@ It is not advisable to use it. می توان ویرایش کرد - + Can reshare - + امکان اشتراک گذاری وجود دارد - + Can create - + امکان ایجاد وجود دارد - + Can change - + امکان تغییر وجود دارد - + Can delete - + امکان حذف وجود دار @@ -3206,7 +3206,7 @@ It is not advisable to use it. Permission denied. - + عدم وجود دسترسی @@ -3221,7 +3221,7 @@ It is not advisable to use it. No space on %1 server available. - + فضایی در سرور %1 موجود نیست @@ -3400,7 +3400,7 @@ It is not advisable to use it. Invalid certificate detected - + گواهی نامعتبر شناسایی شد @@ -3567,7 +3567,7 @@ It is not advisable to use it. Resume all folders - + از سرگیری همه پوشه ها @@ -3608,7 +3608,7 @@ It is not advisable to use it. Apps - + برنامه ها @@ -3809,7 +3809,7 @@ It is not advisable to use it. Server Address - + آدرس سرور @@ -3856,12 +3856,12 @@ It is not advisable to use it. %n day ago - + %n روز گذشته%n روز گذشته %n days ago - + %n ساعت پیش%n روز پیش @@ -3899,7 +3899,7 @@ It is not advisable to use it. چند وقت پیش - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_fi.ts b/translations/client_fi.ts index 6bba5c026f27..325dc14d7083 100644 --- a/translations/client_fi.ts +++ b/translations/client_fi.ts @@ -35,7 +35,7 @@ No recently changed files - + Ei äskettäin muuttuneita tiedostoja @@ -50,37 +50,37 @@ Open website - + Avaa verkkosivusto Recently changed - + Äskettäin muutettu Pause synchronization - + Keskeytä synkronointi Help - + Ohje Settings - + Asetukset Log out - + Kirjaudu ulos Quit sync client - + Lopeta synkronointiasiakas @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + Tämä tili tukee päästä päähän -salausta Enable encryption - + Ota salaus käyttöön @@ -568,17 +568,17 @@ Hyväksy - + Synced Synkronoitu - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>Tilillä %1 ei ole toimia käytössä. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Virhe kirjoittaessa metadataa tietokantaan @@ -750,120 +750,120 @@ %1 ei ole luettavissa. - + %1 has been removed. %1 names a file. %1 on poistettu. - + %1 has been downloaded. %1 names a file. %1 on ladattu. - + %1 has been updated. %1 names a file. %1 on päivitetty. - + %1 has been renamed to %2. %1 and %2 name files. %1 on nimetty uudeelleen muotoon %2. - + %1 has been moved to %2. %1 on siirretty kohteeseen %2. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. Kohdetta %1 ei voi synkronoida virheen vuoksi. Katso tarkemmat tiedot lokista. - + Sync Activity Synkronointiaktiviteetti - + Could not read system exclude file - + A new folder larger than %1 MB has been added: %2. Uusi kansio kooltaan yli %1 Mt on lisätty: %2. - + A folder from an external storage has been added. Kansio erillisestä tallennustilasta on lisätty. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,46 +880,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Ladataanko uudet tiedostot? - + Download new files Lataa uudet tiedostot - + Keep local files Säilytä paikalliset tiedostot - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Varmuuskopio poistettu - + Normal Synchronisation Normaali synkronointi - + Keep Local Files as Conflict @@ -1795,7 +1795,7 @@ Logs will be written to %1 Could not parse the JSON returned from the server: <br><em>%1</em> - + Ei voitu jäsentää palvelimen palauttamaa JSON:ia: <br><em>%1</em> @@ -2247,7 +2247,7 @@ Osoitteen käyttäminen ei ole suositeltavaa. OCC::PropagateDirectory - + Error writing metadata to the database Virhe kirjoittaessa metadataa tietokantaan @@ -2275,32 +2275,32 @@ Osoitteen käyttäminen ei ole suositeltavaa. Levyllä on vapaata tilaa vähemmän kuin %1 - + File was deleted from server Tiedosto poistettiin palvelimelta - + The file could not be downloaded completely. Tiedostoa ei voitu ladata täysin. - + The downloaded file is empty despite that the server announced it should have been %1. - + 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 @@ -2313,7 +2313,7 @@ Osoitteen käyttäminen ei ole suositeltavaa. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2674,22 +2674,22 @@ Osoitteen käyttäminen ei ole suositeltavaa. OCC::ShareLinkWidget - + &Share link &Jaa linkki - + Password: Salasana: - + Expiration date: Vanhenemispäivä: - + TextLabel TekstiLeima @@ -2762,22 +2762,22 @@ Osoitteen käyttäminen ei ole suositeltavaa. OCC::ShareUserGroupWidget - + Share with users or groups ... Jaa käyttäjien tai ryhmien kanssa… - + Copy link Kopioi linkki - + No results for '%1' Ei tuloksia haulla '%1' - + I shared something with you Jaoin jotain kanssasi @@ -2795,22 +2795,22 @@ Osoitteen käyttäminen ei ole suositeltavaa. voi muokata - + Can reshare Voi uudelleenjakaa - + Can create Voi luoda - + Can change Voi muuttaa - + Can delete Voi poistaa @@ -3416,7 +3416,7 @@ Osoitteen käyttäminen ei ole suositeltavaa. Please login with the user: %1 - + Kirjaudu käyttäjänä: %1 @@ -3897,7 +3897,7 @@ Osoitteen käyttäminen ei ole suositeltavaa. Jokin aika sitten - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_fr.ts b/translations/client_fr.ts index ccc6ee795213..5e5bdeb364a5 100644 --- a/translations/client_fr.ts +++ b/translations/client_fr.ts @@ -568,17 +568,17 @@ Accepter - + Synced Synchronisé - + Retry all uploads Relancer tous les envois - + <br/>Account %1 does not have activities enabled. <br/>Le compte %1 n'a aucune activité activée. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Erreur à l'écriture des métadonnées dans la base de données @@ -750,98 +750,98 @@ %1 ne peut pas être lu. - + %1 has been removed. %1 names a file. %1 a été supprimé. - + %1 has been downloaded. %1 names a file. %1 a été téléchargé. - + %1 has been updated. %1 names a file. %1 a été mis à jour. - + %1 has been renamed to %2. %1 and %2 name files. %1 a été renommé en %2. - + %1 has been moved to %2. %1 a été déplacé vers %2. - + %1 and %n other file(s) have been removed. %1 a été supprimé.%1 et %n autres fichiers ont été supprimés. - + %1 and %n other file(s) have been downloaded. %1 a été téléchargé.%1 et %n autres fichiers ont été téléchargés. - + %1 and %n other file(s) have been updated. %1 a été mis à jour.%1 et %n autres fichiers ont été mis à jour. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 a été renommé en %2.%1 a été renommé en %2 et %n autres fichiers ont été renommés. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 a été déplacé vers %2.%1 a été déplacé vers %2 et %n autres fichiers ont été déplacés. - + %1 has and %n other file(s) have sync conflicts. %1 a un conflit de synchronisation.%1 et %n autres fichiers ont des problèmes de synchronisation. - + %1 has a sync conflict. Please check the conflict file! %1 a un problème de synchronisation. Merci de vérifier le fichier conflit ! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 ne peut pas être synchronisé en raison d'erreurs. Consultez les logs pour les détails.%1 et %n autres fichiers n'ont pas pu être synchronisés en raison d'erreurs. Consultez les logs pour les détails. - + %1 could not be synced due to an error. See the log for details. %1 n'a pu être synchronisé pour cause d'erreur. Consultez les logs pour les détails. - + Sync Activity Activité de synchronisation - + Could not read system exclude file Impossible de lire le fichier d'exclusion du système - + A new folder larger than %1 MB has been added: %2. Un nouveau dossier de taille supérieure à %1 Mo a été ajouté : %2. - + A folder from an external storage has been added. Un nouveau dossier localisé sur un stockage externe a été ajouté. @@ -849,22 +849,22 @@ - + Please go in the settings to select it if you wish to download it. Merci d'aller dans les Paramètres pour indiquer si vous souhaitez le télécharger. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Le dossier %1 a été créé mais il était exclu de la synchronisation auparavant. Les données qu'il contient ne seront pas synchronisées. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Le fichier %1 a été créé mais il était exclu de la synchronisation auparavant. Il ne sera pas synchronisé. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -878,7 +878,7 @@ Cela signifie que le client de synchronisation peut ne pas télécharger immédi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -889,22 +889,22 @@ Si vous décidez de garder ces fichiers, ils seront resynchronisés avec le serv Si vous décidez de supprimer ces fichiers, ils ne vous seront plus accessibles à moins que vous n'en soyez le propriétaire. - + Download new files? Recevoir les nouveaux fichiers ? - + Download new files Recevoir les nouveaux fichiers - + Keep local files Conserver les fichiers locaux - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -913,7 +913,7 @@ If this was an accident and you decide to keep your files, they will be re-synce S'il s'agissait d'un accident et que vous choisissiez de conserver vos fichiers, ils seront synchronisés à nouveau depuis le serveur. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -922,17 +922,17 @@ Cela peut être dû à une copie de sauvegarde restaurée sur le serveur. Continuer la synchronisation comme d'habitude fera en sorte que tous les fichiers soient remplacés par des fichiers plus vieux d'un état précédent. Voulez-vous conserver les versions les plus récentes de vos fichiers en tant que fichiers conflictuels ? - + Backup detected Sauvegarde détectée - + Normal Synchronisation Synchronisation normale - + Keep Local Files as Conflict Conserver les fichiers locaux comme Conflits @@ -2265,7 +2265,7 @@ Il est déconseillé de l'utiliser. OCC::PropagateDirectory - + Error writing metadata to the database Erreur à l'écriture des métadonnées dans la base de données @@ -2293,32 +2293,32 @@ Il est déconseillé de l'utiliser. Il y a moins de %1 d'espace libre sur le disque - + File was deleted from server Le fichier a été supprimé du serveur - + The file could not be downloaded completely. Le fichier n'a pas pu être téléchargé intégralement. - + The downloaded file is empty despite that the server announced it should have been %1. Le fichier reçu 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 @@ -2331,7 +2331,7 @@ Il est déconseillé de l'utiliser. ; Échec de la restauration : %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un fichier ou un dossier a été supprimé d'un partage en lecture seule, mais la restauration a échoué : %1 @@ -2692,22 +2692,22 @@ Il est déconseillé de l'utiliser. OCC::ShareLinkWidget - + &Share link &Lien de partage - + Password: Mot de passe : - + Expiration date: Date d'expiration : - + TextLabel TextLabel @@ -2781,22 +2781,22 @@ Il est déconseillé de l'utiliser. OCC::ShareUserGroupWidget - + Share with users or groups ... Partager avec des utilisateurs ou groupes... - + Copy link Copier le lien - + No results for '%1' Aucun résultat pour '%1' - + I shared something with you J'ai partagé quelque chose avec vous @@ -2814,22 +2814,22 @@ Il est déconseillé de l'utiliser. peut modifier - + Can reshare Peut repartager - + Can create Peut créer - + Can change Peut modifier - + Can delete Peut supprimer @@ -3916,7 +3916,7 @@ Il est déconseillé de l'utiliser. Il y a quelque temps - + %1: %2 this displays an error string (%2) for a file %1 %1 : %2 diff --git a/translations/client_gl.ts b/translations/client_gl.ts index 7fd9b824cc9f..3c7888105223 100644 --- a/translations/client_gl.ts +++ b/translations/client_gl.ts @@ -568,17 +568,17 @@ Aceptar - + Synced Sincronizado - + Retry all uploads Tentar de novo todos os envíos - + <br/>Account %1 does not have activities enabled. <br/>A conta %1 non ten activadas as actividades. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Produciuse un erro ao escribir os metadatos na base de datos @@ -750,120 +750,120 @@ %1 non é lexíbel. - + %1 has been removed. %1 names a file. %1 foi retirado. - + %1 has been downloaded. %1 names a file. %1 foi descargado. - + %1 has been updated. %1 names a file. %1 foi enviado. - + %1 has been renamed to %2. %1 and %2 name files. %1 foi renomeado a %2. - + %1 has been moved to %2. %1 foi movido a %2. - + %1 and %n other file(s) have been removed. %1 e outro ficheiro foi retirado.%1 e outros %n ficheiros foron retirados. - + %1 and %n other file(s) have been downloaded. %1 e outro ficheiro foi descargado.%1 e outros %n ficheiros foron descargados. - + %1 and %n other file(s) have been updated. %1 e outro ficheiro foi actualizado.%1 e outros %n ficheiros foron actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 foi renomeado a %2 e outro ficheiro tamén foi renomeado.%1 foi renomeado a %2 e outros %n ficheiros tamén foron renomeados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 foi movido a %2 e outro ficheiro tamén foi movido.%1 foi movido a %2 e outros %n ficheiros tamén foron movidos. - + %1 has and %n other file(s) have sync conflicts. %1 e outro ficheiro tiveron conflitos ao sincronizar.%1 e outros %n ficheiros tiveron conflitos ao sincronizar. - + %1 has a sync conflict. Please check the conflict file! Produciuse un conflito ao sincronizar %1. Comprobe o ficheiro! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. Non foi posíbel sincronizar %1 e outro ficheiro por mor de erros. Vexa os detalles no rexistro.Non foi posíbel sincronizar %1 e outros %n ficheiros por mor de erros. Vexa os detalles no rexistro. - + %1 could not be synced due to an error. See the log for details. Non foi posíbel sincronizar %1 por mor dun erro. Vexa os detalles no rexistro. - + Sync Activity Actividade de sincronización - + Could not read system exclude file Non foi posíbel ler o ficheiro de exclusión do sistema - + A new folder larger than %1 MB has been added: %2. Foi engadido un cartafol maior de %1 MB: %2. - + A folder from an external storage has been added. Foi engadido un cartafol de almacenamento externo. - + Please go in the settings to select it if you wish to download it. Vaia a axustes a seleccionalo se quere descargar isto. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Creouse o cartafol %1 mais foi excluído da sincronización con anterioridade. Os datos no seu interior non se sincronizarán. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Creouse o ficheiro %1 mais foi excluído da sincronización con anterioridade. Non se sincronizará. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Isto significa que o cliente de sincronización podería non enviar os cambios i %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Se decide manter os ficheiros, resincronizaranse co servidor se ten dereitos par Se decide eliminar os ficheiros, non poderá dispor deles a non ser que sexa o propietario. - + Download new files? Descargar os ficheiros novos? - + Download new files Descargar os ficheiros novos - + Keep local files Manter os ficheiros locais - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -912,7 +912,7 @@ Confirma que quere sincronizar estas accións co servidor? Se fose un accidente e decide manter os seus ficheiros, volverán ser sincronizados dende o servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -921,17 +921,17 @@ Isto podería ser porque se restaurou unha copia de seguranza no servidor. Continuando a sincronización como normal fará que todos os seus ficheiros sexan substituídos por unha versión anterior. Quere manter os seus ficheiros máis recentes locais como ficheiros en conflito? - + Backup detected Detectouse unha copia de seguranza - + Normal Synchronisation Sincronización normal - + Keep Local Files as Conflict Mantener os ficheiros locais en caso de conflito @@ -2264,7 +2264,7 @@ Recomendámoslle que non o use. OCC::PropagateDirectory - + Error writing metadata to the database Produciuse un erro ao escribir os metadatos na base de datos @@ -2292,32 +2292,32 @@ Recomendámoslle que non o use. O espazo libre no disco é inferior a %1 - + File was deleted from server O ficheiro vai ser eliminado do servidor - + The file could not be downloaded completely. Non foi posíbel descargar completamente o ficheiro. - + The downloaded file is empty despite that the server announced it should have been %1. O ficheiro descargado está baleiro, aínda que o servidor dí que o seu tamaño debe ser de %1. - + 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 ser atopado - + Error writing metadata to the database Produciuse un erro ao escribir os metadatos na base de datos @@ -2330,7 +2330,7 @@ Recomendámoslle que non o use. ; Produciuse un fallo na restauración: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un ficheiro ou cartafol foi eliminado dun recurso compartido só de lectura, pero fallou a restauración: %1 @@ -2691,22 +2691,22 @@ Recomendámoslle que non o use. OCC::ShareLinkWidget - + &Share link Ligazón &compartida - + Password: Contrasinal: - + Expiration date: Data de caducidade: - + TextLabel Etiqueta de texto @@ -2779,22 +2779,22 @@ Recomendámoslle que non o use. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartir con usuarios ou grupos... - + Copy link Copiar a ligazón - + No results for '%1' Non hai resultados para «%1» - + I shared something with you Compartín algo con vostede @@ -2812,22 +2812,22 @@ Recomendámoslle que non o use. pode editar - + Can reshare Pode volver compartir - + Can create Pode crear - + Can change Pode cambiar - + Can delete Pode eliminar @@ -3914,7 +3914,7 @@ Recomendámoslle que non o use. Hai algún tempo - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_he.ts b/translations/client_he.ts index d8f64416ee84..21719cfebe94 100644 --- a/translations/client_he.ts +++ b/translations/client_he.ts @@ -568,17 +568,17 @@ אשר - + Synced סונכרן - + Retry all uploads נסה מחדש את כל ההעלאות - + <br/>Account %1 does not have activities enabled. חשבון %1 לא איפשר את מצב הפעילויות. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database איראה שגיאה בעת כתיבת metadata ל מסד הנתונים @@ -750,120 +750,120 @@ %1 אינה ניתנת לקריאה. - + %1 has been removed. %1 names a file. %1 הוסרה. - + %1 has been downloaded. %1 names a file. %1 התקבלה. - + %1 has been updated. %1 names a file. %1 עודכנה. - + %1 has been renamed to %2. %1 and %2 name files. השם של %1 הוחלף בשם %2. - + %1 has been moved to %2. %1 הועברה אל %2. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. - + Sync Activity פעילות סנכרון - + Could not read system exclude file לא ניתן לקרוא את קובץ ההחרגה של המערכת. - + A new folder larger than %1 MB has been added: %2. נוספה תיקייה שגודלה הוא מעבר ל־%1 מ״ב: %2. - + A folder from an external storage has been added. נוספה תיקייה ממקור חיצוני. - + Please go in the settings to select it if you wish to download it. נא לגשת להגדרות כדי לבחור אם ברצונך להוריד אותה. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. התיקייה %1 נוצרה אך הוחרגה מהסנכרון בעבר. הנתונים שבתוכה לא יסונכרנו. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,46 +880,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? להוריד קבצים חדשים? - + Download new files להוריד קבצים חדשים - + Keep local files להשאיר את הקבצים המקומיים - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected התגלה גיבוי - + Normal Synchronisation סנכרון רגיל - + Keep Local Files as Conflict להשאיר את הקבצים המקומיים כסותרים @@ -2244,7 +2244,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database שגיאה בכתיבת נתוני העל למסד הנתונים @@ -2272,32 +2272,32 @@ It is not advisable to use it. - + File was deleted from server הקובץ נמחק מהשרת - + The file could not be downloaded completely. לא ניתן להוריד את הקובץ במלואו. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database @@ -2310,7 +2310,7 @@ It is not advisable to use it. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2671,22 +2671,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: ססמה: - + Expiration date: מועד תפוגת תוקף: - + TextLabel @@ -2759,22 +2759,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... שיתוף עם משתמשים או קבוצות… - + Copy link העתקת קישור - + No results for '%1' אין תוצאות לחיפוש אחר ‚%1’ - + I shared something with you שיתפת אתך משהו @@ -2792,22 +2792,22 @@ It is not advisable to use it. הרשאה לעריכה - + Can reshare הרשאה לשיתוף מחדש - + Can create הרשאה ליצירה - + Can change הרשאה לעריכה - + Can delete הרשאה למחיקה @@ -3892,7 +3892,7 @@ It is not advisable to use it. ממש לא מזמן - + %1: %2 this displays an error string (%2) for a file %1 diff --git a/translations/client_hu.ts b/translations/client_hu.ts index d0e1da552ca9..8fbade33b9f0 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + Ez a fiók támogatja a végpontok közötti titkosítást Enable encryption - + Titkosítás engedélyezése @@ -568,17 +568,17 @@ Elfogadás - + Synced Szinkronizálva - + Retry all uploads Összes feltöltés újrapróbálása - + <br/>Account %1 does not have activities enabled. <br/>A(z) %1 fióknál nincsenek tevékenységek engedélyezve. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Hiba a metaadatok adatbázisba írásakor @@ -750,120 +750,120 @@ A(z) %1 nem olvasható. - + %1 has been removed. %1 names a file. A(z) %1 sikeresen eltávolítva. - + %1 has been downloaded. %1 names a file. A(z) %1 sikeresen letöltve. - + %1 has been updated. %1 names a file. A(z) %1 sikeresen feltöltve. - + %1 has been renamed to %2. %1 and %2 name files. A(z) %1 átnevezve erre: %2. - + %1 has been moved to %2. A(z) %1 áthelyezve ide: %2. - + %1 and %n other file(s) have been removed. A(z) %1 és %d további fájl törölve.A(z) %1 és %d további fájl törölve. - + %1 and %n other file(s) have been downloaded. A(z) %1 és %n további fájl letöltve.A(z) %1 és %n további fájl letöltve. - + %1 and %n other file(s) have been updated. A(z) %1 és %n további fájl feltöltve.A(z) %1 és %n további fájl feltöltve. - + %1 has been renamed to %2 and %n other file(s) have been renamed. A(z) %1 átnevezve erre: %2, és még %n további fájl lett átnevezve.A(z) %1 átnevezve erre: %2, és még %n további fájl lett átnevezve. - + %1 has been moved to %2 and %n other file(s) have been moved. A(z) %1 áthelyezve ide: %2, és még %n további fájl áthelyezve.A(z) %1 áthelyezve ide: %2, és még %n további fájl áthelyezve. - + %1 has and %n other file(s) have sync conflicts. A(z) %1 és %n további fájl szinkronizálási ütközéssel rendelkezik.A(z) %1 és %n további fájl szinkronizálási ütközéssel rendelkezik. - + %1 has a sync conflict. Please check the conflict file! A(z) %1 fájl szinkronizálási ütközéssel rendelkezik. Ellenőrizze az ütközési fájlt! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. A(z) %1 és %n további fájl hibák miatt nem szinkronizálható. Bővebb információk a naplófájlban.A(z) %1 és %n további fájl hibák miatt nem szinkronizálható. Bővebb információk a naplófájlban. - + %1 could not be synced due to an error. See the log for details. A(z) %1 hiba miatt nem szinkronizálható. Bővebb információk a naplófájlban. - + Sync Activity Szinkronizálási tevékenység - + Could not read system exclude file Nem lehetett beolvasni a rendszer kizárási fájlját - + A new folder larger than %1 MB has been added: %2. Egy %1 MB méretet meghaladó mappa lett hozzáadva: %2. - + A folder from an external storage has been added. Egy külső tárolóból származó mappa lett hozzáadva. - + Please go in the settings to select it if you wish to download it. A beállításoknál válassza ki, ha le szeretné tölteni. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. A(z) %1 mappa létre lett hozva, de előzőleg ki lett hagyva a szinkronizálásból. A benne lévő adatok nem lesznek szinkronizálva. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. A(z) %1 fájl létre lett hozva, de előzőleg ki lett hagyva a szinkronizálásból. Nem lesz szinkronizálva. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Ez azt jelenti, hogy a szinkronizációs kliens lehet, hogy nem fogja azonnal fe %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Ha úgy dönt, hogy megtartja a fájlokat, akkor újra fel lesznek töltve a kis Ha úgy dönt, hogy törli ezeket a fájlokat, akkor többé nem fogja azokat elérni, hacsak nem Ön a tulajdonos. - + Download new files? Letölti az új fájlokat? - + Download new files Új fájlok letöltése - + Keep local files Helyi fájlok megtartása - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ Biztos, hogy szinkronizálni akarja ezeket a változásokat a kiszolgálóval? Ha ez véletlen volt, és úgy dönt, hogy megtartja ezeket a fájlokat, akkor újra letöltésre kerülnek a kiszolgálóról. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Ez lehet, hogy azért van, mert egy biztonsági mentést állíthattak vissza a A szinkronizálás folytatásával az összes fájlja felül lesz írva egy régebbi állapottal. Megtartja ütközési fájlként a legfrissebb helyi fájlokat? - + Backup detected Biztonsági mentés észlelve - + Normal Synchronisation Normál szinkronizálás - + Keep Local Files as Conflict Helyi fájlok megtartása ütközésként @@ -2262,7 +2262,7 @@ Használata nem ajánlott. OCC::PropagateDirectory - + Error writing metadata to the database Hiba a metaadatok adatbázisba írásakor @@ -2290,32 +2290,32 @@ Használata nem ajánlott. A lemezen lévő szabad hely kevesebb mint %1 - + File was deleted from server A fájl törlésre került a kiszolgálóról - + The file could not be downloaded completely. A fájl nem tölthető le teljesen. - + The downloaded file is empty despite that the server announced it should have been %1. A letöltött fájl üres, annak ellenére, hogy a kiszolgáló szerint %1 méretű kellene legyen. - + File %1 cannot be saved because of a local file name clash! A(z) %1 fájl nem menthető, mert ütközik egy helyi fájl nevével. - + File has changed since discovery A fájl változott a felfedezése óta - + Error writing metadata to the database Hiba a metaadatok adatbázisba írásakor @@ -2328,7 +2328,7 @@ Használata nem ajánlott. ; Sikertelen helyreállítás: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 A fájl vagy mappa egy csak olvasható megosztásról lett törölve, de a helyreállítás meghiúsult: %1 @@ -2689,22 +2689,22 @@ Használata nem ajánlott. OCC::ShareLinkWidget - + &Share link &Megosztási hivatkozás - + Password: Jelszó: - + Expiration date: Lejárati idő: - + TextLabel Címke @@ -2777,22 +2777,22 @@ Használata nem ajánlott. OCC::ShareUserGroupWidget - + Share with users or groups ... Megosztás felhasználókkal vagy csoportokkal … - + Copy link Hivatkozás másolása - + No results for '%1' Nincs találat erre: „%1” - + I shared something with you Megosztottam Önnel valamit @@ -2810,22 +2810,22 @@ Használata nem ajánlott. szerkesztheti - + Can reshare Újra megosztható - + Can create Létrehozható - + Can change Módosítható - + Can delete Törölhető @@ -2853,7 +2853,7 @@ Használata nem ajánlott. SSL Cipher Debug View - + SSL titkosítási hibakereső nézet @@ -3418,7 +3418,7 @@ Használata nem ajánlott. The host "%1" provided an invalid certificate. Continue? - + A(z) „%1” kiszolgáló érvénytelen tanúsítványt adott meg. Folytatja? @@ -3912,7 +3912,7 @@ Használata nem ajánlott. Néhány perccel ezelőtt - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_id.ts b/translations/client_id.ts new file mode 100644 index 000000000000..4b41b1ea100c --- /dev/null +++ b/translations/client_id.ts @@ -0,0 +1,4190 @@ + + + CloudProviderWrapper + + + %1 (%2, %3) + %1 (%2, %3) + + + + Checking for changes in '%1' + Memeriksa perubahan pada '%1' + + + + Syncing %1 of %2 (%3 left) + Sinkronisasi %1 dari %2 (tersisa %3) + + + + Syncing %1 of %2 + Sinkronisasi %1 dari %2 + + + + Syncing %1 (%2 left) + %1 Sinkronisasi (tersisa %2) + + + + Syncing %1 + Sinkronisasi %1 + + + + + No recently changed files + Tidak ada perubahan berkas terbaru + + + + Sync paused + Sinkronisasi dijeda + + + + Syncing + Sinkronisasi berlangsun + + + + Open website + Buka situs web + + + + Recently changed + Perubahan terbaru + + + + Pause synchronization + Jeda sinkronisasi + + + + Help + Bantuan + + + + Settings + Pengaturan + + + + Log out + Log keluar + + + + Quit sync client + Hentikan klien sinkron + + + + Dialog + + + Dialog + Dialog + + + + Label + Label + + + + FileSystem + + + Could not make directories in trash + Tidak dapat membuat direktori pada tempat sampah + + + + + Could not move '%1' to '%2' + Tidak dapat memindahkan '%1' ke '%2' + + + + Moving to the trash is not implemented on this platform + Memindahkan tempat sampat tidak diimplementasikan pada platform ini + + + + FolderWizardSourcePage + + + Form + Form + + + + Pick a local folder on your computer to sync + Pilih direktori lokal pada komputer Anda untuk sinkronisasi + + + + &Choose... + &Pilih... + + + + FolderWizardTargetPage + + + Form + Form + + + + Select a remote destination folder + Pilih destinasi folder remote + + + + Create Folder + Buat Folder + + + + Refresh + Segarkan + + + + Folders + Folder-folder + + + + TextLabel + LabelTeks + + + + OCC::AbstractNetworkJob + + + Connection timed out + Koneksi terputus + + + + Unknown error: network reply was deleted + Galat tidak diketahui: balasan jaringan telah dihapus + + + + Server replied "%1 %2" to "%3 %4" + Server membalas "%1 %2" ke "%3 %4" + + + + OCC::AccountManager + + + End to end encryption mnemonic + Enkripsi mnemonic end to end + + + + To protect your Cryptographic Identity, we encrypt it with a mnemonic of 12 dictionary words. Please note these down and keep them safe. They will be needed to add other devices to your account (like your mobile phone or laptop). + Untuk melindungi Identitas Kriptografi Anda, kami mengenkripsinya dengan sebuah mnemonic dari 12 kamus kata. Mohon untuk dicatat dan amankan. Enkripsi ini akan dibutuhkan untuk menambah perangkat lainnya ke akun Anda (seperti ponsel Anda atau laptop). + + + + OCC::AccountSettings + + + Form + Form + + + + ... + ... + + + + Storage space: ... + Ruang penyimpanan: ... + + + + Unchecked folders will be <b>removed</b> from your local file system and will not be synchronized to this computer anymore + Folder yang tidak dicentang akan <b>dihapus</b> dari berkas lokal sistem Anda dan tidak akan disinkronisasi ke komputer ini lagi + + + + Synchronize all + Sinkronisasi semua + + + + Synchronize none + Tidak ada sinkronisasi + + + + Apply manual changes + Terapkan perubahan secara manual + + + + Apply + Terapkan + + + + + + Cancel + Batal + + + + Connected with <server> as <user> + Terhubung dengan <server> sebagai <user> + + + + No account configured. + Belum ada akun terkonfigurasi + + + + Add new + Tambahkan baru + + + + Remove + Buang + + + + Account + Akun + + + + This account supports end-to-end encryption + Akun ini mendukung enkripsi end-to-end + + + + Enable encryption + Hidupkan enkripsi + + + + Show E2E mnemonic + Tampilkan E2E mnemonic + + + + Encrypt + Enkrip + + + + Choose what to sync + Pilih apa yang akan disinkron + + + + Force sync now + Paksa sinkronisasi sekarang + + + + Restart sync + Ulang sinkronisasi + + + + Remove folder sync connection + Hapus koneksi sinkronisasi folder + + + + Folder creation failed + Pembuatan Folder gagal + + + + <p>Could not create local folder <i>%1</i>. + <p>Tidak dapat membuat folder lokal <i>%1</i> + + + + Confirm Folder Sync Connection Removal + Konfirmasi Penghapusan Koneksi Sinkronisasi Folder + + + + Remove Folder Sync Connection + Hapus Koneksi Sinkronisasi Folder + + + + Sync Running + Sinkronisasi berlangsung + + + + The syncing operation is running.<br/>Do you want to terminate it? + Operasi sinkronisasi sedang berjalan. <br/>Apakah Anda ingin membatalkannya? + + + + %1 in use + %1 digunakan + + + + %1 as <i>%2</i> + %1 sebagai <i>%2</i> + + + + The server version %1 is old and unsupported! Proceed at your own risk. + Versi server %1 sudah usang dan tidak lagi di dukung! Resiko tanggung sendiri. + + + + Connected to %1. + Tersambung ke %1. + + + + Server %1 is temporarily unavailable. + Peladen %1 sementara tidak tersedia. + + + + Server %1 is currently in maintenance mode. + Peladen %1 sementara dalam moda pemeliharaan. + + + + Signed out from %1. + Log keluar dari %1. + + + + Obtaining authorization from the browser. <a href='%1'>Click here</a> to re-open the browser. + Mendapatkan autorisasi dari browser. <a href='%1'>Klik disini</a> untuk membuka ulang browser. + + + + Connecting to %1... + Menghubungi ke %1... + + + + No connection to %1 at %2. + Tidak ada koneksi ke %1 di %2. + + + + Log in + Log masuk + + + + There are folders that were not synchronized because they are too big: + Terdapat folder tidak tersinkronisasi karena terlalu besar: + + + + There are folders that were not synchronized because they are external storages: + Terdapat folder tidak tersinkronisasi karena penyimpanan eksternal: + + + + There are folders that were not synchronized because they are too big or external storages: + Terdapat folder tidak tersinkronisasi karena terlalu besar atau penyimpanan ekternal: + + + + Confirm Account Removal + Konfirmasi pemutusan akun + + + + <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> Apakah Anda ingin menghapus koneksi untuk akun <i> %1</i>?</p> <p><b> Catatan: </b> Aksi ini tidak akan menghapus berkas apapun.</p> + + + + Remove connection + Hapus koneksi + + + + + Open folder + Buka folder + + + + + Log out + Log keluar + + + + Resume sync + Lanjutkan sinkron + + + + Pause sync + Jeda sinkron + + + + <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> Apakah Anda ingin menghentikan sinkronisasi folder <i>%1</i>?</p><p><b> Catatan:</b> Aksi ini tidak akan menghapus berkas apapun.</p> + + + + %1 (%3%) of %2 in use. Some folders, including network mounted or shared folders, might have different limits. + %1 (%3%) dari %2 sedang digunakan. Beberapa folder, termasuk jaringan yang terpasang atau folder yang telah dibagikan, kemungkinan mempunyai beberapa keterbatasan. + + + + %1 of %2 in use + %1 dari %2 sedang digunakan + + + + Currently there is no storage usage information available. + Saat ini tidak ada informasi penggunaan ruang yang tersedia. + + + + No %1 connection configured. + Tidak ada koneksi %1 yang dikonfigurasi. + + + + OCC::AccountState + + + Signed out + Log keluar + + + + Disconnected + Terputus + + + + Connected + Tersambung + + + + Service unavailable + Layanan tidak tersedia + + + + Maintenance mode + Mode perbaikan + + + + Network error + Kesalahan jaringan + + + + Configuration error + Kesalahan konfigurasi + + + + Asking Credentials + Menanyakan Kredensial + + + + Unknown account state + Kondisi akun tidak diketahui + + + + OCC::ActivityItemDelegate + + + %1 + %1 + + + + More information + Informasi lebih lanjut + + + + Accept + Terima + + + + Join + Gabung + + + + Open Browser + Buka Peramban + + + + OCC::ActivityWidget + + + Form + Form + + + + TextLabel + LabelTeks + + + + Accept + Terima + + + + Synced + Tersinkronisasi + + + + Retry all uploads + Mencoba semua unggahan + + + + <br/>Account %1 does not have activities enabled. + <br/>Akun %1 tidak memiliki aktivitas yang diaktifkan. + + + + OCC::AddCertificateDialog + + + SSL client certificate authentication + Sertifikat autentikasi klien SSL + + + + This server probably requires a SSL client certificate. + Server ini kemungkinan mengharuskan sebuah sertifikat klien SSL. + + + + Certificate & Key (pkcs12) : + Sertifikat & Kunci (pkcs12) : + + + + Browse... + Jelajahi... + + + + Certificate password : + Kata sandi sertifikat : + + + + Select a certificate + Pilih sertifikat + + + + Certificate files (*.p12 *.pfx) + Berkas sertifikat (*.p12 *.pfx) + + + + OCC::Application + + + Error accessing the configuration file + Galat saat mengakses berkas konfigurasi + + + + There was an error while accessing the configuration file at %1. Please make sure the file can be accessed by your user. + Terdapat kesalahan saat mengakses berkas konfigurasi pada %1. Mohon untuk memastikan berkas dapat diakses oleh pengguna Anda. + + + + Quit %1 + Keluar dari %1 + + + + OCC::AuthenticationDialog + + + Authentication Required + Autentikasi Diperlukan + + + + Enter username and password for '%1' at %2. + Masukkan nama pengguna dan kata sandi untuk '%1' di %2. + + + + &User: + &Pengguna: + + + + &Password: + &Kata sandi: + + + + OCC::CleanupPollsJob + + + Error writing metadata to the database + Kesalahan saat menulis metadata ke database + + + + OCC::ClientSideEncryption + + + Please enter your end to end encryption passphrase:<br><br>User: %2<br>Account: %3<br> + Mohon untuk memasukkan kata sandi (passphrase) enkripsi end to end Anda: <br><br>Pengguna: %2<br>Akun: %3<br> + + + + Enter E2E passphrase + Masukkan kata sandi (passphrase) E2E + + + + OCC::ConnectionValidator + + + No ownCloud account configured + Belum ada akun ownCloud yang dikonfigurasi + + + + The configured server for this client is too old + Server yang telah dikonfigurasi untuk klien ini sudah terlalu usang + + + + Please update to the latest server and restart the client. + Mohon untuk memperbaharui ke server yang terbaru kemudian restart klien. + + + + Authentication error: Either username or password are wrong. + Autentikasi bermasalah: Nama pengguna atau kata sandi salah. + + + + timeout + waktu habis + + + + The provided credentials are not correct + Kredensial yang telah disediakan tidak benar + + + + OCC::DiscoveryMainThread + + + Aborted by the user + Dibatalkan oleh pengguna + + + + OCC::DiscoverySingleDirectoryJob + + + The server file discovery reply is missing data. + Ada data yang hilang di berkas server deteksi balasan. + + + + OCC::Folder + + + Local folder %1 does not exist. + Tidak ditemukan folder lokal %1. + + + + %1 should be a folder but is not. + %1 seharusnya sebuah folder namun ini bukan. + + + + %1 is not readable. + %1 tidak dapat dibaca. + + + + %1 has been removed. + %1 names a file. + %1 telah dihapus. + + + + %1 has been downloaded. + %1 names a file. + %1 telah diunduh. + + + + %1 has been updated. + %1 names a file. + %1 telah diperbaharui. + + + + %1 has been renamed to %2. + %1 and %2 name files. + %1 telah diubah namanya ke %2. + + + + %1 has been moved to %2. + %1 telah dipindah ke %2. + + + + %1 and %n other file(s) have been removed. + %1 dan %n berkas lainnya telah dihapus. + + + + %1 and %n other file(s) have been downloaded. + %1 dan %n berkas lainnya telah diunduh. + + + + %1 and %n other file(s) have been updated. + %1 dan %n berkas lainnya telah diperbaharui. + + + + %1 has been renamed to %2 and %n other file(s) have been renamed. + %1 dan %n berkas lainnya telah dinamai ulang. + + + + %1 has been moved to %2 and %n other file(s) have been moved. + %1 telah dipindah ke %2 dan juga %n berkas lainnya telah dipindah. + + + + %1 has and %n other file(s) have sync conflicts. + %1 dan %n berkas lainnya mempunyai konflik sinkronisasi. + + + + %1 has a sync conflict. Please check the conflict file! + %1 memiliki konflik sinkronisasi. Mohon cek kembali berkasnya! + + + + %1 and %n other file(s) could not be synced due to errors. See the log for details. + %1 dan %n berkas lainnya tidak dapat disinkronisasi disebabkan kesalahan. Lihat catatan log untuk lebih lanjut. + + + + %1 could not be synced due to an error. See the log for details. + %1 tidak dapat disinkronisasi disebabkan kesalahan. Lihat catatan log untuk lebih lanjut. + + + + Sync Activity + Aktivitas Sinkronisasi + + + + Could not read system exclude file + Tidak dapat membaca berkas sistem yang dikecualikan + + + + A new folder larger than %1 MB has been added: %2. + + Sebuah folder baru lebih dari %1 MB telah ditambahkan: %2. + + + + + A folder from an external storage has been added. + + Sebuah folder dari luar ruang penyimpanan telah ditambahkan. + + + + + Please go in the settings to select it if you wish to download it. + Mohon untuk ke pengaturan untuk memilihnya jika Anda ingin mengunduhnya. + + + + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. + Folder %1 telah dibuat namun dikecualikan dari sinkronisasi sebelumnya. Data yang ada di dalamnya tidak akan disinkronisasi. + + + + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. + Berkas %1 telah dibuat namun dikecualikan dari sinkronisasi sebelumnya. Data yang ada di dalamnya tidak akan disinkronisasi. + + + + Changes in synchronized folders could not be tracked reliably. + +This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). + +%1 + Perubahan di folder yang tersinkronisasi tidak dapat dilacak reabilitasnya. + +Ini artinya sinkronisasi klien mungkin tidak menggunggah perubahan lokal sesegera mungkin dan justru akan memindai perubahan lokal saja dan dalam waktu senggan akan mengunggahnya (setiap dua jam dari bawaan). + +%1 + + + + All files in the sync folder '%1' folder were deleted on the server. +These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. +If you decide to keep the files, they will be re-synced with the server if you have rights to do so. +If you decide to delete the files, they will be unavailable to you, unless you are the owner. + Semua berkas di dalam sinkronisasi folder '%1' telah dihapus dari server. +Perubahan ini akan disinkronisasi ke folder sinkronisasi lokal Anda, termasuk membuat berkas-berkas Anda tidak lagi tersedia kecuali Anda mempunyai hak untuk memulihkannya kembali. +Jika Anda memutuskan untuk berkas Anda tetap tersedia, berkas-berkas Anda akan disinkronisasi ulang dengan server jika Anda mempunyai hak akses untuk melakukannya. +Jika Anda memutuskan untuk menghapusnya, berkas-berkas Anda tidak akan lagi tersedia untuk Anda, kecuali Anda sang pemiliknya. + + + + Download new files? + Unduh berkas baru? + + + + Download new files + Unduh berkas baru + + + + Keep local files + Biarkan berkas-berkas lokal tetap ada + + + + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. +Are you sure you want to sync those actions with the server? +If this was an accident and you decide to keep your files, they will be re-synced from the server. + Semua berkas di dalam sinkronisasi folder '%1' telah dihapus dari server. Perubahan ini akan disinkronisasi ke folder sinkronisasi lokal Anda, termasuk membuat berkas-berkas Anda tidak lagi tersedia kecuali Anda memulihkannya kembali. +Anda yakin ingin mesinkronisasi aksi tersebut dengan server? +Jika ini adalah sebuah ketidaksengajaan dan Anda memutuskan untuk berkas Anda tetap tersedia, berkas-berkas Anda akan disinkronisasi ulang dengan server. + + + + This sync would reset the files to an earlier time in the sync folder '%1'. +This might be because a backup was restored on the server. +Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? + Sinkronisasi ini akan mereset berkas-berkas ke waktu sebelumnya di dalam folder sinkronisasi '%1'. +Ini disebabkan karena sebuah cadangan telah dipulihkan di server. +Melanjutkan sinkronisasi seperti biasanya akan menyebabkan semua berkas Anda ditimpa dengan berkas yang lama di kondisi yang lama. Apakah Anda ingin tetap membuat berkas lokal paling baru Anda sebagai berkas yang berkonflik? + + + + Backup detected + Cadangan ditemukan + + + + Normal Synchronisation + Sinkronisasi Normal + + + + Keep Local Files as Conflict + Buat Berkas Lokal sebagai Konflik + + + + OCC::FolderMan + + + Could not reset folder state + Tidak dapat mereset keadaan folder + + + + An old sync journal '%1' was found, but could not be removed. Please make sure that no application is currently using it. + Sebuah jurnal sinkronisasi lama '%1' telah ditemukan, namun tidak dapat menghapusnya. Mohon untuk memastikan bahwa tida ada aplikasi yang sedang menggunakannya. + + + + (backup) + (cadangan) + + + + (backup %1) + (cadangkan %1) + + + + Undefined State. + Kondisi Yang Tidak Ditentukan + + + + Waiting to start syncing. + Menunggu untuk memulai sinkronisasi. + + + + Preparing for sync. + Persiapan untuk sinkronisasi. + + + + Sync is running. + Sinkronisasi sedang berjalan. + + + + Sync was successful, unresolved conflicts. + Sinkronisasi berhasi, konflik belum diselesaikan. + + + + Last Sync was successful. + Sinkronisasi terakhir sukses. + + + + Setup Error. + Kesalahan Persiapan. + + + + User Abort. + Pengguna Batalkan. + + + + Sync is paused. + Sinkronisasi dijeda. + + + + %1 (Sync is paused) + %1 (Sinkronisasi dijeda) + + + + No valid folder selected! + Tidak ada folder yang valid dipilih! + + + + The selected path is not a folder! + Jalur yang dipilih bukanlah sebuah folder! + + + + You have no permission to write to the selected folder! + Anda tidak memiliki ijin untuk menulis ke folder yang dipilih! + + + + There is already a sync from the server to this local folder. Please pick another local folder! + Sudah ada sinkronisasi dari server ke folder lokal ini. Mohon pilih folder lokal lainnya! + + + + The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! + Folder lokal %1 sudah terdapat sebuah folder yang digunakan di dalam sebuah koneksi sinkronisasi folder. Mohon pilih yang lainnya! + + + + The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! + Folder lokal %1 sudah terdapat sebuah folder yang digunakan di dalam sebuah koneksi sinkronisasi folder. Mohon pilih yang lainnya! + + + + OCC::FolderStatusDelegate + + + Add Folder Sync Connection + Tambah Koneksi Sinkronisasi Folder + + + + Synchronized with local folder + Sinkronisasi dengan folder lokal + + + + File + Berkas + + + + OCC::FolderStatusModel + + + You need to be connected to add a folder + Anda diharuskan terhubung untuk menambahkan sebuah folder + + + + Click this button to add a folder to synchronize. + Klik tombol ini untuk menambahkan sebuah folder untuk disinkronisasi. + + + + + %1 (%2) + Example text: "File.txt (23KB)" + %1 (%2) + + + + Error while loading the list of folders from the server. + Galat saat memuat daftar folder dari server. + + + + Signed out + Telah keluar + + + + Fetching folder list from server... + Memuat daftar folder dari server.... + + + + There are unresolved conflicts. Click for details. + Terdapat konflik yang belum diselesaikan. Klik untuk detilnya. + + + + Reconciling changes + Mencocokkan perubahan + + + + , '%1' + Build a list of file names + + + + + '%1' + Argument is a file name + '%1' + + + + Syncing %1 + Example text: "Syncing 'foo.txt', 'bar.txt'" + Mensinkronisasi %1 + + + + + , + , + + + + download %1/s + Example text: "download 24Kb/s" (%1 is replaced by 24Kb (translated)) + unduhan %1/s + + + + upload %1/s + Example text: "upload 24Kb/s" (%1 is replaced by 24Kb (translated)) + unggahan %1/s + + + + Checking for changes in remote '%1' + Mengecek perubahan di remote '%1' + + + + Checking for changes in local '%1' + Mengecek perubahan di '%1' lokal + + + + ↓ %1/s + ↓ %1/s + + + + ↑ %1/s + ↑ %1/s + + + + %1 %2 (%3 of %4) + Example text: "uploading foobar.png (2MB of 2MB)" + %1 %2 (%3 dari %4) + + + + %1 %2 + Example text: "uploading foobar.png" + %1 %2 + + + + %5 left, %1 of %2, file %3 of %4 + Example text: "5 minutes left, 12 MB of 345 MB, file 6 of 7" + Sisa %5, %1 dari %2, berkas ke %3 dari %4 + + + + %1 of %2, file %3 of %4 + Example text: "12 MB of 345 MB, file 6 of 7" + %1 dari %2, berkas ke %3 dari %4 + + + + file %1 of %2 + Berkas %1 dari %2 + + + + Waiting... + Menunggu... + + + + Waiting for %n other folder(s)... + Menunggu untuk %n folder lainnya... + + + + Preparing to sync... + Menunggu untuk sinkronisasi... + + + + OCC::FolderWatcherPrivate + + + This problem usually happens when the inotify watches are exhausted. Check the FAQ for details. + Masalah ini sering kali terjadi ketika inotify watches kehausan. Cek halaman FAQ untuk lebih lanjut. + + + + OCC::FolderWizard + + + Add Folder Sync Connection + Tambah Koneksi Sinkronisasi Folder + + + + Add Sync Connection + Tambah Koneksi Sinkronisasi + + + + OCC::FolderWizardLocalPath + + + Click to select a local folder to sync. + Klik untuk memilih sebuah folder lokal untuk disinkronisasi. + + + + Enter the path to the local folder. + Masukkan sebuah jalur ke folder lokal. + + + + Select the source folder + Pilih sumber folder + + + + OCC::FolderWizardRemotePath + + + Create Remote Folder + Buat Folder Remote + + + + Enter the name of the new folder to be created below '%1': + Masukkan nama untuk folder baru yang akan dibuat dibawah '%1': + + + + Folder was successfully created on %1. + Folder telah sukses dibuat di %1. + + + + Authentication failed accessing %1 + Autentikasi gagal saat mengakses %1 + + + + Failed to create the folder on %1. Please check manually. + Gagal untuk membuat folder baru di %1. Mohon cek secara manual. + + + + Failed to list a folder. Error: %1 + Gagal untuk mengurutkan daftar folder. Galat: %1 + + + + Choose this to sync the entire account + Pilih ini untuk mensinkronisasi ke seluruh akun + + + + This folder is already being synced. + Folder ini telah disinkronisasi. + + + + You are already syncing <i>%1</i>, which is a parent folder of <i>%2</i>. + Anda sudah mensinkronisasi <i>%1</i>, yang mana termasuk dalam folder <i>%2</i>. + + + + OCC::FormatWarningsWizardPage + + + <b>Warning:</b> %1 + <b>Peringatan:</b> %1 + + + + <b>Warning:</b> + <b>Peringatan:</b> + + + + OCC::GETFileJob + + + No E-Tag received from server, check Proxy/Gateway + Tidak ada E-Tag yang diterima dari server, cek Proksi/Gerbang + + + + We received a different E-Tag for resuming. Retrying next time. + Kami menerima sebuah E-Tag yang berbeda untuk dilanjutkan. Mencoba lain waktu. + + + + Server returned wrong content-range + Server kembali dengan jarak-konten yang salah + + + + Connection Timeout + Waktu Koneksi Habis + + + + OCC::GeneralSettings + + + Form + Form + + + + Legal notice + Pemberitahuan hukum + + + + General Settings + Pengaturan Umum + + + + For System Tray + Untuk Tray Sistem + + + + Show Server &Notifications + Tampilkan Server & Notifikasi + + + + Advanced + Tingkat Lanjut + + + + Ask for confirmation before synchronizing folders larger than + Meminta untuk konfirmasi sebelum sinkronisasi folder yang melebihi dari + + + + MB + Trailing part of "Ask confirmation before syncing folder larger than" + MB + + + + Ask for confirmation before synchronizing external storages + Meminta konfirmasi sebelum sinkronisasi penyimpanan eksternal + + + + &Launch on System Startup + &Luncurkan saat Sistem Dimulai + + + + Use &Monochrome Icons + Gunakan Ikon &Monokrom + + + + Edit &Ignored Files + Sunting &Abaikan Berkas + + + + Show sync folders in &Explorer's Navigation Pane + Tampilkan folder yang disinkronisasi di Panel Navigasi &Explorer + + + + S&how crash reporter + + + + + + About + Tentang + + + + Updates + Pembaruan + + + + &Restart && Update + &Hidupkan ulang && Perbarui + + + + Server notifications that require attention. + Notifikasi server yang memerlukan perhatian. + + + + OCC::GetOrCreatePublicLinkShare + + + Sharing error + Gagal berbagi + + + + Could not retrieve or create the public link share. Error: + +%1 + Tidak dapat mengambil atau membuat berbagi tautan publik. Galat: + +%1 + + + + OCC::HttpCredentialsGui + + + Please enter %1 password:<br><br>User: %2<br>Account: %3<br> + Mohon untuk memasukkan kata sandi %1:<br><br>Pengguna: %2<br>Akun: %3<br> + + + + Reading from keychain failed with error: '%1' + Membaca dari keychain gagal dengan galat: '%1' + + + + Enter Password + Masukkan Kata Sandi + + + + <a href="%1">Click here</a> to request an app password from the web interface. + <a href="%1">Klik disini</a> untuk meminta kata sandi aplikasi dari antarmuka situs. + + + + OCC::IgnoreListEditor + + + Ignored Files Editor + Abaikan Editor Berkas + + + + Global Ignore Settings + Pengaturan Pengabaian Global + + + + Sync hidden files + Sinkronisasi berkas tersembunyi + + + + Files Ignored by Patterns + Berkas Diabaikan Menurut Pola + + + + Add + Tambah + + + + Remove all + Hapus semua + + + + Pattern + Pola + + + + Allow Deletion + Bolehkan Penghapusan + + + + Remove + Hapus + + + + Files or folders matching a pattern will not be synchronized. + +Items where deletion is allowed will be deleted if they prevent a directory from being removed. This is useful for meta data. + Berkas atau folder yang cocok dengan pola tidak akan disinkronisasi. + +Item dimana penghapusan yang diperbolehkan akan dihapus jika item tsb mencegah sebuah direktori untuk dihapus. Ini berguna untuk data meta. + + + + Could not open file + Tidak dapat membuka berkas + + + + Cannot write changes to '%1'. + Tidak dapat menulis perubahan ke '%1'. + + + + Add Ignore Pattern + Tambah Pola Abaian + + + + Add a new ignore pattern: + Tambah baru pola abaian: + + + + This entry is provided by the system at '%1' and cannot be modified in this view. + Entri ini disediakan oleh sistem di '%1' dan tidak dapat dimodifikasi dalam tampilan ini. + + + + OCC::LegalNotice + + + Dialog + Dialog + + + + Legal notice + Pemberitahuan hukum + + + + TextLabel + LabelTeks + + + + Close + Tutup + + + + <p>Copyright 2017-2018 Nextcloud GmbH<br />Copyright 2012-2018 ownCloud GmbH</p> + <p>Hak Cipta 2017-2018 Nextcloud GmbH<br />Hak Cipta 2012-2018 ownCloud GmbH</p> + + + + <p>Licensed under the GNU General Public License (GPL) Version 2.0 or any later version.</p> + <p>Lisensi dibawah Lisensi Umum Publik GNU (GPL) Versi 2.0 atau versi termutakhir apapun.</p> + + + + OCC::LogBrowser + + + Log Output + Log Keluaran + + + + &Search: + &Cari: + + + + &Find + &Temukan + + + + &Capture debug messages + &Tangkap pesan debug + + + + Permanently save logs + Simpan log secara permanen + + + + When this option is enabled and no other logging is configured, logs will be written to a temporary folder and expire after a few hours. This setting persists across client restarts. + +Logs will be written to %1 + Ketika opsi ini dinyalakan dan tidak ada logging yang dikonfigurasikan, log akan ditulis di folder sementara dan akan kadaluarsa setelah beberapa jam. Pengaturan ini akan tetap ada untuk semua klien saat menghidupkan ulang. + + + + + Clear + Bersihkan + + + + Clear the log display. + Bersihkan tampilan log + + + + S&ave + + + + + Save the log file to a file on disk for debugging. + Simpan berkas log ke sebuah berkas di cakram untuk pendebug-an. + + + + Save log file + Simpan berkas log + + + + Error + Galat + + + + Could not write to log file %1 + Tidak dapat menulis berkas log %1 + + + + OCC::Logger + + + Error + Galat + + + + <nobr>File '%1'<br/>cannot be opened for writing.<br/><br/>The log output can <b>not</b> be saved!</nobr> + <nobr>Berkas '%1'<br/>tidak dapat dibuka untuk ditulis.<br/><br/>Keluaran log <b>tidak</b>dapat disimpan!</nobr> + + + + OCC::NSISUpdater + + + New Version Available + Versi Terbaru Tersedia + + + + <p>A new version of the %1 Client is available.</p><p><b>%2</b> is available for download. The installed version is %3.</p> + <p>Versi terbaru telah tersedia untuk Klien %1.</p><p><b>%2</b>telah tersedia untuk diunduh. Versi saat ini yang telah dipasang %3.</p> + + + + Skip this version + Lewati versi ini + + + + Skip this time + Lewati saat ini + + + + Get update + Dapatkan pembaruan + + + + OCC::NetworkSettings + + + Form + Form + + + + Proxy Settings + Pengaturan Proksi + + + + No Proxy + Tidak Ada Proksi + + + + Use system proxy + Gunakan Proksi Sistem + + + + Specify proxy manually as + Tentukan proksi secara manual sebagai + + + + Host + Host + + + + : + : + + + + Proxy server requires authentication + Server proksi membutuhkan autentikasi + + + + Download Bandwidth + Bandwidth Unduhan + + + + + Limit to + Batas hingga + + + + + KBytes/s + KBytes/s + + + + + No limit + Tidak ada limit + + + + + Limit to 3/4 of estimated bandwidth + Limit hingga 3/4 dari estimasi bandwidth + + + + Upload Bandwidth + Bandwidth Unggahan + + + + + Limit automatically + Otomatikan batas + + + + Hostname of proxy server + Nama Host server proksi + + + + Username for proxy server + Nama pengguna server proksi + + + + Password for proxy server + Kata sandi server proksi + + + + HTTP(S) proxy + Proksi HTTP(S) + + + + SOCKS5 proxy + Proksi SOCKS5 + + + + OCC::OAuth + + + Error returned from the server: <em>%1</em> + Galat terjadi dari server: <em>%1</em> + + + + There was an error accessing the 'token' endpoint: <br><em>%1</em> + Terdapat galat saat mengakses endpoint 'token': <br><em>%1</em> + + + + Could not parse the JSON returned from the server: <br><em>%1</em> + Tidak dapat mengurai JSON yang didapat dari server: <br><em>%1</em> + + + + The reply from the server did not contain all expected fields + Balasan dari server tidak terdapat semua bidang yang diekspektasi + + + + <h1>Login Error</h1><p>%1</p> + <h1>Gagal Masuk</h1><p>%1</p> + + + + <h1>Wrong user</h1><p>You logged-in with user <em>%1</em>, but must login with user <em>%2</em>.<br>Please log out of %3 in another tab, then <a href='%4'>click here</a> and log in as user %2</p> + <h1>Pengguna salah</h1><p>Anda telah masuk dengan pengguna<em>%1</em>, namun harus masuk dengan pengguna <em>%2</em>. <br>Mohon untuk keluar dari %3 di tab lainnya, kemudian <a href='%4'>klik disini</a> dan masuk kembali sebagai pengguna %2</p> + + + + OCC::OCUpdater + + + New %1 Update Ready + %1 Pembaruan Baru Siap + + + + A new update for %1 is about to be installed. The updater may ask +for additional privileges during the process. + Sebuah pembaruan baru untuk %1 akan dipasang. Pemasang pembaruan mungkin akan meminta +beberapa ijin pada saat proses berjalan. + + + + Downloading version %1. Please wait... + Mengunduh versi %1. Mohon tunggu... + + + + Could not download update. Please click <a href='%1'>here</a> to download the update manually. + Tidak dapat mengunduh pembaruan. Klik <a href='%1'>disini</a> untuk mengunduh pembaruan secara manual. + + + + Could not check for new updates. + Tidak dapat mengecek pembaruan baru. + + + + %1 version %2 available. Restart application to start the update. + %1 versi %2 tersedia. Hidupkan ulang aplikasi untuk memulai pembaruan. + + + + New %1 version %2 available. Please use the system's update tool to install it. + %1 baru versi %2 tersedia. Mohon untuk gunakan alat pembaruan sistem untuk memasangnya. + + + + Checking update server... + Mengecek pembaruan server... + + + + Update status is unknown: Did not check for new updates. + Status pembaruan tidak diketahui: Tidak mengecek untuk pembaruan baru. + + + + No updates available. Your installation is at the latest version. + Tidak ada pembaruan tersedia. Instalasi Anda sudah paling mutakhir. + + + + Update Check + Pembaruan Dicek + + + + OCC::OwncloudAdvancedSetupPage + + + Connect to %1 + Hubungkan ke %1 + + + + Setup local folder options + Atur opsi folder lokal + + + + Connect... + Menghubungkan... + + + + %1 folder '%2' is synced to local folder '%3' + %1 folder '%2' disinkronisasi ke folder lokal '%3' + + + + Sync the folder '%1' + Sinkronkan folder '%1' + + + + <p><small><strong>Warning:</strong> The local folder is not empty. Pick a resolution!</small></p> + <p><small><strong>Peringatan:</strong> Lokal folder tidak kosong. Pilih sebuah resolusi!</small></p> + + + + Free space: %1 + Ruang bebas: %1 + + + + Local Sync Folder + Folder Sinkronisasi Lokal + + + + + (%1) + (%1) + + + + There isn't enough free space in the local folder! + Tidak ada ruang bebas yang cukup di folder lokal! + + + + OCC::OwncloudConnectionMethodDialog + + + Connection failed + Koneksi gagal + + + + <html><head/><body><p>Failed to connect to the secure server address specified. How do you wish to proceed?</p></body></html> + <html><head/><body><p>Gagal menghubungkan ke alamat aman server yang ditentukan. Bagaimana Anda ingin melanjutkannya?</p></body></html> + + + + Select a different URL + Pilih sebuah URL yang berbeda + + + + Retry unencrypted over HTTP (insecure) + + + + + Configure client-side TLS certificate + Atur sertifikat sisi-klien TLS + + + + <html><head/><body><p>Failed to connect to the secure server address <em>%1</em>. How do you wish to proceed?</p></body></html> + <html><head/><body><p>Gagal menghubungkan ke alamat aman server <em>%1</em>. Bagaimana Anda ingin melanjutkannya?</p></body></html> + + + + OCC::OwncloudHttpCredsPage + + + &Email + &Email + + + + Connect to %1 + Hubungkan ke %1 + + + + Enter user credentials + Masukkan kredensial pengguna + + + + OCC::OwncloudOAuthCredsPage + + + Connect to %1 + Hubungkan ke %1 + + + + Login in your browser + Masuk ke peramban Anda + + + + Copy link to clipboard + Salin tautan ke papan klip + + + + OCC::OwncloudSetupPage + + + Connect to %1 + Hubungkan ke %1 + + + + Setup %1 server + Atur server %1 + + + + Keep your data secure and under your control + Buat data Anda aman dan tetap dalam kontrol Anda + + + + Secure collaboration & file exchange + Amankan kolaborasi & pertukaran berkas + + + + Easy-to-use web mail, calendaring & contacts + Web mail, kalendar & kontak yang mudah digunakan + + + + Screensharing, online meetings & web conferences + Bagikan layar, online meetings & konferensi web + + + + This url is NOT secure as it is not encrypted. +It is not advisable to use it. + Url ini TIDAK aman karena tidak dienkripsi. +Tidak disarankan untuk digunakan. + + + + This url is secure. You can use it. + Url ini aman. Anda dapat menggunakannya. + + + + &Next > + &Lanjut> + + + + Invalid URL + URL tidak valid + + + + Could not load certificate. Maybe wrong password? + Tidak dapat memuat sertifikat. Mungkin salah kata sandi? + + + + OCC::OwncloudSetupWizard + + + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> + <font color="green">Sukses terhubung ke %1: %2 versi %3 (%4)</font><br/><br/> + + + + Failed to connect to %1 at %2:<br/>%3 + Gagal terhubung ke %1 di %2:<br/>%3 + + + + Timeout while trying to connect to %1 at %2. + Waktu habis saat mencoba untuk menghubungkan ke %1 di %2. + + + + Trying to connect to %1 at %2... + Mencoba terhubung ke %1 di %2... + + + + The authenticated request to the server was redirected to '%1'. The URL is bad, the server is misconfigured. + Permintaan autentikasi ke server telah dialihkan ke '%1'. URL sangat buruk, server salah konfigurasi. + + + + There was an invalid response to an authenticated webdav request + Terdapat respon yang tidak valid untuk permintaan autentikasi webdav + + + + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. + Akses ditolak dari server. Untuk memverifikasi bahwa Anda memiliki akses yang benar, <a href="%1">klik disini</a> untuk akses ke layanan dengan peramban Anda. + + + + Invalid URL + URL Tidak Valid + + + + The server reported the following error: + Server melaporkan galat sebagai berikut: + + + + Local sync folder %1 already exists, setting it up for sync.<br/><br/> + Folder sinkronisasi lokal %1 sudah ada, mengatur untuk disinkronisasi.<br/><br/> + + + + Creating local sync folder %1... + Membuat sikronisasi folder lokal %1... + + + + ok + ok + + + + failed. + gagal. + + + + Could not create local folder %1 + Tidak dapat membuat folder lokal %1 + + + + No remote folder specified! + Tidak ada folder remote yang ditentukan! + + + + Error: %1 + Galat: %1 + + + + creating folder on Nextcloud: %1 + Membuat folder di Nextcloud: %1 + + + + Remote folder %1 created successfully. + Folder remote %1 sukses dibuat. + + + + The remote folder %1 already exists. Connecting it for syncing. + Folder remote %1 sudah ada. Menghubungkan untuk sinkronisasi. + + + + + The folder creation resulted in HTTP error code %1 + + + + + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> + + + + + <p><font color="red">Remote folder creation failed probably because the provided credentials are wrong.</font><br/>Please go back and check your credentials.</p> + + + + + + Remote folder %1 creation failed with error <tt>%2</tt>. + + + + + A sync connection from %1 to remote directory %2 was set up. + + + + + Successfully connected to %1! + + + + + Connection to %1 could not be established. Please check again. + + + + + Folder rename failed + + + + + Can't remove and back up the folder because the folder or a file in it is open in another program. Please close the folder or file and hit retry or cancel the setup. + + + + + <font color="green"><b>Local sync folder %1 successfully created!</b></font> + + + + + OCC::OwncloudWizard + + + %1 Connection Wizard + + + + + Skip folders configuration + + + + + OCC::OwncloudWizardResultPage + + + Everything set up! + + + + + Open Local Folder + + + + + Open %1 in Browser + + + + + OCC::PollJob + + + Invalid JSON reply from the poll URL + + + + + OCC::PropagateDirectory + + + Error writing metadata to the database + + + + + OCC::PropagateDownloadFile + + + File %1 can not be downloaded because encryption information is missing. + + + + + File %1 can not be downloaded because of a local file name clash! + + + + + The download would reduce free local disk space below the limit + + + + + Free space on disk is less than %1 + + + + + File was deleted from server + + + + + The file could not be downloaded completely. + + + + + The downloaded file is empty despite that the server announced it should have been %1. + + + + + File %1 cannot be saved because of a local file name clash! + + + + + File has changed since discovery + + + + + Error writing metadata to the database + + + + + OCC::PropagateItemJob + + + ; Restoration Failed: %1 + + + + + A file or folder was removed from a read only share, but restoring failed: %1 + + + + + OCC::PropagateLocalMkdir + + + could not delete file %1, error: %2 + + + + + Attention, possible case sensitivity clash with %1 + + + + + could not create folder %1 + + + + + Error writing metadata to the database + + + + + OCC::PropagateLocalRemove + + + Error removing '%1': %2; + + + + + Could not remove folder '%1' + + + + + Could not remove %1 because of a local file name clash + + + + + OCC::PropagateLocalRename + + + File %1 can not be renamed to %2 because of a local file name clash + + + + + + Error writing metadata to the database + + + + + OCC::PropagateRemoteDelete + + + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". + + + + + OCC::PropagateRemoteMkdir + + + Wrong HTTP code returned by server. Expected 201, but received "%1 %2". + + + + + Error writing metadata to the database + + + + + OCC::PropagateRemoteMove + + + Wrong HTTP code returned by server. Expected 201, but received "%1 %2". + + + + + + Error writing metadata to the database + + + + + OCC::PropagateUploadFileCommon + + + File %1 cannot be uploaded because another file with the same name, differing only in case, exists + + + + + Local file changed during syncing. It will be resumed. + + + + + Local file changed during sync. + + + + + + Upload of %1 exceeds the quota for the folder + + + + + File Removed (start upload) %1 + + + + + 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 + + + + + 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) + + + + + OCC::ProxyAuthDialog + + + Proxy authentication required + + + + + Username: + + + + + Proxy: + + + + + The proxy server needs a username and password. + + + + + Password: + + + + + TextLabel + + + + + OCC::SelectiveSyncDialog + + + Choose What to Sync + + + + + OCC::SelectiveSyncWidget + + + Loading ... + + + + + Deselect remote folders you do not wish to synchronize. + + + + + Name + + + + + Size + + + + + + No subfolders currently on the server. + + + + + An error occurred while loading the list of sub folders. + + + + + OCC::ServerNotificationHandler + + + Dismiss + + + + + OCC::SettingsDialog + + + Settings + + + + + Activity + + + + + General + + + + + Network + + + + + Account + + + + + OCC::SettingsDialogMac + + + %1 + + + + + Activity + + + + + General + + + + + Network + + + + + + Account + + + + + OCC::ShareDialog + + + share label + + + + + ownCloud Path: + + + + + Icon + + + + + %1 Sharing + + + + + %1 + + + + + Folder: %2 + + + + + The file can not be shared because it was shared without sharing permission. + + + + + OCC::ShareLinkWidget + + + &Share link + + + + + Password: + + + + + Expiration date: + + + + + TextLabel + + + + + Delete + + + + + Allow Editing + + + + + Read only + + + + + Allow Upload && Editing + + + + + File Drop (Upload Only) + + + + + Password Protect + + + + + Expiration Date + + + + + Unshare + + + + + Add another link + + + + + Confirm Link Share Deletion + + + + + <p>Do you really want to delete the public link share <i>%1</i>?</p><p>Note: This action cannot be undone.</p> + + + + + Cancel + + + + + Public link + + + + + OCC::ShareUserGroupWidget + + + Share with users or groups ... + + + + + Copy link + + + + + No results for '%1' + + + + + I shared something with you + + + + + OCC::ShareUserLine + + + User name + + + + + can edit + + + + + Can reshare + + + + + Can create + + + + + Can change + + + + + Can delete + + + + + OCC::ShibbolethCredentials + + + Login Error + + + + + You must sign in as user %1 + + + + + OCC::ShibbolethWebView + + + %1 - Authenticate + + + + + SSL Cipher Debug View + + + + + Reauthentication required + + + + + Your session has expired. You need to re-login to continue to use the client. + + + + + OCC::SocketApi + + + Share with %1 + parameter is Nextcloud + + + + + Context menu share + + + + + I shared something with you + + + + + + Share... + + + + + + Copy private link to clipboard + + + + + Send private link by email... + + + + + Resharing this file is not allowed + + + + + + Copy public link to clipboard + + + + + Open in browser + + + + + OCC::SslButton + + + <h3>Certificate Details</h3> + + + + + Common Name (CN): + + + + + Subject Alternative Names: + + + + + Organization (O): + + + + + Organizational Unit (OU): + + + + + State/Province: + + + + + Country: + + + + + Serial: + + + + + <h3>Issuer</h3> + + + + + Issuer: + + + + + Issued on: + + + + + Expires on: + + + + + <h3>Fingerprints</h3> + + + + + SHA-256: + + + + + SHA-1: + + + + + <p><b>Note:</b> This certificate was manually approved</p> + + + + + %1 (self-signed) + + + + + %1 + + + + + This connection is encrypted using %1 bit %2. + + + + + + No support for SSL session tickets/identifiers + + + + + Certificate information: + + + + + This connection is NOT secure as it is not encrypted. + + + + + + OCC::SslErrorDialog + + + Form + + + + + Trust this certificate anyway + + + + + Untrusted Certificate + + + + + Cannot connect securely to <i>%1</i>: + + + + + with Certificate %1 + + + + + + + &lt;not specified&gt; + + + + + + Organization: %1 + + + + + + Unit: %1 + + + + + + Country: %1 + + + + + Fingerprint (MD5): <tt>%1</tt> + + + + + Fingerprint (SHA1): <tt>%1</tt> + + + + + Effective Date: %1 + + + + + Expiration Date: %1 + + + + + Issuer: %1 + + + + + OCC::SyncEngine + + + Success. + + + + + A network connection timeout happened. + + + + + A HTTP transmission error happened. + + + + + The mounted folder is temporarily not available on the server + + + + + An error occurred while opening a folder + + + + + Error while reading folder. + + + + + %1 (skipped due to earlier error, trying again in %2) + + + + + File/Folder is ignored because it's hidden. + + + + + Folder hierarchy is too deep + + + + + Conflict: Server version downloaded, local copy renamed and not uploaded. + + + + + Only %1 are available, need at least %2 to start + Placeholders are postfixed with file sizes using Utility::octetsToString() + + + + + Unable to open or create the local sync database. Make sure you have write access in the sync folder. + + + + + Not allowed because you don't have permission to add parent folder + + + + + Not allowed because you don't have permission to add files in that folder + + + + + Disk space is low: Downloads that would reduce free space below %1 were skipped. + + + + + There is insufficient space available on the server for some uploads. + + + + + CSync unspecified error. + + + + + Aborted by the user + + + + + Failed to load or create the journal file. Make sure you have read and write permissions in the local sync folder. + + + + + Discovery step failed. + + + + + Permission denied. + + + + + File or directory not found: + + + + + Tried to create a folder that already exists. + + + + + No space on %1 server available. + + + + + The service is temporarily unavailable + + + + + Access is forbidden + + + + + An internal error number %1 occurred. + + + + + Symbolic links are not supported in syncing. + + + + + File is listed on the ignore list. + + + + + File names ending with a period are not supported on this file system. + + + + + File names containing the character '%1' are not supported on this file system. + + + + + The file name is a reserved name on this file system. + + + + + Filename contains trailing spaces. + + + + + Filename is too long. + + + + + The filename cannot be encoded on your file system. + + + + + Unresolved conflict. + + + + + Stat failed. + + + + + Filename encoding is not valid + + + + + Invalid characters, please rename "%1" + + + + + Unable to read the blacklist from the local database + + + + + Unable to read from the sync journal. + + + + + Cannot open the sync journal + + + + + File name contains at least one invalid character + + + + + + Ignored because of the "choose what to sync" blacklist + + + + + Not allowed because you don't have permission to add subfolders to that folder + + + + + Not allowed to upload this file because it is read-only on the server, restoring + + + + + + Not allowed to remove, restoring + + + + + Local files and share folder removed. + + + + + Move not allowed, item restored + + + + + Move not allowed because %1 is read-only + + + + + the destination + + + + + the source + + + + + OCC::SyncLogDialog + + + Synchronisation Log + + + + + OCC::Systray + + + %1: %2 + + + + + OCC::Theme + + + <p>Version %1. For more information please visit <a href='%2'>%3</a>.</p> + + + + + <p>This release was supplied by %1</p> + + + + + OCC::WebEnginePage + + + Invalid certificate detected + + + + + The host "%1" provided an invalid certificate. Continue? + + + + + OCC::WebFlowCredentials + + + You have been logged out of %1 as user %2. Please login again + + + + + Please login with the user: %1 + + + + + OCC::ownCloudGui + + + Please sign in + + + + + Folder %1: %2 + + + + + There are no sync folders configured. + + + + + Open in browser + + + + + Log in... + + + + + Log out + + + + + Recent Changes + + + + + Managed Folders: + + + + + Open folder '%1' + + + + + Open %1 in browser + + + + + Unknown status + + + + + Settings... + + + + + Details... + + + + + Help + + + + + Quit %1 + + + + + Disconnected from %1 + + + + + Unsupported Server Version + + + + + The server on account %1 runs an old and unsupported version %2. Using this client with unsupported server versions is untested and potentially dangerous. Proceed at your own risk. + + + + + Disconnected + + + + + Disconnected from some accounts + + + + + Disconnected from accounts: + + + + + Account %1: %2 + + + + + Signed out + + + + + Account synchronization is disabled + + + + + + Synchronization is paused + + + + + Unresolved conflicts + + + + + Error during synchronization + + + + + No sync folders configured + + + + + Resume all folders + + + + + Pause all folders + + + + + Resume all synchronization + + + + + Resume synchronization + + + + + Pause all synchronization + + + + + Pause synchronization + + + + + New account... + + + + + Crash now + Only shows in debug mode to allow testing the crash handler + + + + + Apps + + + + + 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) + + + + + Up to date + + + + + OwncloudAdvancedSetupPage + + + Form + + + + + + + + + + + + TextLabel + + + + + Server + + + + + <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!) + + + + + Ask for confirmation before synchroni&zing folders larger than + + + + + MB + Trailing part of "Ask confirmation before syncing folder larger than" + + + + + Ask for confirmation before synchronizing e&xternal storages + + + + + Choose what to sync + + + + + &Local Folder + + + + + pbSelectLocalFolder + + + + + &Keep local data + + + + + S&ync everything from server + + + + + Status message + + + + + OwncloudHttpCredsPage + + + Form + + + + + &Username + + + + + &Password + + + + + OwncloudOAuthCredsPage + + + Form + + + + + Please switch to your browser to proceed. + + + + + An error occurred while connecting. Please try again. + + + + + Re-open Browser + + + + + OwncloudSetupPage + + + Form + + + + + + TextLabel + + + + + <a href="https://docs.nextcloud.com/server/15/admin_manual/installation/index.html#installation"><span style=" text-decoration: underline; color:#0000ff;">Host your own server</span></a> + + + + + Register with a provider + + + + + Log in + + + + + Server Address + + + + + https://... + + + + + Error Label + + + + + OwncloudWizardResultPage + + + Form + + + + + TextLabel + + + + + Your entire account is synced to the local folder + + + + + + PushButton + + + + + QObject + + + in the future + + + + + %n day ago + + + + + %n days ago + + + + + %n hour ago + + + + + %n hours ago + + + + + now + + + + + Less than a minute ago + + + + + %n minute ago + + + + + %n minutes ago + + + + + Some time ago + + + + + %1: %2 + this displays an error string (%2) for a file %1 + + + + + Utility + + + %L1 GB + + + + + %L1 MB + + + + + %L1 KB + + + + + %L1 B + + + + + %n year(s) + + + + + %n month(s) + + + + + %n day(s) + + + + + %n hour(s) + + + + + %n minute(s) + + + + + %n second(s) + + + + + %1 %2 + + + + + ValidateChecksumHeader + + + The checksum header is malformed. + + + + + The checksum header contained an unknown checksum type '%1' + + + + + The downloaded file does not match the checksum, it will be resumed. + + + + + WebView + + + Form + + + + + main.cpp + + + System Tray not available + + + + + %1 requires on a working system tray. If you are running XFCE, please follow <a href="http://docs.xfce.org/xfce/xfce4-panel/systray">these instructions</a>. Otherwise, please install a system tray application such as 'trayer' and try again. + + + + + nextcloudTheme::about() + + + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> + + + + + progress + + + Downloaded + + + + + Uploaded + + + + + Server version downloaded, copied changed local file into conflict file + + + + + Deleted + + + + + Moved to %1 + + + + + Ignored + + + + + Filesystem access error + + + + + Error + + + + + Updated local metadata + + + + + + Unknown + + + + + downloading + + + + + uploading + + + + + deleting + + + + + moving + + + + + ignoring + + + + + + error + + + + + updating local metadata + + + + + theme + + + Status undefined + + + + + Waiting to start sync + + + + + Sync is running + + + + + Sync Success + + + + + Sync Success, some files were ignored. + + + + + Sync Error + + + + + Setup Error + + + + + Preparing to sync + + + + + Aborting... + + + + + Sync is paused + + + + + utility + + + Could not open browser + + + + + There was an error when launching the browser to go to URL %1. Maybe no default browser is configured? + + + + + Could not open email client + + + + + There was an error when launching the email client to create a new message. Maybe no default email client is configured? + + + + \ No newline at end of file diff --git a/translations/client_is.ts b/translations/client_is.ts index c9ca0ab95634..83ab5aef78e0 100644 --- a/translations/client_is.ts +++ b/translations/client_is.ts @@ -574,17 +574,17 @@ skráakerfið eða sameignarmöppur, gætu verið með önnur takmörk.Samþykkja - + Synced Samstillt - + Retry all uploads Prófa aftur allar innsendingar - + <br/>Account %1 does not have activities enabled. <br/>%1 aðgangurinn er ekki með virkniskráningu. @@ -671,7 +671,7 @@ skráakerfið eða sameignarmöppur, gætu verið með önnur takmörk. OCC::CleanupPollsJob - + Error writing metadata to the database Villa við ritun lýsigagna í gagnagrunninn @@ -756,122 +756,122 @@ skráakerfið eða sameignarmöppur, gætu verið með önnur takmörk.%1 er ekki lesanleg. - + %1 has been removed. %1 names a file. %1 hefur verið fjarlægð. - + %1 has been downloaded. %1 names a file. %1 hefur verið sótt. - + %1 has been updated. %1 names a file. %1 var uppfærð. - + %1 has been renamed to %2. %1 and %2 name files. %1 hefur verið endurnefnd sem %2. - + %1 has been moved to %2. %1 hefur verið færð í %2. - + %1 and %n other file(s) have been removed. %1 og %n skrá til viðbótar hafa verið fjarlægðar.%1 og %n skrár til viðbótar hafa verið fjarlægðar. - + %1 and %n other file(s) have been downloaded. %1 og %n skrá til viðbótar hafa verið sóttar.%1 og %n skrár til viðbótar hafa verið sóttar. - + %1 and %n other file(s) have been updated. %1 og %n skrár til viðbótar hafa verið uppfærðar.%1 og %n skrár til viðbótar hafa verið uppfærðar. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 var endurnefnd sem %2 og %n skrá til viðbótar var líka endurnefnd.%1 var endurnefnd sem %2 og %n skrár til viðbótar voru líka endurnefndar. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 var færð í %2 og %n skrár til viðbótar voru líka færðar.%1 var færð í %2 og %n skrár til viðbótar voru líka færðar. - + %1 has and %n other file(s) have sync conflicts. %1 og %n skrá til viðbótar eru með árekstra við samstillingu.%1 og %n skrár til viðbótar eru með árekstra við samstillingu. - + %1 has a sync conflict. Please check the conflict file! %1 er með árekstra við samstillingu. Skoðaðu yfirlitsskrána fyrir árekstra! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 og %n skrá til viðbótar var ekki hægt að samstilla vegna villu sem kom upp. Skoðaðu annálinn fyrir nánari upplýsingar.%1 og %n skrár til viðbótar var ekki hægt að samstilla vegna villu sem kom upp. Skoðaðu annálinn fyrir nánari upplýsingar. - + %1 could not be synced due to an error. See the log for details. %1 var ekki hægt að samstilla vegna villu sem kom upp Skoðaðu annálinn fyrir nánari upplýsingar. - + Sync Activity Virkni samstillingar - + Could not read system exclude file Gat ekki lesið kerfisútilokunarskrána - + A new folder larger than %1 MB has been added: %2. Nýrri möppu stærri en %1 MB var bætt við: %2. - + A folder from an external storage has been added. Möppu úr ytri gagnageymslu var bætt við. - + Please go in the settings to select it if you wish to download it. Farðu í stillingarnar til að velja hana ef þú vilt sækja hana. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -880,7 +880,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -888,46 +888,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Sækja nýjar skrár? - + Download new files Sækja nýjar skrár - + Keep local files Halda skrám á tölvu - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Öryggisafrit fannst - + Normal Synchronisation Venjuleg samstilling - + Keep Local Files as Conflict Halda skrám á tölvunni við árekstra @@ -2258,7 +2258,7 @@ Ekki er mælt með því að hún sé notuð. OCC::PropagateDirectory - + Error writing metadata to the database Villa við ritun lýsigagna í gagnagrunninn @@ -2286,32 +2286,32 @@ Ekki er mælt með því að hún sé notuð. Laust pláss á diski er minna en %1 - + File was deleted from server Skrá var eytt af þjóninum - + The file could not be downloaded completely. Ekki var hægt að sækja skrána að fullu. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery Skráin hefur breyst síðan hún fannst - + Error writing metadata to the database Villa við ritun lýsigagna í gagnagrunninn @@ -2324,7 +2324,7 @@ Ekki er mælt með því að hún sé notuð. ; Endurheimt mistókst: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2685,22 +2685,22 @@ Ekki er mælt með því að hún sé notuð. OCC::ShareLinkWidget - + &Share link &Deilitengill - + Password: Lykilorð: - + Expiration date: Gildistími: - + TextLabel TextaMerking @@ -2774,22 +2774,22 @@ Ekki er mælt með því að hún sé notuð. OCC::ShareUserGroupWidget - + Share with users or groups ... Deila með notendum eða hópum ... - + Copy link Afrita tengil - + No results for '%1' Engar niðurstöður fyrir '%1' - + I shared something with you Ég deildi einhverju með þér @@ -2807,22 +2807,22 @@ Ekki er mælt með því að hún sé notuð. getur breytt - + Can reshare Getur endurdeilt - + Can create Getur búið til - + Can change Getur breytt - + Can delete Getur eytt @@ -3910,7 +3910,7 @@ Ekki er mælt með því að hún sé notuð. Fyrir nokkru síðan - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_it.ts b/translations/client_it.ts index 8b7e6142ea0b..5ed9a7e97bf9 100644 --- a/translations/client_it.ts +++ b/translations/client_it.ts @@ -568,17 +568,17 @@ Accetta - + Synced Sincronizzato - + Retry all uploads Riprova tutti icaricamenti - + <br/>Account %1 does not have activities enabled. <br/>L'account %1 non ha attività abilitate. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Errore durante la scrittura dei metadati nel database @@ -750,98 +750,98 @@ %1 non è leggibile. - + %1 has been removed. %1 names a file. %1 è stato rimosso. - + %1 has been downloaded. %1 names a file. %1 è stato scaricato. - + %1 has been updated. %1 names a file. %1 è stato aggiornato. - + %1 has been renamed to %2. %1 and %2 name files. %1 è stato rinominato in %2. - + %1 has been moved to %2. %1 è stato spostato in %2. - + %1 and %n other file(s) have been removed. %1 e %n altro file sono stati rimossi.%1 e %n altri file sono stati rimossi. - + %1 and %n other file(s) have been downloaded. %1 e %n altro file sono stati scaricati.%1 e %n altri file sono stati scaricati. - + %1 and %n other file(s) have been updated. %1 e %n altro file sono stati aggiornati.%1 e %n altri file sono stati aggiornati. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 è stato rinominato in %2 e %n altro file sono stati rinominati.%1 è stato rinominato in %2 e %n altri file sono stati rinominati. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 è stato spostato in %2 e %n altro file sono stati spostati.%1 è stato spostato in %2 e %n altri file sono stati spostati. - + %1 has and %n other file(s) have sync conflicts. %1 e %n altro file hanno conflitti di sincronizzazione.%1 e %n altri file hanno conflitti di sincronizzazione. - + %1 has a sync conflict. Please check the conflict file! %1 ha un conflitto di sincronizzazione. Controlla il file in conflitto! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. 1% e %n altro file non sono stati sincronizzati a causa di errori. Controlla il log per i dettagli.1% e %n altri file non sono stati sincronizzati a causa di errori. Controlla il log per i dettagli. - + %1 could not be synced due to an error. See the log for details. %1 non può essere sincronizzato a causa di un errore. Controlla il log per i dettagli. - + Sync Activity Sincronizza attività - + Could not read system exclude file Impossibile leggere il file di esclusione di sistema - + A new folder larger than %1 MB has been added: %2. Una nuova cartella più grande di %1 MB è stata aggiunta: %2. - + A folder from an external storage has been added. Una nuova cartella da un'archiviazione esterna è stata aggiunta. @@ -849,22 +849,22 @@ - + Please go in the settings to select it if you wish to download it. Vai nelle impostazioni e selezionala se vuoi scaricarla. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. La cartella %1 è stata creata, ma è stata esclusa dalla sincronizzazione in precedenza. I dati al suo interno non saranno sincronizzati. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Il file %1 è stato creato, ma è stato escluso dalla sincronizzazione in precedenza. Non sarà sincronizzato. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -877,7 +877,7 @@ Questo significa che il client di sincronizzazione potrebbe non caricare le modi %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -888,22 +888,22 @@ Se decidi di tenere i file, saranno sincronizzati nuovamente con il server, se h Se decidi di eliminare i file, non saranno più disponibili, a meno che tu sia il proprietario. - + Download new files? Vuoi scaricare i nuovi file? - + Download new files Scarica i nuovi file - + Keep local files Mantieni i file locali - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -913,7 +913,7 @@ Sei sicuro di voler sincronizzare queste azioni con il server? Se è stato un errore e decidi di tenere i file, saranno sincronizzati nuovamente con il server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -922,17 +922,17 @@ Ciò potrebbe verificarsi in seguito al ripristino di un backup sul server. Se continui normalmente la sincronizzazione provocherai la sovrascrittura di tutti i tuoi file con file più datati in uno stato precedente. Vuoi mantenere i tuoi file locali più recenti come file di conflitto? - + Backup detected Backup rilevato - + Normal Synchronisation Sincronizzazione normale - + Keep Local Files as Conflict Mantieni i file locali come conflitto @@ -2264,7 +2264,7 @@ Non è consigliabile utilizzarlo. OCC::PropagateDirectory - + Error writing metadata to the database Errore durante la scrittura dei metadati nel database @@ -2292,32 +2292,32 @@ Non è consigliabile utilizzarlo. Lo spazio libero su disco è inferiore a %1 - + File was deleted from server Il file è stato eliminato dal server - + The file could not be downloaded completely. Il file non può essere scaricato completamente. - + The downloaded file is empty despite that the server announced it should have been %1. 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 @@ -2330,7 +2330,7 @@ Non è consigliabile utilizzarlo. ; Ripristino non riuscito: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Un file o una cartella è stato rimosso da una condivisione in sola lettura, ma il ripristino non è riuscito: %1 @@ -2691,22 +2691,22 @@ Non è consigliabile utilizzarlo. OCC::ShareLinkWidget - + &Share link Condi&vidi collegamento - + Password: Password: - + Expiration date: Data di scadenza - + TextLabel EtichettaTesto @@ -2779,22 +2779,22 @@ Non è consigliabile utilizzarlo. OCC::ShareUserGroupWidget - + Share with users or groups ... Condividi con utenti o gruppi... - + Copy link Copia collegamento - + No results for '%1' Nessun risultato per '%1' - + I shared something with you Ho condiviso qualcosa con te @@ -2812,22 +2812,22 @@ Non è consigliabile utilizzarlo. può modificare - + Can reshare Può ri-condividere - + Can create Può creare - + Can change Può cambiare - + Can delete Può eliminare @@ -3914,7 +3914,7 @@ Non è consigliabile utilizzarlo. Tempo fa - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_ja.ts b/translations/client_ja.ts index 25c3354d40b5..f646d1cff8e9 100644 --- a/translations/client_ja.ts +++ b/translations/client_ja.ts @@ -65,17 +65,17 @@ Help - + ヘルプ Settings - + 設定 Log out - + ログアウト @@ -279,7 +279,7 @@ Enable encryption - + 暗号化を有効にする @@ -568,17 +568,17 @@ 承諾 - + Synced 同期した - + Retry all uploads すべてのアップロードを再試行 - + <br/>Account %1 does not have activities enabled. <br/>%1 アカウントは、 アクティビティを有効にしていません。 @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database メタデータのデータベースへの書き込みに失敗 @@ -750,120 +750,120 @@ %1 は読み込み可能ではありません。 - + %1 has been removed. %1 names a file. %1 は削除されました。 - + %1 has been downloaded. %1 names a file. %1 はダウンロードされました。 - + %1 has been updated. %1 names a file. %1 が更新されました。 - + %1 has been renamed to %2. %1 and %2 name files. %1 の名前が %2 に変更されました。 - + %1 has been moved to %2. %1 は %2 に移動しました。 - + %1 and %n other file(s) have been removed. %1 とその他 %n 個のファイルが削除されました。 - + %1 and %n other file(s) have been downloaded. %1 とその他 %n 個のファイルがダウンロードされました。 - + %1 and %n other file(s) have been updated. %1 とその他 %n 個のファイルが更新されました。 - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 を %2 にファイル名を変更し、その他 %n 個のファイル名を変更しました。 - + %1 has been moved to %2 and %n other file(s) have been moved. %1 を %2 に移動し、その他 %n 個のファイルを移動しました。 - + %1 has and %n other file(s) have sync conflicts. %1 と その他 %n 個のファイルが同期で衝突しました。 - + %1 has a sync conflict. Please check the conflict file! %1 が同期で衝突しています。コンフリクトファイルを確認してください。 - + %1 and %n other file(s) could not be synced due to errors. See the log for details. エラーにより、%1 と その他 %n 個のファイルが同期できませんでした。ログで詳細を確認してください。 - + %1 could not be synced due to an error. See the log for details. エラーにより %1 が未同期です。ログで詳細を確認してください。 - + Sync Activity 同期アクティビティ - + Could not read system exclude file システム上の除外ファイルを読み込めません - + A new folder larger than %1 MB has been added: %2. %1 MB より大きな新しいフォルダーが追加されました: %2 - + A folder from an external storage has been added. 外部ストレージからフォルダーが追加されました。 - + Please go in the settings to select it if you wish to download it. このフォルダーをダウンロードするには設定画面で選択してください。 - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? 新しいファイルをダウンロードしますか? - + Download new files 新しいファイルをダウンロードする - + Keep local files ローカルファイルを保持 - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,24 +904,24 @@ If this was an accident and you decide to keep your files, they will be re-synce 「ファイルを残す」を選択した場合、ファイルはサーバーから再同期されます。 - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? この同期により同期フォルダー '%1' のファイルが以前のものに戻されます。 これは、バックアップがサーバー上に復元されたためです。 通常と同じように同期を続けると、すべてのファイルが以前の状態の古いファイルによって上書きされます。最新のローカルファイルを競合ファイルとして保存しますか? - + Backup detected バックアップが検出されました - + Normal Synchronisation 正常同期 - + Keep Local Files as Conflict コンフリクト時にローカルファイルを保持 @@ -1909,7 +1909,7 @@ for additional privileges during the process. Free space: %1 - + 空き容量: %1 @@ -1925,7 +1925,7 @@ for additional privileges during the process. There isn't enough free space in the local folder! - + ローカルフォルダに十分な空き容量がありません。 @@ -2248,7 +2248,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database メタデータのデータベースへの書き込みに失敗 @@ -2268,7 +2268,7 @@ It is not advisable to use it. The download would reduce free local disk space below the limit - + ダウンロードすることによりローカルディスクの空き容量が制限を下回ります。 @@ -2276,32 +2276,32 @@ It is not advisable to use it. ディスク空き容量が %1 よりも少なくなっています - + File was deleted from server ファイルはサーバーから削除されました - + The file could not be downloaded completely. このファイルのダウンロードは完了しませんでした - + The downloaded file is empty despite that the server announced it should have been %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 メタデータのデータベースへの書き込みに失敗 @@ -2314,7 +2314,7 @@ It is not advisable to use it. ; 復元に失敗: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 ファイルまたはフォルダーが読み込み専用の共有から削除されましたが、復元に失敗しました: %1 @@ -2675,22 +2675,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link &リンクの共有 - + Password: パスワード: - + Expiration date: 有効期限: - + TextLabel テキストラベル @@ -2737,7 +2737,7 @@ It is not advisable to use it. Add another link - + 別のリンクを追加 @@ -2763,22 +2763,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... ユーザーまたはグループと共有 ... - + Copy link リンクをコピー - + No results for '%1' '%1' は見つかりませんでした - + I shared something with you 私はあなたと何かを共有しました @@ -2796,22 +2796,22 @@ It is not advisable to use it. 編集を許可 - + Can reshare 再共有可能 - + Can create 作成可能 - + Can change 変更可能 - + Can delete 削除可能 @@ -3399,7 +3399,7 @@ It is not advisable to use it. Invalid certificate detected - + 無効な証明書が検出されました @@ -3808,7 +3808,7 @@ It is not advisable to use it. Server Address - + サーバーアドレス @@ -3898,7 +3898,7 @@ It is not advisable to use it. 数分前 - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_lt_LT.ts b/translations/client_lt_LT.ts index c30a3b672cab..1dba632614b8 100644 --- a/translations/client_lt_LT.ts +++ b/translations/client_lt_LT.ts @@ -569,17 +569,17 @@ Priimti - + Synced Sinchronizuota - + Retry all uploads Bandyti viską įkelti iš naujo - + <br/>Account %1 does not have activities enabled. <br/>Paskyra %1 neturi įjungtų veiklų. @@ -666,7 +666,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Klaida rašant metaduomenis į duomenų bazę @@ -751,119 +751,119 @@ %1 nenuskaitoma - + %1 has been removed. %1 names a file. %1 pašalintas. - + %1 has been downloaded. %1 names a file. %1 atsisiųstas. - + %1 has been updated. %1 names a file. %1 atnaujintas. - + %1 has been renamed to %2. %1 and %2 name files. %1 pevadintas į %2. - + %1 has been moved to %2. %1 perkeltas į %2. - + %1 and %n other file(s) have been removed. %1 ir dar %n failas buvo pašalintas.%1 ir dar %n failai buvo pašalinti.%1 ir dar %n failų buvo pašalinta.%1 ir dar %n failų buvo pašalinta. - + %1 and %n other file(s) have been downloaded. %1 ir dar %n failas buvo atsisiųstas.%1 ir dar %n failai buvo atsisiųsti.%1 ir dar %n failų buvo atsisiųsta.%1 ir dar %n failų buvo atsisiųsta. - + %1 and %n other file(s) have been updated. %1 ir dar %n failas buvo pakeistas.%1 ir dar %n failai buvo pakeisti.%1 ir dar %n failų buvo pakeista.%1 ir dar %n failų buvo pakeista. - + %1 has been renamed to %2 and %n other file(s) have been renamed. Failo %1 pavadinimas pakeistas į %2 ir dar %n failo pavadinimas buvo pakeistas.Failo %1 pavadinimas pakeistas į %2 ir dar %n failų pavadinimai buvo pakeisti.Failo %1 pavadinimas pakeistas į %2 ir dar %n failų pavadinimai buvo pakeisti.Failo %1 pavadinimas pakeistas į %2 ir dar %n failų pavadinimai buvo pakeisti. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 buvo perkeltas į %2 ir dar %n failas buvo perkeltas.%1 buvo perkeltas į %2 ir dar %n failai buvo perkelti.%1 buvo perkeltas į %2 ir dar %n failų buvo perkelta.%1 buvo perkeltas į %2 ir dar %n failų buvo perkelta. - + %1 has and %n other file(s) have sync conflicts. %1 ir dar %n failas turi sinchronizavimo konfliktų.%1 ir dar %n failai turi sinchronizavimo konfliktų.%1 ir dar %n failų turi sinchronizavimo konfliktų.%1 ir dar %n failų turi sinchronizavimo konfliktų. - + %1 has a sync conflict. Please check the conflict file! %1 turi sinchronizavimo konfliktą. Patikrinkite "konfliktų" failą! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 ir dar %2 failas negalėjo būti sinchronizuoti dėl klaidos. Žurnale rasite daugiau duomenų.%1 ir dar %2 failai negalėjo būti sinchronizuoti dėl klaidos. Žurnale rasite daugiau duomenų.%1 ir dar %2 failų negalėjo būti sinchronizuoti dėl klaidos. Žurnale rasite daugiau duomenų.%1 ir dar %2 failų negalėjo būti sinchronizuoti dėl klaidos. Žurnale rasite daugiau duomenų. - + %1 could not be synced due to an error. See the log for details. Dėl klaidos nepavyko sinchronizuotu %1. Daugiau informacijos rasite įvykių registravimo žurnale. - + Sync Activity Sinchronizavimo veikla - + Could not read system exclude file Nepavyko perskaityti sistemos išskyrimo failo - + A new folder larger than %1 MB has been added: %2. Buvo pridėtas naujas, didesnis nei %1 MB, aplankas: %2. - + A folder from an external storage has been added. Buvo pridėtas aplankas iš išorinė saugyklos. - + Please go in the settings to select it if you wish to download it. Jei norite parsisiųsti, eikite į nustatymus. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Aplankas %1 buvo sukurtas, bet anksčiau buvo įtrauktas į praleidžiamų sąrašą. Ten esantys duomenys nebus sinchronizuoti. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Failas %1 buvo sukurtas, bet anksčiau buvo įtrauktas į praleidžiamų sąrašą. Failas nebus sinchronizuotas. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Atsisiųsti naujus failus? - + Download new files Atsisiųsti naujus failus - + Keep local files Palikti failus kompiuteryje - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -906,7 +906,7 @@ Jei tai buvo netyčinis veiksmas ir jūs nusprendėte išsaugoti savo failus, ji Open in Google Translate - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -915,17 +915,17 @@ Taip gali nutikti, jei serveryje buvo atkurta atsarginė kopija. Jei tęsite sinchronizavimą, Jūsų ankstesni failai bus perrašyti senesniais. Ar norite išsaugoti savo lokalius naujausius failus kaip konfliktinius failus? - + Backup detected Aptikta atsarginė kopija - + Normal Synchronisation Įprasta sinchronizacija - + Keep Local Files as Conflict Laikyti vietinius failus kaip konfliktinius @@ -2258,7 +2258,7 @@ Patariama jo nenaudoti. OCC::PropagateDirectory - + Error writing metadata to the database Klaida rašant metaduomenis į duomenų bazę @@ -2286,32 +2286,32 @@ Patariama jo nenaudoti. Laisvos vietos diske yra mažiau nei %1 - + File was deleted from server Failas buvo ištrintas iš serverio - + The file could not be downloaded completely. Nepavyko pilnai atsisiųsti failo. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! Failo %1 nepavyko išsaugoti dėl kompiuterio failo nesuderinamumo! - + File has changed since discovery Aptikus failą, jis buvo pakeistas - + Error writing metadata to the database Klaida rašant metaduomenis į duomenų bazę @@ -2324,7 +2324,7 @@ Patariama jo nenaudoti. ; Atkūrimas nepavyko: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Failas ar aplankas buvo pašalintas iš tik skaitymui skirtos bendros vietos, atstatymas nepavyko: %1 @@ -2685,22 +2685,22 @@ Patariama jo nenaudoti. OCC::ShareLinkWidget - + &Share link &Dalinimosi nuoroda - + Password: Slaptažodis: - + Expiration date: Galiojimo pabaiga: - + TextLabel TextLabel @@ -2773,22 +2773,22 @@ Patariama jo nenaudoti. OCC::ShareUserGroupWidget - + Share with users or groups ... Dalintis su naudotojais ar grupėmis ... - + Copy link Kopijuoti nuorodą - + No results for '%1' Pagal kriterijų %1 nieko nerasta - + I shared something with you Pasidalinau kai kuo su jumis @@ -2806,22 +2806,22 @@ Patariama jo nenaudoti. gali keisti - + Can reshare Gali pakartotinai dalintis - + Can create Gali kurti - + Can change Gali keisti - + Can delete Gali trinti @@ -3908,7 +3908,7 @@ Patariama jo nenaudoti. Kažkada anksčiau - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_lv.ts b/translations/client_lv.ts index 2f8438c93cf8..205a9063b30d 100644 --- a/translations/client_lv.ts +++ b/translations/client_lv.ts @@ -50,7 +50,7 @@ Open website - + Atvērt vietni @@ -65,17 +65,17 @@ Help - + Palīdzība Settings - + Iestatījumi Log out - + Iziet @@ -568,17 +568,17 @@ Akceptēt - + Synced Sinhronizēts - + Retry all uploads Atkārtot visas augšupielādes - + <br/>Account %1 does not have activities enabled. <br/>Kontam %1 darbības nav iespējots. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Kļūda rakstot metadatus datubāzē @@ -750,120 +750,120 @@ %1 nav lasāma. - + %1 has been removed. %1 names a file. %1 tika noņemta. - + %1 has been downloaded. %1 names a file. %1 ir ticis lejupielādēts. - + %1 has been updated. %1 names a file. %1 ir atjaunināts. - + %1 has been renamed to %2. %1 and %2 name files. %1 ir pārsaukts par %2. - + %1 has been moved to %2. %1 ir pārvietots uz %2. - + %1 and %n other file(s) have been removed. %1 un %n citas datne(s) tika noņemtas.%1 un %n citas datne(s) tika noņemtas.%1 un %n citas datne(s) tika noņemtas. - + %1 and %n other file(s) have been downloaded. %1 un %n citas datne(s) tika lejupielādētās.%1 un %n citas datne(s) tika lejupielādētās.%1 un %n citas datne(s) tika lejupielādētās. - + %1 and %n other file(s) have been updated. %1 un %n citas datne(s) tika atjaunotas.%1 un %n citas datne(s) tika atjaunotas.%1 un %n citas datne(s) tika atjaunotas. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 tika pārsaukta uz %2 un %n citas datne(s) tika pārsauktas.%1 tika pārsaukta uz %2 un %n citas datne(s) tika pārsauktas.%1 tika pārsaukta uz %2 un %n citas datne(s) tika pārsauktas. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 tika pārvietota uz %2 un %n citas datne(s) tika pārvietotas.%1 tika pārvietota uz %2 un %n citas datne(s) tika pārvietotas.%1 tika pārvietota uz %2 un %n citas datne(s) tika pārvietotas. - + %1 has and %n other file(s) have sync conflicts. %1 un %n citām datnēm ir sinhronizācijas konflikts.%1 un %n citām datnēm ir sinhronizācijas konflikts.%1 un %n citām datnēm ir sinhronizācijas konflikts. - + %1 has a sync conflict. Please check the conflict file! %1 ir sinhronizācijas konflikts. Lūdzu pārbaudiet konfliktējošo datni! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. - + Sync Activity Sinhronizācijas darbība - + Could not read system exclude file Nevarēja nolasīt sistēmas izņēmumu datni. - + A new folder larger than %1 MB has been added: %2. Jauna mape lielāka par %1 MB ir tikusi pievienota: %2. - + A folder from an external storage has been added. Mape no ārējās krātuves ir tikusi pievienota. - + Please go in the settings to select it if you wish to download it. Lūdzu ieej iestatījumos un izvēlies to, ja tu to gribi lejupielādēt. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,46 +880,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Dublējums atrasts - + Normal Synchronisation - + Keep Local Files as Conflict Saglabāt lokālās datnes kā konfliktu @@ -2244,7 +2244,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database @@ -2272,32 +2272,32 @@ It is not advisable to use it. - + File was deleted from server - + The file could not be downloaded completely. - + The downloaded file is empty despite that the server announced it should have been %1. - + File %1 cannot be saved because of a local file name clash! - + File has changed since discovery - + Error writing metadata to the database @@ -2310,7 +2310,7 @@ It is not advisable to use it. - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2536,7 +2536,7 @@ It is not advisable to use it. Loading ... - + Notiek ielāde... @@ -2551,7 +2551,7 @@ It is not advisable to use it. Size - + Izmērs @@ -2578,7 +2578,7 @@ It is not advisable to use it. Settings - + Iestatījumi @@ -2598,7 +2598,7 @@ It is not advisable to use it. Account - + Konts @@ -2627,7 +2627,7 @@ It is not advisable to use it. Account - + Konts @@ -2655,7 +2655,7 @@ It is not advisable to use it. %1 - + %1 @@ -2671,29 +2671,29 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link &Share saite - + Password: - + Expiration date: - + TextLabel Delete - + Dzēst @@ -2718,7 +2718,7 @@ It is not advisable to use it. Password Protect - + Aizsargāts ar paroli @@ -2748,7 +2748,7 @@ It is not advisable to use it. Cancel - + Atcelt @@ -2759,22 +2759,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... - + Copy link - + No results for '%1' - + I shared something with you @@ -2792,22 +2792,22 @@ It is not advisable to use it. - + Can reshare - + Can create - + Can change - + Can delete @@ -2970,12 +2970,12 @@ It is not advisable to use it. SHA-256: - + SHA-256: SHA-1: - + SHA-1: @@ -2990,7 +2990,7 @@ It is not advisable to use it. %1 - + %1 @@ -3020,7 +3020,7 @@ It is not advisable to use it. Form - + Forma @@ -3264,7 +3264,7 @@ It is not advisable to use it. Filename is too long. - + Faila nosaukums ir pārāk garš. @@ -3654,7 +3654,7 @@ It is not advisable to use it. Form - + Forma @@ -3802,7 +3802,7 @@ It is not advisable to use it. Server Address - + Servera adrese @@ -3892,7 +3892,7 @@ It is not advisable to use it. Kādu laiku atpakaļ - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index a36d19df14ee..fd7b61b2ba1c 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -568,17 +568,17 @@ Aksepter - + Synced Synkronisert - + Retry all uploads Prøv alle opplastinger igjen - + <br/>Account %1 does not have activities enabled. <br/>Konto %1 har ikke aktiviteter aktivert. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Feil ved skriving av metadata til databasen @@ -750,119 +750,119 @@ %1 kan ikke leses. - + %1 has been removed. %1 names a file. %1 har blitt fjernet. - + %1 has been downloaded. %1 names a file. %1 har blitt lastet ned. - + %1 has been updated. %1 names a file. %1 har blitt oppdatert. - + %1 has been renamed to %2. %1 and %2 name files. %1 har blitt omdøpt til %2. - + %1 has been moved to %2. %1 har blitt flyttet til %2. - + %1 and %n other file(s) have been removed. %1 og %n annen fil har blitt fjernet.%1 og %n andre filer har blitt fjernet. - + %1 and %n other file(s) have been downloaded. %1 og %n annen fil har blitt lastet ned.%1 og %n andre filer har blitt lastet ned. - + %1 and %n other file(s) have been updated. %1 og %n annen fil har blitt oppdatert.%1 og %n andre filer har blitt oppdatert. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 er blitt omdøpt til %2 og %n annen fil har blitt omdøpt.%1 er blitt omdøpt til %2 og %n andre filer har blitt omdøpt. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 er blitt flyttet til %2 og %n annen fil har blitt flyttet.%1 er blitt flyttet til %2 og %n andre filer har blitt flyttet. - + %1 has and %n other file(s) have sync conflicts. %1 og %n andre filer har synkroniseringskonflikter.%1 og %n andre filer har synkroniseringskonflikter. - + %1 has a sync conflict. Please check the conflict file! %1 har en synkroniseringskonflikt. Sjekk konflikt-filen. - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 og %n andre filer kunne ikke synkroniseres pga. feil. Se loggen for detaljer.%1 og %n andre filer kunne ikke synkroniseres på grunn av feil. Se logg for detaljer. - + %1 could not be synced due to an error. See the log for details. %1 kunne ikke synkroniseres på grunn av en feil. Se logg for detaljer. - + Sync Activity Synkroniseringsaktivitet - + Could not read system exclude file Klarte ikke å lese systemets ekskluderingsfil - + A new folder larger than %1 MB has been added: %2. En ny mappe større enn %1 MB er blitt lagt til: %2. - + A folder from an external storage has been added. En mappe fra et eksternt lager er blitt lagt til. - + Please go in the settings to select it if you wish to download it. Gå til Innstillinger og velg den hvis du ønsker å laste den ned. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -871,7 +871,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -879,22 +879,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Hent nye filer? - + Download new files Hent nye filer - + Keep local files Behold lokale filer - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -903,7 +903,7 @@ Er du sikker på at du ønsker å synkronisere denne handlingen med serveren? Hvis det var et uhell og du velger å beholde filene, vil de bli synkronisert tilbake fra serveren. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -912,17 +912,17 @@ Dette kan være fordi en backup ble gjenopprettet på serveren. Hvis synkroniseringen fortsetter som normalt, vil alle filene dine bli overskrevet av en eldre fil i en tidligere tilstand. Ønsker du å beholde dine ferskeste lokale filer som konflikt-filer? - + Backup detected Backup oppdaget - + Normal Synchronisation Normal synkronisering - + Keep Local Files as Conflict Behold lokale filer som konflikt @@ -2253,7 +2253,7 @@ Det er ikke tilrådelig å bruke den. OCC::PropagateDirectory - + Error writing metadata to the database Feil ved skriving av metadata til databasen @@ -2281,32 +2281,32 @@ Det er ikke tilrådelig å bruke den. Ledig plass på disk er mindre enn %1 - + File was deleted from server Filen ble slettet fra serveren - + The file could not be downloaded completely. Hele filen kunne ikke lastes ned. - + The downloaded file is empty despite that the server announced it should have been %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 @@ -2319,7 +2319,7 @@ Det er ikke tilrådelig å bruke den. ; Gjenoppretting feilet: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 En fil eller mappe ble fjernet fra en deling med lesetilgang, men gjenoppretting feilet: %1 @@ -2680,22 +2680,22 @@ Det er ikke tilrådelig å bruke den. OCC::ShareLinkWidget - + &Share link &Delingslenke - + Password: Passord: - + Expiration date: Utløpsdato: - + TextLabel Tekst-etikett @@ -2768,22 +2768,22 @@ Det er ikke tilrådelig å bruke den. OCC::ShareUserGroupWidget - + Share with users or groups ... Del med brukere eller grupper … - + Copy link Kopier lenke - + No results for '%1' Ingen resultater for '%1' - + I shared something with you Jeg delte noe med deg @@ -2801,22 +2801,22 @@ Det er ikke tilrådelig å bruke den. kan endre - + Can reshare - + Can create kan opprette - + Can change Kan endre - + Can delete Kan slette @@ -3903,7 +3903,7 @@ Det er ikke tilrådelig å bruke den. For en stund siden - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_nl.ts b/translations/client_nl.ts index fc2449c75f48..b12277013391 100644 --- a/translations/client_nl.ts +++ b/translations/client_nl.ts @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + Dit account ondersteunt end-to-endversleuteling Enable encryption - + Encryptie activeren @@ -568,17 +568,17 @@ Accepteren - + Synced Gesynchroniseerd - + Retry all uploads Probeer alle uploads opnieuw - + <br/>Account %1 does not have activities enabled. <br/>Account %1 heeft geen activiteiten ingeschakeld. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Fout bij schrijven van Metadata naar de database @@ -750,120 +750,120 @@ %1 is niet leesbaar. - + %1 has been removed. %1 names a file. %1 is verwijderd. - + %1 has been downloaded. %1 names a file. %1 is gedownload. - + %1 has been updated. %1 names a file. %1 is bijgewerkt. - + %1 has been renamed to %2. %1 and %2 name files. %1 is hernoemd naar %2. - + %1 has been moved to %2. %1 is verplaatst naar %2. - + %1 and %n other file(s) have been removed. %1 en %n ander bestand(en) zijn verwijderd.%1 en %n andere bestand(en) zijn verwijderd. - + %1 and %n other file(s) have been downloaded. %1 en %n ander bestand(en) zijn gedownload.%1 en %n andere bestand(en) zijn gedownload. - + %1 and %n other file(s) have been updated. %1 en %n ander bestand(en) zijn bijgewerkt.%1 en %n andere bestand(en) zijn bijgewerkt. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 is hernoemd naar %2 en %n ander bestand(en) is hernoemd.%1 is hernoemd naar %2 en %n andere bestand(en) zijn hernoemd. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 is verplaatst naar %2 en %n ander bestand(en) is verplaatst.%1 is verplaatst naar %2 en %n andere bestand(en) zijn verplaatst. - + %1 has and %n other file(s) have sync conflicts. %1 en %n ander bestand(en) hebben een sync conflict.%1 en %n andere bestand(en) hebben sync conflicten. - + %1 has a sync conflict. Please check the conflict file! %1 heeft een sync conflict. Controleer het conflict bestand! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 en %n ander bestand(en) konden niet worden gesynchroniseerd wegens fouten. Bekijk het log voor details.%1 en %n andere bestand(en) konden niet worden gesynchroniseerd wegens fouten. Bekijk het log voor details. - + %1 could not be synced due to an error. See the log for details. %1 kon niet worden gesynchroniseerd door een fout. Bekijk het log voor details. - + Sync Activity Synchronisatie-activiteit - + Could not read system exclude file Kon het systeem-uitsluitingsbestand niet lezen - + A new folder larger than %1 MB has been added: %2. Er is een nieuwe map groter dan %1 MB toegevoegd: %2. - + A folder from an external storage has been added. Er is een map op externe opslag toegevoegd. - + Please go in the settings to select it if you wish to download it. Ga naar de instellingen om het te selecteren als u deze wilt downloaden. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Map %1 is gecreëerd, maar eerder uitgesloten van synchronisatie. Bestanden erin worden niet gesynchroniseerd. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Bestand %1 is gecreëerd, maar eerder uitgesloten van synchronisatie. Het wordt niet gesynchroniseerd. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Dit betekent dat de synchronisatieclient misschien niet meteen lokale wijziginge %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Als u de bestanden wilt behouden, worden ze opnieuw gesynchroniseerd met de serv Als u de bestanden wilt verwijderen, worden ze niet beschikbaar, tenzij u de eigenaar bent. - + Download new files? Downloaden nieuwe bestanden? - + Download new files Downloaden nieuwe bestanden - + Keep local files Bewaar lokale bestanden - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -910,7 +910,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Als dit een ongelukje was en u de bestanden wilt behouden, worden ze opnieuw gesynchroniseerd met de server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -919,17 +919,17 @@ Dit kan komen doordat een backup is hersteld op de server. Doorgaan met deze synchronisatie overschrijft al uw bestanden door een eerdere versie. Wilt u uw lokale meer recente bestanden behouden als conflict bestanden? - + Backup detected Backup gedetecteerd - + Normal Synchronisation Normale synchronisatie - + Keep Local Files as Conflict Behoud lokale bestanden als conflict @@ -2267,7 +2267,7 @@ We adviseren deze site niet te gebruiken. OCC::PropagateDirectory - + Error writing metadata to the database Fout bij schrijven van Metadata naar de database @@ -2295,32 +2295,32 @@ We adviseren deze site niet te gebruiken. Vrije schijfruimte is minder dan %1 - + File was deleted from server Bestand was verwijderd van de server - + The file could not be downloaded completely. Het bestand kon niet volledig worden gedownload. - + The downloaded file is empty despite that the server announced it should have been %1. 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 @@ -2333,7 +2333,7 @@ We adviseren deze site niet te gebruiken. ; Herstel mislukte: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Er is een bestand of map verwijderd van een alleen-lezen share, maar herstellen is mislukt: %1 @@ -2694,22 +2694,22 @@ We adviseren deze site niet te gebruiken. OCC::ShareLinkWidget - + &Share link &Delen link - + Password: Wachtwoord: - + Expiration date: Vervaldatum: - + TextLabel Tekstlabel @@ -2782,22 +2782,22 @@ We adviseren deze site niet te gebruiken. OCC::ShareUserGroupWidget - + Share with users or groups ... Delen met gebruikers of groepen ... - + Copy link Kopiëren link - + No results for '%1' Geen resultaten voor '%1' - + I shared something with you Ik deelde iets met u @@ -2815,22 +2815,22 @@ We adviseren deze site niet te gebruiken. kan wijzigen - + Can reshare Kan doordelen - + Can create Kan creëren - + Can change Kan wijzigen - + Can delete Kan verwijderen @@ -3917,7 +3917,7 @@ We adviseren deze site niet te gebruiken. Even geleden - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_pl.ts b/translations/client_pl.ts index 1c90d66d683a..009f843b73ec 100644 --- a/translations/client_pl.ts +++ b/translations/client_pl.ts @@ -568,17 +568,17 @@ Akceptuj - + Synced Zsynchronizowany - + Retry all uploads Ponów wysyłanie - + <br/>Account %1 does not have activities enabled. <br/>Użytkownik %1 nie ma włączonej historii aktywności. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Błąd podczas zapisu metadanych do bazy @@ -750,120 +750,120 @@ %1 jest nie do odczytu. - + %1 has been removed. %1 names a file. %1 został usunięty. - + %1 has been downloaded. %1 names a file. %1 został ściągnięty. - + %1 has been updated. %1 names a file. %1 został uaktualniony. - + %1 has been renamed to %2. %1 and %2 name files. %1 zmienił nazwę na %2. - + %1 has been moved to %2. %1 został przeniesiony do %2. - + %1 and %n other file(s) have been removed. %1 i %n inny plik został usunięty.%1 i %n inne pliki zostały usunięte.%1 i %n innych plików zostało usuniętych.%1 i %n innych plików zostało usuniętych. - + %1 and %n other file(s) have been downloaded. %1 i %n inny plik został pobrany.%1 i %n inne pliki zostały pobrane.%1 i %n innych plików zostało pobranych.%1 i %n innych plików zostało pobranych. - + %1 and %n other file(s) have been updated. %1 i %n inny plik został zaktualizowany.%1 i %n inne pliki zostały zaktualizowane.%1 i %n innych plików zostało zaktualizowanych.%1 i %n innych plików zostało zaktualizowanych. - + %1 has been renamed to %2 and %n other file(s) have been renamed. Zmieniono nazwę %1 na %2 oraz %n innemu plikowi została zmieniona nazwa.Zmieniono nazwę %1 na %2 oraz %n innym plikom została zmieniona nazwa.%1 has been renamed to %2 and %n other file(s) have been renamed.%1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. Przeniesiono %1 do %2 oraz przeniesiono %n inny plik.Przeniesiono %1 do %2 oraz przeniesiono %n inne pliki.Przeniesiono %1 do %2 oraz przeniesiono %n innych plików.Przeniesiono %1 do %2 oraz przeniesiono %n innych plików. - + %1 has and %n other file(s) have sync conflicts. %1 plik ma błąd synchronizacji%1 i %n innych plików mają konflikt synchronizacji.%1 i %n innych plików mają konflikt synchronizacji.%1 i %n innych plików mają konflikt synchronizacji. - + %1 has a sync conflict. Please check the conflict file! %1 ma konflikt synchronizacji. Sprawdź konfliktujący plik! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. Plik %1 nie może zostać zsynchronizowany z powodu błędów. Sprawdź szczegóły w logu..%1 i %n innych plików nie mogą zostać zsynchronizowane z powodu błędów. Sprawdź szczegóły w logu..%1 i %n innych plików nie mogą zostać zsynchronizowane z powodu błędów. Sprawdź szczegóły w logu..%1 i %n innych plików nie mogą zostać zsynchronizowane z powodu błędów. Sprawdź szczegóły w logu.. - + %1 could not be synced due to an error. See the log for details. %1 nie może zostać zsynchronizowany z powodu błędu. Zobacz szczegóły w logu. - + Sync Activity Aktywności synchronizacji - + Could not read system exclude file Nie można przeczytać pliku wyłączeń - + A new folder larger than %1 MB has been added: %2. Nowy folder większy niż %1MB został dodany: %2 - + A folder from an external storage has been added. Folder z pamięci zewnętrznej został dodany . - + Please go in the settings to select it if you wish to download it. Przejdź do ustawień żeby go zaznaczyć i pobrać. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Folder %1 został utworzony, ale wcześniej został wykluczony z synchronizacji. Dane w nim zawarte nie zostaną zsynchronizowane. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Plik %1 został utworzony, ale wcześniej został wykluczony z synchronizacji. Dane w nim zawarte nie zostaną zsynchronizowane. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Oznacza to, że klient synchronizacji może nie przesłać lokalnych zmian natyc %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Jeśli zdecydujesz się zachować te pliki, zostaną one zsynchronizowane z serw Jeśli zdecydujesz je usunąć, nie będą więcej dostępne, chyba że jesteś ich właścicielem. - + Download new files? Pobrać nowe pliki? - + Download new files Pobierz nowe pliki - + Keep local files Zachowaj pliki lokalne - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ Czy na pewno chcesz zsynchronizować te działania z serwerem? Jeśli to był wypadek i zdecydujesz się zachować swoje pliki, zostaną one przywrócone z serwera. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Przyczyną może być przywrócenie plików z kopii zapasowej na serwerze. Kontynuacja synchronizacji w normalny sposób spowoduje, że wszystkie twoje pliki zostaną zastąpione starszym plikiem we wcześniejszym stanie. Czy chcesz zachować najnowsze pliki lokalne? - + Backup detected Wykryto kopię zapasową. - + Normal Synchronisation Normalna synchronizacja. - + Keep Local Files as Conflict Zatrzymaj pliki lokalne i ustaw status konfliktu. @@ -1380,7 +1380,7 @@ Kontynuacja synchronizacji w normalny sposób spowoduje, że wszystkie twoje pli Use &Monochrome Icons - Używaj &monochromatycznych ikon + Używaj monochromatycznych ikon @@ -2263,7 +2263,7 @@ Niezalecane jest jego użycie. OCC::PropagateDirectory - + Error writing metadata to the database Błąd podczas zapisu metadanych do bazy @@ -2291,32 +2291,32 @@ Niezalecane jest jego użycie. Wolne miejsce na dysku jest mniejsze niż %1 - + File was deleted from server Plik został usunięty z serwera - + The file could not be downloaded completely. Ten plik nie mógł być całkowicie pobrany. - + The downloaded file is empty despite that the server announced it should have been %1. Ściągnięty plik jest pusty mimo, że serwer twierdził, że powinien być %1. - + File %1 cannot be saved because of a local file name clash! Pliku %1 nie można zapisać z powodu lokalnego konfliktu nazw plików! - + File has changed since discovery W trakcie wyszukiwania plik uległ zmianie - + Error writing metadata to the database Błąd podczas zapisu metadanych do bazy @@ -2329,7 +2329,7 @@ Niezalecane jest jego użycie. ; Przywracanie nie powiodło się: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Plik lub folder został usunięty z udziału "tylko do odczytu". Odtwarzanie nie powiodło się: %1 @@ -2690,22 +2690,22 @@ Niezalecane jest jego użycie. OCC::ShareLinkWidget - + &Share link &Udostępnij link - + Password: Hasło: - + Expiration date: Data wygaśnięcia: - + TextLabel Etykieta @@ -2778,22 +2778,22 @@ Niezalecane jest jego użycie. OCC::ShareUserGroupWidget - + Share with users or groups ... Współdziel z użytkownikami lub grupami - + Copy link Kopiuj link - + No results for '%1' Brak wyników dla '%1' - + I shared something with you Udostępniłem/am ci coś @@ -2811,22 +2811,22 @@ Niezalecane jest jego użycie. może edytować - + Can reshare Pozwól na udostępnianie innym - + Can create Pozwól na utworzenie - + Can change Pozwól na zmianę - + Can delete Pozwól na usunięcie @@ -3914,7 +3914,7 @@ Kliknij Jakiś czas temu - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_pt.ts b/translations/client_pt.ts index f418d66b4175..0babe5ac44a7 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>A conta %1 não tem atividades ativadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Erro ao gravar os metadados para a base de dados @@ -750,120 +750,120 @@ %1 não é legível. - + %1 has been removed. %1 names a file. %1 foi removido. - + %1 has been downloaded. %1 names a file. %1 foi transferido. - + %1 has been updated. %1 names a file. %1 foi atualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 foi renomeado para %2 - + %1 has been moved to %2. %1 foi movido para %2 - + %1 and %n other file(s) have been removed. '%1' e %n outro(s) ficheiro(s) foram removidos'%1' e %n outros ficheiros foram removidos. - + %1 and %n other file(s) have been downloaded. %1 e %n outro ficheiro foi transferido.%1 e %n outros ficheiros foram transferidos. - + %1 and %n other file(s) have been updated. %1 e %n outro ficheiro foram actualizados.%1 e %n outros ficheiros foram actualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 foi renomeado para %2 e %n outro ficheiro foi renomeado.%1 foi renomeado para %2 e %n outros ficheiros foram renomeados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 foi movido para %2 e %n outro ficheiro foi movido.%1 foi movido para %2 e %n outros ficheiros foram movidos. - + %1 has and %n other file(s) have sync conflicts. %1 tem e %n outro ficheiro têm problemas de sincronização.%1 tem e %n outros ficheiros têm problemas de sincronização. - + %1 has a sync conflict. Please check the conflict file! %1 tem um problema de sincronização. Por favor, verifique o ficheiro com conflito! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 e %n outro ficheiro não podem ser sincronizados devido a erros. Consulte o registo de eventos para mais detalhes.%1 e %n outros ficheiros não podem ser sincronizados devido a erros. Consulte o registo de eventos para mais detalhes. - + %1 could not be synced due to an error. See the log for details. Não foi possível sincronizar %1 devido a um erro. Consulte o registo para detalhes. - + Sync Activity Atividade de Sincronização - + Could not read system exclude file Não foi possível ler o ficheiro excluir do sistema - + A new folder larger than %1 MB has been added: %2. Foi adicionada uma nova pasta maior que %1 MB: %2. - + A folder from an external storage has been added. Foi adicionada uma pasta vinda de armazenamento externo. - + Please go in the settings to select it if you wish to download it. Por favor, vá às definições para a selecionar, se desejar transferi-la. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Transferir novos ficheiros? - + Download new files Transferir novos ficheiros - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ Tem a certeza que deseja sincronizar essas ações com o servidor? Se foi acidental e decidir manter os seus ficheiros, eles serão sincronizados novamente apartir do servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -913,17 +913,17 @@ Isto pode ser porque um backup foi restaurado no servidor. Continuando a sincronização fará com que todos os seus ficheiros sejam substituídos por um ficheiro mais velho num estado anterior. Deseja manter os seus ficheiros locais mais recentes como ficheiros de conflito? - + Backup detected Detetada cópia de segurança - + Normal Synchronisation Sincronização Normal - + Keep Local Files as Conflict Manter Ficheiros Locais como Conflito @@ -2252,7 +2252,7 @@ Não é aconselhada a sua utilização. OCC::PropagateDirectory - + Error writing metadata to the database Erro ao escrever a meta-informação par a base de dados @@ -2280,32 +2280,32 @@ Não é aconselhada a sua utilização. O Espaço livre no disco é inferior a %1 - + File was deleted from server O ficheiro foi eliminado do servidor - + The file could not be downloaded completely. Não foi possível transferir o ficheiro na totalidade. - + The downloaded file is empty despite that the server announced it should have been %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 @@ -2318,7 +2318,7 @@ Não é aconselhada a sua utilização. ; Restauro Falhou: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Um ficheiro ou pasta foi removido de uma partilha só de leitura, mas o restauro falhou: %1 @@ -2679,22 +2679,22 @@ Não é aconselhada a sua utilização. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel TextLabel @@ -2767,22 +2767,22 @@ Não é aconselhada a sua utilização. OCC::ShareUserGroupWidget - + Share with users or groups ... Partilhar com utilizadores ou grupos... - + Copy link - + No results for '%1' Sem resultados para '%1' - + I shared something with you @@ -2800,22 +2800,22 @@ Não é aconselhada a sua utilização. pode editar - + Can reshare - + Can create - + Can change - + Can delete @@ -3902,7 +3902,7 @@ Não é aconselhada a sua utilização. Algum tempo atrás - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index fcfce6cfeb3d..0751478ad960 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -409,7 +409,7 @@ There are folders that were not synchronized because they are too big or external storages: - Existem pastas que não foram sincronizadas porque são muito grandes ou são armazenamentos externos: + Existem pastas que não foram sincronizadas porque são muito grandes ou são armazenamentos externos: @@ -568,17 +568,17 @@ Aceitar - + Synced sincronizado - + Retry all uploads Retentar todos os envios - + <br/>Account %1 does not have activities enabled. <br/>A conta %1 não tem atividades ativadas. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Ocorreu um erro ao escrever metadados no banco de dados @@ -750,120 +750,120 @@ %1 não pode ser lido. - + %1 has been removed. %1 names a file. %1 foi removido. - + %1 has been downloaded. %1 names a file. %1 foi baixado. - + %1 has been updated. %1 names a file. %1 foi atualizado. - + %1 has been renamed to %2. %1 and %2 name files. %1 foi renomeado para %2. - + %1 has been moved to %2. %1 foi movido para %2. - + %1 and %n other file(s) have been removed. %1 e %n outro arquivo foram removidos.%1 e %n outros arquivos foram removidos. - + %1 and %n other file(s) have been downloaded. %1 e %n outro arquivo foram baixados.%1 e %n outros arquivos foram baixados. - + %1 and %n other file(s) have been updated. %1 e %n outro arquivo foram atualizados.%1 e %n outros arquivos foram atualizados. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 foi renomeado para %2 e %n outro arquivo foi renomeado.%1 foi renomeado para %2 e %n outros arquivos foram renomeados. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 foi movido para %2 e %n outro arquivo foi movido.%1 foi movido para %2 e %n outros arquivos foram movidos. - + %1 has and %n other file(s) have sync conflicts. %1 tem e %n outro arquivo têm conflitos na sincronização.%1 tem e %n outros arquivos têm conflitos na sincronização. - + %1 has a sync conflict. Please check the conflict file! %1 tem um conflito na sincronização. Verifique o arquivo conflitante! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 e %n outro arquivo não puderam ser sincronizados devido a erros. Veja o log para detalhes.%1 e %n outros arquivos não puderam ser sincronizados devido a erros. Veja o log para detalhes. - + %1 could not be synced due to an error. See the log for details. %1 não pôde ser sincronizado devido a um erro. Veja o log para obter detalhes. - + Sync Activity Atividade de Sincronização - + Could not read system exclude file Não foi possível ler o sistema de arquivo de exclusão - + A new folder larger than %1 MB has been added: %2. Uma nova pasta maior que %1 MB foi adicionada: %2 - + A folder from an external storage has been added. Uma pasta de um armazenamento externo foi adicionada. - + Please go in the settings to select it if you wish to download it. Por favor, vá nas configurações para selecioná-lo se desejar baixá-lo. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. A pasta %1 foi criada, mas foi excluída da sincronização anteriormente. Dados dentro dela não serão sincronizados. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. O arquivo %1 foi criado, mas foi excluído da sincronização anteriormente. Não será sincronizado. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Isso significa que o cliente de sincronização pode não fazer upload de altera %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Se decidir manter os arquivos, eles serão re-sincronizados com o servidor se vo Se decidir excluir os arquivos eles ficarão indisponíveis, a menos que você seja o proprietário. - + Download new files? Baixar novos arquivos? - + Download new files Baixar novos arquivos - + Keep local files Manter arquivos locais - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ Tem certeza de que deseja sincronizar essas ações com o servidor? Se isso foi um acidente e você decidir manter seus arquivos, eles serão ressincronizados a partir do servidor. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Isso pode ser porque um backup foi restaurado no servidor. Continuar a sincronização como normal fará com que todos os seus arquivos sejam substituídos por um arquivo antigo em um estado anterior. Deseja manter seus arquivos mais recentes locais como arquivos conflitantes? - + Backup detected Backup detectado - + Normal Synchronisation Sincronização Normal - + Keep Local Files as Conflict Manter Arquivos Locais como Conflito @@ -1464,7 +1464,7 @@ Continuar a sincronização como normal fará com que todos os seus arquivos sej Ignored Files Editor - Editor de Arquivos Ignorado + Editor de Arquivos Ignorados @@ -1474,7 +1474,7 @@ Continuar a sincronização como normal fará com que todos os seus arquivos sej Sync hidden files - Sincronizar arquivos escondidos + Sincronizar arquivos ocultos @@ -2263,7 +2263,7 @@ Não é aconselhável usá-la. OCC::PropagateDirectory - + Error writing metadata to the database Ocorreu um erro ao escrever metadados no banco de dados @@ -2291,32 +2291,32 @@ Não é aconselhável usá-la. O espaço livre no disco é inferior a %1 - + File was deleted from server O arquivo foi excluído do servidor - + The file could not be downloaded completely. O arquivo não pôde ser baixado completamente. - + The downloaded file is empty despite that the server announced it should have been %1. O arquivo baixado está vazio apesar do servidor ter anunciado que ele deveria ter %1. - + File %1 cannot be saved because of a local file name clash! O arquivo %1 não pôde ser salvo devido a um conflito com um nome de arquivo local! - + File has changed since discovery O arquivo foi alterado desde a descoberta - + Error writing metadata to the database Ocorreu um erro ao escrever metadados no banco de dados @@ -2329,7 +2329,7 @@ Não é aconselhável usá-la. ; Falha na Restauração: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Um arquivo ou pasta foi removido de um compartilhamento de somente leitura, mas a restauração falhou: %1 @@ -2690,22 +2690,22 @@ Não é aconselhável usá-la. OCC::ShareLinkWidget - + &Share link &Compartilhar link - + Password: Senha: - + Expiration date: Data de expiração: - + TextLabel TextLabel @@ -2778,22 +2778,22 @@ Não é aconselhável usá-la. OCC::ShareUserGroupWidget - + Share with users or groups ... Compartilhar com usuários ou grupos... - + Copy link Copiar link - + No results for '%1' Sem resultados para '%1' - + I shared something with you Eu compartilhei algo com você @@ -2811,22 +2811,22 @@ Não é aconselhável usá-la. pode editar - + Can reshare Pode recompartilhar - + Can create Pode criar - + Can change Pode alterar - + Can delete Pode excluir @@ -2895,7 +2895,7 @@ Não é aconselhável usá-la. Copy private link to clipboard - Copiar o link privado para a área de transferência + Copiar link privado para a área de transferência @@ -3913,7 +3913,7 @@ Não é aconselhável usá-la. Algum tempo atrás - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_ru.ts b/translations/client_ru.ts index 28b88ae8efe2..c1da8d18f20e 100644 --- a/translations/client_ru.ts +++ b/translations/client_ru.ts @@ -194,7 +194,7 @@ To protect your Cryptographic Identity, we encrypt it with a mnemonic of 12 dictionary words. Please note these down and keep them safe. They will be needed to add other devices to your account (like your mobile phone or laptop). - + Для защиты личного идентификатора сквозного шифрования используется мнемофраза, состоящая из двенадцати слов. Мнемофразу следует записать и сохранить запись в надёжном месте, она потребуется для подключения к учётной записи ваших дополнительных устройств. @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + Эта учетная запись поддерживает сквозное шифрование Enable encryption - + Включить шифрование @@ -568,17 +568,17 @@ Принять - + Synced Синхронизировано - + Retry all uploads Повторить передачу файлов на сервер - + <br/>Account %1 does not have activities enabled. <br/>У учетной записи %1 не включены события. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Ошибка записи метаданных в базу данных @@ -750,120 +750,120 @@ «%1» не может быть прочитан. - + %1 has been removed. %1 names a file. «%1» удалён. - + %1 has been downloaded. %1 names a file. «%1» загружен с сервера. - + %1 has been updated. %1 names a file. «%1» обновлён. - + %1 has been renamed to %2. %1 and %2 name files. «%1» переименован в «%2». - + %1 has been moved to %2. «%1» перемещён в «%2». - + %1 and %n other file(s) have been removed. Удалены «%1» и ещё %n файл.Удалены «%1» и ещё %n файла.Удалены «%1» и ещё %n файлов.Удалены «%1» и ещё %n файлов. - + %1 and %n other file(s) have been downloaded. Скачаны «%1» и ещё один файл.Скачаны «%1» и ещё %n файла.Скачаны «%1» и ещё %n файлов.Скачаны «%1» и ещё %n файлов. - + %1 and %n other file(s) have been updated. Обновлёны «%1» и ещё один файл.Обновлёны «%1» и ещё %n файла.Обновлёны «%1» и ещё %n файлов.Обновлёны «%1» и ещё %n файлов. - + %1 has been renamed to %2 and %n other file(s) have been renamed. «%1» переименован в «%2», ещё переименован один файл.«%1» переименован в «%2», ещё переименованы %n файла.«%1» переименован в «%2», ещё переименованы %n файлов.«%1» переименован в «%2», ещё переименованы %n файлов. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 был перемещён в %2, и ещё %n другой файл был перемещён.%1 был перемещён в %2, и ещё %n других файла были перемещены.%1 был перемещён в %2, и ещё %n других файла были перемещены.%1 был перемещён в %2, и ещё %n других файла были перемещены. - + %1 has and %n other file(s) have sync conflicts. У %1 и ещё у %n другого файла есть конфликты синхронизации.У %1 и ещё у %n других файлов есть конфликты синхронизации.У %1 и ещё у %n других файлов есть конфликты синхронизации.У %1 и ещё у %n других файлов есть конфликты синхронизации. - + %1 has a sync conflict. Please check the conflict file! У %1 есть конфликт синхронизации. Пожалуйста, проверьте конфликтный файл! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 и ещё %n другой файл не удалось синхронизировать из-за ошибок. Подробности смотрите в журнале.%1 и ещё %n других файла не удалось синхронизировать из-за ошибок. Подробности смотрите в журнале.%1 и ещё %n других файлов не удалось синхронизировать из-за ошибок. Подробности смотрите в журнале.%1 и ещё %n других файлов не удалось синхронизировать из-за ошибок. Подробности смотрите в журнале. - + %1 could not be synced due to an error. See the log for details. %1 не может быть синхронизирован из-за ошибки. Подробности смотрите в журнале. - + Sync Activity Журнал синхронизации - + Could not read system exclude file Невозможно прочесть системный файл исключений - + A new folder larger than %1 MB has been added: %2. Добавлена новая папка «%2», размер которой превышает %1 МБ. - + A folder from an external storage has been added. Добавлена папка внешнего хранилища. - + Please go in the settings to select it if you wish to download it. Чтобы скачать его, перейдите в параметры приложения и отметьте его для синхронизации. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Создана папка «%1» создана, но ранее она была исключена из синхронизации. Данные внутри этой папки не будут синхронизированы. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Создан файл «%1», но ранее он был исключён из синхронизации. Этот файл не будет синхронизирован. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -875,7 +875,7 @@ This means that the synchronization client might not upload local changes immedi %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -886,22 +886,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a При выборе «Удалить файлы», файлы станут недоступны, кроме случая, когда вы являетесь их владельцем. - + Download new files? Скачать новые файлы? - + Download new files Загрузка новых файлов - + Keep local files Сохранить локальные файлы - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -910,24 +910,24 @@ If this was an accident and you decide to keep your files, they will be re-synce Если это произошло случайно, и вы решите сохранить файлы, они будут повторно скачаны с сервера. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? Эта синхронизация собирается сбросить файлы в катлоге '%1' в более ранее состояние. Такое может случиться, если на сервере восстановлена резервная копия. Если продолжать синхронизацию как обычно, то ваши файлы будут перетёрты более старыми версиями. Хотите сохранить ваши локальные свежие файлы в качестве конфликтных? - + Backup detected Обнаружена резервная копия - + Normal Synchronisation Обычная синхронизация - + Keep Local Files as Conflict Сохранить локальные файлы как конфликтующие @@ -1933,7 +1933,7 @@ for additional privileges during the process. There isn't enough free space in the local folder! - + Недостаточно свободного места в локальной папке. @@ -2257,7 +2257,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database Ошибка записи метаданных в базу данных @@ -2285,32 +2285,32 @@ It is not advisable to use it. Свободного места на диске меньше чем %1 - + File was deleted from server Файл удалён с сервера - + The file could not be downloaded completely. Невозможно полностью загрузить файл. - + The downloaded file is empty despite that the server announced it should have been %1. Скачанный файл пуст, хотя сервер сообщил, что его размер должен составлять %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 Ошибка записи метаданных в базу данных @@ -2323,7 +2323,7 @@ It is not advisable to use it. ; Восстановление не удалось: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Файл или папка была удалена из доступа только для чтения, восстановление завершилось с ошибкой: %1 @@ -2684,24 +2684,24 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link Доступ по &ссылке - + Password: Пароль: - + Expiration date: Срок действия: - + TextLabel - TextLabel + Название @@ -2772,22 +2772,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... Введите имя пользователя или группы… - + Copy link Скопировать ссылку - + No results for '%1' Нет результатов для '%1' - + I shared something with you Я поделился с тобой @@ -2805,22 +2805,22 @@ It is not advisable to use it. разрешить редактировать - + Can reshare разрешить делиться - + Can create разрешить создавать - + Can change разрешить вносить изменения - + Can delete разрешить удалять @@ -2848,7 +2848,7 @@ It is not advisable to use it. SSL Cipher Debug View - + Отладочный просмотр шифра SSL @@ -3413,7 +3413,7 @@ It is not advisable to use it. The host "%1" provided an invalid certificate. Continue? - + Хост «%1» предоставил недействительный сертификат. Продолжить? @@ -3681,7 +3681,7 @@ It is not advisable to use it. TextLabel - TextLabel + Название @@ -3727,7 +3727,7 @@ It is not advisable to use it. pbSelectLocalFolder - pbSelectLocalFolder + pbВыбрать локальную папку @@ -3797,7 +3797,7 @@ It is not advisable to use it. TextLabel - TextLabel + Обозначение @@ -3840,7 +3840,7 @@ It is not advisable to use it. TextLabel - TextLabel + Обозначение @@ -3851,7 +3851,7 @@ It is not advisable to use it. PushButton - PushButton + Клавиша включения @@ -3907,7 +3907,7 @@ It is not advisable to use it. Некоторое время назад - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_sk.ts b/translations/client_sk.ts index d694093d8542..326885a2d7f9 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -568,17 +568,17 @@ Prijať - + Synced Zosynchronizované - + Retry all uploads Zopakovať všetky nahrávania - + <br/>Account %1 does not have activities enabled. <br/>Účet %1 nemá zapnuté aktivity. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Chyba pri zápise metadát do databázy @@ -750,120 +750,120 @@ %1 nie je čitateľný. - + %1 has been removed. %1 names a file. %1 bol zmazaný. - + %1 has been downloaded. %1 names a file. %1 bol stiahnutý. - + %1 has been updated. %1 names a file. %1 bol aktualizovaný. - + %1 has been renamed to %2. %1 and %2 name files. %1 bol premenovaný na %2. - + %1 has been moved to %2. %1 bol presunutý do %2. - + %1 and %n other file(s) have been removed. %1 a %n iný súbor bol odstránený.%1 a %n iné súbory boli odstránené.%1 a %n iných súborov bolo odstránených.%1 a %n iných súborov bolo odstránených. - + %1 and %n other file(s) have been downloaded. %1 a %n iný súbor bol stiahnutý.%1 a %n iné súbory boli stiahnuté.%1 a %n iných súborov bolo stiahnutých.%1 a %n iných súborov bolo stiahnutých. - + %1 and %n other file(s) have been updated. %1 a %n iný súbor bol nahratý.%1 a %n iné súbory boli nahraté.%1 a %n iných súborov bolo nahratých.%1 a %n iných súborov bolo nahratých. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 bol premenovaný na %2 a %n iný súbor bol premenovaný.%1 bol premenovaný na %2 a %n iné súbory boli premenované.%1 bol premenovaný na %2 a %n iných súborov bolo premenovaných.%1 bol premenovaný na %2 a %n iných súborov bolo premenovaných. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 bol presunuý do %2 a %n iných súbor bol presunutý.%1 bol presunuý do %2 a %n iné súbory boli presunuté.%1 bol presunuý do %2 a %n iných súborov bolo presunutých.%1 bol presunuý do %2 a %n iných súborov bolo presunutých. - + %1 has and %n other file(s) have sync conflicts. %1 má a %n iný súbor má synchronizačný konflikt.%1 má a %n iné súbory majú synchronizačný konflikt.%1 má a %n iných súborov má synchronizačný konflikt.%1 má a %n iných súborov má synchronizačný konflikt. - + %1 has a sync conflict. Please check the conflict file! %1 má synchronizačný konflikt. Prosím skontrolujte konfliktný súbor! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 a %n iný súbor nie je možné synchronizovať kvôli chybe. Skontrolujte log pre podrobnosti.%1 a %n iné súbory nie je možné synchronizovať kvôli chybe. Skontrolujte log pre podrobnosti.%1 a %n iných súborov nie je možné synchronizovať kvôli chybe. Skontrolujte log pre podrobnosti.%1 a %n iných súborov nie je možné synchronizovať kvôli chybe. Skontrolujte log pre podrobnosti. - + %1 could not be synced due to an error. See the log for details. %1 nemôže byť synchronizovaný kvôli chybe. Pozrite sa do logu pre podrobnosti. - + Sync Activity Aktivita synchronizácie - + Could not read system exclude file Nemožno čítať systémový exclude file - + A new folder larger than %1 MB has been added: %2. Bol pridaný nový priečinok väčší ako %1 MB: %2. - + A folder from an external storage has been added. Bol pridaný priečinok z externého úložiska. - + Please go in the settings to select it if you wish to download it. Ak si to prajete prevziať, tak prejdite do nastavení a vyberte to. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Priečinok %1 bol vytvorený, ale bol už skôr vylúčený zo synchronizácie. Nebude preto synchronizovaný. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Súbor %1 bol vytvorený, ale bol už skôr vylúčený zo synchronizácie. Nebude preto synchronizovaný. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ To znamená, že klient synchronizácie nemusí okamžite odovzdať lokálne zme % 1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -884,22 +884,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Stiahnuť nové súbory? - + Download new files Stiahnuť nové súbory - + Keep local files Ponechať lokálne súbory - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -908,24 +908,24 @@ Ste si istí, že chcete tieto akcie synchronizovať so serverom? Ak to bol omyl a chcete si tieto súbory ponechať, budú opäť synchronizované zo servera. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Záloha je dostupná - + Normal Synchronisation Bežná synchronizácia - + Keep Local Files as Conflict Ponechať lokálne súbory ako konfliktné @@ -2256,7 +2256,7 @@ Nie je vhodné ju používať. OCC::PropagateDirectory - + Error writing metadata to the database Chyba pri zápise metadát do databázy @@ -2284,32 +2284,32 @@ Nie je vhodné ju používať. Voľné miesto na disku je menej ako %1 - + File was deleted from server Súbor bol vymazaný zo servera - + The file could not be downloaded completely. Súbor sa nedá stiahnuť úplne. - + The downloaded file is empty despite that the server announced it should have been %1. Prebratý súbor je prázdny napriek tomu, že server oznámil, že mal mať %1. - + 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 @@ -2322,7 +2322,7 @@ Nie je vhodné ju používať. ; Obnovenie zlyhalo: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2683,22 +2683,22 @@ Nie je vhodné ju používať. OCC::ShareLinkWidget - + &Share link - + Password: Heslo: - + Expiration date: Dátum vypršania: - + TextLabel Štítok @@ -2771,22 +2771,22 @@ Nie je vhodné ju používať. OCC::ShareUserGroupWidget - + Share with users or groups ... Zdieľať s používateľmi alebo skupinami ... - + Copy link Kopírovať odkaz - + No results for '%1' Žiadne výsledky pre '%1' - + I shared something with you Niečo som vám sprístupnil @@ -2804,22 +2804,22 @@ Nie je vhodné ju používať. môže upraviť - + Can reshare Môže sprístupniť aj iným - + Can create Môže vytvárať - + Can change Môže meniť - + Can delete Môže odstraňovať @@ -3906,7 +3906,7 @@ Nie je vhodné ju používať. Pred istým časom - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 539900265b0a..b75482b1813b 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/>Za račun %1 možnosti opravil niso omogočene. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Napaka zapisovanja metapodatkov v podatkovno zbirko @@ -750,120 +750,120 @@ %1 ni mogoče brati. - + %1 has been removed. %1 names a file. Datoteka %1 je odstranjena. - + %1 has been downloaded. %1 names a file. Datoteka %1 je prejeta. - + %1 has been updated. %1 names a file. Datoteka %1 je posodobljena. - + %1 has been renamed to %2. %1 and %2 name files. Datoteka %1 je preimenovana v %2. - + %1 has been moved to %2. Datoteka %1 je premaknjena v %2. - + %1 and %n other file(s) have been removed. Datoteka %1 in še %n druga datoteka je bila izbrisana.Datoteka %1 in še %n drugi datoteki sta bili izbrisani.Datoteka %1 in še %n druge datoteke so bile izbrisane.Datoteka %1 in še %n drugih datotek je bilo izbrisanih. - + %1 and %n other file(s) have been downloaded. Datoteka %1 in še %n druga datoteka je bila shranjena na disk.Datoteka %1 in še %n drugi datoteki sta bili shranjeni na disk.Datoteka %1 in še %n druge datoteke so bile shranjene na disk.Datoteka %1 in še %n drugih datotek je bilo shranjenih na disk. - + %1 and %n other file(s) have been updated. Datoteka %1 in še %n druga datoteka je bila posodobljena.Datoteka %1 in še %n drugi datoteki sta bili posodobljeni.Datoteka %1 in še %n druge datoteke so bile posodobljene.Datoteka %1 in še %n drugih datotek je bilo posodobljenih. - + %1 has been renamed to %2 and %n other file(s) have been renamed. Datoteka %1 je bila preimenovana v %2 in še %n druga datoteka je bila preimenovana.Datoteka %1 je bila preimenovana v %2 in še %n drugi datoteki sta bili preimenovani.Datoteka %1 je bila preimenovana v %2 in še %n druge datoteke so bile preimenovane.Datoteka %1 je bila preimenovana v %2 in še %n drugih datotek je bilo preimenovanih. - + %1 has been moved to %2 and %n other file(s) have been moved. Datoteka %1 je bila premaknjena v %2 in še %n druga datoteka je bila premaknjena.Datoteka %1 je bila premaknjena v %2 in še %n drugi datoteki sta bili premaknjeni.Datoteka %1 je bila premaknjena v %2 in še %n druge datoteke so bile premaknjene.Datoteka %1 je bila premaknjena v %2 in še %n drugih datotek je bilo premaknjenih. - + %1 has and %n other file(s) have sync conflicts. Pri datoteki %1 in še %n drugi datoteki je zaznan spor usklajevanja.Pri datoteki %1 in še %n drugih datotekah je zaznan spor usklajevanja.Pri datoteki %1 in še %n drugih datotekah je zaznan spor usklajevanja.Pri datoteki %1 in še %n drugih datotekah je zaznan spor usklajevanja. - + %1 has a sync conflict. Please check the conflict file! Pri datoteki %1 je zaznan spor usklajevanja. Preverite datoteko! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. Datoteke %1 in še %n druge datoteke ni mogoče uskladiti zaradi napak. Podrobnosti so zapisane v dnevniški datoteki.Datoteke %1 in še %n drugih datotek ni mogoče uskladiti zaradi napak. Podrobnosti so zapisane v dnevniški datoteki.Datoteke %1 in še %n drugih datotek ni mogoče uskladiti zaradi napak. Podrobnosti so zapisane v dnevniški datoteki.Datoteke %1 in še %n drugih datotek ni mogoče uskladiti zaradi napak. Podrobnosti so zapisane v dnevniški datoteki. - + %1 could not be synced due to an error. See the log for details. Datoteke %1 zaradi napake ni mogoče uskladiti. Več podrobnosti je zabeleženih v dnevniški datoteki. - + Sync Activity Dejavnost usklajevanja - + Could not read system exclude file Ni mogoče prebrati sistemske izločitvene datoteke - + A new folder larger than %1 MB has been added: %2. Dodana je nova mapa, ki presega %1 MB: %2. - + A folder from an external storage has been added. Dodana je mapa iz zunanje shrambe. - + Please go in the settings to select it if you wish to download it. Med nastavitvami jo lahko izberete in označite za prejem. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -904,7 +904,7 @@ Ali ste prepričani, da želite posodobiti spremembe s strežnikom? Če je prišlo do napake in se odločite datoteke ohraniti, bodo te ponovno usklajene s strežnika. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -913,17 +913,17 @@ To se lahko zgodi, če je na strežniku na primer obnovljena varnostna kopija. Z nadaljevanjem usklajevanja bodo vse trenutne datoteke prepisane s starejšimi različicami. Ali želite ohraniti trenutne krajevne datoteke kot preimenovane datoteke v usklajevalnem sporu? - + Backup detected Varnostna kopija je zaznana - + Normal Synchronisation Običajno usklajevanje - + Keep Local Files as Conflict Ohrani krajevne datoteke kot datoteke v sporu @@ -2252,7 +2252,7 @@ Uporaba ni priporočljiva. OCC::PropagateDirectory - + Error writing metadata to the database Napaka zapisovanja metapodatkov v podatkovno zbirko @@ -2280,32 +2280,32 @@ Uporaba ni priporočljiva. Na disku je prostora manj kot %1 - + File was deleted from server Datoteka je izbrisana s strežnika - + The file could not be downloaded completely. Datoteke ni mogoče prejeti v celoti. - + The downloaded file is empty despite that the server announced it should have been %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 @@ -2318,7 +2318,7 @@ Uporaba ni priporočljiva. ; obnovitev je spodletela: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Datoteka ali mapa je bila odstranjena iz mesta v souporabi, ki je nastavljeno le za branje, obnavljanje pa je spodletelo: %1 @@ -2679,22 +2679,22 @@ Uporaba ni priporočljiva. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel Besedilna oznaka @@ -2767,22 +2767,22 @@ Uporaba ni priporočljiva. OCC::ShareUserGroupWidget - + Share with users or groups ... Souporaba z uporabniki ali skupinami ... - + Copy link - + No results for '%1' Ni zadetkov za '%1' - + I shared something with you @@ -2800,22 +2800,22 @@ Uporaba ni priporočljiva. lahko ureja - + Can reshare - + Can create - + Can change - + Can delete @@ -3902,7 +3902,7 @@ Uporaba ni priporočljiva. Pred nekaj časa - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_sr.ts b/translations/client_sr.ts index e0ac81ee8d72..e923efec1b8c 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -274,12 +274,12 @@ This account supports end-to-end encryption - + Овај налог подржава шифровање са краја на крај Enable encryption - + Укључи шифровање @@ -568,17 +568,17 @@ Прихвати - + Synced Синхронизовано - + Retry all uploads Понови сва отпремања - + <br/>Account %1 does not have activities enabled. <br/>Налог %1 нема укључене активности. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Грешка приликом уписивања метаподатака у базу @@ -750,120 +750,120 @@ %1 није читљив. - + %1 has been removed. %1 names a file. %1 је уклоњен. - + %1 has been downloaded. %1 names a file. %1 је преузет. - + %1 has been updated. %1 names a file. %1 је ажуриран. - + %1 has been renamed to %2. %1 and %2 name files. %1 је преименован у %2. - + %1 has been moved to %2. %1 је премештен у %2. - + %1 and %n other file(s) have been removed. %1 и још %n други фајл је уклоњен.%1 и још %n друга фајла су уклоњени.%1 и још %n других фајлова су уклоњени. - + %1 and %n other file(s) have been downloaded. %1 и још %n други фајл је преузет.%1 и још %n друга фајла су преузети.%1 и још %n других фајлова су преузети. - + %1 and %n other file(s) have been updated. %1 и још %n други фајл је ажуриран.%1 и још %n друга фајла су ажурирани.%1 и још %n других фајлова су ажурирани. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 је преименован у %2, а још %n фајл је такође преименован.%1 је преименован у %2, а још %n фајла су такође преименована.%1 је преименован у %2, а још %n фајлова је такође преименовано. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 је померен у %2, а још %n фајл је такође померен.%1 је померен у %2, а још %n фајла су такође померена.%1 је померен у %2, а још %n фајлова је такође померено. - + %1 has and %n other file(s) have sync conflicts. %1 и још %n фајл имају конфликте.%1 и још %n друга фајла имају конфликте.%1 и још %n других фајлова имају конфликте. - + %1 has a sync conflict. Please check the conflict file! %1 има конфликт приликом синхронизације. Проверите конфликтни фајл! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 и још %n фајл није синхронизован због грешке. Погледајте записник за детаље.%1 и још %n фајла нису синхронизовани због грешке. Погледајте записник за детаље.%1 и још %n фајлова нису синхронизовани због грешке. Погледајте записник за детаље. - + %1 could not be synced due to an error. See the log for details. %1 није синхронизован због грешке. Погледајте записник за детаље. - + Sync Activity Активност синхронизације - + Could not read system exclude file Не могу да прочитам системски списак за игнорисање - + A new folder larger than %1 MB has been added: %2. Додата је нова фасцикла већа од %1 MB: %2. - + A folder from an external storage has been added. Додата је фасцикла са спољног складишта. - + Please go in the settings to select it if you wish to download it. Идите у поставке и означите ако желите да ја преузмете. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Фасцикла %1 је креирана, али је још раније искључена из синхронизације. Подаци унутар ње неће бити синхронизовани. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Фајл %1 је креиран, али је још раније искључен из синхронизације. Неће бити синхронизован. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ This means that the synchronization client might not upload local changes immedi %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a Ако одлучите да обришете фајлове, они ће Вам постати недоступни, осим ако нисте власник. - + Download new files? Преузети нове фајлове? - + Download new files Преузми нове фајлове - + Keep local files Задржи локалне фајлове - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Ако је ово била грешка и желите да задржите фајлове, они ће се поновно синхронизовати са сервера. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an Ако наставите синхронизацију, сви Ваши фајлови ће бити преписани са старијим фајловима из старијег стања. Да ли желите да задржите Ваше најскорије локалне фајлове као конфликтне фајлове? - + Backup detected Детектован бекап - + Normal Synchronisation Нормална синхронизација - + Keep Local Files as Conflict Чувај локалне фајлове као конфликтне @@ -2263,7 +2263,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database Грешка приликом упису мета података у базу података @@ -2291,32 +2291,32 @@ It is not advisable to use it. Слободан простор на диску је мањи од %1 - + File was deleted from server Фајл је обрисан са сервера - + The file could not be downloaded completely. Фајл није могао бити преузет у потпуности. - + The downloaded file is empty despite that the server announced it should have been %1. Преузети фајл је празан иако је сервер рекао да треба да је %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 Грешка приликом упису мета података у базу података @@ -2329,7 +2329,7 @@ It is not advisable to use it. ; Враћање није успело: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Фајл или фасцикла је уклоњена из дељења које је само за читање, али повраћај није успео: %1 @@ -2690,22 +2690,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link &Подели везу - + Password: Лозинка: - + Expiration date: Датум истека: - + TextLabel Текст ознака @@ -2778,22 +2778,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... Дели са корисницима или групама... - + Copy link Копирај везу - + No results for '%1' Нема резултата за '%1' - + I shared something with you Поделио сам нешто са Вама @@ -2811,22 +2811,22 @@ It is not advisable to use it. може да мења - + Can reshare Може да дели даље - + Can create Може да креира унутар дељења - + Can change Може да мења садржај унутар дељења - + Can delete Може да брише садржај унутар дељења @@ -2854,7 +2854,7 @@ It is not advisable to use it. SSL Cipher Debug View - + SSL Chipher поглед за отклањање грешака @@ -3419,7 +3419,7 @@ It is not advisable to use it. The host "%1" provided an invalid certificate. Continue? - + Сервер „%1“ је понудио неисправан сертификат. Наставити? @@ -3913,7 +3913,7 @@ It is not advisable to use it. пре неког времена - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 0b5bf5b0a51b..30e826ad8ce1 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -568,17 +568,17 @@ Acceptera - + Synced Synkroniserad - + Retry all uploads Försök ladda upp igen - + <br/>Account %1 does not have activities enabled. <br/>Kontot %1 har inte aktiviteter aktiverade @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Fel vid skrivning av metadata till databasen @@ -750,120 +750,120 @@ %1 är inte läsbar. - + %1 has been removed. %1 names a file. %1 har tagits bort. - + %1 has been downloaded. %1 names a file. %1 har laddats ned. - + %1 has been updated. %1 names a file. %1 har uppdaterats. - + %1 has been renamed to %2. %1 and %2 name files. %1 har döpts om till %2. - + %1 has been moved to %2. %1 har flyttats till %2. - + %1 and %n other file(s) have been removed. %1 och %n andra filer har tagits bort.%1 och %n andra filer har tagits bort. - + %1 and %n other file(s) have been downloaded. %1 och %n andra filer har laddats ner.%1 och %n andra filer har laddats ned. - + %1 and %n other file(s) have been updated. %1 och %n andra filer har uppdaterats.%1 och %n andra filer har uppdaterats. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 har döpts om till %2 och %n andra filer har döpts om.%1 har döpts om till %2 och %n andra filer har döpts om. - + %1 has been moved to %2 and %n other file(s) have been moved. %1 har flyttats till %2 och %n andra filer har flyttats.%1 har flyttats till %2 och %n andra filer har flyttats. - + %1 has and %n other file(s) have sync conflicts. %1 och %n andra filer har synk-konflikter.%1 och %n andra filer har synk-konflikter. - + %1 has a sync conflict. Please check the conflict file! %1 har en synk-konflikt. Vänligen kontrollera konfliktfilen! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 och %n andra filer kunde inte synkas på grund av fel. Se loggen för detaljer.%1 och %n andra filer kunde inte synkas på grund av fel. Se loggen för detaljer. - + %1 could not be synced due to an error. See the log for details. %1 kunde inte synkroniseras på grund av ett fel. Kolla loggen för ytterligare detaljer. - + Sync Activity Synk aktivitet - + Could not read system exclude file Kunde inte läsa systemets exkluderings-fil - + A new folder larger than %1 MB has been added: %2. En ny mapp större än %1 MB har lagts till: %2. - + A folder from an external storage has been added. En mapp från en extern lagringsyta har lagts till. - + Please go in the settings to select it if you wish to download it. Vänligen gå till inställningar och välj den om du önskar att ladda ned den. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. Mappen %1 skapades men var tidigare exkluderad från synkronisering. Data i denna mapp kommer inte att synkroniseras. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. Filen %1 skapades men var tidigare exkluderad från synkronisering. Den kommer inte att synkroniseras. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ Det betyder att synkroniseringsklienten inte kan ladda upp lokala ändringar ome %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ Om du vill behålla dessa filer kommer de att synkroniseras till servern på nyt Om du raderar filerna kommer de att vara otillgängliga för dig, om du inte är ägaren. - + Download new files? Ladda ned nya filer? - + Download new files Ladda ned nya filer - + Keep local files Behåll lokala filer - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Om detta var ett misstag och du vill behålla dina filer, kommer de att synkroniseras på nytt från servern. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Detta kan vara för att en säkerhetskopia har återställts på servern. Om du fortsätter synkningen kommer alla dina filer återställas med en äldre version av filen. Vill du behålla dina nyare lokala filer som konfliktfiler? - + Backup detected Backup upptäckt - + Normal Synchronisation Normal synkronisation - + Keep Local Files as Conflict Behåll lokala filer som konflikt @@ -2263,7 +2263,7 @@ Det är inte lämpligt använda den. OCC::PropagateDirectory - + Error writing metadata to the database Fel vid skrivning av metadata till databasen @@ -2291,32 +2291,32 @@ Det är inte lämpligt använda den. Ledigt utrymme är under %1 - + File was deleted from server Filen har tagits bort från servern - + The file could not be downloaded completely. Filen kunde inte laddas ned fullständigt. - + The downloaded file is empty despite that the server announced it should have been %1. 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 @@ -2329,7 +2329,7 @@ Det är inte lämpligt använda den. ; Återställning misslyckades: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 En fil eller mapp togs bort från en skrivskyddad delning, men återställning misslyckades: %1 @@ -2690,22 +2690,22 @@ Det är inte lämpligt använda den. OCC::ShareLinkWidget - + &Share link &Dela länk - + Password: Lösenord: - + Expiration date: Utgångsdatum: - + TextLabel Textetikett @@ -2778,22 +2778,22 @@ Det är inte lämpligt använda den. OCC::ShareUserGroupWidget - + Share with users or groups ... Dela med användare eller grupper ... - + Copy link Kopiera länk - + No results for '%1' Inga resultat för '%1' - + I shared something with you Jag delade något med dig @@ -2811,22 +2811,22 @@ Det är inte lämpligt använda den. kan redigera - + Can reshare Kan dela vidare - + Can create Kan skapa - + Can change Kan ändra - + Can delete Kan radera @@ -3913,7 +3913,7 @@ Det är inte lämpligt använda den. En stund sedan - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_th.ts b/translations/client_th.ts index ea531f4206fa..fb578214c124 100644 --- a/translations/client_th.ts +++ b/translations/client_th.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br />บัญชี %1 ไม่มีกิจกรรมที่เปิดใช้งาน @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database ข้อผิดพลาดในการเขียนข้อมูลเมตาไปยังฐานข้อมูล @@ -750,120 +750,120 @@ ไม่สามารถอ่านข้อมูล %1 ได้ - + %1 has been removed. %1 names a file. %1 ได้ถูกลบออก - + %1 has been downloaded. %1 names a file. %1 ได้ถูกดาวน์โหลด - + %1 has been updated. %1 names a file. %1 ได้ถูกอัพเดทเรียบร้อยแล้ว - + %1 has been renamed to %2. %1 and %2 name files. %1 ได้ถูกเปลี่ยนชื่อเป็น %2 - + %1 has been moved to %2. %1 ได้ถูกย้ายไปยัง %2 - + %1 and %n other file(s) have been removed. %1 และ %n ไฟล์อื่นๆได้ถูกลบออก - + %1 and %n other file(s) have been downloaded. %1 และ %n ไฟล์อื่นๆ ได้ถูกดาวน์โหลดเรียบร้อยแล้ว - + %1 and %n other file(s) have been updated. %1 และ %n ไฟล์อื่นๆ ได้รับการอัพเดท - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 และไฟล์อื่นๆอีก %n ไฟล์ได้ถูกเปลี่ยนชื่อเป็น %2 - + %1 has been moved to %2 and %n other file(s) have been moved. %1 และไฟล์อื่นๆอีก %n ไฟล์ได้ถูกย้ายไปยัง %2 - + %1 has and %n other file(s) have sync conflicts. %1 และ %n ไฟล์อื่นๆ เกิดปัญหาขณะประสานข้อมูล - + %1 has a sync conflict. Please check the conflict file! %1 มีปัญหาขณะประสานข้อมูล กรุณาตรวจสอบไฟล์ที่มีปัญหานั้น - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 และไฟล์อื่นๆอีก %n ไฟล์ไม่สามารถประสานข้อมูลเนื่องจากเกิดข้อผิดพลาด กรุณาดูไฟล์ log สำหรับรายละเอียดเพิ่มเติม - + %1 could not be synced due to an error. See the log for details. %1 ไม่สามารถประสานข้อมูลเนื่องจากมีข้อผิดพลาด สามารถดูไฟล์ log สำหรับรายละเอียดเพิ่มเติม - + Sync Activity ความเคลื่อนไหวของการประสานข้อมูล - + Could not read system exclude file ไม่สามารถอ่าน ยกเว้นไฟล์ระบบ - + A new folder larger than %1 MB has been added: %2. โฟลเดอร์ใหม่มีขนาดใหญ่กว่า %1 เมกะไบต์ ได้ถูกเพิ่ม: %2 - + A folder from an external storage has been added. โฟลเดอร์ที่มีพื้นที่จัดเก็บข้อมูลภายนอกได้ถูกเพิ่ม - + Please go in the settings to select it if you wish to download it. กรุณาไปในส่วนของการตั้งค่าเพื่อเลือก ถ้าคุณต้องการจะดาวน์โหลด - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -872,7 +872,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -880,22 +880,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -905,7 +905,7 @@ If this was an accident and you decide to keep your files, they will be re-synce ถ้าเรื่องนี้เป็นอุบัติเหตุและคุณตัดสินใจที่จะเก็บไฟล์ของคุณ ไฟล์ของคุณก็จะถูกประสานข้อมูลใหม่อีกครั้ง - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -914,17 +914,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an ไฟล์ปัจจุบันของคุณทั้งหมดจะถูกเขียนทับด้วยไฟล์เก่า คุณต้องการเก็บไฟล์ไว้? - + Backup detected ตรวจพบการสำรองข้อมูล - + Normal Synchronisation ประสานข้อมูลปกติ - + Keep Local Files as Conflict เก็บไฟล์ต้นทางเป็นไฟล์ที่มีปัญหา @@ -2252,7 +2252,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database ข้อผิดพลาดในการเขียนข้อมูลเมตาไปยังฐานข้อมูล @@ -2280,32 +2280,32 @@ It is not advisable to use it. พื้นที่ว่างในดิสก์น้อยกว่า %1 - + File was deleted from server ไฟล์ถูกลบออกจากเซิร์ฟเวอร์ - + The file could not be downloaded completely. ดาวน์โหลดไฟล์ไม่สำเร็จ - + The downloaded file is empty despite that the server announced it should have been %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 ข้อผิดพลาดในการเขียนข้อมูลเมตาไปยังฐานข้อมูล @@ -2318,7 +2318,7 @@ It is not advisable to use it. ; ฟื้นฟูล้มเหลว: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 ไฟล์หรือโฟลเดอร์ที่ถูกลบออกจากส่วนการอ่านเพียงอย่างเดียว แต่ล้มเหลวในการฟื้นฟู: %1 @@ -2679,22 +2679,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel ป้ายข้อความ @@ -2767,22 +2767,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... แชร์กับผู้ใช้หรือกลุ่ม ... - + Copy link - + No results for '%1' ไม่มีผลลัพธ์สำหรับ '%1' - + I shared something with you ฉันแชร์บางอย่างกับคุณ @@ -2800,22 +2800,22 @@ It is not advisable to use it. สามารถแก้ไข - + Can reshare - + Can create - + Can change - + Can delete @@ -3901,7 +3901,7 @@ It is not advisable to use it. บางเวลาที่ผ่านมา - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_tr.ts b/translations/client_tr.ts index 51a0880b7777..f0e6c72c11b8 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -568,17 +568,17 @@ Onayla - + Synced Eşitlenmiş - + Retry all uploads Tüm yüklemeleri yinele - + <br/>Account %1 does not have activities enabled. <br/>%1 hesabının etkinleştirilmiş bir işlemi yok. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database Üst veri veritabanına yazılırken sorun çıktı @@ -750,120 +750,120 @@ %1 okunabilir değil. - + %1 has been removed. %1 names a file. %1 kaldırıldı. - + %1 has been downloaded. %1 names a file. %1 indirildi. - + %1 has been updated. %1 names a file. %1 güncellendi. - + %1 has been renamed to %2. %1 and %2 name files. %1, %2 olarak adlandırıldı. - + %1 has been moved to %2. %1, %2 konumuna taşındı. - + %1 and %n other file(s) have been removed. %1 ve diğer %n dosya kaldırıldı.%1 ve diğer %n dosya kaldırıldı. - + %1 and %n other file(s) have been downloaded. %1 ve diğer %n dosya indirildi.%1 ve diğer %n dosya indirildi. - + %1 and %n other file(s) have been updated. %1 ve diğer %n dosya güncellendi.%1 ve diğer %n dosya güncellendi. - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1, %2 olarak yeniden adlandırıldı ve diğer %n dosyanın adı değiştirildi.%1, %2 olarak yeniden adlandırıldı ve diğer %n dosyanın adı değiştirildi. - + %1 has been moved to %2 and %n other file(s) have been moved. %1, %2 konumuna taşındı ve diğer %n dosya taşındı.%1, %2 konumuna taşındı ve diğer %n dosya taşındı. - + %1 has and %n other file(s) have sync conflicts. %1 ve diğer %n dosya için eşitleme çakışması var.%1 ve diğer %n dosya için eşitleme çakışması var. - + %1 has a sync conflict. Please check the conflict file! %1 için eşitleme çakışması var. Lütfen çakışan dosyayı denetleyin! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 ve diğer %n dosya sorunlar nedeniyle eşitlenemedi. Ayrıntılı bilgi almak için günlük dosyasına bakın.%1 ve diğer %n dosya sorunlar nedeniyle eşitlenemedi. Ayrıntılı bilgi almak için günlük dosyasına bakabilirsiniz. - + %1 could not be synced due to an error. See the log for details. %1 bir sorun nedeniyle eşitlenemedi. Ayrıntılı bilgi almak için günlük dosyasına bakabilirsiniz. - + Sync Activity Eşitleme İşlemi - + Could not read system exclude file Sistem katılmayacaklar dosyası okunamadı - + A new folder larger than %1 MB has been added: %2. %1 MB boyutundan büyük yeni bir klasör eklendi: %2. - + A folder from an external storage has been added. Dış depolama alanından bir klasör eklendi. - + Please go in the settings to select it if you wish to download it. İndirmek istiyorsanız seçmek için lütfen ayarlar bölümüne gidin. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. %1 klasörü oluşturulmuş ancak daha önce eşitleme dışı bırakılmış. Bu klasördeki veriler eşitlenmeyecek. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. %1 dosyası oluşturulmuş ancak daha önce eşitleme dışı bırakılmış. Bu dosyadaki veriler eşitlenmeyecek. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -874,7 +874,7 @@ This means that the synchronization client might not upload local changes immedi Bunun sonucunda eşitleme istemcisi yerel değişiklikleri anında yükleyemez. Onun yerine yalnız yerel değişiklikleri tarar ve aralıklarla yükler (varsayılan olarak iki saatte bir). - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -885,22 +885,22 @@ Bu dosyaları tutmak isterseniz ve yeterli izinleriniz varsa sunucu ile yeniden Bu dosyaları silmek isterseniz ve sahibi değilseniz artık erişemeyeceksiniz. - + Download new files? Yeni dosyalar indirilsin mi? - + Download new files Yeni dosyaları indir - + Keep local files Yerel dosyalar korunsun - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -910,7 +910,7 @@ Sunucuda bu eşitleme işlemlerinin yapılmasını istediğinizden emin misiniz? Bu işlemi yanlışlıkla yaptıysanız ve dosyalarınızı korumak istiyorsanız dosyalar sunucudan yeniden eşitlenecek. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -919,17 +919,17 @@ Bunun nedeni sunucuya bir yedeğin geri yüklenmiş olması olabilir. Eşitlemeye normal şekilde devam edilirse tüm dosyalar daha eski bir dosya ile değiştirilebilir. Çakışma için daha yeni yerel dosyaları korumak ister misiniz? - + Backup detected Yedek bulundu - + Normal Synchronisation Normal Eşitleme - + Keep Local Files as Conflict Çakıştığında Yerel Dosyalar Korunsun @@ -2262,7 +2262,7 @@ Kullanmanız önerilmez. OCC::PropagateDirectory - + Error writing metadata to the database Üst veri veritabanına yazılırken sorun çıktı @@ -2290,32 +2290,32 @@ Kullanmanız önerilmez. Boş disk alanı %1 değerinin altında - + File was deleted from server Dosya sunucudan silindi - + The file could not be downloaded completely. Dosya tam olarak indirilemedi. - + The downloaded file is empty despite that the server announced it should have been %1. Sunucu tarafından boyutu %1 olarak bildirilmesine rağmen indirilen dosya boş. - + File %1 cannot be saved because of a local file name clash! %1 dosyası, adının yerel bir dosya ile çakışması nedeniyle kaydedilemedi! - + File has changed since discovery Dosya taramadan sonra değiştirilmiş - + Error writing metadata to the database Üst veri veritabanına yazılırken sorun çıktı @@ -2328,7 +2328,7 @@ Kullanmanız önerilmez. ; Geri Yüklenemedi: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 Bir dosya ya da klasör salt okunur bir paylaşımdan kaldırılmış ancak geri yüklenemedi: %1 @@ -2689,22 +2689,22 @@ Kullanmanız önerilmez. OCC::ShareLinkWidget - + &Share link &Dosyayı paylaş - + Password: Parola: - + Expiration date: Son kullanma tarihi: - + TextLabel MetinEtiketi @@ -2777,22 +2777,22 @@ Kullanmanız önerilmez. OCC::ShareUserGroupWidget - + Share with users or groups ... Kullanıcı ya da gruplarla paylaş... - + Copy link Bağlantıyı kopyala - + No results for '%1' '%1' için bir sonuç bulunamadı - + I shared something with you Sizinle bir şey paylaştım @@ -2810,22 +2810,22 @@ Kullanmanız önerilmez. düzenleyebilir - + Can reshare Yeniden paylaşabilsin - + Can create Ekleyebilsin - + Can change Değiştirebilsin - + Can delete Silebilsin @@ -3912,7 +3912,7 @@ Kullanmanız önerilmez. Bir süre önce - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_uk.ts b/translations/client_uk.ts index ae385a575ac4..7bdbd4a3d2c3 100644 --- a/translations/client_uk.ts +++ b/translations/client_uk.ts @@ -568,17 +568,17 @@ Прийняти - + Synced Синхронізовано - + Retry all uploads Повторно завантажити все - + <br/>Account %1 does not have activities enabled. @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database @@ -750,118 +750,118 @@ %1 не читається. - + %1 has been removed. %1 names a file. %1 видалено. - + %1 has been downloaded. %1 names a file. %1 завантажено. - + %1 has been updated. %1 names a file. %1 оновлено. - + %1 has been renamed to %2. %1 and %2 name files. %1 перейменовано на %2 - + %1 has been moved to %2. %1 переміщено в %2. - + %1 and %n other file(s) have been removed. - + %1 and %n other file(s) have been downloaded. - + %1 and %n other file(s) have been updated. - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. %1 не може синхронізуватися через помилки. Дивіться деталі в журналі. - + Sync Activity Журнал синхронізації - + Could not read system exclude file Неможливо прочитати виключений системний файл - + A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -870,7 +870,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -878,46 +878,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? Звантажити нові файли? - + Download new files Звантажити нові файли - + Keep local files Зберегти локальні файли - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected Резервну копію знайдено - + Normal Synchronisation - + Keep Local Files as Conflict @@ -2243,7 +2243,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database @@ -2271,32 +2271,32 @@ It is not advisable to use it. - + File was deleted from server Файл видалено з сервера - + The file could not be downloaded completely. Файл не може бути завантажений повністю. - + The downloaded file is empty despite that the server announced it should have been %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 @@ -2309,7 +2309,7 @@ It is not advisable to use it. ; Відновлення не вдалося: %1 - + A file or folder was removed from a read only share, but restoring failed: %1 @@ -2670,22 +2670,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel Мітка @@ -2758,22 +2758,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... Поширити серед користувачів або груп ... - + Copy link Скопіювати посилання - + No results for '%1' Відсутні результати для '%1' - + I shared something with you Я поділився з вами документами @@ -2791,22 +2791,22 @@ It is not advisable to use it. може редагувати - + Can reshare - + Can create - + Can change - + Can delete @@ -3893,7 +3893,7 @@ It is not advisable to use it. Деякий час тому - + %1: %2 this displays an error string (%2) for a file %1 %1: %2 diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index 94e04065a1ab..77af5c3a723c 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -568,17 +568,17 @@ 接受 - + Synced 已同步 - + Retry all uploads 重试所有上传 - + <br/>Account %1 does not have activities enabled. <br/>帐户%1没有同步活动。 @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database 向数据库写入元数据错误 @@ -750,120 +750,120 @@ %1 不可读。 - + %1 has been removed. %1 names a file. %1 已移除。 - + %1 has been downloaded. %1 names a file. %1 已下载。 - + %1 has been updated. %1 names a file. %1 已更新。 - + %1 has been renamed to %2. %1 and %2 name files. %1 已更名为 %2。 - + %1 has been moved to %2. %1 已移动至 %2。 - + %1 and %n other file(s) have been removed. %1 和 %n 其它文件已被移除。 - + %1 and %n other file(s) have been downloaded. %1 和 %n 其它文件已下载。 - + %1 and %n other file(s) have been updated. %1 和 %n 其它文件已更新。 - + %1 has been renamed to %2 and %n other file(s) have been renamed. %1 已经更名为 %2,其它 %3 文件也已更名。 - + %1 has been moved to %2 and %n other file(s) have been moved. %1 已移动到 %2,其它 %3 文件也已移动。 - + %1 has and %n other file(s) have sync conflicts. %1 和 %n 其他文件有同步冲突。 - + %1 has a sync conflict. Please check the conflict file! %1 有同步冲突。请检查冲突文件! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. %1 和 %n 其他文件由于错误不能同步。详细信息请查看日志。 - + %1 could not be synced due to an error. See the log for details. %1 同步出错。详情请查看日志。 - + Sync Activity 同步活动 - + Could not read system exclude file 无法读取系统排除的文件 - + A new folder larger than %1 MB has been added: %2. 一个大于 %1 MB 的新文件夹 %2 已被添加。 - + A folder from an external storage has been added. 一个来自外部存储的文件夹已被添加。 - + Please go in the settings to select it if you wish to download it. 如果您想下载,请到设置页面选择它。 - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. 文件夹 %1 已创建但之前被排除出同步过程。文件夹中的数据将不会被同步。 - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. 文件 %1 已创建但之前被排除出同步过程。这个文件将不会被同步。 - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -876,7 +876,7 @@ This means that the synchronization client might not upload local changes immedi %1 - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -887,22 +887,22 @@ If you decide to delete the files, they will be unavailable to you, unless you a 如果您决定删除这些文件,它们将被清空,除非您是文件拥有者。 - + Download new files? 下载新文件? - + Download new files 下载新文件? - + Keep local files 保持本地文件 - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. @@ -911,7 +911,7 @@ If this was an accident and you decide to keep your files, they will be re-synce 如果这是一个意外而您想要保留这些文件,他们会被重新从服务器同步过来。 - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? @@ -920,17 +920,17 @@ Continuing the sync as normal will cause all your files to be overwritten by an 继续正常同步将导致您全部文件被更早状态的旧文件覆盖。您想要保留冲突文件的本地最新版本吗? - + Backup detected 备份已删除 - + Normal Synchronisation 正常同步 - + Keep Local Files as Conflict 保留本地文件为冲突文件 @@ -2261,7 +2261,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database 向数据库写入元数据错误 @@ -2289,32 +2289,32 @@ It is not advisable to use it. 空闲磁盘空间少于 %1 - + File was deleted from server 已从服务器删除文件 - + The file could not be downloaded completely. 文件无法完整下载。 - + The downloaded file is empty despite that the server announced it should have been %1. 虽然服务器宣称已完成 %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 向数据库写入元数据错误 @@ -2327,7 +2327,7 @@ It is not advisable to use it. ;恢复失败:%1 - + A file or folder was removed from a read only share, but restoring failed: %1 文件(夹)移除了只读共享,但恢复失败:%1 @@ -2688,22 +2688,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link &共享链接 - + Password: 密码: - + Expiration date: 有效期至: - + TextLabel 文本标签 @@ -2776,22 +2776,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... 共享给其他用户或组 ... - + Copy link 复制链接 - + No results for '%1' 没有 '%1' 相关结果 - + I shared something with you 我向您共享了一些东西 @@ -2809,22 +2809,22 @@ It is not advisable to use it. 可编辑 - + Can reshare 可以再分享 - + Can create 可以创建 - + Can change 可以修改 - + Can delete 可以删除 @@ -3816,7 +3816,7 @@ It is not advisable to use it. Log in - 登陆 + 登录 @@ -3911,7 +3911,7 @@ It is not advisable to use it. 之前 - + %1: %2 this displays an error string (%2) for a file %1 %1:%2 diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index 8dd5ce71af80..f07b02d57af2 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -568,17 +568,17 @@ - + Synced - + Retry all uploads - + <br/>Account %1 does not have activities enabled. <br/> 帳號 %1 尚未啟用紀錄行為功能 @@ -665,7 +665,7 @@ OCC::CleanupPollsJob - + Error writing metadata to the database 寫入後設資料(metadata) 時發生錯誤 @@ -750,118 +750,118 @@ %1 是不可讀的 - + %1 has been removed. %1 names a file. %1 已被移除。 - + %1 has been downloaded. %1 names a file. %1 已被下載。 - + %1 has been updated. %1 names a file. %1 已被更新。 - + %1 has been renamed to %2. %1 and %2 name files. %1 已被重新命名為 %2。 - + %1 has been moved to %2. %1 已被搬移至 %2。 - + %1 and %n other file(s) have been removed. %1 跟 %n 其他檔案已經被刪除 - + %1 and %n other file(s) have been downloaded. %1 跟 %n 其他檔案已經被下載 - + %1 and %n other file(s) have been updated. %1 跟 %n 其他檔案已經被修改 - + %1 has been renamed to %2 and %n other file(s) have been renamed. - + %1 has been moved to %2 and %n other file(s) have been moved. - + %1 has and %n other file(s) have sync conflicts. - + %1 has a sync conflict. Please check the conflict file! - + %1 and %n other file(s) could not be synced due to errors. See the log for details. - + %1 could not be synced due to an error. See the log for details. %1 因為錯誤無法被同步。請從紀錄檔觀看細節。 - + Sync Activity 同步活動 - + Could not read system exclude file 無法讀取系統的排除檔案 - + A new folder larger than %1 MB has been added: %2. - + A folder from an external storage has been added. - + Please go in the settings to select it if you wish to download it. - + The folder %1 was created but was excluded from synchronization previously. Data inside it will not be synchronized. - + The file %1 was created but was excluded from synchronization previously. It will not be synchronized. - + Changes in synchronized folders could not be tracked reliably. This means that the synchronization client might not upload local changes immediately and will instead only scan for local changes and upload them occasionally (every two hours by default). @@ -870,7 +870,7 @@ This means that the synchronization client might not upload local changes immedi - + All files in the sync folder '%1' folder were deleted on the server. These deletes will be synchronized to your local sync folder, making such files unavailable unless you have a right to restore. If you decide to keep the files, they will be re-synced with the server if you have rights to do so. @@ -878,46 +878,46 @@ If you decide to delete the files, they will be unavailable to you, unless you a - + Download new files? - + Download new files - + Keep local files 保留本地檔案 - + All the files in your local sync folder '%1' were deleted. These deletes will be synchronized with your server, making such files unavailable unless restored. Are you sure you want to sync those actions with the server? If this was an accident and you decide to keep your files, they will be re-synced from the server. - + This sync would reset the files to an earlier time in the sync folder '%1'. This might be because a backup was restored on the server. Continuing the sync as normal will cause all your files to be overwritten by an older file in an earlier state. Do you want to keep your local most recent files as conflict files? - + Backup detected - + Normal Synchronisation - + Keep Local Files as Conflict @@ -2246,7 +2246,7 @@ It is not advisable to use it. OCC::PropagateDirectory - + Error writing metadata to the database 寫入後設資料(metadata) 時發生錯誤 @@ -2274,32 +2274,32 @@ It is not advisable to use it. 可用的硬碟空間已經少於 %1 - + File was deleted from server 檔案已從伺服器被刪除 - + The file could not be downloaded completely. 檔案下載無法完成。 - + The downloaded file is empty despite that the server announced it should have been %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 寫入後設資料(metadata) 時發生錯誤 @@ -2312,7 +2312,7 @@ It is not advisable to use it. ; 重新儲存失敗 %1 - + A file or folder was removed from a read only share, but restoring failed: %1 檔案或目錄已經從只供讀取的分享中被移除,但是復原失敗: %1 @@ -2673,22 +2673,22 @@ It is not advisable to use it. OCC::ShareLinkWidget - + &Share link - + Password: - + Expiration date: - + TextLabel 文字標籤 @@ -2761,22 +2761,22 @@ It is not advisable to use it. OCC::ShareUserGroupWidget - + Share with users or groups ... 與用戶或群組分享 ... - + Copy link - + No results for '%1' '%1' 沒有結果 - + I shared something with you @@ -2794,22 +2794,22 @@ It is not advisable to use it. 可編輯 - + Can reshare - + Can create - + Can change - + Can delete @@ -3896,7 +3896,7 @@ It is not advisable to use it. 前一段時間 - + %1: %2 this displays an error string (%2) for a file %1 %1: %2