diff --git a/src/gui/application.cpp b/src/gui/application.cpp index 3a262a305b671..907d87facd2a0 100644 --- a/src/gui/application.cpp +++ b/src/gui/application.cpp @@ -360,9 +360,6 @@ Application::Application(int &argc, char **argv) setQuitOnLastWindowClosed(false); - _theme->setSystrayUseMonoIcons(cfg.monoIcons()); - connect(_theme, &Theme::systrayUseMonoIconsChanged, this, &Application::slotUseMonoIconsChanged); - // Setting up the gui class will allow tray notifications for the // setup that follows, like folder setup _gui = new ownCloudGui(this); @@ -571,11 +568,6 @@ void Application::setupLogging() qCInfo(lcApplication) << "Arguments:" << qApp->arguments(); } -void Application::slotUseMonoIconsChanged(bool) -{ - _gui->slotComputeOverallSyncStatus(); -} - void Application::slotParseMessage(const QString &msg, QObject *) { if (msg.startsWith(QLatin1String("MSG_PARSEOPTIONS:"))) { diff --git a/src/gui/application.h b/src/gui/application.h index 5bd412077eda4..67fd836e9471a 100644 --- a/src/gui/application.h +++ b/src/gui/application.h @@ -100,7 +100,6 @@ public slots: protected slots: void slotParseMessage(const QString &, QObject *); void slotCheckConnection(); - void slotUseMonoIconsChanged(bool); void slotCleanup(); void slotAccountStateAdded(OCC::AccountState *accountState); void slotAccountStateRemoved(OCC::AccountState *accountState); diff --git a/src/gui/generalsettings.cpp b/src/gui/generalsettings.cpp index 6a5164a265382..429c759272f79 100644 --- a/src/gui/generalsettings.cpp +++ b/src/gui/generalsettings.cpp @@ -182,7 +182,6 @@ GeneralSettings::GeneralSettings(QWidget *parent) //slotUpdateInfo(); // misc - connect(_ui->monoIconsCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings); connect(_ui->crashreporterCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings); connect(_ui->newFolderLimitCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings); connect(_ui->newFolderLimitSpinBox, static_cast(&QSpinBox::valueChanged), this, &GeneralSettings::saveMiscSettings); @@ -216,10 +215,6 @@ GeneralSettings::GeneralSettings(QWidget *parent) _ui->horizontalLayout_3->getContentsMargins(&m0, &m1, &m2, &m3); _ui->horizontalLayout_3->setContentsMargins(0, m1, m2, m3); - // OEM themes are not obliged to ship mono icons, so there - // is no point in offering an option - _ui->monoIconsCheckBox->setVisible(Theme::instance()->monoIconsAvailable()); - connect(_ui->ignoredFilesButton, &QAbstractButton::clicked, this, &GeneralSettings::slotIgnoreFilesEditor); connect(_ui->debugArchiveButton, &QAbstractButton::clicked, this, &GeneralSettings::slotCreateDebugArchive); @@ -246,7 +241,6 @@ void GeneralSettings::loadMiscSettings() { QScopedValueRollback scope(_currentlyLoading, true); ConfigFile cfgFile; - _ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons()); _ui->serverNotificationsCheckBox->setChecked(cfgFile.optionalServerNotifications()); _ui->callNotificationsCheckBox->setEnabled(_ui->serverNotificationsCheckBox->isEnabled()); _ui->callNotificationsCheckBox->setChecked(cfgFile.showCallNotifications()); @@ -256,7 +250,6 @@ void GeneralSettings::loadMiscSettings() _ui->newFolderLimitCheckBox->setChecked(newFolderLimit.first); _ui->newFolderLimitSpinBox->setValue(newFolderLimit.second); _ui->newExternalStorage->setChecked(cfgFile.confirmExternalStorage()); - _ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons()); } #if defined(BUILD_UPDATER) @@ -420,9 +413,6 @@ void GeneralSettings::saveMiscSettings() if (_currentlyLoading) return; ConfigFile cfgFile; - bool isChecked = _ui->monoIconsCheckBox->isChecked(); - cfgFile.setMonoIcons(isChecked); - Theme::instance()->setSystrayUseMonoIcons(isChecked); cfgFile.setCrashReporter(_ui->crashreporterCheckBox->isChecked()); cfgFile.setNewBigFolderSizeLimit(_ui->newFolderLimitCheckBox->isChecked(), diff --git a/src/gui/generalsettings.ui b/src/gui/generalsettings.ui index 00cbeb14953b2..2e61fc0c9d833 100644 --- a/src/gui/generalsettings.ui +++ b/src/gui/generalsettings.ui @@ -7,7 +7,7 @@ 0 0 556 - 563 + 573 @@ -66,16 +66,6 @@ General Settings - - - - For System Tray - - - Use &Monochrome Icons - - - @@ -343,7 +333,6 @@ autostartCheckBox serverNotificationsCheckBox - monoIconsCheckBox ignoredFilesButton newFolderLimitCheckBox newFolderLimitSpinBox diff --git a/src/libsync/configfile.cpp b/src/libsync/configfile.cpp index 08064026f4058..16cb45576a396 100644 --- a/src/libsync/configfile.cpp +++ b/src/libsync/configfile.cpp @@ -56,7 +56,6 @@ static constexpr char remotePollIntervalC[] = "remotePollInterval"; static constexpr char forceSyncIntervalC[] = "forceSyncInterval"; static constexpr char fullLocalDiscoveryIntervalC[] = "fullLocalDiscoveryInterval"; static constexpr char notificationRefreshIntervalC[] = "notificationRefreshInterval"; -static constexpr char monoIconsC[] = "monoIcons"; static constexpr char promptDeleteC[] = "promptDeleteAllFiles"; static constexpr char crashReporterC[] = "crashReporter"; static constexpr char optionalServerNotificationsC[] = "optionalServerNotifications"; @@ -947,23 +946,6 @@ void ConfigFile::setPromptDeleteFiles(bool promptDeleteFiles) settings.setValue(QLatin1String(promptDeleteC), promptDeleteFiles); } -bool ConfigFile::monoIcons() const -{ - QSettings settings(configFile(), QSettings::IniFormat); - bool monoDefault = false; // On Mac we want bw by default -#ifdef Q_OS_MAC - // OEM themes are not obliged to ship mono icons - monoDefault = QByteArrayLiteral("Nextcloud") == QByteArrayLiteral(APPLICATION_NAME); -#endif - return settings.value(QLatin1String(monoIconsC), monoDefault).toBool(); -} - -void ConfigFile::setMonoIcons(bool useMonoIcons) -{ - QSettings settings(configFile(), QSettings::IniFormat); - settings.setValue(QLatin1String(monoIconsC), useMonoIcons); -} - bool ConfigFile::crashReporter() const { QSettings settings(configFile(), QSettings::IniFormat); diff --git a/src/libsync/configfile.h b/src/libsync/configfile.h index 719cce0835ada..d7d6f4ebeabb2 100644 --- a/src/libsync/configfile.h +++ b/src/libsync/configfile.h @@ -83,9 +83,6 @@ class OWNCLOUDSYNC_EXPORT ConfigFile */ [[nodiscard]] std::chrono::milliseconds fullLocalDiscoveryInterval() const; - [[nodiscard]] bool monoIcons() const; - void setMonoIcons(bool); - [[nodiscard]] bool promptDeleteFiles() const; void setPromptDeleteFiles(bool promptDeleteFiles); diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index caee23bc361e6..732bd0948682f 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -480,23 +480,6 @@ QString Theme::systrayIconFlavor(bool mono) const return flavor; } -void Theme::setSystrayUseMonoIcons(bool mono) -{ - _mono = mono; - emit systrayUseMonoIconsChanged(mono); -} - -bool Theme::systrayUseMonoIcons() const -{ - return _mono; -} - -bool Theme::monoIconsAvailable() const -{ - QString themeDir = QString(Theme::themePrefix) + QString::fromLatin1("%1/").arg(Theme::instance()->systrayIconFlavor(true)); - return QDir(themeDir).exists(); -} - QString Theme::updateCheckUrl() const { return APPLICATION_UPDATE_URL; diff --git a/src/libsync/theme.h b/src/libsync/theme.h index de721f71c273a..7c6e42ba37a1b 100644 --- a/src/libsync/theme.h +++ b/src/libsync/theme.h @@ -340,21 +340,6 @@ class OWNCLOUDSYNC_EXPORT Theme : public QObject */ virtual QString aboutDetails() const; - /** - * Define if the systray icons should be using mono design - */ - void setSystrayUseMonoIcons(bool mono); - - /** - * Retrieve wether to use mono icons for systray - */ - bool systrayUseMonoIcons() const; - - /** - * Check if mono icons are available - */ - bool monoIconsAvailable() const; - /** * @brief Where to check for new Updates. */ @@ -612,7 +597,6 @@ public slots: Theme(); signals: - void systrayUseMonoIconsChanged(bool); void systemPaletteChanged(const QPalette &palette); void darkModeChanged(); void overrideServerUrlChanged(); diff --git a/translations/client_bg.ts b/translations/client_bg.ts index f990073e0f5ae..7e065c70b8906 100644 --- a/translations/client_bg.ts +++ b/translations/client_bg.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Изчистване на менюто за съобщения на състояние @@ -410,12 +410,12 @@ Изглежда, че функцията за виртуални файлове е активирана в тази папка. В момента не е възможно имплицитно изтегляне на виртуални файлове, които са криптирани цялостно. За да получите най-доброто изживяване с виртуални файлове и цялостно криптиране, уверете се, че криптираната папка е маркирана с „Нека винаги е достъпна локално“. - + End-to-end Encryption with Virtual Files Цялостно Криптиране с виртуални файлове - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Изглежда, че функцията за виртуални файлове е активирана в тази папка. В момента не е възможно имплицитно изтегляне на виртуални файлове, които са криптирани цялостно. За да получите най-доброто изживяване с виртуални файлове и цялостно криптиране, уверете се, че криптираната папка е маркирана с „Нека винаги е достъпна локално“. @@ -439,21 +439,26 @@ No account configured. Няма настроен профил. + + + Disable encryption + + Display mnemonic Показване на мнемоника - - - End-to-end encryption has been enabled for this account - Цялостното криптиране беше активирано за този профил - Enable encryption Активиране на криптирането + + + End-to-end encryption has been enabled for this account + Цялостното криптиране беше активирано за този профил + Warning @@ -617,7 +622,7 @@ This action will abort any currently running synchronization. Цялостно мнемонично криптиране - + End-to-end encryption mnemonic Мнемонично криптиране от край до край @@ -626,6 +631,21 @@ This action will abort any currently running synchronization. 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). За да защитим вашата Криптографска идентичност, ние я криптираме мнемонично с 12 думи от речника. Моля, запишете ги и ги пазете на сигурно място. Те ще са необходими, за да добавите други устройства към вашия профил (като вашия мобилен телефон или лаптоп). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ This action will abort any currently running synchronization. Този профил поддържа цялостно криптиране - + Set up encryption Настройки за криптиране - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Цялостното криптиране е активирано в този профил с друго устройство.<br>То може да бъде активирано на това устройство, като въведете мнемониката си. <br>Това ще позволи синхронизиране на съществуващите криптирани папки. @@ -763,17 +783,17 @@ This action will abort any currently running synchronization. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Удостоверената заявка към сървъра беше пренасочена към „%1“. URL адресът е лош, сървърът е неправилно конфигуриран. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + Забранен е достъп от сървъра. За да се провери дали имате правилен достъп<a href="%1"> щракнете тук</a> за да получите достъп до услугата с вашия браузър. There was an invalid response to an authenticated WebDAV request - + Получен е невалиден отговор на удостоверена заявка за WebDAV @@ -910,7 +930,7 @@ This action will abort any currently running synchronization. Quit - Напусни + Напускане @@ -1046,7 +1066,7 @@ This action will abort any currently running synchronization. Моля, въведете паролата си за цялостно шифроване:<br><br> Потребител:% 2Профил:% 3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Моля, въведете паролата си за шифроване от край до край:<br><br> Потребител:% 2<br>Профил:% 3<br> @@ -1847,8 +1867,8 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 - - %1 + Could not decrypt! + @@ -2590,6 +2610,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Затвори + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2925,60 +2950,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 Използване & на виртуални файлове, вместо да се изтегля съдържание веднага % 1 - + (experimental) (експериментално) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Виртуалните файлове не се поддържат за основни дялове на Windows като локална папка. Моля, изберете валидна подпапка под буквата на устройството. - + %1 folder "%2" is synced to local folder "%3" %1 папка „%2“ е синхронизирана с локалната папка „%3“ - + Sync the folder "%1" Синхронизиране на папка „%1“ - + Warning: The local folder is not empty. Pick a resolution! Предупреждение: Локалната папка не е празна. Изберете резолюция! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 свободно място - + Virtual files are not available for the selected folder Не са налични виртуални файлове за избраната папка - + Local Sync Folder Няма достатъчно място в Папка за Локално - - + + (%1) (%1) - + There isn't enough free space in the local folder! Няма достатъчно място в локалната папка @@ -3082,144 +3107,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Успешно свързване с %1: %2 версия %3 (%4)</font><br/><br/> - + Invalid URL Невалиден URL адрес - + Failed to connect to %1 at %2:<br/>%3 Неуспешно свързване с % 1 пр и% 2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Време за изчакване при опит за свързване с % 1 при % 2. - + Trying to connect to %1 at %2 … Опит се да се свърже с % 1 при % 2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Удостоверената заявка към сървъра беше пренасочена към „%1“. URL адресът е лош, сървърът е неправилно конфигуриран. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Достъпът е забранен от сървъра. За да се провери дали имате правилен достъп<a href="%1"> щракнете тук</a> и ще получите достъп до услугата с вашия браузър. - + There was an invalid response to an authenticated WebDAV request Получен е невалиден отговор на удостоверена заявка за WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Местната папка за синхронизиране % 1 вече съществува, настройка за синхронизиране. <br/><br/> - + Creating local sync folder %1 … Създаване на местна папка за синхронизиране % 1 - + OK Добре - + failed. неуспешен - + Could not create local folder %1 Локалната папка %1 не може да бъде създадена - + No remote folder specified! Не сте посочили отдалечена папка! - + Error: %1 Грешка: %1 - + creating folder on Nextcloud: %1 Създаване на папка на Nextcloud: %1 - + Remote folder %1 created successfully. Одалечената папка %1 е създадена. - + The remote folder %1 already exists. Connecting it for syncing. Отдалечената папка % 1 вече съществува. Свързване за синхронизиране. - - + + The folder creation resulted in HTTP error code %1 Създаването на папката предизвика HTTP грешка %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Създаването на отдалечена папка беше неуспешно, защото предоставените идентификационни данни са грешни! <br/>Моля, върнете се и проверете вашите идентификационни данни.</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> <p><font color="red">Създаването на отдалечена папка беше неуспешно, вероятно защото предоставените идентификационни данни са грешни!</font><br/> Моля, върнете се и проверете вашите идентификационни данни.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Създаването на отдалечената папка %1 се провали: <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Установена е връзка за синхронизиране от % 1 към отдалечена директория % 2. - + Successfully connected to %1! Успешно свързване с %1! - + Connection to %1 could not be established. Please check again. Връзката с % 1 не можа да бъде установена. Моля проверете отново. - + Folder rename failed Преименуването на папка се провали - + Cannot 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> <font color="green"><b>Локалната папка %1 е създадена успешно!</b></font> @@ -3403,7 +3428,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Не може да се синхронизира поради невалиден час на модификация - + Error while deleting file record %1 from the database Грешка при изтриване на запис на файл %1 от базата данни @@ -3620,46 +3645,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Файл % 1 не може да бъде преименуван на %2 поради сблъсък с името на локален файл! - - - + + + could not get file %1 from local DB не можа да се получи файл %1 от локалната БД - + Error setting pin state Грешка при настройване на състоянието на закачване - - + + Error updating metadata: %1 Грешка при актуализиране на метаданни: %1 - + The file %1 is currently in use Файлът %1 в момента се използва - - + + Could not delete file record %1 from local DB Не можа да се изтрие запис на файл %1 от локалната БД - + Failed to propagate directory rename in hierarchy Неуспешно разпространение на преименуването на директория в йерархията - + Failed to rename file Неуспешно преименуване на файл @@ -3680,7 +3705,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Грешен HTTP код, върнат от сървъра. Очаквани 204, но са получени „% 1% 2“. @@ -4092,7 +4117,9 @@ This is a new, experimental mode. If you decide to use it, please report any iss Could not encrypt the following folder: "%1". Server replied with error: %2 - + Не можа да криптира следната папка: „%1“. + +Сървърът отговори с грешка: %2 @@ -4468,7 +4495,7 @@ Server replied with error: %2 Невъзможност да се актуализират метаданните на виртуалния файл: % 1 - + Could not update file metadata: %1 Невъзможност да се актуализират метаданните на файла: % 1 @@ -4478,38 +4505,38 @@ Server replied with error: %2 Не може да се зададе запис на файл в локалната БД: %1 - + Unresolved conflict. Неразрешени конфликт. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Наличен е само % 1, за започване трябват поне % 2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Не може да се отвори или създаде локална база данни за синхронизиране. Уверете се, че имате достъп за запис в папката за синхронизиране. - + Using virtual files with suffix, but suffix is not set Използване на виртуални файлове със суфикс, но суфиксът не е зададен - + Unable to read the blacklist from the local database Не може да се прочете черният списък от локалната база данни - + Unable to read from the sync journal. Не може да се чете от дневника за синхронизиране. - + Cannot open the sync journal Не може да се отвори дневника за синхронизиране. @@ -4519,12 +4546,12 @@ Server replied with error: %2 Синхронизацията ще се възобнови скоро. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Дисковото пространство е малко: Пропуснати са изтегляния, които биха намалили свободното място под% 1. - + There is insufficient space available on the server for some uploads. На сървъра няма достатъчно място за някои качвания. @@ -4653,24 +4680,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Клиент за настолен компютър</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Версия %1. За допълнителна информация, моля щракнете <a href='%2'>тук</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Използване на добавка за виртуални файлове: %1</small></p> - + <p>This release was supplied by %1</p> <p>Това издание е предоставено от % 1</p> @@ -4862,8 +4889,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Грешка при актуализиране на метаданните поради невалиден час на модификация @@ -4871,8 +4898,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Грешка при актуализиране на метаданните поради невалиден час на модификация @@ -5329,17 +5356,17 @@ Server replied with error: %2 Create a new share link - + Създаване на нова връзка за споделяне Copy share link location - + Копиране на местоположението на връзка за споделяне Share options - + Опции за споделяне @@ -5347,57 +5374,57 @@ Server replied with error: %2 An error occurred setting the share password. - + Възникна грешка при задаване на парола за споделянето. Edit share - + Редактиране на споделяне Dismiss - + Отхвърляне Share label - + Споделяне на етикет Allow editing - + Разрешаване на редактиране Password protect - + Защита с парола Set expiration date - + Задаване на срок на валидност Note to recipient - + Бележка за получателя Unshare - + Прекратяване на споделянето Add another link - + Добавяне на още една връзка Copy share link - + Копиране на връзка за споделяне @@ -5502,7 +5529,7 @@ Server replied with error: %2 No results for - + Няма резултати за @@ -5510,7 +5537,7 @@ Server replied with error: %2 Search results section %1 - + Секция с резултати от търсенето %1 @@ -5576,67 +5603,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Състояние на линия - + Online На линия - + Away Отсъстващ - + Do not disturb Не безпокой - + Mute all notifications Заглушаване на всички известия - + Invisible Невидим - + Appear offline Показване като офлайн - + Status message Съобщение за състояние - + What is your status? Какъв е вашият статус? - + Clear status message after Изчистване на съобщение за състоянието след това - + Cancel Отказ - + Clear status message Изчистване на съобщението за състоянието - + Set status message Задаване на съобщение за състоянието @@ -5858,7 +5885,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Изграден от Git редакция <a href="%1">%2</a> на %3, %4 използвайки Qt %5, %6</small></p> diff --git a/translations/client_br.ts b/translations/client_br.ts index 752025996668c..04997abca81a5 100644 --- a/translations/client_br.ts +++ b/translations/client_br.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Kont arventet ebet. + + + Disable encryption + + Display mnemonic Diskouez an niver-memor - - - End-to-end encryption has been enabled for this account - - Enable encryption Aotre + + + End-to-end encryption has been enabled for this account + + Warning @@ -612,7 +617,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -621,6 +626,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -743,12 +763,12 @@ This action will abort any currently running synchronization. Douget e vez gant ar c'hont ar sifrañ penn-kil-ha-troad - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1041,7 +1061,7 @@ This action will abort any currently running synchronization. Ebarzhit ho frazenn-tremen klok: <br><br>Implijader: %2<br>Kont: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1834,7 +1854,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2575,6 +2595,11 @@ Traoù lec'h m'eo aotreet al lemel a vo lamet ma ampechont lamadur an Close Seriñ + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2907,60 +2932,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Teuliad diabarzh kemprennet - - + + (%1) (%1) - + There isn't enough free space in the local folder! N'ez eus ket traouac'h a blas dieub en teuliad diabarzh ! @@ -3064,144 +3089,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Kenstaget mar da %1 : %2 stumm %3 (%4)</font><br/><br/> - + Invalid URL URL fall - + Failed to connect to %1 at %2:<br/>%3 C'hwitet d'en em genstagañ da %1 da %2 : <br/>%3 - + Timeout while trying to connect to %1 at %2. Deuet eo an termenn pa glaskemp genstagaén da %1 da %2. - + Trying to connect to %1 at %2 … Ho klask en em genstagañ da %1 da %2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. An aksed a zo difennet d'ar servijour. Evit gouzout hag-eñ e c'hallit tizhout ar servijer, <a href="%1">klikit amañ</a> evit tizhout servijoù ho furcher. - + There was an invalid response to an authenticated WebDAV request Ur respont fall d'ar goulenn dilesa WabDAV a zo bet - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Bez ez eus dija eus an teuliad kemprennet diabarzh %1, ho arventennañ anezhañ evit ar gemprenn. <br/><br/> - + Creating local sync folder %1 … O krouiñ an teuliat kemrpennañ diabarzh %1 ... - + OK - + failed. c'hwitet. - + Could not create local folder %1 Dibosupl krouiñ an teuliad diabarzh %1 - + No remote folder specified! Teuliat pell lakaet ebet ! - + Error: %1 Fazi : %1 - + creating folder on Nextcloud: %1 krouiñ teuliadoù war Nextcloud %1 - + Remote folder %1 created successfully. Teuliat pell %1 krouiet mat. - + The remote folder %1 already exists. Connecting it for syncing. Pez ez eus dija eus ar restr pell %1. Ar genstagañ anezhañ evit e kemprenn. - - + + The folder creation resulted in HTTP error code %1 Krouadenn an teuliad en deus roet ar c'hod fazi HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> C'hwitet da grouiñ ar restr pell abalamour an titouroù identitelez roet a zo fall ! <br/>Gwiriit ho titouroù identitelezh.</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> <p><font color="red">C'hwitet da grouiñ an teuliad pell abalamour da titouroù identitelezh fall roet sur walc'h.</font><br/>Gwiriit anezho</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. C'hwitat da grouiñ an teuliad pell %1 gant ar fazi <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Ur genstagadenn kemprenet eus %1 d'an teuliad pell %2 a zo bet staliet. - + Successfully connected to %1! Kenstaget mat da %1 ! - + Connection to %1 could not be established. Please check again. Ar genstagaden da %1 n'eo ket bet graet. Klaskit en dro. - + Folder rename failed C'hwitet da adenvel an teuliad - + Cannot 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> <font color="green"><b>An teuliad kempren diabarzh %1 a zo bet krouet mat !</b></font> @@ -3379,7 +3404,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3596,46 +3621,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3656,7 +3681,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4444,7 +4469,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4454,38 +4479,38 @@ Server replied with error: %2 - + Unresolved conflict. Stroum diziskoulmet. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Nez eus nemet %1 dieub, ret eo kaout %2 d'an neubeutañ evit kregiñ - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Dibosupl digeriñ pe krouiñ ar rouadenn-diaz kemprennet diabarzh. Bezit sur ho peus an aotre embann en teuliad kemprenn. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Dibosupl lenn ar roll-du eus ar roadenn-diaz diabarzh - + Unable to read from the sync journal. Dibosupl eo lenn ar gazetenn kemprenn. - + Cannot open the sync journal Dibosupl eo digeriñ ar gazetenn kemprenn @@ -4495,12 +4520,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Plas el lenner re vihan : ar bellgargadennoù a lako ar plas dieub da mont dindan %1 a vo ankouaet. - + There is insufficient space available on the server for some uploads. N'ez eus ket trawalc'h a blas war ar servijour evit pelgasadennoù zo. @@ -4629,24 +4654,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Kliant Burev</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Stumm %1. Evit muioc'h a ditouroù, klikit <a href='%2'>amañ</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>An digoradenn-mañ a zo bet roet gant %1</p> @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4847,8 +4872,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5552,67 +5577,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5834,7 +5859,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Krouet gant Git stumm<a href="%1">%2</a> war %3, %4 en ur implij Qt %5, %6</small></p> diff --git a/translations/client_ca.ts b/translations/client_ca.ts index f57e639c67033..42441b00bbb5e 100644 --- a/translations/client_ca.ts +++ b/translations/client_ca.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Esborra el menú del missatge d'estat @@ -410,12 +410,12 @@ Sembla que tens la funció de fitxers virtuals habilitada en aquesta carpeta. De moment, no és possible descarregar implícitament fitxers virtuals xifrats d'extrem a extrem. Per obtenir la millor experiència amb els fitxers virtuals i el xifratge d'extrem a extrem, assegureu-vos que la carpeta xifrada estigui marcada amb "Fes sempre disponible localment". - + End-to-end Encryption with Virtual Files Xifratge d'extrem a extrem amb Fitxers virtuals - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Sembla que tens la funció de fitxers virtuals habilitada en aquesta carpeta. De moment, no és possible baixar implícitament fitxers virtuals xifrats d'extrem a extrem. Per obtenir la millor experiència amb els fitxers virtuals i el xifratge d'extrem a extrem, assegureu-vos que la carpeta xifrada estigui marcada amb "Fes sempre disponible localment". @@ -439,21 +439,26 @@ No account configured. No s'ha configurat cap compte. + + + Disable encryption + + Display mnemonic Mostra la clau mnemotècnica - - - End-to-end encryption has been enabled for this account - S'ha habilitat el xifratge d'extrem a extrem per a aquest compte - Enable encryption Habilita el xifratge + + + End-to-end encryption has been enabled for this account + S'ha habilitat el xifratge d'extrem a extrem per a aquest compte + Warning @@ -616,7 +621,7 @@ Aquesta acció anul·larà qualsevol sincronització en execució. Clau mnemotècnica del xifratge d'extrem a extrem - + End-to-end encryption mnemonic Clau mnemotècnica del xifratge d'extrem a extrem @@ -625,6 +630,21 @@ Aquesta acció anul·larà qualsevol sincronització en execució. 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). Per a protegir la vostra identitat criptogràfica, la xifrarem amb una clau mnemotècnica de 12 paraules del diccionari. Anoteu-les i deseu-les en un lloc segur. Les necessitareu per a afegir altres dispositius al vostre compte (com ara un telèfon mòbil o un portàtil). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Aquesta acció anul·larà qualsevol sincronització en execució. Aquest compte admet el xifratge d'extrem a extrem - + Set up encryption Habilita el xifratge - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. El xifratge d'extrem a extrem s'ha habilitat en aquest compte amb un altre dispositiu.<br>Es pot habilitar en aquest dispositiu introduint la vostra clau mnemotècnica.<br>Això permetrà la sincronització de les carpetes xifrades existents. @@ -1045,7 +1065,7 @@ Aquesta acció anul·larà qualsevol sincronització en execució. Introduïu la contrasenya de xifratge d'extrem a extrem: <br><br>Usuari: %2<br>Compte: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Introduïu la contrasenya de xifratge d'extrem a extrem: <br><br>Nom d'usuari: %2<br>Compte: %3<br> @@ -1836,7 +1856,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2573,6 +2593,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Tanca + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2907,60 +2932,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder Els fitxers virtuals no estan disponibles per la carpeta seleccionada - + Local Sync Folder Carpeta de sincronització local - - + + (%1) (%1) - + There isn't enough free space in the local folder! No hi ha prou espai lliure a la carpeta local. @@ -3064,144 +3089,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Connectat correctament a %1: %2 versió %3 (%4)</font><br/><br/> - + Invalid URL L'URL no és vàlid - + Failed to connect to %1 at %2:<br/>%3 No s'ha pogut connectar a %1 a %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. S'ha esgotat el temps d'espera en connectar-se a %1 a %2. - + Trying to connect to %1 at %2 … S'està intentant la connexió a %1 a %2... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. El servidor ha prohibit l'accés. Per a comprovar que hi teniu accés, <a href="%1">feu clic aquí</a> per a accedir al servei amb el vostre navegador. - + There was an invalid response to an authenticated WebDAV request S'ha rebut una resposta no vàlida a una sol·licitud WebDAV autenticada - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronització local %1 ja existeix; s'està configurant per a la sincronització.<br/><br/> - + Creating local sync folder %1 … S'està creant la carpeta de sincronització local %1… - + OK - + failed. s'ha produït un error. - + Could not create local folder %1 No s'ha pogut crear la carpeta local %1 - + No remote folder specified! No s'ha especificat cap carpeta remota. - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 s'està creant una carpeta al Nextcloud: %1 - + Remote folder %1 created successfully. S'ha creat la carpeta remota %1 correctament. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ja existeix. S'està connectant per a sincronitzar-la. - - + + The folder creation resulted in HTTP error code %1 La creació de la carpeta ha generat el codi d'error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> S'ha produït un error en crear la carpeta perquè les credencials proporcionades són incorrectes.<br/>Comproveu les credencials.</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> <p><font color="red">S'ha produït un error en crear la carpeta remota, probablement perquè les credencials proporcionades són incorrectes.</font><br/>Comproveu les credencials.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. S'ha produït un error en crear la carpeta remota %1: <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. S'ha configurat una connexió de sincronització de %1 a la carpeta remota %2. - + Successfully connected to %1! S'ha establert la connexió amb %1 correctament. - + Connection to %1 could not be established. Please check again. No s'ha pogut establir la connexió amb %1. Torneu-ho a provar. - + Folder rename failed S'ha produït un error en canviar el nom de la carpeta - + Cannot 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> <font color="green"><b>S'ha creat la carpeta de sincronització %1 correctament!</b></font> @@ -3379,7 +3404,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3596,46 +3621,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state Error en establir l'estat d'ancoratge - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3656,7 +3681,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4444,7 +4469,7 @@ Server replied with error: %2 No s'han pogut actualitzar les metadades del fitxer virtual: %1 - + Could not update file metadata: %1 @@ -4454,38 +4479,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicte sense resoldre. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Només hi ha %1 disponibles, necessiteu com a mínim %2 per a començar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No es pot obrir o crear la base de dades de sincronització local. Assegureu-vos que teniu accés d'escriptura a la carpeta de sincronització. - + Using virtual files with suffix, but suffix is not set S'estan utilitzant fitxers virtuals amb sufix però no s'ha definit el sufix - + Unable to read the blacklist from the local database No s'ha pogut llegir la llista negra de la base de dades local. - + Unable to read from the sync journal. No s'ha pogut llegir el diari de sincronització. - + Cannot open the sync journal No es pot obrir el diari de sincronització @@ -4495,12 +4520,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Queda poc espai en el disc: s'han omès les baixades que reduirien l'espai lliure per sota de %1. - + There is insufficient space available on the server for some uploads. No hi ha prou espai en el servidor per a pujar-hi alguns fitxers. @@ -4629,24 +4654,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Client d'escriptori del %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versió %1. Per a obtenir més informació, feu clic <a href='%2'>aquí</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Aquesta versió ha estat proporcionada per %1</p> @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4847,8 +4872,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5552,67 +5577,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5834,7 +5859,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Compilat a partir de la revisió del Git <a href="%1">%2</a> el %3 a les %4 mitjançant Qt %5, %6</small></p> diff --git a/translations/client_cs.ts b/translations/client_cs.ts index 4a1df070f62a0..015a9bef69b40 100644 --- a/translations/client_cs.ts +++ b/translations/client_cs.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Vyčistit nabídku se stavovými zprávami @@ -410,12 +410,12 @@ Zdá se, že pro tuto složku máte zapnutou funkci Virtuální soubory. V tuto chvíli není možné výslovně stahovat virtuální soubory, které jsou šifrovány mezi koncovými body. Pokud chcete, aby vám virtuální soubory a šifrování mezi koncovými body fungovalo co nejlépe, ověřte, že šifrovaná složka je označena jako „Vždy zpřístupnit lokálně“. - + End-to-end Encryption with Virtual Files Šifrování mezi koncovými body u virtuálních souborů - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Zdá se, že pro tuto složku máte zapnutou funkci Virtuální soubory. V tuto chvíli není možné výslovně stahovat virtuální soubory, které jsou šifrovány mezi koncovými body. Pokud chcete, aby vám virtuální soubory a šifrování mezi koncovými body fungovalo co nejlépe, ověřte, že šifrovaná složka je označena jako „Vždy zpřístupnit lokálně“. @@ -439,21 +439,26 @@ No account configured. Nenastaven žádný účet. + + + Disable encryption + + Display mnemonic Zobrazit mnemotechnickou frázi - - - End-to-end encryption has been enabled for this account - Šifrování mezi koncovými body bylo pro tento účet zapnuto - Enable encryption Zapnout šifrování + + + End-to-end encryption has been enabled for this account + Šifrování mezi koncovými body bylo pro tento účet zapnuto + Warning @@ -617,7 +622,7 @@ Současně tato akce zruší jakoukoli právě probíhající synchronizaci.Mnemotechnická fráze pro šifrování mezi koncovými body - + End-to-end encryption mnemonic Mnemotechnická fráze pro šifrování mezi koncovými body @@ -626,6 +631,21 @@ Současně tato akce zruší jakoukoli právě probíhající synchronizaci.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). Pro ochranu vaší kryptografické identity ji šifrujeme pomocí mnemotechnické fráze, tvořené 12 slovy ze slovníku. Poznamenejte si ji někam bezpečně. Bude potřebná pro přidání dalších zařízení k vašemu účtu (jako je mobilní telefon či notebook). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ Současně tato akce zruší jakoukoli právě probíhající synchronizaci.Tento účet podporuje šifrování mezi koncovými body - + Set up encryption Nastavit šifrování - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Šifrování mezi koncovými body pro tento účet bylo zapnuté z jiného zařízení.<br>Na stávajícím zařízení je možné ho zapnout zadáním vaší mnemotechnické.<br>Toto zapne synchronizaci existujících šifrovaných složek. @@ -1046,7 +1066,7 @@ Současně tato akce zruší jakoukoli právě probíhající synchronizaci.Zadejte heslovou frázi pro šifrování mezi koncovými body: <br><br>Uživatel: %2<br>Účet: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Zadejte heslovou frázi pro šifrování mezi koncovými body: <br><br>Uživatelské jméno: %2<br>Účet: %3<br> @@ -1846,8 +1866,8 @@ Pokud to byla pouze chyba a chcete si tyto soubory ponechat, budou ze serveru zn - - %1 - - %1 + Could not decrypt! + @@ -2589,6 +2609,11 @@ Položky u kterých je umožněno mazání budou smazány, pokud brání tomu, a Close Zavřít + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Poznamenejme, že použití jakékoli volby příkazového řádku má před tí - + Use &virtual files instead of downloading content immediately %1 Použít &virtuální soubory místo okamžitého stahování obsahu %1 - + (experimental) (experimentální) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Ve Windows kořenovém adresáři oddílu disku nejsou virtuální soubory podporovány. Vyberte platný adresář v disku. - + %1 folder "%2" is synced to local folder "%3" %1 složka „%2“ je synchronizována do místní složky „%3“ - + Sync the folder "%1" Synchronizovat složku „%1“ - + Warning: The local folder is not empty. Pick a resolution! Varování: Místní složka není prázdná. Zvolte další postup! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 volného místa - + Virtual files are not available for the selected folder Pro označenou složku nejsou virtuální soubory k dispozici - + Local Sync Folder Místní synchronizovaná složka - - + + (%1) (%1) - + There isn't enough free space in the local folder! V místní složce není dostatek volného místa! @@ -3081,144 +3106,144 @@ Poznamenejme, že použití jakékoli volby příkazového řádku má před tí OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Úspěšně připojeno k %1: %2 verze %3 (%4)</font><br/><br/> - + Invalid URL Neplatná URL adresa - + Failed to connect to %1 at %2:<br/>%3 Nepodařilo se spojit s %1 v %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Překročen časový limit při pokusu o připojení k %1 na %2. - + Trying to connect to %1 at %2 … Pokus o připojení k %1 na %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Požadavek na ověření byl přesměrován na „%1“. URL je chybná, server není správně nastaven. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Přístup zamítnut serverem. Pro ověření správných přístupových práv <a href="%1">klikněte sem</a> a otevřete službu ve svém prohlížeči. - + There was an invalid response to an authenticated WebDAV request Přišla neplatná odpověď na WebDAV požadavek s ověřením se - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Místní synchronizovaná složka %1 už existuje, nastavuje se pro synchronizaci.<br/><br/> - + Creating local sync folder %1 … Vytváření místní složky pro synchronizaci %1… - + OK OK - + failed. nezdařilo se. - + Could not create local folder %1 Nedaří se vytvořit místní složku %1 - + No remote folder specified! Není nastavena žádná federovaná složka! - + Error: %1 Chyba: %1 - + creating folder on Nextcloud: %1 vytváří se složka na Nextcloud: %1 - + Remote folder %1 created successfully. Složka %1 byla na federované straně úspěšně vytvořena. - + The remote folder %1 already exists. Connecting it for syncing. Složka %1 už na federované straně existuje. Probíhá propojení synchronizace. - - + + The folder creation resulted in HTTP error code %1 Vytvoření složky se nezdařilo s HTTP chybou %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Vytvoření federované složky se nezdařilo, pravděpodobně z důvodu neplatných přihlašovacích údajů.<br/>Vraťte se zpět a zkontrolujte je.</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> <p><font color="red">Vytvoření federované složky se nezdařilo, pravděpodobně z důvodu neplatných přihlašovacích údajů.</font><br/>Vraťte se zpět a zkontrolujte je.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Vytváření federované složky %1 se nezdařilo s chybou <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Bylo nastaveno synchronizované spojení z %1 do federovaného adresáře %2. - + Successfully connected to %1! Úspěšně spojeno s %1. - + Connection to %1 could not be established. Please check again. Spojení s %1 se nedaří navázat. Znovu to zkontrolujte. - + Folder rename failed Přejmenování složky se nezdařilo - + Cannot 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. Složku není možné odstranit ani zazálohovat, protože podložka nebo soubor v něm je otevřen v jiném programu. Zavřete podsložku nebo soubor v dané aplikaci a zkuste znovu nebo celou tuto akci zrušte. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Místní synchronizovaná složka %1 byla úspěšně vytvořena!</b></font> @@ -3402,7 +3427,7 @@ Toto je nový, experimentální režim. Pokud se jej rozhodnete používat, pros Není možné provést synchronizaci z důvodu neplatného času změny - + Error while deleting file record %1 from the database Chyba při mazání záznamu o souboru %1 z databáze @@ -3619,46 +3644,46 @@ Toto je nový, experimentální režim. Pokud se jej rozhodnete používat, pros OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Soubor %1 nemohl být přejmenován na %2 z důvodu kolize názvu s místním souborem - - - + + + could not get file %1 from local DB nepodařilo se získat soubor %1 z lokální databáze - + Error setting pin state Chyba při nastavování stavu pin - - + + Error updating metadata: %1 Chyba při aktualizování metadat: %1 - + The file %1 is currently in use Soubor %1 je v tuto chvíli používán jinou aplikací - - + + Could not delete file record %1 from local DB Nepodařilo se smazat záznam ohledně souboru %1 z lokální databáze - + Failed to propagate directory rename in hierarchy Nepodařilo se zpropagovat přejmenování složky v hierarchii - + Failed to rename file Nepodařilo se přejmenovat soubor @@ -3679,7 +3704,7 @@ Toto je nový, experimentální režim. Pokud se jej rozhodnete používat, pros OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Serverem vrácen neplatný HTTP kód. Očekáván 204, ale obdržen „%1 %2“. @@ -4469,7 +4494,7 @@ Server odpověděl chybou: %2 Nedaří se aktualizovat metadata virtuálního souboru: %1 - + Could not update file metadata: %1 Nedaří se aktualizovat metadata souboru: %1 @@ -4479,38 +4504,38 @@ Server odpověděl chybou: %2 Nepodařilo se nastavit záznam ohledně souboru na lokální databázi: %1 - + Unresolved conflict. Nevyřešený konflikt. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Je dostupných pouze %1, pro spuštění je potřeba alespoň %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Nedaří se otevřít nebo vytvořit místní synchronizační databázi. Ověřte, že máte přístup k zápisu do synchronizační složky. - + Using virtual files with suffix, but suffix is not set Používají se virtuální soubory s příponou, ale přípona není nastavena - + Unable to read the blacklist from the local database Nedaří se z místní databáze načíst seznam vyloučených - + Unable to read from the sync journal. Nedaří se číst ze žurnálu synchronizace. - + Cannot open the sync journal Nedaří se otevřít synchronizační žurnál @@ -4520,12 +4545,12 @@ Server odpověděl chybou: %2 V synchronizaci bude zakrátko navázáno. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Na disku dochází místo: Stahování které by zmenšilo volné místo pod %1 bude přeskočeno. - + There is insufficient space available on the server for some uploads. Na serveru není pro některé z nahrávaných souborů dostatek místa. @@ -4654,24 +4679,24 @@ Server odpověděl chybou: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 klient pro počítač</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Verze %1. Další informace získáte kliknutím <a href='%2'>sem</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Používá zásuvný modul pro virtuální soubory: %1</small></p> - + <p>This release was supplied by %1</p> <p>Toto vydání bylo poskytnuto %1</p> @@ -4863,8 +4888,8 @@ Server odpověděl chybou: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Chyba při aktualizaci metadat z důvodu neplatného času změny @@ -4872,8 +4897,8 @@ Server odpověděl chybou: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Chyba při aktualizaci metadat z důvodu neplatného času změny @@ -5577,67 +5602,67 @@ Server odpověděl chybou: %2 UserStatusSelector - + Online status Stav online - + Online Online - + Away Pryč - + Do not disturb Nerušit - + Mute all notifications Ztlumit veškerá upozornění - + Invisible Není vidět - + Appear offline Jevit se offline - + Status message Stavová zpráva - + What is your status? Jaký je váš stav? - + Clear status message after Vyčistit stavovou zprávu po uplynutí - + Cancel Storno - + Clear status message Vyčistit stavovou zprávu - + Set status message Nastavit stavovou zprávu @@ -5859,7 +5884,7 @@ Server odpověděl chybou: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Sestaveno z Git revize <a href="%1">%2</a> na %3, %4 s použitím Qt %5, %6</small></p> diff --git a/translations/client_da.ts b/translations/client_da.ts index ab7da5e8f1861..492a1689c8329 100644 --- a/translations/client_da.ts +++ b/translations/client_da.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ Du ser ud til at have funktionen Virtual Files aktiveret i denne mappe. I øjeblikket er det ikke muligt implicit at downloade virtuelle filer, der er End-to-End-krypteret. For at få den bedste oplevelse med virtuelle filer og ende-til-ende-kryptering skal du sørge for, at den krypterede mappe er markeret med "Gør altid tilgængelig lokalt". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Ingen konto konfigureret. + + + Disable encryption + + Display mnemonic Vis huskeregel - - - End-to-end encryption has been enabled for this account - - Enable encryption Slå kryptering til + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Denne handling vil annullere alle i øjeblikket kørende synkroniseringer. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Denne handling vil annullere alle i øjeblikket kørende synkroniseringer.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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Denne handling vil annullere alle i øjeblikket kørende synkroniseringer.Denne konto understøtter end-to-end kryptering - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Denne handling vil annullere alle i øjeblikket kørende synkroniseringer.Venligst indtast din end-to-end krypterings kode:<br><br>Bruger: %2<br>Konto: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1839,7 +1859,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2580,6 +2600,11 @@ Elementer hvor sletning er tilladt vil blive slettet hvis de hindre en folder fr Close Luk + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2912,60 +2937,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Lokal Sync mappe - - + + (%1) (%1) - + There isn't enough free space in the local folder! Der er ikke nok ledig plads i den lokale mappe! @@ -3069,144 +3094,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Forbundet til %1: %2 version %3 (%4) med succes</font><br/><br/> - + Invalid URL Ugyldig URL - + Failed to connect to %1 at %2:<br/>%3 Fejl ved forbindelse til %1 hos %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Timeout ved forsøg på forbindelse til %1 hos %2. - + Trying to connect to %1 at %2 … Prøver at forbinde til %1 hos %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Adgang forbudt fra serveren. For at kontrollere din adgang, <a href="%1">Klik her</a> for tilgang til servicen fra din browser. - + There was an invalid response to an authenticated WebDAV request Modtog ugyldigt svar på autentificeret WebDAV forespørgsel - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Lokal sync mappe %1 findes allerede. Forbinder til synkronisering.<br/><br/> - + Creating local sync folder %1 … Opretter lokal sync mappe %1 … - + OK - + failed. mislykkedes. - + Could not create local folder %1 Kunne ikke oprette lokal mappe %1 - + No remote folder specified! Ingen afsides mappe angivet! - + Error: %1 Fejl: %1 - + creating folder on Nextcloud: %1 opretter mappe hos Nextcloud: %1 - + Remote folder %1 created successfully. Afsides mappe %1 oprettet med succes. - + The remote folder %1 already exists. Connecting it for syncing. Den afsides mappe %1 findes allerede. Forbinder til den for synkronisering. - - + + The folder creation resulted in HTTP error code %1 Mappeoprettelsen resulterede i HTTP fejlkode %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Oprettelse af den afsides mappe fejlede da brugeroplysningerne er forkerte!<br/>Gå venligst tilbage og kontroller dine brugeroplysninger.</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> <p><font color="red">Afsides mappe oprettelse fejlede sansynligvis på grund af forkert angivne brugeroplysninger.</font><br/>Gå venligst tilbage og kontroller dine brugeroplysninger.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Oprettelse af afsides mappe %1 fejlet med fejl <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. En sync forbindelse fra %1 til afsides mappe %2 blev oprettet. - + Successfully connected to %1! Forbundet til %1 med succes! - + Connection to %1 could not be established. Please check again. Forbindelse til %1 kunne ikke etableres. Kontroller venligst igen. - + Folder rename failed Fejl ved omdøbning af mappe - + Cannot 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> <font color="green"><b>Lokal sync mappe %1 oprette med succes!</b></font> @@ -3384,7 +3409,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3601,46 +3626,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3661,7 +3686,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4449,7 +4474,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4459,38 +4484,38 @@ Server replied with error: %2 - + Unresolved conflict. Uafgjort konflikt. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Kun %1 til rådighed, behøver mindst %2 for at starte - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Ikke i stand til at oprette en lokal sync database. Verificer at du har skriveadgang til sync mappen. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Kunne ikke læse blacklist fra den lokale database - + Unable to read from the sync journal. Kunne ikke læse fra synkroniserings loggen. - + Cannot open the sync journal Kunne ikke åbne synkroniserings loggen @@ -4500,12 +4525,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Diskplads begrænset: Downloads der bringer ledig plads under %1 ignoreres. - + There is insufficient space available on the server for some uploads. Der er utilstrækkelig plads på serveren til visse uploads. @@ -4634,24 +4659,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1-skrivebordsklient</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Version %1. For mere information venligst klik <a href='%2'>her</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Denne udgivelse blev leveret af %1</p> @@ -4843,8 +4868,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4852,8 +4877,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5557,67 +5582,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5839,7 +5864,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Bygget fra Git-revision <a href="%1">%2</a> på %3, %4 med Qt %5, %6</small></p> diff --git a/translations/client_de.ts b/translations/client_de.ts index fe44c9f8813d9..11b157341d39b 100644 --- a/translations/client_de.ts +++ b/translations/client_de.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Statusmeldungs-Menü löschen @@ -410,12 +410,12 @@ Sie scheinen die Funktion "Virtuelle Dateien" für diesen Ordner aktiviert zu haben. Im Moment ist es nicht möglich, virtuelle Dateien, die Ende-zu-Ende-verschlüsselt sind, implizit herunterzuladen. Um die beste Erfahrung mit virtuellen Dateien und Ende-zu-Ende-Verschlüsselung zu machen, stellen Sie sicher, dass der verschlüsselte Ordner mit "Immer lokal verfügbar machen" markiert ist. - + End-to-end Encryption with Virtual Files Ende-zu-Ende-Verschlüsselung mit virtuellen Dateien - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Sie scheinen die Funktion "Virtuelle Dateien" für diesen Ordner aktiviert zu haben. Im Moment ist es nicht möglich, virtuelle Dateien, die Ende-zu-Ende-verschlüsselt sind, implizit herunterzuladen. Um die beste Erfahrung mit virtuellen Dateien und Ende-zu-Ende-Verschlüsselung zu machen, stellen Sie sicher, dass der verschlüsselte Ordner mit "Immer lokal verfügbar machen" markiert ist. @@ -439,21 +439,26 @@ No account configured. Kein Konto konfiguriert. + + + Disable encryption + + Display mnemonic Gedächtnisstütze anzeigen - - - End-to-end encryption has been enabled for this account - Für dieses Konto wurde die Ende-zu-Ende-Verschlüsselung aktiviert - Enable encryption Verschlüsselung aktivieren + + + End-to-end encryption has been enabled for this account + Für dieses Konto wurde die Ende-zu-Ende-Verschlüsselung aktiviert + Warning @@ -463,7 +468,7 @@ End-to-end encryption is not configured on this device. Once it is configured, you will be able to encrypt this folder. Would you like to set up end-to-end encryption? - Auf diesem Gerät ist keine Ende-zu-Ende-Verschlüsselung konfiguriert. Sobald sie konfiguriert ist, können Sie diesen Ordner verschlüsseln. Möchten Sie die Ende-zu-Ende-Verschlüsselung einrichten? + Auf diesem Gerät ist keine Ende-zu-Ende-Verschlüsselung konfiguriert. Sobald sie konfiguriert ist, kann dieser Ordner verschlüsselt werden. Soll die Ende-zu-Ende-Verschlüsselung eingerichtet werden? @@ -616,7 +621,7 @@ Diese Aktion bricht jede derzeit laufende Synchronisierung ab. Gedächtnisstütze für Ende-zu-Ende Verschlüsselung - + End-to-end encryption mnemonic Gedächtnisstütze für Ende-zu-Ende Verschlüsselung @@ -625,6 +630,21 @@ Diese Aktion bricht jede derzeit laufende Synchronisierung ab. 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). Um Ihre kryptografische Identität zu schützen, verschlüsseln wir sie mit einer Gedächtnisstütze von 12 Wörterbuchwörtern. Bitte notieren Sie sich diese und bewahren Sie sie auf. Sie werden benötigt, um Ihrem Konto weitere Geräte hinzuzufügen (z. B. Ihr Mobiltelefon oder Laptop). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Diese Aktion bricht jede derzeit laufende Synchronisierung ab. Dieses Konto unterstützt Ende-zu-Ende-Verschlüsselung - + Set up encryption Verschlüsselung einrichten - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Die Ende-zu-Ende-Verschlüsselung wurde auf diesem Konto mit einem anderen Gerät aktiviert.<br>Sie kann auf diesem Gerät durch Eingabe Ihrer Mnemonik aktiviert werden.<br>Dadurch wird die Synchronisierung vorhandener verschlüsselter Ordner aktiviert. @@ -762,12 +782,12 @@ Diese Aktion bricht jede derzeit laufende Synchronisierung ab. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - Die authentifizierte Anfrage an den Server wurde an „%1“ umgeleitet. Die URL ist fehlerhaft, der Server ist falsch konfiguriert. + Die genehmigte Anfrage an den Server wurde an „%1“ umgeleitet. Die URL ist fehlerhaft, der Server ist falsch konfiguriert. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - Zugriff vom Server verboten. Um zu überprüfen, ob Sie über den richtigen Zugriff verfügen, <a href="%1">klicken Sie hier</a>, um mit Ihrem Browser auf den Dienst zuzugreifen. + Zugriff durch Server verboten. Um zu überprüfen, ob Sie über den richtigen Zugriff verfügen, <a href="%1">klicken Sie hier</a>, um mit Ihrem Browser auf den Dienst zuzugreifen. @@ -1045,7 +1065,7 @@ Diese Aktion bricht jede derzeit laufende Synchronisierung ab. Geben Sie Ihre Passphrase für Ende-zu-Ende-Verschlüsselung ein:<br><br>Benutzer: %2<br>Konto: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Geben Sie Ihre Passphrase für Ende-zu-Ende-Verschlüsselung ein:<br><br>Benutzername: %2<br>Konto: %3<br> @@ -1846,8 +1866,8 @@ Falls dies ein Missgeschick war und Sie sich zum Behalten der Dateien entscheide - - %1 - - %1 + Could not decrypt! + @@ -2589,6 +2609,11 @@ Objekte, bei denen Löschen erlaubt ist, werden gelöscht, wenn diese das Lösch Close Schliessen + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Beachten Sie, dass die Verwendung von Befehlszeilenoptionen für die Protokollie - + Use &virtual files instead of downloading content immediately %1 &Virtuelle Dateien verwenden, anstatt den Inhalt sofort herunterzuladen %1 - + (experimental) (experimentell) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Virtuelle Dateien werden für die Wurzel von Windows-Partitionen als lokaler Ordner nicht unterstützt. Bitte wählen Sie einen gültigen Unterordner unter dem Laufwerksbuchstaben. - + %1 folder "%2" is synced to local folder "%3" %1 Ordner "%2" wird mit dem lokalen Ordner "%3" synchronisiert - + Sync the folder "%1" Ordner "%1" synchronisieren - + Warning: The local folder is not empty. Pick a resolution! Achtung: Der lokale Ordner ist nicht leer. Bitte wählen Sie eine entsprechende Lösung! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 freier Platz - + Virtual files are not available for the selected folder Virtuelle Dateien sind für den ausgewählten Ordner nicht verfügbar - + Local Sync Folder Lokaler Ordner für die Synchronisierung - - + + (%1) (%1) - + There isn't enough free space in the local folder! Nicht genug freier Platz im lokalen Ordner vorhanden! @@ -3081,144 +3106,144 @@ Beachten Sie, dass die Verwendung von Befehlszeilenoptionen für die Protokollie OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Erfolgreich mit %1 verbunden: %2 Version %3 (%4)</font><br/><br/> - + Invalid URL Ungültige URL - + Failed to connect to %1 at %2:<br/>%3 Die Verbindung zu %1 auf %2 konnte nicht hergestellt werden: <br/>%3 - + Timeout while trying to connect to %1 at %2. Zeitüberschreitung beim Verbindungsversuch mit %1 unter %2. - + Trying to connect to %1 at %2 … Verbindungsversuch mit %1 unter %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Die Authentifizierungs-Anfrage an den Server wurde weitergeleitet an "%1". Diese Adresse ist ungültig, der Server ist falsch konfiguriert. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Zugang vom Server nicht erlaubt. <a href="%1">Klicken Sie hier</a> zum Zugriff auf den Dienst mithilfe Ihres Browsers, so dass Sie sicherstellen können, dass Ihr Zugang ordnungsgemäß funktioniert. - + There was an invalid response to an authenticated WebDAV request Ungültige Antwort auf eine WebDAV-Authentifizeriungs-Anfrage - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Lokaler Sync-Ordner %1 existiert bereits, aktiviere Synchronistation.<br/><br/> - + Creating local sync folder %1 … Lokaler Ordner %1 für die Synchronisierung wird erstellt … - + OK OK - + failed. fehlgeschlagen. - + Could not create local folder %1 Der lokale Ordner %1 konnte nicht erstellt werden - + No remote folder specified! Kein entfernter Ordner angegeben! - + Error: %1 Fehler: %1 - + creating folder on Nextcloud: %1 Erstelle Ordner auf Nextcloud: %1 - + Remote folder %1 created successfully. Entfernter Ordner %1 erfolgreich erstellt. - + The remote folder %1 already exists. Connecting it for syncing. Der Ordner %1 ist auf dem Server bereits vorhanden. Verbinde zur Synchronisierung. - - + + The folder creation resulted in HTTP error code %1 Das Erstellen des Ordners erzeugte den HTTP-Fehler-Code %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Die Erstellung des entfernten Ordners ist fehlgeschlagen, weil die angegebenen Zugangsdaten falsch sind. <br/>Bitte gehen Sie zurück und überprüfen Sie die Zugangsdaten.</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> <p><font color="red">Die Erstellung des entfernten Ordners ist fehlgeschlagen, vermutlich sind die angegebenen Zugangsdaten falsch.</font><br/>Bitte gehen Sie zurück und überprüfen Sie Ihre Zugangsdaten.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Entfernter Ordner %1 konnte mit folgendem Fehler nicht erstellt werden: <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Eine Synchronisierungsverbindung für Ordner %1 zum entfernten Ordner %2 wurde eingerichtet. - + Successfully connected to %1! Erfolgreich verbunden mit %1! - + Connection to %1 could not be established. Please check again. Die Verbindung zu %1 konnte nicht hergestellt werden. Bitte prüfen Sie die Einstellungen erneut. - + Folder rename failed Ordner umbenennen fehlgeschlagen. - + Cannot 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. Der Ordner kann nicht entfernt und gesichert werden, da der Ordner oder einer seiner Dateien in einem anderen Programm geöffnet ist. Bitte schließen Sie den Ordner oder die Datei und versuchen Sie es erneut oder beenden Sie die Installation. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Lokaler Sync-Ordner %1 erfolgreich erstellt!</b></font> @@ -3402,7 +3427,7 @@ Dies ist ein neuer, experimenteller Modus. Wenn Sie sich entscheiden, ihn zu ver Synchronisierung wegen ungültiger Änderungszeit nicht möglich - + Error while deleting file record %1 from the database Fehler beim Löschen des Dateisatzes %1 aus der Datenbank @@ -3619,46 +3644,46 @@ Dies ist ein neuer, experimenteller Modus. Wenn Sie sich entscheiden, ihn zu ver OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Die Datei %1 kann aufgrund eines Konfliktes mit einem lokalen Dateinamen nicht in %2 umbenannt werden - - - + + + could not get file %1 from local DB Datei %1 konnte nicht aus der lokalen Datenbank abgerufen werden - + Error setting pin state Fehler beim Setzen des PIN-Status - - + + Error updating metadata: %1 Fehler beim Aktualisieren der Metadaten: %1 - + The file %1 is currently in use Die Datei %1 ist aktuell in Benutzung - - + + Could not delete file record %1 from local DB Der Dateidatensatz %1 konnte nicht aus der lokalen Datenbank gelöscht werden - + Failed to propagate directory rename in hierarchy Die Umbenennung des Verzeichnisses in der Hierarchie konnte nicht weitergegeben werden - + Failed to rename file Konnte Datei nicht umbenennen @@ -3679,7 +3704,7 @@ Dies ist ein neuer, experimenteller Modus. Wenn Sie sich entscheiden, ihn zu ver OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Falscher HTTP-Code vom Server zurückgegeben. 204 erwartet, aber "%1 %2" erhalten. @@ -4469,7 +4494,7 @@ Server antwortete mit folgendem Fehler: %2 Metadaten der virtuellen Datei konnten nicht aktualisiert werden: %1 - + Could not update file metadata: %1 Die Metadaten der Datei konnten nicht aktualisiert werden: %1 @@ -4479,38 +4504,38 @@ Server antwortete mit folgendem Fehler: %2 Dateidatensatz konnte nicht auf lokale DB gesetzt werden: %1 - + Unresolved conflict. Ungelöster Konflikt. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Nur %1 sind verfügbar. Zum Beginnen werden mindestens %2 benötigt. - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Öffnen oder erstellen der Sync-Datenbank nicht möglich. Bitte sicherstellen, dass Schreibrechte für den zu synchronisierenden Ordner existieren. - + Using virtual files with suffix, but suffix is not set Virtuelle Dateien mit Endung verwenden, aber Endung ist nicht gesetzt. - + Unable to read the blacklist from the local database Fehler beim Einlesen der Blacklist aus der lokalen Datenbank - + Unable to read from the sync journal. Fehler beim Einlesen des Synchronisierungsprotokolls. - + Cannot open the sync journal Synchronisierungsprotokoll kann nicht geöffnet werden @@ -4520,12 +4545,12 @@ Server antwortete mit folgendem Fehler: %2 Die Synchronisierung wird in Kürze fortgesetzt. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Der freie Speicherplatz wird knapp: Downloads, die den freien Speicher unter %1 reduzieren, wurden ausgelassen. - + There is insufficient space available on the server for some uploads. Auf dem Server ist für einige Dateien zum Hochladen nicht genug Platz. @@ -4654,24 +4679,24 @@ Server antwortete mit folgendem Fehler: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Desktop-Client</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Version %1. Für weitere Informationen klicken Sie bitte <a href='%2'>hier</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Plugin für virtuelle Dateien: %1</small></p> - + <p>This release was supplied by %1</p> <p>Diese Version wird von %1 bereitgestellt</p> @@ -4863,8 +4888,8 @@ Server antwortete mit folgendem Fehler: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Fehler beim Aktualisieren der Metadaten aufgrund einer ungültigen Änderungszeit @@ -4872,8 +4897,8 @@ Server antwortete mit folgendem Fehler: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Fehler beim Aktualisieren der Metadaten aufgrund einer ungültigen Änderungszeit @@ -5577,67 +5602,67 @@ Server antwortete mit folgendem Fehler: %2 UserStatusSelector - + Online status Online-Status - + Online Online - + Away Abwesend - + Do not disturb Nicht stören - + Mute all notifications Alle Benachrichtigungen stummschalten - + Invisible Unsichtbar - + Appear offline Offline erscheinen - + Status message Statusnachricht - + What is your status? Wie ist Ihr Status? - + Clear status message after Statusnachricht löschen nach - + Cancel Abbrechen - + Clear status message Statusnachricht löschen - + Set status message Statusnachricht setzen @@ -5859,7 +5884,7 @@ Server antwortete mit folgendem Fehler: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Gebaut von der git-Revision <a href="%1">%2</a> auf %3, %4 verwendet Qt %5, %6</small></p> diff --git a/translations/client_el.ts b/translations/client_el.ts index 8fee3b4afbb05..652105e4be2ba 100644 --- a/translations/client_el.ts +++ b/translations/client_el.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Φαίνεται ότι έχετε ενεργοποιημένη τη δυνατότητα εικονικών αρχείων σε αυτόν τον φάκελο. Προς το παρόν, δεν είναι δυνατή η σιωπηρή λήψη εικονικών αρχείων που είναι κρυπτογραφημένα από άκρο σε άκρο. Για να έχετε την καλύτερη εμπειρία με εικονικά αρχεία και κρυπτογράφηση από άκρο σε άκρο, βεβαιωθείτε ότι ο κρυπτογραφημένος φάκελος έχει την ένδειξη "Να είναι πάντα διαθέσιμος τοπικά". @@ -439,21 +439,26 @@ No account configured. Δεν ρυθμίστηκε λογαριασμός. + + + Disable encryption + + Display mnemonic Εμφάνιση μνήμης - - - End-to-end encryption has been enabled for this account - - Enable encryption Ενεργοποίηση κρυπτογράφησης + + + End-to-end encryption has been enabled for this account + + Warning @@ -612,7 +617,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -621,6 +626,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -743,12 +763,12 @@ This action will abort any currently running synchronization. Ο λογαριασμός υποστηρίζει κρυπτογράφηση από άκρη σε άκρη - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1041,7 +1061,7 @@ This action will abort any currently running synchronization. Παρακαλώ εισάγετε τον απο άκρη σε άκρη κρυπτογραφημένο κωδικό σας: <br><br> Χρήστης:%2<br>Λογαριασμός: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1840,7 +1860,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2582,6 +2602,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Κλείσιμο + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2915,60 +2940,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (πειραματικό) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" Συγχρονισμός του φακέλου «%1» - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 ελεύθερος χώρος - + Virtual files are not available for the selected folder Τα εικονικά αρχεία δεν είναι διαθέσιμα για τον επιλεγμένο φάκελο. - + Local Sync Folder Τοπικός Φάκελος Συγχρονισμού - - + + (%1) (%1) - + There isn't enough free space in the local folder! Δεν υπάρχει αρκετός ελεύθερος χώρος στον τοπικό φάκελο! @@ -3072,144 +3097,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Επιτυχής σύνδεση στο %1: %2 έκδοση %3 (%4)</font><br/><br/> - + Invalid URL Μη έγκυρη URL - + Failed to connect to %1 at %2:<br/>%3 Αποτυχία σύνδεσης με το %1 στο %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Λήξη χρονικού ορίου κατά τη σύνδεση σε %1 σε %2. - + Trying to connect to %1 at %2 … Προσπάθεια σύνδεσης στο %1 για %2 '...' - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Απαγόρευση πρόσβασης από τον διακομιστή. Για να επιβεβαιώσετε ότι έχετε δικαιώματα πρόσβασης, <a href="%1">πατήστε εδώ</a> για να προσπελάσετε την υπηρεσία με το πρόγραμμα πλοήγησής σας. - + There was an invalid response to an authenticated WebDAV request Υπήρξε μη έγκυρη απάντηση σε πιστοποιημένη αίτηση WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Ο τοπικός φάκελος συγχρονισμού %1 υπάρχει ήδη, ρύθμιση για συγχρονισμό.<br/><br/> - + Creating local sync folder %1 … Δημιουργία τοπικού φακέλου συγχρονισμού %1 '...' - + OK Εντάξει - + failed. απέτυχε. - + Could not create local folder %1 Αδυναμία δημιουργίας τοπικού φακέλου %1 - + No remote folder specified! Δεν προσδιορίστηκε κανένας απομακρυσμένος φάκελος! - + Error: %1 Σφάλμα: %1 - + creating folder on Nextcloud: %1 δημιουργία φακέλου στο Nextcloud: %1 - + Remote folder %1 created successfully. Ο απομακρυσμένος φάκελος %1 δημιουργήθηκε με επιτυχία. - + The remote folder %1 already exists. Connecting it for syncing. Ο απομακρυσμένος φάκελος %1 υπάρχει ήδη. Θα συνδεθεί για συγχρονισμό. - - + + The folder creation resulted in HTTP error code %1 Η δημιουργία φακέλου είχε ως αποτέλεσμα τον κωδικό σφάλματος HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Η δημιουργία απομακρυσμένου φακέλλου απέτυχε επειδή τα διαπιστευτήρια είναι λάθος!<br/>Παρακαλώ επιστρέψετε και ελέγξετε τα διαπιστευτήριά σας.</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> <p><font color="red">Η δημιουργία απομακρυσμένου φακέλου απέτυχε, πιθανώς επειδή τα διαπιστευτήρια που δόθηκαν είναι λάθος.</font><br/>Παρακαλώ επιστρέψτε πίσω και ελέγξτε τα διαπιστευτήρια σας.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Η δημιουργία απομακρυσμένου φακέλου %1 απέτυχε με σφάλμα <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Μια σύνδεση συγχρονισμού από τον απομακρυσμένο κατάλογο %1 σε %2 έχει ρυθμιστεί. - + Successfully connected to %1! Επιτυχής σύνδεση με %1! - + Connection to %1 could not be established. Please check again. Αδυναμία σύνδεσης στον %1. Παρακαλώ ελέξτε ξανά. - + Folder rename failed Αποτυχία μετονομασίας φακέλου - + Cannot 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> <font color="green"><b>Επιτυχής δημιουργία τοπικού φακέλου %1 για συγχρονισμό!</b></font> @@ -3387,7 +3412,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3604,46 +3629,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state Σφάλμα ρύθμισης της κατάστασης pin - - + + Error updating metadata: %1 Σφάλμα ενημέρωσης μεταδεδομένων: %1 - + The file %1 is currently in use Το αρχείο %1 χρησιμοποιείται αυτήν τη στιγμή - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Αποτυχία μετονομασίας αρχείου @@ -3664,7 +3689,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Ο διακομιστής επέστρεψε εσφαλμένο κωδικό HTTP. Αναμενόταν 204, αλλά ελήφθη "%1 %2". @@ -4452,7 +4477,7 @@ Server replied with error: %2 Δεν ήταν δυνατή η ενημέρωση των εικονικών μεταδεδομένων αρχείων: %1. - + Could not update file metadata: %1 @@ -4462,38 +4487,38 @@ Server replied with error: %2 - + Unresolved conflict. Άλυτες διενέξεις - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Μόνο %1 είναι διαθέσιμα, απαιτούνται τουλάχιστον %2 για την εκκίνηση - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Ανικανότητα στο άνοιγμα ή στη δημιουργία της τοπικής βάσης δεδομένων. Εξετάστε αν έχετε δικαιώματα εγγραφής στο φάκελο συγχρονισμού. - + Using virtual files with suffix, but suffix is not set Χρήση εικονικών αρχείων με κατάληξη, αλλά η κατάληξη δεν έχει οριστεί. - + Unable to read the blacklist from the local database Αδυναμία ανάγνωσης της μαύρης λίστας από την τοπική βάση δεδομένων - + Unable to read from the sync journal. Αδυναμία ανάγνωσης από το ημερολόγιο συγχρονισμού. - + Cannot open the sync journal Αδυναμία ανοίγματος του αρχείου συγχρονισμού @@ -4503,12 +4528,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Ο χώρος δίσκου είναι χαμηλός: Οι λήψεις που θα μειώσουν τον ελέυθερο χώρο κάτω από %1 θα αγνοηθούν. - + There is insufficient space available on the server for some uploads. Μη αρκετός διαθέσιμος χώρος στον διακομιστή για μερικές μεταφορτώσεις. @@ -4637,24 +4662,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Εφαρμογή Υπολογιστή %1 </p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Έκδοση %1. Για περισσότερες πληροφορίες δείτε <a href='%2'>εδώ</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Η έκδοση παρέχεται από %1</p> @@ -4846,8 +4871,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4855,8 +4880,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5486,7 +5511,7 @@ Server replied with error: %2 No results for - + Δεν υπάρχουν αποτελέσματα για @@ -5560,67 +5585,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Κατάσταση σε σύνδεση - + Online Σε σύνδεση - + Away - + Do not disturb Μην ενοχλείτε - + Mute all notifications - + Invisible Αόρατος - + Appear offline - + Status message Μήνυμα κατάστασης - + What is your status? Ποια είναι η κατάστασή σας; - + Clear status message after Εκκαθάριση μηνύματος κατάστασης μετά από - + Cancel - + Clear status message Εκκαθάριση μηνύματος κατάστασης - + Set status message Ορισμός μηνύματος κατάστασης @@ -5842,7 +5867,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Δημιουργήθηκε από την διασκευή Git <a href="%1">%2</a> στο %3, %4 χρησιμοποιώντας Qt %5, %6</small></p> diff --git a/translations/client_en_GB.ts b/translations/client_en_GB.ts index cab3cbc88715b..c1f9faffe814f 100644 --- a/translations/client_en_GB.ts +++ b/translations/client_en_GB.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Clear status message menu @@ -410,12 +410,12 @@ You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are End-to-End encrypted. To get the best experience with Virtual Files and End-to-End Encryption, make sure the encrypted folder is marked with "Make always available locally". - + End-to-end Encryption with Virtual Files End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. No account configured. + + + Disable encryption + + Display mnemonic Display mnemonic - - - End-to-end encryption has been enabled for this account - End-to-end encryption has been enabled for this account - Enable encryption Enable encryption + + + End-to-end encryption has been enabled for this account + End-to-end encryption has been enabled for this account + Warning @@ -617,7 +622,7 @@ This action will abort any currently running synchronization. End-to-End encryption mnemonic - + End-to-end encryption mnemonic End-to-end encryption mnemonic @@ -626,6 +631,21 @@ This action will abort any currently running synchronization. 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). 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ This action will abort any currently running synchronization. This account supports end-to-end encryption - + Set up encryption Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1046,7 +1066,7 @@ This action will abort any currently running synchronization. Please enter your end to end encryption passphrase:<br><br>User: %2<br>Account: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1847,8 +1867,8 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 - - %1 + Could not decrypt! + @@ -2590,6 +2610,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2925,60 +2950,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 Use &virtual files instead of downloading content immediately %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 free space - + Virtual files are not available for the selected folder Virtual files are not available for the selected folder - + Local Sync Folder Local Sync Folder - - + + (%1) (%1) - + There isn't enough free space in the local folder! There isn't enough free space in the local folder! @@ -3082,144 +3107,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font colour="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> - + Invalid URL Invalid URL - + Failed to connect to %1 at %2:<br/>%3 Failed to connect to %1 at %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Timeout while trying to connect to %1 at %2. - + Trying to connect to %1 at %2 … Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Local sync folder %1 already exists, setting it up for sync.<br/><br/> - + Creating local sync folder %1 … Creating local sync folder %1 … - + OK OK - + failed. failed. - + Could not create local folder %1 Could not create local folder %1 - + No remote folder specified! No remote folder specified! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. Remote folder %1 created successfully. - + The remote folder %1 already exists. Connecting it for syncing. The remote folder %1 already exists. Connecting it for syncing. - - + + The folder creation resulted in HTTP error code %1 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> 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> <p><font colour="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>. Remote folder %1 creation failed with error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. A sync connection from %1 to remote directory %2 was set up. - + Successfully connected to %1! Successfully connected to %1! - + Connection to %1 could not be established. Please check again. Connection to %1 could not be established. Please check again. - + Folder rename failed Folder rename failed - + Cannot 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. Cannot 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> <font colour="green"><b>Local sync folder %1 successfully created!</b></font> @@ -3403,7 +3428,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Cannot sync due to invalid modification time - + Error while deleting file record %1 from the database Error while deleting file record %1 from the database @@ -3620,46 +3645,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB could not get file %1 from local DB - + Error setting pin state Error setting pin state - - + + Error updating metadata: %1 Error updating metadata: %1 - + The file %1 is currently in use The file %1 is currently in use - - + + Could not delete file record %1 from local DB Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy Failed to propagate directory rename in hierarchy - + Failed to rename file Failed to rename file @@ -3680,7 +3705,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4470,7 +4495,7 @@ Server replied with error: %2 Could not update virtual file metadata: %1 - + Could not update file metadata: %1 Could not update file metadata: %1 @@ -4480,38 +4505,38 @@ Server replied with error: %2 Could not set file record to local DB: %1 - + Unresolved conflict. Unresolved conflict. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Only %1 are available, need at least %2 to start - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Unable to open or create the local sync database. Make sure you have write access in the sync folder. - + Using virtual files with suffix, but suffix is not set Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Unable to read the blacklist from the local database - + Unable to read from the sync journal. Unable to read from the sync journal. - + Cannot open the sync journal Cannot open the sync journal @@ -4521,12 +4546,12 @@ Server replied with error: %2 Synchronization will resume shortly. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. 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. There is insufficient space available on the server for some uploads. @@ -4655,24 +4680,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Desktop Client</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>This release was supplied by %1</p> @@ -4864,8 +4889,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Error updating metadata due to invalid modification time @@ -4873,8 +4898,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Error updating metadata due to invalid modification time @@ -5578,67 +5603,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Online status - + Online Online - + Away Away - + Do not disturb Do not disturb - + Mute all notifications Mute all notifications - + Invisible Invisible - + Appear offline Appear offline - + Status message Status message - + What is your status? What is your status? - + Clear status message after Clear status message after - + Cancel Cancel - + Clear status message Clear status message - + Set status message Set status message @@ -5860,7 +5885,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_eo.ts b/translations/client_eo.ts index 270868c93d587..1eaf5d28ef56e 100644 --- a/translations/client_eo.ts +++ b/translations/client_eo.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Neniu konto agordita. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Ebligi ĉifradon + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. Tiu konto subtenas tutvojan ĉifradon - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. Bv. entajpi vian pasfrazon de tutvoja ĉifrado:<br><br>Uzanto: %2<br>Konto: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1833,7 +1853,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2574,6 +2594,11 @@ Elementoj, kies forigo estas permesita, estos forigitaj, se ili malhelpas forigo Close Fermi + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2906,60 +2931,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (eksperimenta) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" Sinkronigi la dosierujon «%1» - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 da libera spaco - + Virtual files are not available for the selected folder - + Local Sync Folder Loka sinkroniga dosierujo - - + + (%1) (%1) - + There isn't enough free space in the local folder! Ne estas sufiĉe da libera spaco en la loka dosierujo! @@ -3063,144 +3088,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Sukcese konektita al %1: %2 je versio %3 (%4)</font><br/><br/> - + Invalid URL Nevalida retadreso - + Failed to connect to %1 at %2:<br/>%3 Malsukcesis konekti al %1 ĉe %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Eltempiĝo dum konekto al %1 ĉe %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Aliro nepermesata de la servilo. Por kontroli, ĉu vi rajtas pri aliro, <a href="%1">alklaku ĉi tie</a> por iri al la servo pere de via retumilo. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Sinkroniga dosierujo loka %1 jam ekzistas, agordante ĝin por la sinkronigo.<br/><br/> - + Creating local sync folder %1 … - + OK Bone - + failed. malsukcesis. - + Could not create local folder %1 Ne eblis krei lokan dosierujon %1 - + No remote folder specified! Neniu fora dosierujo specifita! - + Error: %1 Eraro: %1 - + creating folder on Nextcloud: %1 kreado de dosierujo ĉe Nextcloud: %1 - + Remote folder %1 created successfully. Fora dosierujo %1 sukcese kreita - + The remote folder %1 already exists. Connecting it for syncing. La fora dosierujo %1 jam ekzistas. Konektado. - - + + The folder creation resulted in HTTP error code %1 Dosieruja kreado ricevis HTTP-eraran kodon %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Kreo de fora dosierujo malsukcesis, ĉar la akreditiloj ne ĝustas!<br/>Bv. antaŭeniri kaj kontroli viajn akreditilojn.</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> <p><font color="red">Kreado de fora dosierujo malsukcesis, eble ĉar la akreditiloj ne ĝustas.</font><br/>Bv. antaŭeniri kaj kontroli viajn akreditilojn.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Kreado de fora dosierujo %1 malsukcesis kun eraro <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Sinkroniga konekto el %1 al fora dosierujo %2 agordiĝis. - + Successfully connected to %1! Sukcese konektita al %1! - + Connection to %1 could not be established. Please check again. Konekto al %1 ne eblis. Bv. rekontroli. - + Folder rename failed Dosieruja alinomado malsukcesis. - + Cannot 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> <font color="green"><b>Loka sinkroniga dosierujo %1 sukcese kreita!</b></font> @@ -3378,7 +3403,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3595,46 +3620,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Ne eblis ŝanĝi nomon de dosiero @@ -3655,7 +3680,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4442,7 +4467,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4452,38 +4477,38 @@ Server replied with error: %2 - + Unresolved conflict. Nesolvita konflikto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Nur disponeblas %1, bezono de almenaŭ %2 por eki - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Ne eblas malfermi aŭ krei lokan sinkronigan datumbazon. Certigu, ke vi rajtas aliri al la sinkroniga dosierujo. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Ne eblas legi la nigran liston el la loka datumbazo - + Unable to read from the sync journal. Ne eblas legi el la sinkroniga protokolo. - + Cannot open the sync journal Ne eblas malfermi la sinkronigan protokolon @@ -4493,12 +4518,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Diskospaco ne sufiĉas: elŝutoj, kiuj reduktos liberan spacon sub %1, ne okazis. - + There is insufficient space available on the server for some uploads. La servilo ne plu havas sufiĉan spacon por iuj alŝutoj. @@ -4627,24 +4652,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Labortabla Kliento %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versio %1. Por pli da informoj, alklaku <a href='%2'>ĉi tie</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Tiu eldono estis liverita de %1</p> @@ -4836,8 +4861,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4845,8 +4870,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5550,67 +5575,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible Nevidebla - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel Nuligi - + Clear status message - + Set status message @@ -5832,7 +5857,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Konstruita el Git-a revizio <a href="%1">%2</a> je %3, %4, uzante Qt %5, %6</small></p> diff --git a/translations/client_es.ts b/translations/client_es.ts index e0242e10f5ae7..8d15bae8f5cab 100644 --- a/translations/client_es.ts +++ b/translations/client_es.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Borrar el menú de mensajes de estado @@ -410,12 +410,12 @@ Parece que tienes la función de Archivos Virtuales activada en esta carpeta. Por el momento, no es posible descargar automáticamente los archivos virtuales que están cifrados de extremo a extremo. Para obtener la mejor experiencia con los archivos virtuales y el cifrado de extremo a extremo, asegúrate de que la carpeta cifrada está marcada con "Hacer que esté siempre disponible localmente". - + End-to-end Encryption with Virtual Files Cifrado de extremo a extremo con Archivos virtuales - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Parece que tienes la función de Archivos Virtuales activada en esta carpeta. Por el momento, no es posible descargar implícitamente los archivos virtuales que están cifrados de extremo a extremo. Para obtener la mejor experiencia con los archivos virtuales y el cifrado de extremo a extremo, asegúrate de que la carpeta cifrada está marcada con "Hacer que esté siempre disponible localmente". @@ -439,21 +439,26 @@ No account configured. No se ha configurado ninguna cuenta. + + + Disable encryption + + Display mnemonic Mostrar regla mnemotécnica - - - End-to-end encryption has been enabled for this account - El cifrado de extremo a extremo a sido habilitado para esta cuenta - Enable encryption Habilitar cifrado + + + End-to-end encryption has been enabled for this account + El cifrado de extremo a extremo a sido habilitado para esta cuenta + Warning @@ -617,7 +622,7 @@ Además, esta acción interrumpirá cualquier sincronización en curso.Mnemónico para cifrado de extremo a extremo - + End-to-end encryption mnemonic Mnemónico para cifrado de extremo a extremo @@ -626,6 +631,21 @@ Además, esta acción interrumpirá cualquier sincronización en curso.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). Para proteger tu identidad criptográfica, la ciframos con una regla mnemotécnica de 12 palabras del diccionario. Por favor, anótalas y mantenlas a salvo. Estas palabras serán necesarias para añadir otros dispositivos a su cuenta (como un teléfono móvil o un portátil). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ Además, esta acción interrumpirá cualquier sincronización en curso.Esta cuenta soporta cifrado punto a punto - + Set up encryption Configurar cifrado - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. El cifrado de extremo a extremo ha sido habilitado en esta cuenta con otro dispositivo.<br> puede ser habilitado en este dispositivo ingresando su mnemónico.<br> Esto habilitará la sincronización de las carpetas cifradas existentes @@ -1046,7 +1066,7 @@ Además, esta acción interrumpirá cualquier sincronización en curso.Por favor, introduce la frase de seguridad del cifrado extremo a extremo: <br><br>Usuario: %2<br>Cuenta: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Por favor, introduzca su frase de cifrado de extremo a extremo:<br><br>Nombre de usuario: %2<br> Cuenta: %3<br> @@ -1848,8 +1868,8 @@ Si esto ha sido un accidente, y decides mantener tus archivos, serán re-sincron - - %1 - - %1 + Could not decrypt! + @@ -2591,6 +2611,11 @@ Los elementos que se permite su borrado se eliminarán si impiden que un directo Close Cerrar + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2926,60 +2951,60 @@ Nótese que usar cualquier opción de toma de registros a través de línea de c - + Use &virtual files instead of downloading content immediately %1 Usa &archivos virtuales en vez de descargar el contenido inmediatamente %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Los archivos virtuales no son compatibles con la carpeta raíz de la partición de Windows como carpeta local. Por favor, elija una subcarpeta válida bajo la letra de la unidad. - + %1 folder "%2" is synced to local folder "%3" %1 carpeta "%2" está sincronizada con la carpeta local "%3" - + Sync the folder "%1" Sincronizar la carpeta "%1" - + Warning: The local folder is not empty. Pick a resolution! Advertencia: La carpeta local no está vacía. ¡Elija una solución! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 espacio libre - + Virtual files are not available for the selected folder Los archivos virtuales no están disponiblespara la carpeta seleccionada - + Local Sync Folder Carpeta local de sincronización - - + + (%1) (%1) - + There isn't enough free space in the local folder! ¡No hay suficiente espacio libre en la carpeta local! @@ -3083,144 +3108,144 @@ Nótese que usar cualquier opción de toma de registros a través de línea de c OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado con éxito a %1: versión %2 %3 (%4)</font><br/><br/> - + Invalid URL URL no válida. - + Failed to connect to %1 at %2:<br/>%3 Fallo al conectar %1 a %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Tiempo de espera agotado mientras se intentaba conectar a %1 en %2 - + Trying to connect to %1 at %2 … Intentando conectar a %1 desde %2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. La petición autenticada al servidor ha sido redirigida a "%1". La URL es errónea, el servidor está mal configurado. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso denegado por el servidor. Para verificar que tiene acceso, <a href="%1">haga clic aquí</a> para acceder al servicio desde el navegador. - + There was an invalid response to an authenticated WebDAV request Ha habido una respuesta no válida a una solicitud autenticada de WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, configurándola para la sincronización.<br/><br/> - + Creating local sync folder %1 … Creando carpeta de sincronización local %1 ... - + OK OK - + failed. ha fallado. - + Could not create local folder %1 No se ha podido crear la carpeta local %1 - + No remote folder specified! ¡No se ha especificado ninguna carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 Creando carpeta en Nextcloud: %1 - + Remote folder %1 created successfully. Carpeta remota %1 creado correctamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectándola para sincronizacion. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta ha producido el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota ha fallado debido a que las credenciales proporcionadas son incorrectas!<br/>Por favor, vuelva atrás y compruebe sus credenciales</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> <p><font color="red">La creación de la carpeta remota ha fallado, probablemente porque las credenciales proporcionadas son incorrectas.</font><br/>Por favor, vuelva atrás y compruebe sus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Creación %1 de carpeta remota ha fallado con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Se ha configarado una conexión de sincronización desde %1 al directorio remoto %2 - + Successfully connected to %1! ¡Conectado con éxito a %1! - + Connection to %1 could not be established. Please check again. No se ha podido establecer la conexión con %1. Por favor, compruébelo de nuevo. - + Folder rename failed Error al renombrar la carpeta - + Cannot 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. No se pudo eliminar y restaurar la carpeta porque ella o un archivo dentro de ella está abierto por otro programa. Por favor, cierre la carpeta o el archivo y pulsa en reintentar o cancelar la instalación. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Carpeta de sincronización local %1 creada con éxito</b></font> @@ -3404,7 +3429,7 @@ Esta es un modo nuevo y experimental. Si decides usarlo, por favor, informa de c No se puede sincronizar debido a una hora de modificación no válida - + Error while deleting file record %1 from the database Error mientras se borraba el registro de archivo %1 de la base de datos @@ -3621,46 +3646,46 @@ Esta es un modo nuevo y experimental. Si decides usarlo, por favor, informa de c OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash El archivo %1 no se pudo renombrar a %2 a causa de un conflicto con el nombre de un archivo local - - - + + + could not get file %1 from local DB no fue posible obtener el archivo %1 de la base de datos local - + Error setting pin state Error al configurar el estado fijado - - + + Error updating metadata: %1 Error al actualizar los metadatos: %1 - + The file %1 is currently in use El archivo %1 se encuentra en uso - - + + Could not delete file record %1 from local DB No fue posible borrar el registro del archivo %1 de la base de datos local - + Failed to propagate directory rename in hierarchy Fallo al propagar el renombrado de carpeta en la jerarquía - + Failed to rename file Fallo al renombrar el archivo @@ -3681,7 +3706,7 @@ Esta es un modo nuevo y experimental. Si decides usarlo, por favor, informa de c OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". El código HTTP devuelto por el servidor es erróneo. Se esperaba 204, pero se recibió "%1 %2". @@ -4471,7 +4496,7 @@ El servidor respondió con el error: %2 No se ha podido actualizar los metadatos del archivo virtual: %1 - + Could not update file metadata: %1 No se pudo actualizar los metadatos del archivo: %1 @@ -4481,38 +4506,38 @@ El servidor respondió con el error: %2 No fue posible establecer el registro del archivo a la base de datos local: %1 - + Unresolved conflict. Conflicto sin resolver. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo %1 disponible, se necesita por lo menos %2 para comenzar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Imposible abrir o crear la BBDD local de sync. Asegurese de que tiene permisos de escritura en la carpeta de sync. - + Using virtual files with suffix, but suffix is not set Usando archivos virtuales con sufijo, pero el sufijo no está establecido - + Unable to read the blacklist from the local database No se pudo leer la lista de bloqueo de la base de datos local - + Unable to read from the sync journal. No se ha podido leer desde el registro de sincronización - + Cannot open the sync journal No es posible abrir el diario de sincronización @@ -4522,12 +4547,12 @@ El servidor respondió con el error: %2 La sincronización continuará en breves. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Poco espacio libre en disco: La descarga lo reducirá por debajo del %1, deberia abortar. - + There is insufficient space available on the server for some uploads. No hay suficiente espacio libre en el servidor para algunas subidas. @@ -4656,24 +4681,24 @@ El servidor respondió con el error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 - Cliente de escritorio</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versión %1. Para obtener más información, haga clic <a href='%2'> aquí </a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Usando el plugin de archivos virtuales: %1</small></p> - + <p>This release was supplied by %1</p> <p>Esta versión ha sido suministrada por %1</p> @@ -4865,8 +4890,8 @@ El servidor respondió con el error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Error al actualizar los metadatos debido a una fecha de modificación no válida. @@ -4874,8 +4899,8 @@ El servidor respondió con el error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Error al actualizar los metadatos debido a una fecha de modificación no válida. @@ -5579,67 +5604,67 @@ El servidor respondió con el error: %2 UserStatusSelector - + Online status Estado en línea - + Online En línea - + Away Ausente - + Do not disturb No molestar - + Mute all notifications Silenciar todas las notificaciones - + Invisible Invisible - + Appear offline Mostrar como fuera de línea - + Status message Mensaje de estado - + What is your status? ¿Cuál es su estado? - + Clear status message after Borrar el mensaje de estado después de - + Cancel Cancelar - + Clear status message Borrar el mensaje de estado - + Set status message Establecer un mensaje de estado @@ -5861,7 +5886,7 @@ El servidor respondió con el error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Construido desde la revisión Git <a href="%1">%2</a> en %3, %4, usando Qt %5, %6</small></p> diff --git a/translations/client_es_CL.ts b/translations/client_es_CL.ts index 9c3f069ccb616..c14e4fb90767b 100644 --- a/translations/client_es_CL.ts +++ b/translations/client_es_CL.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_CO.ts b/translations/client_es_CO.ts index fbc77ae529c75..ff33b4632b70d 100644 --- a/translations/client_es_CO.ts +++ b/translations/client_es_CO.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_CR.ts b/translations/client_es_CR.ts index fc664c8e0b5ff..bcbd5a6c9c678 100644 --- a/translations/client_es_CR.ts +++ b/translations/client_es_CR.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_DO.ts b/translations/client_es_DO.ts index 5f421d67cd3ba..143694718deef 100644 --- a/translations/client_es_DO.ts +++ b/translations/client_es_DO.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_EC.ts b/translations/client_es_EC.ts index da325c624c1dd..02f17107b5356 100644 --- a/translations/client_es_EC.ts +++ b/translations/client_es_EC.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_GT.ts b/translations/client_es_GT.ts index eb96b2368c5eb..65542b64776ee 100644 --- a/translations/client_es_GT.ts +++ b/translations/client_es_GT.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_HN.ts b/translations/client_es_HN.ts index 6f046d3257ca7..b263466d1e32c 100644 --- a/translations/client_es_HN.ts +++ b/translations/client_es_HN.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_MX.ts b/translations/client_es_MX.ts index f86b43bd02b34..acf590e6e21f9 100644 --- a/translations/client_es_MX.ts +++ b/translations/client_es_MX.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_es_SV.ts b/translations/client_es_SV.ts index bfdaa5c34db3a..159a8d48c4c07 100644 --- a/translations/client_es_SV.ts +++ b/translations/client_es_SV.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ No hay cuentas configuradas. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Carpeta de Sincronización Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado exitosamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL Inválido - + Failed to connect to %1 at %2:<br/>%3 Hubo una falla al conectarse a %1 en %2: <br/>%3 - + Timeout while trying to connect to %1 at %2. Expiró el tiempo al tratar de conectarse a %1 en %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido por el servidor. Para verificar que tengas el acceso correcto, <a href="%1">haz click aquí</a> para acceder al servicio con tu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La carpeta de sincronización local %1 ya existe, preparandola para la sincronización. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. falló. - + Could not create local folder %1 No fue posible crear la carpeta local %1 - + No remote folder specified! ¡No se especificó la carpeta remota! - + Error: %1 Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. La carpeta remota %1 fue creada exitosamente. - + The remote folder %1 already exists. Connecting it for syncing. La carpeta remota %1 ya existe. Conectandola para sincronizar. - - + + The folder creation resulted in HTTP error code %1 La creación de la carpeta dio como resultado el código de error HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ¡La creación de la carpeta remota falló porque las credenciales proporcionadas están mal!<br/> Por favor regresa y verifica tus credenciales.</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> <p><font color="red">La creación de la carpeta remota falló probablemente porque las credenciales proporcionadas son incorrectas. </font><br/> Por favor regresa y verifica tus credenciales.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La creación de la carpeta remota %1 falló con el error <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una conexión de sincronización de %1 al directorio remoto %2 fue establecida. - + Successfully connected to %1! ¡Conectado exitosamente a %1! - + Connection to %1 could not be established. Please check again. No se pudo establecer la conexión a %1. Por favor verifica de nuevo. - + Folder rename failed Falla al renombrar la carpeta - + Cannot 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> <font color="green"><b>¡La carpeta de sincronización local %1 fue creada exitosamente!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4435,7 +4460,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4445,38 +4470,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflicto no resuelto. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Solo tiene %1 disponible, se necesita de al menos %2 para iniciar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. No fue posible abrir o crear la base de datos de sincronización local. Asegúrate de que tengas permisos de escritura en la carpeta de sincronización. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database No fue posible leer la lista negra de la base de datos local - + Unable to read from the sync journal. No es posible leer desde el diario de sincronización. - + Cannot open the sync journal No se puede abrir el diario de sincronización @@ -4486,12 +4511,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Espacio en disco bajo: Las descargas que podrían reducir el espacio por debajo de %1 se omitieron. - + There is insufficient space available on the server for some uploads. No hay espacio disponible en el servidor para algunas cargas. @@ -4620,24 +4645,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4829,8 +4854,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4838,8 +4863,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5543,67 +5568,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5825,7 +5850,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_et.ts b/translations/client_et.ts index d1435a8ee25f9..25832096d3e83 100644 --- a/translations/client_et.ts +++ b/translations/client_et.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Ühtegi kontot pole seadistatud - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1827,7 +1847,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2564,6 +2584,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2896,60 +2921,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Kohalik Sync Kataloog - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3053,144 +3078,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Edukalt ühendatud %1: %2 versioon %3 (4)</font><br/><br/> - + Invalid URL - + Failed to connect to %1 at %2:<br/>%3 Ühendumine ebaõnnestus %1 %2-st:<br/>%3 - + Timeout while trying to connect to %1 at %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Kohalik kataloog %1 on juba olemas. Valmistan selle ette sünkroniseerimiseks. - + Creating local sync folder %1 … - + OK - + failed. ebaõnnestus. - + Could not create local folder %1 Ei suuda tekitada kohalikku kataloogi %1 - + No remote folder specified! Ühtegi võrgukataloogi pole määratletud! - + Error: %1 Viga: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. Eemalolev kaust %1 on loodud. - + The remote folder %1 already exists. Connecting it for syncing. Serveris on kataloog %1 juba olemas. Ühendan selle sünkroniseerimiseks. - - + + The folder creation resulted in HTTP error code %1 Kausta tekitamine lõppes HTTP veakoodiga %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Kataloogi loomine serverisse ebaõnnestus, kuna kasutajatõendid on valed!<br/>Palun kontrolli oma kasutajatunnust ja parooli.</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> <p><font color="red">Serveris oleva kataloogi tekitamine ebaõnnestus tõenäoliselt valede kasutajatunnuste tõttu.</font><br/>Palun mine tagasi ning kontrolli kasutajatunnust ning parooli.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Kataloogi %1 tekitamine serverisse ebaõnnestus veaga <tt>%2</tt> - + A sync connection from %1 to remote directory %2 was set up. Loodi sünkroniseerimisühendus kataloogist %1 serveri kataloogi %2 - + Successfully connected to %1! Edukalt ühendatud %1! - + Connection to %1 could not be established. Please check again. Ühenduse loomine %1 ebaõnnestus. Palun kontrolli uuesti. - + Folder rename failed Kataloogi ümbernimetamine ebaõnnestus - + Cannot 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> <font color="green"><b>Kohalik kataloog %1 edukalt loodud!</b></font> @@ -3368,7 +3393,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3585,46 +3610,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3645,7 +3670,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4433,7 +4458,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4443,38 +4468,38 @@ Server replied with error: %2 - + Unresolved conflict. - + 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. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal Ei suuda avada sünkroniseeringu zurnaali @@ -4484,12 +4509,12 @@ Server replied with error: %2 - + 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. @@ -4618,24 +4643,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4827,8 +4852,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4836,8 +4861,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5541,67 +5566,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5823,7 +5848,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_eu.ts b/translations/client_eu.ts index 96806fe1fd012..e51761b1aa6d6 100644 --- a/translations/client_eu.ts +++ b/translations/client_eu.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Garbitu egoera mezuaren menua @@ -410,12 +410,12 @@ Badirudi fitxategi birtualak ezaugarria gaituta duzula karpeta honetan. Momentu honetan, ez da posible muturretik muturrera enkriptatuta dauden fitxategi birtualak inplizituki deskargatzea. Fitxategi birtualekin eta muturretik muturrerako enkriptatzearekin esperientzia onena lortzeko, ziurtatu enkriptatutako karpeta "Beti lokalki eskuragarri" aukera markatuta duela. - + End-to-end Encryption with Virtual Files Muturretik muturrerako zifratzea fitxategi birtualekin - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Badirudi fitxategi birtualak ezaugarria gaituta duzula karpeta honetan. Momentu honetan, ez da posible muturretik muturrera enkriptatuta dauden fitxategi birtualak inplizituki deskargatzea. Fitxategi birtualekin eta muturretik muturrerako enkriptatzearekin esperientzia onena lortzeko, ziurtatu enkriptatutako karpeta "Beti lokalki eskuragarri" aukera markatuta duela. @@ -439,21 +439,26 @@ No account configured. Ez da konturik konfiguratu. + + + Disable encryption + + Display mnemonic Erakutsi mnemoteknika - - - End-to-end encryption has been enabled for this account - Muturretik muturrerako zifratzea gaituta dago kontu honetan - Enable encryption Gaitu zifratzea + + + End-to-end encryption has been enabled for this account + Muturretik muturrerako zifratzea gaituta dago kontu honetan + Warning @@ -617,7 +622,7 @@ Ekintza honek unean uneko sinkronizazioa bertan behera utziko du. Muturretik muturrerako enkriptatzearen gako mnemoteknikoa - + End-to-end encryption mnemonic Muturretik muturrerako enkriptatzearen gako mnemoteknikoa @@ -626,6 +631,21 @@ Ekintza honek unean uneko sinkronizazioa bertan behera utziko du. 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). Zure nortasun kriptografikoa babesteko, hiztegietako 12 hitzen mnemoniko batekin zifratzen dugu. Mesedez, kontuan hartu horiek eta gorde itzazu. Beharrezkoak izango dira zure kontuan beste gailu batzuk gehitzeko (telefono mugikorra edo ordenagailu eramangarria adibidez). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ Ekintza honek unean uneko sinkronizazioa bertan behera utziko du. Kontu honek onartzen du muturretik muturrerako zifratzea - + Set up encryption Konfiguratu zifratzea - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Muturretik muturrerako zifratzea gaituta dago kontu honetan beste gailu batekin.<br>Zure mnemonikoa sartuz gaitu daiteke gailu honetan.<br>Honek dauden karpeta zifratuen sinkronizazioa gaituko du. @@ -763,17 +783,17 @@ Ekintza honek unean uneko sinkronizazioa bertan behera utziko du. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Zerbitzarirako autentifikatutako eskaera "%1"ra birbideratu da. URLa txarra da, zerbitzaria gaizki konfiguratuta dago. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + Zerbitzariak sarbidea debekatu du. Sarbide egokia duzula egiaztatzeko, <a href="%1">egin klik hemen</a> zure nabigatzailearekin zerbitzuan sartzeko. There was an invalid response to an authenticated WebDAV request - + Erantzun baliogabea eman zaio kautotutako WebDAV eskaera bati @@ -1046,7 +1066,7 @@ Ekintza honek unean uneko sinkronizazioa bertan behera utziko du. Sartu zure muturretik muturrerako zifratzeko pasahitza:<br><br>Erabiltzailea: %2<br>Kontua: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Mesedez, idatzi zure muturreko enkriptatze pasaesaldia: <br><br>Erabiltzaile-izena: <br> %2Kontua:<br> @@ -1847,8 +1867,8 @@ Istripua izan bada eta zure fitxategiak mantentzea erabakitzen baduzu, zerbitzar - - %1 - - %1 + Could not decrypt! + @@ -2590,6 +2610,11 @@ Ezabatu daitezkeen elementuak ezabatu egingo dira karpeta bat ezabatzea ekiditen Close Itxi + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2925,60 +2950,60 @@ Kontuan izan erregistro-komando lerroaren edozein aukera erabiliz ezarpen hau ga - + Use &virtual files instead of downloading content immediately %1 Erabili & fitxategi birtualak edukia berehala deskargatu beharrean % 1 - + (experimental) (esperimentala) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Fitxategi birtualak ez dira bateragarriak Windows partizio sustraiekin karpeta lokal bezala. Mesedez aukeratu baliozko azpikarpeta bat diskoaren letra azpian. - + %1 folder "%2" is synced to local folder "%3" %1 karpeta "%2" lokaleko "%3" karpetan dago sinkronizatuta - + Sync the folder "%1" Sinkronizatu "%1" karpeta - + Warning: The local folder is not empty. Pick a resolution! Abisua: karpeta lokala ez dago hutsik. Aukeratu nola konpondu! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 egin leku librea - + Virtual files are not available for the selected folder Fitxategi birtualak ez daude hautatutako karpetarentzako eskuragarri - + Local Sync Folder Sinkronizazio karpeta lokala - - + + (%1) (%1) - + There isn't enough free space in the local folder! Ez dago nahikoa toki librerik karpeta lokalean! @@ -3082,144 +3107,144 @@ Kontuan izan erregistro-komando lerroaren edozein aukera erabiliz ezarpen hau ga OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Konexioa ongi burutu da %1 zerbitzarian: %2 bertsioa %3 (%4)</font><br/><br/> - + Invalid URL Baliogabeko URLa - + Failed to connect to %1 at %2:<br/>%3 Konektatze saiakerak huts egin du %1 at %2:%3 - + Timeout while trying to connect to %1 at %2. Denbora iraungi da %1era %2n konektatzen saiatzean. - + Trying to connect to %1 at %2 … %2 zerbitzarian dagoen %1 konektatzen... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Zerbitzarira autentifikatutako eskaera "% 1" ra birbideratu da. URLa okerra da, zerbitzaria gaizki konfiguratuta dago. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Sarrera zerbitzariarengatik ukatuta. Sarerra egokia duzula egiaztatzeko, egin <a href="%1">klik hemen</a> zerbitzura zure arakatzailearekin sartzeko. - + There was an invalid response to an authenticated WebDAV request Baliogabeko erantzuna jaso du autentifikaturiko WebDAV eskaera batek - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Bertako %1 karpeta dagoeneko existitzen da, sinkronizaziorako prestatzen.<br/><br/> - + Creating local sync folder %1 … %1 sinkronizazio karpeta lokala sortzen... - + OK OK - + failed. huts egin du. - + Could not create local folder %1 Ezin da %1 karpeta lokala sortu - + No remote folder specified! Ez da urruneko karpeta zehaztu! - + Error: %1 Errorea: %1 - + creating folder on Nextcloud: %1 Nextcloud-en karpeta sortzen: %1 - + Remote folder %1 created successfully. Urruneko %1 karpeta ongi sortu da. - + The remote folder %1 already exists. Connecting it for syncing. Urruneko %1 karpeta dagoeneko existintzen da. Bertara konetatuko da sinkronizatzeko. - - + + The folder creation resulted in HTTP error code %1 Karpeta sortzeak HTTP %1 errore kodea igorri du - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Huts egin du urrutiko karpeta sortzen emandako kredintzialak ez direlako zuzenak!<br/> Egin atzera eta egiaztatu zure kredentzialak.</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> <p><font color="red">Urruneko karpeten sortzeak huts egin du ziuraski emandako kredentzialak gaizki daudelako.</font><br/>Mesedez atzera joan eta egiaztatu zure kredentzialak.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Urruneko %1 karpetaren sortzeak huts egin du <tt>%2</tt> errorearekin. - + A sync connection from %1 to remote directory %2 was set up. Sinkronizazio konexio bat konfiguratu da %1 karpetatik urruneko %2 karpetara. - + Successfully connected to %1! %1-era ongi konektatu da! - + Connection to %1 could not be established. Please check again. %1 konexioa ezin da ezarri. Mesedez egiaztatu berriz. - + Folder rename failed Karpetaren berrizendatzeak huts egin du - + Cannot 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. Ezin da karpeta kendu eta babeskopiarik egin, karpeta edo barruko fitxategiren bat beste programa batean irekita dagoelako. Itxi karpeta edo fitxategia eta sakatu berriro saiatu edo bertan behera utzi konfigurazioa. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Bertako sinkronizazio %1 karpeta ongi sortu da!</b></font> @@ -3403,7 +3428,7 @@ Modu hau berria eta experimentala da. Erabiltzea erabakitzen baduzu, agertzen di Ezin da sinkronizatu aldaketa-ordu baliogabea delako - + Error while deleting file record %1 from the database Errorea %1 fitxategi erregistroa datu-basetik ezabatzean @@ -3620,46 +3645,46 @@ Modu hau berria eta experimentala da. Erabiltzea erabakitzen baduzu, agertzen di OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash %1 fitxategiari ezin zaio %2 izena eman fitxategi lokal baten izenarekin talkagatik. - - - + + + could not get file %1 from local DB Ezin izan da %1 fitxategia datu-base lokaletik lortu - + Error setting pin state Errorea pin egoera ezartzean - - + + Error updating metadata: %1 Erorrea metadatuak eguneratzen: %1 - + The file %1 is currently in use %1 fitxategia erabiltzen ari da - - + + Could not delete file record %1 from local DB Ezin izan da %1 fitxategiaren erregistroa datu-base lokaletik ezabatu - + Failed to propagate directory rename in hierarchy Ezin izan da direktorioen berrizendatzea hedatu hierarkiatik - + Failed to rename file Fitxategia berrizendatzeak huts egin du @@ -3680,7 +3705,7 @@ Modu hau berria eta experimentala da. Erabiltzea erabakitzen baduzu, agertzen di OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". HTTP kode okerra erantzun du zerbitzariak. 204 espero zen, baina "%1 %2" jaso da. @@ -4470,7 +4495,7 @@ Zerbitzariak errorearekin erantzun du: %2 Ezin izan dira fitxategi birtualaren metadatuak eguneratu: %1 - + Could not update file metadata: %1 Ezin izan dira fitxategiaren metadatuak eguneratu: %1 @@ -4480,38 +4505,38 @@ Zerbitzariak errorearekin erantzun du: %2 Ezin izan da fitxategiaren erregistroa datu-base lokalean ezarri: %1 - + Unresolved conflict. Ebatzi gabeko gatazka. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() %1 bakarrik dago eskuragarri, gutxienez %2 behar da hasteko. - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Ezin izan da ireki edo sortu datu-base lokal sinkronizatua. Ziurtatu idazteko baimena daukazula karpeta sinkronizatu lokalean. - + Using virtual files with suffix, but suffix is not set Suffix erabiltzen da fitxategi birtualak kudeatzeko, baina suffix ez dago konfiguratuta - + Unable to read the blacklist from the local database Ezin izan da zerrenda beltza irakurri datu-base lokaletik - + Unable to read from the sync journal. Ezin izan da sinkronizazio-egunkaria irakurri. - + Cannot open the sync journal Ezin da sinkronizazio egunerokoa ireki @@ -4521,12 +4546,12 @@ Zerbitzariak errorearekin erantzun du: %2 Sinkronizazioak laster jarraituko du. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Toki gutxi dago diskoan: toki librea %1 azpitik gutxituko zuten deskargak saltatu egin dira. - + There is insufficient space available on the server for some uploads. Ez dago nahiko toki erabilgarririk zerbitzarian hainbat kargatarako. @@ -4655,24 +4680,24 @@ Zerbitzariak errorearekin erantzun du: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Mahaigaineko %1 bezeroa</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>%1 bertsioa. Informazio gehiago eskuratzeko egin klik <a href='%2'>hemen</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Fitxategi birtualen plugina erabiltzen: %1</small></p> - + <p>This release was supplied by %1</p> <p>Argitalpen hau %1(e)k eman du</p> @@ -4864,8 +4889,8 @@ Zerbitzariak errorearekin erantzun du: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Errorea metadatuak eguneratzen aldaketa-data baliogabeagatik @@ -4873,8 +4898,8 @@ Zerbitzariak errorearekin erantzun du: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Errorea metadatuak eguneratzen aldaketa-data baliogabeagatik @@ -5331,17 +5356,17 @@ Zerbitzariak errorearekin erantzun du: %2 Create a new share link - + Sortu partekatzeko esteka berri bat Copy share link location - + Kopiatu partekatzeko estekaren kokapena Share options - + Partekatzeko aukerak @@ -5349,57 +5374,57 @@ Zerbitzariak errorearekin erantzun du: %2 An error occurred setting the share password. - + Errore bat gertatu da partekatzeko pasahitza ezartzen. Edit share - + Editatu partekatzea Dismiss - + Baztertu Share label - + Partekatu etiketa Allow editing - + Baimendu edizioa Password protect - + Pasahitza babestea Set expiration date - + Ezarri iraungitze-data Note to recipient - + Oharra hartzaileari Unshare - + Eten partekatzea Add another link - + Gehitu beste esteka bat Copy share link - + Kopiatu partekatzeko esteka @@ -5504,7 +5529,7 @@ Zerbitzariak errorearekin erantzun du: %2 No results for - + Ez dago emaitzarik @@ -5512,7 +5537,7 @@ Zerbitzariak errorearekin erantzun du: %2 Search results section %1 - + Bilaketa-emaitzen atala %1 @@ -5578,67 +5603,67 @@ Zerbitzariak errorearekin erantzun du: %2 UserStatusSelector - + Online status Lineako egoera - + Online Linean - + Away Kanpoan - + Do not disturb Ez molestatu - + Mute all notifications Mututu jakinarazpen guztiak - + Invisible Ikusezina - + Appear offline Lineaz kanpo agertu - + Status message Egoera mezua - + What is your status? Zein da zure egoera? - + Clear status message after Garbitu egoera mezua ondoren - + Cancel Utzi - + Clear status message Garbitu egoera mezua ondoren - + Set status message Ezarri egoera-mezua @@ -5860,7 +5885,7 @@ Zerbitzariak errorearekin erantzun du: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small><a href="%1">%2</a> Git berrikuspenetik eraikia %3, %4 Qt %5 erabiliz, %6</small></p> diff --git a/translations/client_fa.ts b/translations/client_fa.ts index e9f2eba7e9c34..20e19afda3dd6 100644 --- a/translations/client_fa.ts +++ b/translations/client_fa.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ هیچ حساب‌کاربری‌ای تنظیم نشده‌ است. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption فعال سازی رمزنگاری + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. این حساب کاربری امکان رمزنگاری انتها-به-انتها را دارد - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close بستن + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder پوشه همگام سازی محلی - - + + (%1) (%1) - + There isn't enough free space in the local folder! فضای خالی کافی در پوشه محلی وجود ندارد! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green"> با موفقیت متصل شده است به %1: %2 نسخه %3 (%4)</font><br/><br/> - + Invalid URL آدرس نامعتبر - + Failed to connect to %1 at %2:<br/>%3 ارتباط ناموفق با %1 در %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. هنگام تلاش برای اتصال به 1% در 2% زمان به پایان رسید. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. دسترسی توسط سرور ممنوع شد. برای تأیید اینکه شما دسترسی مناسب دارید، <a href="%1">اینجا را کلیک کنید </a> تا با مرورگر خود به سرویس دسترسی پیدا کنید. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> پوشه همگام سازی محلی %1 در حال حاضر موجود است، تنظیم آن برای همگام سازی. <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. ناموفق. - + Could not create local folder %1 نمی تواند پوشه محلی ایجاد کند %1 - + No remote folder specified! هیچ پوشه از راه دوری مشخص نشده است! - + Error: %1 خطا: %1 - + creating folder on Nextcloud: %1 ایجاد پوشه در نکس کلود: %1 - + Remote folder %1 created successfully. پوشه از راه دور %1 با موفقیت ایجاد شده است. - + The remote folder %1 already exists. Connecting it for syncing. در حال حاضر پوشه از راه دور %1 موجود است. برای همگام سازی به آن متصل شوید. - - + + The folder creation resulted in HTTP error code %1 ایجاد پوشه به خطای HTTP کد 1% منجر شد - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> ایجاد پوشه از راه دور ناموفق بود به علت اینکه اعتبارهای ارائه شده اشتباه هستند!<br/>لطفا اعتبارهای خودتان را بررسی کنید.</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> <p><font color="red"> ایجاد پوشه از راه دور ناموفق بود، شاید به علت اعتبارهایی که ارئه شده اند، اشتباه هستند.</font><br/> لطفا باز گردید و اعتبار خود را بررسی کنید.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. ایجاد پوشه از راه دور %1 ناموفق بود با خطا <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. یک اتصال همگام سازی از %1 تا %2 پوشه از راه دور راه اندازی شد. - + Successfully connected to %1! با موفقیت به %1 اتصال یافت! - + Connection to %1 could not be established. Please check again. اتصال به %1 نمی تواند مقرر باشد. لطفا دوباره بررسی کنید. - + Folder rename failed تغییر نام پوشه ناموفق بود - + Cannot 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> <font color="green"><b> پوشه همگام سازی محلی %1 با موفقیت ساخته شده است!</b></font> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4434,7 +4459,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4444,38 +4469,38 @@ Server replied with error: %2 - + Unresolved conflict. ناسازگاری حل نشده. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() تنها 1% موجود است، حداقل 2% برای شروع مورد نیاز است - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. پایگاه داده محلی باز یا ساخته نمی شود. اطمینان حاصل کنید که دسترسی به نوشتن در پوشه همگام سازی دارید. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database نمی توان لیست سیاه را از پایگاه داده محلی خواند - + Unable to read from the sync journal. نمی توان از مجله همگام ساز خواند. - + Cannot open the sync journal نمی توان مجله همگام ساز را باز کرد @@ -4485,12 +4510,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. فضای دیسک کم است: دانلودهایی که فضای آزاد را به کمتر از 1% کاهش می دهند رد می شوند. - + There is insufficient space available on the server for some uploads. برای بعضی از بارگذاری ها در سرور فضای کافی موجود نیست. @@ -4619,24 +4644,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4828,8 +4853,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4837,8 +4862,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5542,67 +5567,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline برون‌خط به نظر رسیدن - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5824,7 +5849,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_fi.ts b/translations/client_fi.ts index 82101ca0fa9d2..5ddeb4a3d4010 100644 --- a/translations/client_fi.ts +++ b/translations/client_fi.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Tyhjennä tilaviestien valikko @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Tiliä ei ole määritelty. + + + Disable encryption + + Display mnemonic Näytä avainkoodi - - - End-to-end encryption has been enabled for this account - - Enable encryption Ota salaus käyttöön + + + End-to-end encryption has been enabled for this account + + Warning @@ -615,7 +620,7 @@ Tämä toiminto peruu kaikki tämänhetkiset synkronoinnit. - + End-to-end encryption mnemonic @@ -624,6 +629,21 @@ Tämä toiminto peruu kaikki tämänhetkiset synkronoinnit. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -746,12 +766,12 @@ Tämä toiminto peruu kaikki tämänhetkiset synkronoinnit. Tämä tili tukee päästä päähän -salausta - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1044,7 +1064,7 @@ Tämä toiminto peruu kaikki tämänhetkiset synkronoinnit. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1836,7 +1856,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2577,6 +2597,11 @@ Kohteet, joissa poisto on sallittu, poistetaan, jos ne estävät kansion poistam Close Sulje + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2909,60 +2934,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 Käytä &virtuaalitiedostoja sen sijaan, että sisältö ladataan välittömästi %1 - + (experimental) (kokeellinen) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Windows ei tue virtuaalitiedostoja levyosioiden juurihakemistoissa. Valitse alikansio. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" Synkronoi kansio "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 vapaata tilaa - + Virtual files are not available for the selected folder Virtuaalitiedostot eivät ole käytettävissä valitulle kansiolle - + Local Sync Folder Paikallinen synkronointikansio - - + + (%1) (%1) - + There isn't enough free space in the local folder! Paikallisessa kansiossa ei ole riittävästi vapaata tilaa! @@ -3066,144 +3091,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Muodostettu yhteys onnistuneesti kohteeseen %1: %2 versio %3 (%4)</font><br/><br/> - + Invalid URL Virheellinen verkko-osoite - + Failed to connect to %1 at %2:<br/>%3 Yhteys %1iin osoitteessa %2 epäonnistui:<br/>%3 - + Timeout while trying to connect to %1 at %2. Aikakatkaisu yrittäessä yhteyttä kohteeseen %1 osoitteessa %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Palvelin esti käyttämisen. Vahvista käyttöoikeutesi palvelimeen <a href="%1">napsauttamalla tästä</a> ja kirjaudu palveluun selaimella. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Paikallinen kansio %1 on jo olemassa, asetetaan se synkronoitavaksi.<br/><br/> - + Creating local sync folder %1 … Luodaan paikallinen synkronointikansio %1 … - + OK OK - + failed. epäonnistui. - + Could not create local folder %1 Paikalliskansion %1 luonti epäonnistui - + No remote folder specified! Etäkansiota ei määritelty! - + Error: %1 Virhe: %1 - + creating folder on Nextcloud: %1 luodaan kansio Nextcloudiin: %1 - + Remote folder %1 created successfully. Etäkansio %1 luotiin onnistuneesti. - + The remote folder %1 already exists. Connecting it for syncing. Etäkansio %1 on jo olemassa. Otetaan siihen yhteyttä tiedostojen täsmäystä varten. - - + + The folder creation resulted in HTTP error code %1 Kansion luonti aiheutti HTTP-virhekoodin %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Etäkansion luominen epäonnistui koska antamasi tunnus/salasana ei täsmää!<br/>Ole hyvä ja palaa tarkistamaan tunnus/salasana</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> <p><font color="red">Pilvipalvelun etäkansion luominen ei onnistunut , koska tunnistautumistietosi ovat todennäköisesti väärin.</font><br/>Palaa takaisin ja tarkista käyttäjätunnus ja salasana.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Etäkansion %1 luonti epäonnistui, virhe <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Täsmäysyhteys kansiosta %1 etäkansioon %2 on asetettu. - + Successfully connected to %1! Yhteys kohteeseen %1 muodostettiin onnistuneesti! - + Connection to %1 could not be established. Please check again. Yhteyttä osoitteeseen %1 ei voitu muodostaa. Ole hyvä ja tarkista uudelleen. - + Folder rename failed Kansion nimen muuttaminen epäonnistui - + Cannot 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> <font color="green"><b>Paikallinen synkronointikansio %1 luotu onnistuneesti!</b></font> @@ -3381,7 +3406,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Ei voida synkronoida virheellisen muokkausajan vuoksi - + Error while deleting file record %1 from the database @@ -3598,46 +3623,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 Virhe metatietoja päivittäessä: %1 - + The file %1 is currently in use Tiedosto %1 on tällä hetkellä käytössä - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Tiedoston uudelleennimeäminen epäonnistui @@ -3658,7 +3683,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Palvelin palautti väärän HTTP-koodin. Odotettiin 204, vastaanotettiin "%1 %2". @@ -4446,7 +4471,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4456,38 +4481,38 @@ Server replied with error: %2 - + Unresolved conflict. Selvittämätön ristiriita. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Vain %1 on käytettävissä, käynnistymiseen tarvitaan %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal @@ -4497,12 +4522,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Levytila on vähissä. Lataukset, jotka pienentäisivät tilaa alle %1 ohitettiin. - + There is insufficient space available on the server for some uploads. Palvelimella on liian vähän tilaa joillekin latauksille. @@ -4631,24 +4656,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1-työpöytäsovellus</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versio %1. Lisätietoja on saatavilla napsauttamalla <a href='%2'>tästä</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4840,8 +4865,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4849,8 +4874,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5554,67 +5579,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away Poissa - + Do not disturb Älä häiritse - + Mute all notifications Mykistä kaikki ilmoitukset - + Invisible Näkymätön - + Appear offline - + Status message Tilaviesti - + What is your status? Mikä on tilatietosi? - + Clear status message after - + Cancel Peruuta - + Clear status message Tyhjennä tilaviesti - + Set status message Aseta tilaviesti @@ -5836,7 +5861,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_fr.ts b/translations/client_fr.ts index b5d1e98a7a0e5..501eeeabde692 100644 --- a/translations/client_fr.ts +++ b/translations/client_fr.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Menu d'effacement du message de statut @@ -410,12 +410,12 @@ Il semble que la fonctionnalité de fichiers virtuels soit activée sur ce dossier. Pour le moment, il n'est pas possible de télécharger implicitement des fichiers virtuels qui sont chiffrés de bout en bout. Pour bénéficier d'une expérience optimale avec les fichiers virtuels et le chiffrement de bout en bout, assurez-vous que le dossier chiffré soit paramétré avec l'option "Rendre toujours disponible localement". - + End-to-end Encryption with Virtual Files Chiffrement de bout en bout avec fichiers virtuels - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Il semble que la fonctionnalité des Fichiers Virtuels soit activée sur ce dossier. Pour l'instant, il n'est pas possible de télécharger implicitement des fichiers virtuels qui sont chiffrés de bout en bout. Pour bénéficier d'une expérience optimale avec les fichiers virtuels et le chiffrement de bout en bout, assurez-vous que le dossier chiffré soit marqué par l'option "Toujours rendre disponible localement". @@ -439,21 +439,26 @@ No account configured. Aucun compte configuré. + + + Disable encryption + + Display mnemonic Afficher la phrase secrète - - - End-to-end encryption has been enabled for this account - Le chiffrement de bout en bout a été activé sur ce compte - Enable encryption Activer le chiffrement + + + End-to-end encryption has been enabled for this account + Le chiffrement de bout en bout a été activé sur ce compte + Warning @@ -614,7 +619,7 @@ Cette action entraînera l'interruption de toute synchronisation en cours.< Phrase secrète du chiffrement de bout en bout - + End-to-end encryption mnemonic Phrase secrète du chiffrement de bout en bout @@ -623,6 +628,21 @@ Cette action entraînera l'interruption de toute synchronisation en cours.< 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). Pour protéger votre identité cryptographique, nous la chiffrons avec une phrase secrète de 12 mots du dictionnaire. Veuillez la noter et la garder en sécurité. Elle sera nécessaire pour ajouter d’autres appareils à votre compte (comme votre smartphone ou votre ordinateur portable). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -746,12 +766,12 @@ Vous prenez vos propres risques. Ce compte prend en charge le chiffrement de bout en bout. - + Set up encryption Configurer le chiffrement - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Le chiffrement de bout en bout a été activé sur ce compte avec un autre appareil.<br>Il peut être activé sur cet appareil en entrant votre phrase secrète.<br>Cela permettra la synchronisation des dossiers chiffrés existants. @@ -1044,7 +1064,7 @@ Vous prenez vos propres risques. Merci de saisir votre phrase secrète E2E : <br><br>Utilisateur : %2<br>Compte : %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Veuillez entrer votre phrase de passe de chiffrement de bout en bout :<br><br>Nom d'utilisateur : %2<br>Compte : %3<br> @@ -1846,8 +1866,8 @@ S'il s'agissait d'un accident et que vous choisissiez de conserve - - %1 - - %1 + Could not decrypt! + @@ -2589,6 +2609,11 @@ Les éléments ayant l'option "Autoriser la suppression" pourront Close Fermer + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Notez que l'utilisation de toute option de ligne de commande de journalisat - + Use &virtual files instead of downloading content immediately %1 Utiliser les fichiers virtuels plutôt que de télécharger le contenu immédiatement %1 - + (experimental) (expérimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Les fichiers virtuels ne sont pas pris en charge pour les racines de partition Windows en tant que dossier local. Veuillez choisir un sous-dossier valide sous la lettre du lecteur. - + %1 folder "%2" is synced to local folder "%3" Le dossier %1 "%2" est synchronisé avec le dossier local "%3". - + Sync the folder "%1" Synchroniser le dossier "%1" - + Warning: The local folder is not empty. Pick a resolution! Avertissement : le dossier local n'est pas vide. Sélectionnez une résolution. - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB espace libre %1 - + Virtual files are not available for the selected folder Les fichiers virtuels ne sont pas disponibles pour le dossier sélectionné - + Local Sync Folder Dossier de synchronisation local - - + + (%1) (%1) - + There isn't enough free space in the local folder! L'espace libre dans le dossier local est insuffisant ! @@ -3081,144 +3106,144 @@ Notez que l'utilisation de toute option de ligne de commande de journalisat OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Connecté avec succès à %1 : %2 version %3 (%4)</font><br/><br/> - + Invalid URL URL invalide - + Failed to connect to %1 at %2:<br/>%3 Échec de la connexion à %1 sur %2 :<br/>%3 - + Timeout while trying to connect to %1 at %2. Délai d'attente dépassé lors de la connexion à %1 sur %2. - + Trying to connect to %1 at %2 … Tentative de connexion à %1 sur %2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. La demande authentifiée au serveur a été redirigée vers "%1". L'URL est mauvaise, le serveur est mal configuré. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - Accès impossibe. Afin de vérifier l'accès au serveur, <a href="%1">cliquez ici</a> et connectez-vous au service avec votre navigateur web. + Accès impossible. Afin de vérifier l'accès au serveur, <a href="%1">cliquez ici</a> et connectez-vous au service avec votre navigateur web. - + There was an invalid response to an authenticated WebDAV request Il y a eu une réponse invalide à une demande WebDAV authentifiée - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Le dossier de synchronisation local %1 existe déjà, configuration de la synchronisation.<br/><br/> - + Creating local sync folder %1 … Création du dossier local de synchronisation %1 ... - + OK OK - + failed. échoué. - + Could not create local folder %1 Impossible de créer le dossier local %1 - + No remote folder specified! Aucun dossier distant spécifié ! - + Error: %1 Erreur : %1 - + creating folder on Nextcloud: %1 Création du dossier sur Nextcloud : %1 - + Remote folder %1 created successfully. Le dossier distant %1 a été créé avec succès. - + The remote folder %1 already exists. Connecting it for syncing. Le dossier distant %1 existe déjà. Connexion. - - + + The folder creation resulted in HTTP error code %1 La création du dossier a généré le code d'erreur HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> La création du dossier distant a échoué car les identifiants de connexion sont erronés !<br/>Veuillez revenir en arrière et vérifier ces derniers.</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> <p><font color="red">La création du dossier distant a échoué, probablement parce que les informations d'identification fournies sont fausses.</font><br/>Veuillez revenir en arrière et les vérifier.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. La création du dossier distant "%1" a échouée avec l'erreur <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Une synchronisation entre le dossier local %1 et le dossier distant %2 a été configurée. - + Successfully connected to %1! Connecté avec succès à %1 ! - + Connection to %1 could not be established. Please check again. La connexion à %1 n'a pu être établie. Veuillez réessayer. - + Folder rename failed Echec du renommage du dossier - + Cannot 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. Impossible de supprimer et sauvegarder le dossier parce que le dossier ou un fichier qu'il contient est ouvert dans un autre programme. Merci de fermer le dossier ou le fichier et recommencer ou annuler la configuration. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Dossier de synchronisation local %1 créé avec succès !</b></font> @@ -3402,7 +3427,7 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' Impossible de synchroniser à cause d'une date de modification invalide - + Error while deleting file record %1 from the database Erreur à la suppression de l'enregistrement du fichier %1 de la base de données @@ -3619,46 +3644,46 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Le fichier %1 ne peut pas être renommé en %2 à cause d'un conflit local de nom de fichier - - - + + + could not get file %1 from local DB Impossible de récupérer le fichier %1 depuis la base de données locale - + Error setting pin state Erreur lors de la modification de l'état du fichier - - + + Error updating metadata: %1 Erreur lors de la mise à jour des métadonnées : %1 - + The file %1 is currently in use Le fichier %1 est en cours d'utilisation - - + + Could not delete file record %1 from local DB Impossible de récupérer le fichier %1 depuis la base de données locale - + Failed to propagate directory rename in hierarchy Impossible de propager le renommage du dossier dans la hiérarchie - + Failed to rename file Échec lors du changement de nom du fichier @@ -3679,7 +3704,7 @@ Il s'agit d'un nouveau mode expérimental. Si vous décidez de l' OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Le code HTTP retourné par le serveur n'est pas valide. La valeur attendue est 204 mais la valeur retournée est "%1 %2". @@ -4469,7 +4494,7 @@ Le serveur a répondu avec l'erreur : %2 Impossible de mettre à jour les métadonnées du fichier virutel : %1 - + Could not update file metadata: %1 Impossible de mettre à jour les métadonnées du fichier : %1 @@ -4479,38 +4504,38 @@ Le serveur a répondu avec l'erreur : %2 Impossible de définir l'enregistrement du fichier dans la base de données locale : %1 - + Unresolved conflict. conflit non résolu. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Seulement %1 disponibles, il faut au moins %2 pour démarrer - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Impossible d'accéder ou de créer une base de données locale de synchronisation. Assurez vous de disposer des droits d'écriture dans le dossier de synchronisation. - + Using virtual files with suffix, but suffix is not set Utilisation de fichiers virtuels avec suffixe, mais le suffixe n'est pas défini - + Unable to read the blacklist from the local database Impossible de lire la liste noire de la base de données locale - + Unable to read from the sync journal. Impossible de lire le journal de synchronisation. - + Cannot open the sync journal Impossible d'ouvrir le journal de synchronisation @@ -4520,12 +4545,12 @@ Le serveur a répondu avec l'erreur : %2 La synchronisation reprendra sous peu. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. L'espace disque est faible : les téléchargements qui amèneraient à réduire l'espace libre en dessous de %1 ont été ignorés. - + There is insufficient space available on the server for some uploads. Il n'y a pas suffisamment d’espace disponible sur le serveur pour certains envois. @@ -4654,24 +4679,24 @@ Le serveur a répondu avec l'erreur : %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Client de bureau %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Version %1. Pour plus d’informations, veuillez cliquer <a href='%2'>ici</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Utilise l'extension de fichiers virtuels : %1</small></p> - + <p>This release was supplied by %1</p> Cette version est fournie par %1. @@ -4863,8 +4888,8 @@ Le serveur a répondu avec l'erreur : %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Erreur de mise à jour des métadonnées à cause d'une date de modification invalide @@ -4872,8 +4897,8 @@ Le serveur a répondu avec l'erreur : %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Erreur de mise à jour des métadonnées à cause d'une date de modification invalide @@ -5577,67 +5602,67 @@ Le serveur a répondu avec l'erreur : %2 UserStatusSelector - + Online status Statut en ligne - + Online En ligne - + Away Absent(e) - + Do not disturb Ne pas déranger - + Mute all notifications Désactiver toutes les notifications - + Invisible Invisible - + Appear offline Apparaitre hors-ligne - + Status message Message de statut - + What is your status? Quel est votre statut ? - + Clear status message after Effacer le message de statut après - + Cancel Annuler - + Clear status message Effacer le message de statut - + Set status message Définir le message de statut @@ -5859,7 +5884,7 @@ Le serveur a répondu avec l'erreur : %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Généré à partir de la révision Git <a href="%1">%2</a> du %3, %4 en utilisant Qt %5, %6</small></p> diff --git a/translations/client_gl.ts b/translations/client_gl.ts index 0f8f998d7fe05..c08b13efea6db 100644 --- a/translations/client_gl.ts +++ b/translations/client_gl.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Limpar o menú de mensaxes de estado @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Non hai contas configuradas. + + + Disable encryption + + Display mnemonic Amosar o mnemónico - - - End-to-end encryption has been enabled for this account - - Enable encryption Activar o cifrado + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Esta acción interromperá calquera sincronización que estea a executarse actua - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Esta acción interromperá calquera sincronización que estea a executarse actua 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Esta acción interromperá calquera sincronización que estea a executarse actua Esta conta admite o cifrado de extremo a extremo - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Esta acción interromperá calquera sincronización que estea a executarse actua Introduza a súa frase de paso de cifrado de extremo a extremo: <br><br>Usuario: %2<br>Conta: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Introduza a súa frase de paso de cifrado de extremo a extremo: <br><br>Usuario: %2<br>Conta: %3<br> @@ -1841,7 +1861,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2584,6 +2604,11 @@ Os elementos onde se permite a eliminación eliminaranse se impiden que se elimi Close Pechar + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2919,60 +2944,60 @@ Teña en conta que o uso de calquera opción da liña de ordes anulara este axus - + Use &virtual files instead of downloading content immediately %1 Use ficheiros &virtuais no canto de descargar contido inmediatamente %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" Sincronizar o cartafol «%1» - + Warning: The local folder is not empty. Pick a resolution! Advertencia: o cartafol local non está baleiro. Escolla unha resolución. - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 de espazo libre - + Virtual files are not available for the selected folder Os ficheiros virtuais non están dispoñíbeis para o cartafol seleccionado - + Local Sync Folder Sincronización do cartafol local - - + + (%1) (%1) - + There isn't enough free space in the local folder! Non hai espazo libre abondo no cartafol local! @@ -3076,144 +3101,144 @@ Teña en conta que o uso de calquera opción da liña de ordes anulara este axus OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectouse correctamente a %1: %2 versión %3 (%4)</font><br/><br/> - + Invalid URL URL incorrecto - + Failed to connect to %1 at %2:<br/>%3 Non foi posíbel conectar con %1 en %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Esgotouse o tempo tentando conectar con %1 en %2. - + Trying to connect to %1 at %2 … Tentando conectar con %1 en %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acceso prohibido polo servidor. Para comprobar que dispón do acceso axeitado, <a href="%1">prema aquí</a> para acceder ao servizo co seu navegador. - + There was an invalid response to an authenticated WebDAV request Deuse unha resposta incorrecta a unha solicitude de WebDAV autenticada - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> O cartafol de sincronización local %1 xa existe. Configurándoo para a sincronización.<br/><br/> - + Creating local sync folder %1 … Creando o cartafol local de sincronización %1… - + OK Aceptar - + failed. fallou. - + Could not create local folder %1 Non foi posíbel crear o cartafol local %1 - + No remote folder specified! Non se especificou o cartafol remoto! - + Error: %1 Erro: %1 - + creating folder on Nextcloud: %1 creando un cartafol no Nextcloud: %1 - + Remote folder %1 created successfully. O cartafol remoto %1 creouse correctamente. - + The remote folder %1 already exists. Connecting it for syncing. O cartafol remoto %1 xa existe. Conectándoo para a sincronización. - - + + The folder creation resulted in HTTP error code %1 A creación do cartafol resultou nun código de erro HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> A creación do cartafol remoto fracasou por mor de seren incorrectas as credenciais!<br/>Volva atrás e comprobe as súas credenciais.</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> <p><font color="red">A creación do cartafol remoto fallou probabelmente debido a que as credenciais que se deron non foran as correctas.</font><br/>Volva atrás e comprobe as súas credenciais.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Produciuse un fallo ao crear o cartafol remoto %1 e dou o erro <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Estabeleceuse a conexión de sincronización de %1 ao directorio remoto %2. - + Successfully connected to %1! Conectou satisfactoriamente con %1! - + Connection to %1 could not be established. Please check again. Non foi posíbel estabelecer a conexión con %1. Compróbeo de novo. - + Folder rename failed Non foi posíbel renomear o cartafol - + Cannot 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> <font color="green"><b>O cartafol local de sincronización %1 creouse correctamente!</b></font> @@ -3397,7 +3422,7 @@ Este é un novo modo experimental. Se decide usalo, agradecémoslle que informe - + Error while deleting file record %1 from the database @@ -3614,46 +3639,46 @@ Este é un novo modo experimental. Se decide usalo, agradecémoslle que informe OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state Produciuse un erro ao definir o estado do pin - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3674,7 +3699,7 @@ Este é un novo modo experimental. Se decide usalo, agradecémoslle que informe OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". O servidor devolveu código HTTP incorrecto. Agardábase 204, mais recibiuse «%1 %2». @@ -4462,7 +4487,7 @@ Server replied with error: %2 Non foi posíbel actualizar os metadatos do ficheiro virtual: %1 - + Could not update file metadata: %1 @@ -4472,38 +4497,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflito sen resolver. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Só %1 está dispoñíbel, necesita polo menos %2 para comezar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Non foi posíbel abrir ou crear a base de datos de sincronización local. Asegúrese de ter acceso de escritura no cartafol de sincronización. - + Using virtual files with suffix, but suffix is not set Usando ficheiros virtuais con sufixo, mais o sufixo non está definido - + Unable to read the blacklist from the local database Non foi posíbel ler a lista de bloqueo da base de datos local - + Unable to read from the sync journal. Non foi posíbel ler dende o diario de sincronización. - + Cannot open the sync journal Non foi posíbel abrir o diario de sincronización @@ -4513,12 +4538,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Pouco espazo dispoñíbel no disco: As descargas que reduzan o tamaño por baixo de %1 van ser omitidas. - + There is insufficient space available on the server for some uploads. Non hai espazo libre abondo no servisor para algúns envíos. @@ -4647,24 +4672,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Cliente de escritorio do %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versión %1. Para obter máis información prema <a href='%2'>aquí</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Esta versión foi fornecida por %1</p> @@ -4856,8 +4881,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4865,8 +4890,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5570,67 +5595,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online Conectado/a - + Away Ausente - + Do not disturb Non molestar - + Mute all notifications Silenciar todas as notificacións - + Invisible Invisíbel - + Appear offline Aparecer como sen conexión - + Status message Mensaxe de estado - + What is your status? Cal é o seu estado? - + Clear status message after Limpar a mensaxe de estado após - + Cancel - + Clear status message Limpar a mensaxe de estado - + Set status message Establecer a mensaxe de estado @@ -5852,7 +5877,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Construido dende la revisión Git <a href="%1">%2</a> en %3, %4 usando Qt %5, %6</small></p> diff --git a/translations/client_he.ts b/translations/client_he.ts index 439a36b68b90d..b72de854457fb 100644 --- a/translations/client_he.ts +++ b/translations/client_he.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ לא הוגדר חשבון. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption הפעלת הצפנה + + + End-to-end encryption has been enabled for this account + + Warning @@ -612,7 +617,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -621,6 +626,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -743,12 +763,12 @@ This action will abort any currently running synchronization. חשבון זה תומך בהצפנה מקצה לקצה - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1041,7 +1061,7 @@ This action will abort any currently running synchronization. נא להקליד את הססמא להצפנה מקצה לקצה:<br><br>משתמש: %2<br>חשבון: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1832,7 +1852,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2571,6 +2591,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close סגירה + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2903,60 +2928,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (ניסיוני) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 מקום פנוי - + Virtual files are not available for the selected folder - + Local Sync Folder תיקיית סנכרון מקומית - - + + (%1) (%1) - + There isn't enough free space in the local folder! אין מספיק שטח פנוי בתיקייה המקומית! @@ -3060,144 +3085,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> - + Invalid URL כתובת שגויה - + Failed to connect to %1 at %2:<br/>%3 ההתחברות אל %1 ב־%2 נכשלה:<br/>%3 - + Timeout while trying to connect to %1 at %2. הזמן שהוקצב להתחברות אל %1 ב־%2 פג. - + Trying to connect to %1 at %2 … מתבצע ניסיון להתחבר אל %1 ב־%2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. הגישה נאסרה על ידי השרת. כדי לוודא שיש לך גישה כנדרש, עליך <a href="%1">ללחוץ כאן</a> כדי לגשת לשירות עם הדפדפן שלך. - + There was an invalid response to an authenticated WebDAV request התגובה לבקשת ה־WebDAV המאומתת שגויה - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> תיקיית הסנכרון המקומית %1 כבר קיימת, מוגדרת לסנכרון. <br/><br/> - + Creating local sync folder %1 … תיקיית הסנכרון המקומית %1 נוצרת… - + OK אישור - + failed. כשלון. - + Could not create local folder %1 לא ניתן ליצור את התיקייה המקומית %1 - + No remote folder specified! לא צוינה תיקייה מרוחקת! - + Error: %1 שגיאה: %1 - + creating folder on Nextcloud: %1 נוצרת תיקייה ב־Nextcloud:‏ %1 - + Remote folder %1 created successfully. התיקייה המרוחקת %1 נוצרה בהצלחה. - + The remote folder %1 already exists. Connecting it for syncing. התיקייה המרוחקת %1 כבר קיימת. היא מחוברת לטובת סנכרון. - - + + The folder creation resulted in HTTP error code %1 יצירת התיקייה הובילה לקוד שגיאה %1 ב־HTTP - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> יצירת התיקייה המרוחקת נכשלה כיוון שפרטי הגישה שסופקו שגויים!<br/>נא לחזור ולאמת את פרטי הגישה שלך.</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>. יצירת התיקייה המרוחקת %1 נכשלה עם השגיאה <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. הוקם חיבור סנכרון מצד %1 אל התיקייה המרוחקת %2. - + Successfully connected to %1! ההתחברות אל %1 הצליחה! - + Connection to %1 could not be established. Please check again. לא ניתן להקים את ההתחברות אל %1. נא לבדוק שוב. - + Folder rename failed שינוי שם התיקייה נכשל - + Cannot 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> <font color="green"><b>תיקיית הסנכורן המקומי %1 נוצרה בהצלחה!</b></font> @@ -3375,7 +3400,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3592,46 +3617,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3652,7 +3677,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4440,7 +4465,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4450,38 +4475,38 @@ Server replied with error: %2 - + Unresolved conflict. סתירה בלתי פתורה. - + 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. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database לא ניתן לקרוא את רשימת החסימה ממסד הנתונים המקומי - + Unable to read from the sync journal. - + Cannot open the sync journal @@ -4491,12 +4516,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. אין די מקום פנוי בכונן: הורדות שעלולות להוריד את הנפח הפנוי מתחת לסף של %1 ידולגו. - + There is insufficient space available on the server for some uploads. אין מספיק מקום זה בשרת לחלק מההורדות. @@ -4625,24 +4650,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 לקוח לשולחן העבודה</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>גרסה %1. למידע נוסף נא ללחוץ <a href='%2'>כאן</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>גרסה זו סופקה על ידי %1</p> @@ -4834,8 +4859,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4843,8 +4868,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5548,67 +5573,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5830,7 +5855,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>נבנה מהמהדורה <a href="%1">%2</a> ב־Git ב־%3, %4 באמצעות Qt %5, %6</small></p> diff --git a/translations/client_hr.ts b/translations/client_hr.ts index c8a8d966a6a4f..aca7cd05dafb4 100644 --- a/translations/client_hr.ts +++ b/translations/client_hr.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ Čini se da ste omogućili značajku virtualnih datoteka za ovu mapu. U ovom trenutku nije moguće implicitno preuzeti virtualne datoteke koje su cjelovito šifrirane. Za najbolje iskustvo korištenja virtualnih datoteka i cjelovitog šifriranja provjerite je li šifrirana mapa označena s „Učini uvijek dostupnim lokalno”. - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Račun nije konfiguriran. + + + Disable encryption + + Display mnemonic Prikaži mnemoničku oznaku - - - End-to-end encryption has been enabled for this account - - Enable encryption Omogući šifriranje + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Ova će radnja prekinuti bilo koju trenutačnu sinkronizaciju. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Ova će radnja prekinuti bilo koju trenutačnu sinkronizaciju. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Ova će radnja prekinuti bilo koju trenutačnu sinkronizaciju. Ovaj račun podržava cjelovito šifriranje - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Ova će radnja prekinuti bilo koju trenutačnu sinkronizaciju. Unesite zaporku za cjelovito šifriranje: <br><br>Korisnik: %2<br>Račun: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1846,7 +1866,7 @@ Ako ste slučajno odabrali ovu radnju i želite zadržati svoje datoteke, ponovn - - %1 + Could not decrypt! @@ -2589,6 +2609,11 @@ Stavke za koje je dopušteno brisanje bit će izbrisane ako sprječavaju uklanja Close Zatvori + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Imajte na umu da će uporaba bilo koje opcije naredbenog retka u vezi sa zapisim - + Use &virtual files instead of downloading content immediately %1 Upotrijebi &virtualne datoteke umjesto trenutnog preuzimanja sadržaja %1 - + (experimental) (eksperimentalan) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Virtualne datoteke nisu podržane za lokalne mape koje se upotrebljavaju kao korijenske mape particije sustava Windows. Odaberite važeću podmapu ispod slova diskovne particije. - + %1 folder "%2" is synced to local folder "%3" %1 mapa „%2” sinkronizirana je s lokalnom mapom „%3” - + Sync the folder "%1" Sinkroniziraj mapu „%1” - + Warning: The local folder is not empty. Pick a resolution! Upozorenje: lokalna mapa nije prazna. Odaberite razlučivost! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 slobodnog prostora - + Virtual files are not available for the selected folder Virtualne datoteke nisu raspoložive za odabranu mapu - + Local Sync Folder Mapa za lokalnu sinkronizaciju - - + + (%1) (%1) - + There isn't enough free space in the local folder! Nema dovoljno slobodnog prostora u lokalnoj mapi! @@ -3081,144 +3106,144 @@ Imajte na umu da će uporaba bilo koje opcije naredbenog retka u vezi sa zapisim OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Uspješno povezivanje s %1: %2 inačicom %3 (%4)</font><br/><br/> - + Invalid URL Neispravan URL - + Failed to connect to %1 at %2:<br/>%3 Neuspješno povezivanje s %1 na %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Istek vremena tijekom povezivanja s %1 na %2. - + Trying to connect to %1 at %2 … Pokušaj povezivanja s %1 na %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Autorizirani zahtjev poslužitelju preusmjeren je na „%1”. URL je neispravan, poslužitelj je pogrešno konfiguriran. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Poslužitelj je zabranio pristup. Kako biste provjerili imate li ispravan pristup, <a href="%1">kliknite ovdje</a> kako biste pristupili servisu putem preglednika. - + There was an invalid response to an authenticated WebDAV request Došlo je do nevažećeg odgovora na autorizirani zahtjev protokola WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Mapa za lokalnu sinkronizaciju %1 već postoji, postavljanje za sinkronizaciju.<br/><br/> - + Creating local sync folder %1 … Stvaranje mape za lokalnu sinkronizaciju %1… - + OK U redu - + failed. neuspješno. - + Could not create local folder %1 Nije moguće stvoriti lokalnu mapu %1 - + No remote folder specified! Nije navedena nijedna udaljena mapa! - + Error: %1 Pogreška: %1 - + creating folder on Nextcloud: %1 stvaranje mape na Nextcloudu: %1 - + Remote folder %1 created successfully. Uspješno je stvorena udaljena mapa %1. - + The remote folder %1 already exists. Connecting it for syncing. Udaljena mapa %1 već postoji. Povezivanje radi sinkronizacije. - - + + The folder creation resulted in HTTP error code %1 Stvaranje mape rezultiralo je HTTP šifrom pogreške %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Stvaranje udaljene mape nije uspjelo jer su navedene vjerodajnice pogrešne!<br/>Vratite se i provjerite svoje vjerodajnice.</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> <p><font color=“red“>Stvaranje udaljene mape nije uspjelo vjerojatno zbog pogrešnih unesenih vjerodajnica.</font><br/>Vratite se i provjerite vjerodajnice.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Stvaranje udaljene mape %1 nije uspjelo, pogreška: <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Postavljena je sinkronizacijska veza od %1 do udaljenog direktorija %2. - + Successfully connected to %1! Uspješno povezivanje s %1! - + Connection to %1 could not be established. Please check again. Veza s %1 nije uspostavljena. Provjerite opet. - + Folder rename failed Preimenovanje mape nije uspjelo - + Cannot 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. Nije moguće ukloniti i izraditi sigurnosnu kopiju mape jer je mapa ili datoteka u njoj otvorena u drugom programu. Zatvorite mapu ili datoteku i pritisnite Pokušaj ponovo ili otkažite postavljanje. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color=“green“><b>Mapa za lokalnu sinkronizaciju %1 uspješno je stvorena!</b></font> @@ -3402,7 +3427,7 @@ Ovo je novi, eksperimentalni način rada. Ako se odlučite aktivirati ga, prijav - + Error while deleting file record %1 from the database @@ -3619,46 +3644,46 @@ Ovo je novi, eksperimentalni način rada. Ako se odlučite aktivirati ga, prijav OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Datoteka %1 ne može se preimenovati u %2 zbog nepodudaranja naziva lokalne datoteke - - - + + + could not get file %1 from local DB - + Error setting pin state Pogreška pri postavljanju stanja šifre - - + + Error updating metadata: %1 Pogreška pri ažuriranju metapodataka: %1 - + The file %1 is currently in use Datoteka %1 je trenutno u upotrebi - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Preimenovanje datoteke nije uspjelo @@ -3679,7 +3704,7 @@ Ovo je novi, eksperimentalni način rada. Ako se odlučite aktivirati ga, prijav OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Poslužitelj je vratio pogrešnu HTTP šifru. Očekivana je 204, ali je primljena „%1 %2”. @@ -4467,7 +4492,7 @@ Server replied with error: %2 Nije uspjelo ažuriranje metapodataka virtualne datoteke: %1 - + Could not update file metadata: %1 @@ -4477,38 +4502,38 @@ Server replied with error: %2 - + Unresolved conflict. Neriješeno nepodudaranje. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Dostupno je samo %1, za pokretanje je potrebno najmanje %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Nije moguće otvoriti ili stvoriti lokalnu sinkronizacijsku bazu podataka. Provjerite imate li pristup pisanju u mapi za sinkronizaciju. - + Using virtual files with suffix, but suffix is not set Upotrebljavaju se virtualne datoteke sa sufiksom, ali sufiks nije određen - + Unable to read the blacklist from the local database Nije moguće pročitati crnu listu iz lokalne baze podataka - + Unable to read from the sync journal. Nije moguće čitati iz sinkronizacijskog dnevnika. - + Cannot open the sync journal Nije moguće otvoriti sinkronizacijski dnevnik @@ -4518,12 +4543,12 @@ Server replied with error: %2 Sinkronizacija će se uskoro nastaviti. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Premalo prostora na disku: preskočena su preuzimanja koja bi smanjila slobodni prostor ispod %1. - + There is insufficient space available on the server for some uploads. Na nekim poslužiteljima nema dovoljno slobodnog prostora za određene otpreme. @@ -4652,24 +4677,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Klijent za osobna računala</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Inačica %1. Za više informacija kliknite <a href=’%2’>ovdje</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Upotreba dodatka za virtualne datoteke: %1</small></p> - + <p>This release was supplied by %1</p> <p>Ovo izdanje isporučuje %1</p> @@ -4861,8 +4886,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4870,8 +4895,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5575,67 +5600,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Status na mreži - + Online Na mreži - + Away Odsutan - + Do not disturb Ne ometaj - + Mute all notifications - + Invisible Nevidljiv - + Appear offline - + Status message Poruka statusa - + What is your status? Koji je vaš status? - + Clear status message after Izbriši poruku statusa nakon - + Cancel - + Clear status message Izbriši poruku statusa - + Set status message Postavi poruku statusa @@ -5857,7 +5882,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Izrađeno iz revizije Gita <a href="%1“>%2</a>na %3, %4 s pomoću Qt %5, %6</small></p> diff --git a/translations/client_hu.ts b/translations/client_hu.ts index eb04ea01806de..c4705d1c52540 100644 --- a/translations/client_hu.ts +++ b/translations/client_hu.ts @@ -31,7 +31,7 @@ Open file details - + Fájl részleteinek megnyitása @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Állapotüzenet-menü ürítése @@ -196,7 +196,7 @@ Dismiss - + Eltüntetés @@ -410,12 +410,12 @@ Úgy néz ki, hogy engedélyezte a Virtuális fájlok funkciót ezen a mappán. Pillanatnyilag nem lehet implicit módon olyan virtuális fájlokat letölteni, melyek végpontok közti titkosítással vannak ellátva. A legjobb élmény érdekében győződjön meg róla, hogy a titkosított mappa meg legyen jelölve, hogy mindig elérhető legyen helyben is. - + End-to-end Encryption with Virtual Files Végpontok közti titkosítás virtuális fájlokkal - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Úgy néz ki, hogy engedélyezte a Virtuális fájlok funkciót ezen a mappán. Pillanatnyilag nem lehet implicit módon olyan virtuális fájlokat letölteni, melyek végpontok közti titkosítással vannak ellátva. A legjobb élmény érdekében győződjön meg róla, hogy a titkosított mappa meg legyen jelölve, hogy mindig elérhető legyen helyben is. @@ -439,21 +439,26 @@ No account configured. Nincs fiók beállítva. + + + Disable encryption + + Display mnemonic Mnemonikus kód megjelenítése - - - End-to-end encryption has been enabled for this account - A végpontok közötti titkosítás engedélyezett ennél a fióknál - Enable encryption Titkosítás engedélyezése + + + End-to-end encryption has been enabled for this account + A végpontok közötti titkosítás engedélyezett ennél a fióknál + Warning @@ -617,7 +622,7 @@ Ez a művelet megszakítja a jelenleg futó szinkronizálást. Végpontok közti titkosítás mnemonikus kódja - + End-to-end encryption mnemonic Végpontok közötti titkosítás mnemonikus kódja @@ -626,6 +631,21 @@ Ez a művelet megszakítja a jelenleg futó szinkronizálást. 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). A kriptográfiai személyazonossága megvédéséhez, egy 12 szótári szóból álló mnemonikus kóddal titkosítjuk. Jegyezze meg ezeket, és tartsa azokat biztonságban. Szüksége lesz rájuk, ha egy új eszközt akar hozzáadni a fiókjához (például a mobiltelefonját vagy a laptopját). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,14 +768,14 @@ Ez a művelet megszakítja a jelenleg futó szinkronizálást. Ez a fiók támogatja a végpontok közötti titkosítást - + Set up encryption Titkosítás beállítása - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. - + A végpontok közti titkosítás egy másik eszközről engedélyezve lett ezen a fiókon.<br>A mnemonikus kód megadásával ezen az eszközön is engedélyezheti.<br>Ez engedélyezi a meglévő titkosított mappák szinkronizációját. @@ -763,17 +783,17 @@ Ez a művelet megszakítja a jelenleg futó szinkronizálást. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + A hitelesített kiszolgálókérés át lett irányítva ide: „%1”. A webcím hibás, a kiszolgáló rosszul van beállítva. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + A hozzáférést megtagadta a kiszolgáló. Annak ellenőrzéséhez, hogy a megfelelő hozzáféréssel rendelkezik, <a href="%1">kattintson ide</a> a szolgáltatás böngészőből történő eléréséhez. There was an invalid response to an authenticated WebDAV request - + Érvénytelen válasz érkezett a hitelesített WebDAV kérésre @@ -1046,7 +1066,7 @@ Ez a művelet megszakítja a jelenleg futó szinkronizálást. Adja meg a végpontok közötti titkosítási jelmondatát:<br><br>Felhasználó: %2<br>Fiók: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Adja meg a végpontok közötti titkosítási jelmondatát:<br><br>Felhasználónév: %2<br>Fiók: %3<br> @@ -1311,38 +1331,38 @@ Ez a művelet megszakítja a jelenleg futó szinkronizálást. Server error: PROPFIND reply is not XML formatted! - + Kiszolgálóhiba: A PROPFIND válasz nem XML formátumú! Could not find a remote file info for local editing. Make sure its path is valid. - + Nem található a távoli fájl a helyi szerkesztéshez. Győződjön meg róla, hogy az útvonala helyes. Could not open %1 - + A(z) %1 nem nyitható meg. File %1 already locked. - + A(z) %1 fájl már zárolva van. Lock will last for %1 minutes. You can also unlock this file manually once you are finished editing. - + A zárolás %1 percig fog tartani. Kézzel is feloldhatja a fájlt, amint befejezte a szerkesztést. File %1 now locked. - + A(z) %1 fájl most zárolva van. File %1 could not be locked. - + A(z) %1 fájl nem zárolható. @@ -1847,7 +1867,7 @@ Ha ez véletlen volt, és úgy dönt, hogy megtartja ezeket a fájlokat, akkor - - %1 + Could not decrypt! @@ -2590,6 +2610,11 @@ Ahol a törlés engedélyezett, ott az elemek törölve lesznek, ha megakadályo Close Bezárás + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2926,60 +2951,60 @@ Ne feledje, hogy a naplózás parancssori kapcsolóinak használata felülbírá - + Use &virtual files instead of downloading content immediately %1 &Virtuális fájlok használata a tartalom azonnali letöltése helyett %1 - + (experimental) (kísérleti) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. A virtuális fájlok nem támogatottak a windowsos partíciók gyökerében helyi mappaként. Válasszon érvényes almappát a meghajtó betűjele alatt. - + %1 folder "%2" is synced to local folder "%3" A(z) „%2” %1 mappa szinkronizálva van a(z) „%3” helyi mappába - + Sync the folder "%1" A(z) „%1” mappa szinkronizálása - + Warning: The local folder is not empty. Pick a resolution! Figyelem: A helyi mappa nem üres. Válasszon egy megoldást! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 szabad hely - + Virtual files are not available for the selected folder A virtuális fájlok nem érhetők el a kiválasztott mappához - + Local Sync Folder Helyi szinkronizálási mappa - - + + (%1) (%1) - + There isn't enough free space in the local folder! Nincs elég szabad hely a helyi mappában. @@ -3083,144 +3108,144 @@ Ne feledje, hogy a naplózás parancssori kapcsolóinak használata felülbírá OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Sikeresen kapcsolódott ehhez: %1: %2 %3 verzió (%4)</font><br/><br/> - + Invalid URL Érvénytelen URL - + Failed to connect to %1 at %2:<br/>%3 A kapcsolódás sikertelen ehhez: %1, itt: %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Időtúllépés az ehhez kapcsolódás közben: %1, itt: %2. - + Trying to connect to %1 at %2 … Kapcsolódási kísérlet ehhez: %1, itt: %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. A hitelesített kiszolgálókérés át lett irányítva ide: „%1”. Az URL hibás, a kiszolgáló rosszul van beállítva. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. A hozzáférést megtagadta a kiszolgáló. Annak ellenőrzéséhez, hogy a megfelelő hozzáféréssel rendelkezik, <a href="%1">kattintson ide</a> a szolgáltatás böngészőből történő eléréséhez. - + There was an invalid response to an authenticated WebDAV request Érvénytelen válasz érkezett a hitelesített WebDAV kérésre - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> A helyi %1 mappa már létezik, állítsa be a szinkronizálását.<br/><br/> - + Creating local sync folder %1 … A(z) %1 helyi szinkronizálási mappa létrehozása… - + OK OK - + failed. sikertelen. - + Could not create local folder %1 A(z) %1 helyi mappa nem hozható létre - + No remote folder specified! Nincs távoli mappa megadva! - + Error: %1 Hiba: %1 - + creating folder on Nextcloud: %1 mappa létrehozása a Nextcloudon: %1 - + Remote folder %1 created successfully. A(z) %1 távoli mappa sikeresen létrehozva. - + The remote folder %1 already exists. Connecting it for syncing. A(z) %1 távoli mappa már létezik. Kapcsolódás a szinkronizáláshoz. - - + + The folder creation resulted in HTTP error code %1 A könyvtár létrehozása HTTP %1 hibakódot eredményezett - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> A távoli mappa létrehozása meghiúsult, mert a megadott hitelesítő adatok hibásak.<br/>Lépjen vissza, és ellenőrizze az adatait.</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> <p><font color="red">A távoli mappa létrehozása sikertelen, valószínűleg azért, mert hibás hitelesítési adatokat adott meg.</font><br/>Lépjen vissza, és ellenőrizze az adatait.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. A távoli %1 mappa létrehozása meghiúsult, hibaüzenet: <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. A szinkronizálási kapcsolat a(z) %1 és a(z) %2 távoli mappa között létrejött. - + Successfully connected to %1! Sikeresen kapcsolódva ehhez: %1! - + Connection to %1 could not be established. Please check again. A kapcsolat a(z) %1 kiszolgálóval nem hozható létre. Ellenőrizze újra. - + Folder rename failed A mappa átnevezése nem sikerült - + Cannot 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. Nem távolíthatja el és készíthet biztonsági másolatot egy mappáról, mert a mappa, vagy egy benne lévő fájl meg van nyitva egy másik programban. Zárja be a mappát vagy fájlt, és nyomja meg az újrapróbálkozást, vagy szakítsa meg a beállítást. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>A(z) %1 helyi szinkronizációs mappa sikeresen létrehozva.</b></font> @@ -3404,7 +3429,7 @@ Ez egy új, kísérleti mód. Ha úgy dönt, hogy használja, akkor jelezze nek Az érvénytelen módosítási idő miatt nem lehet szinkronizálni - + Error while deleting file record %1 from the database Hiba történt a(z) %1 fájlrekord adatbázisból törlése során @@ -3621,46 +3646,46 @@ Ez egy új, kísérleti mód. Ha úgy dönt, hogy használja, akkor jelezze nek OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash A(z) %1 fájl egy helyi fájl névütközése miatt nem nevezhető ár erre: %2, - - - + + + could not get file %1 from local DB a(z) %1 fájl lekérése a helyi adatbázisból nem sikerült - + Error setting pin state Hiba a tű állapotának beállításakor - - + + Error updating metadata: %1 Hiba a metaadatok frissítésekor: %1 - + The file %1 is currently in use A(z) %1 fájl épp használatban van - - + + Could not delete file record %1 from local DB A(z) %1 fájlrekord törlése a helyi adatbázisból nem sikerült - + Failed to propagate directory rename in hierarchy A könyvtár átnevezésének átvezetése a hierarchiában sikertelen - + Failed to rename file A fájl átnevezése sikertelen @@ -3681,7 +3706,7 @@ Ez egy új, kísérleti mód. Ha úgy dönt, hogy használja, akkor jelezze nek OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". A kiszolgáló helytelen HTTP-kódot adott vissza. 204-et várt, de az érték "%1 %2" volt. @@ -3986,7 +4011,7 @@ Ez egy új, kísérleti mód. Ha úgy dönt, hogy használja, akkor jelezze nek Internal link - + Belső hivatkozás @@ -4076,34 +4101,36 @@ Ez egy új, kísérleti mód. Ha úgy dönt, hogy használja, akkor jelezze nek Failed to encrypt folder at "%1" - + A következő helyen lévő mappa titkosítása sikertelen: „%1” The account %1 does not have end-to-end encryption configured. Please configure this in your account settings to enable folder encryption. - + A(z) %1 fióknál nincs beállítva a végpontok közti titkosítás. A mappatitkosítás engedélyezéséhez állítsa be a fiókbeállításaiban. Failed to encrypt folder - + A mappa titkosítása sikertelen Could not encrypt the following folder: "%1". Server replied with error: %2 - + Nem sikerült a következő mappa titkosítása: „%1”. + +A kiszolgáló hibával válaszolt: %2 Folder encrypted successfully - + A mappa sikeresen titkosítva The following folder was encrypted successfully: "%1" - + A következő mappa sikeresen titkosítva lett: „%1” @@ -4177,7 +4204,7 @@ Server replied with error: %2 Encrypt - + Titkosítás @@ -4469,7 +4496,7 @@ Server replied with error: %2 Nem sikerült frissíteni a virtuális fájl metaadatait: %1 - + Could not update file metadata: %1 Nem sikerült frissíteni a fájl metaadatait: %1 @@ -4479,38 +4506,38 @@ Server replied with error: %2 A fájlrekord beállítása a helyi adatbázisban nem sikerült: %1 - + Unresolved conflict. Nem feloldott ütközés. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Csak %1 érhető el, de legalább %2 kell az indításhoz - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. A helyi szinkronizálási adatbázis nem nyitható meg, vagy nem hozható létre. Győződjön meg róla, hogy rendelkezik-e írási joggal a szinkronizálási mappán. - + Using virtual files with suffix, but suffix is not set Virtuális fájlok használata utótaggal, de az utótag nincs beállítva - + Unable to read the blacklist from the local database Nem lehet kiolvasni a tiltólistát a helyi adatbázisból - + Unable to read from the sync journal. Nem lehet olvasni a szinkronizálási naplóból. - + Cannot open the sync journal A szinkronizálási napló nem nyitható meg @@ -4520,12 +4547,12 @@ Server replied with error: %2 A szinkronizálás rövidesen folytatódik. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Túl kevés a tárterület: A letöltések, melyek %1 alá csökkentették volna a szabad tárhelyet, kihagyásra kerültek. - + There is insufficient space available on the server for some uploads. Egyes feltöltésekhez nincs elég hely a kiszolgálón. @@ -4654,24 +4681,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 asztali kliens</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Verzió: %1. További információkért kattintson <a href='%2'>ide</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Virtuális fájlok bővítmény használata: %1</small></p> - + <p>This release was supplied by %1</p> <p>Ezt a kiadást a %1 biztosította</p> @@ -4863,8 +4890,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Az érvénytelen módosítási idő miatt hiba történt a metaadatok frissítése során @@ -4872,8 +4899,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Az érvénytelen módosítási idő miatt hiba történt a metaadatok frissítése során @@ -5330,17 +5357,17 @@ Server replied with error: %2 Create a new share link - + Új megosztási hivatkozás létrehozása Copy share link location - + Megosztási hivatkozás helyének másolása Share options - + Megosztási beállítások @@ -5348,57 +5375,57 @@ Server replied with error: %2 An error occurred setting the share password. - + Hiba történt a megosztási jelszó beállítása során. Edit share - + Megosztás szerkesztése Dismiss - + Eltüntetés Share label - + Megosztás címkéje Allow editing - + Szerkesztés engedélyezése Password protect - + Jelszavas védelem Set expiration date - + Lejárati idő beállítása Note to recipient - + Jegyzet a címzettnek Unshare - + Megosztás visszavonása Add another link - + További hivatkozás hozzáadása Copy share link - + Megosztási hivatkozás másolása @@ -5503,7 +5530,7 @@ Server replied with error: %2 No results for - + Nincs találat a következőre: @@ -5511,7 +5538,7 @@ Server replied with error: %2 Search results section %1 - + Keresési találatok %1 szakasza @@ -5577,67 +5604,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Online állapot - + Online Online - + Away Távol - + Do not disturb Ne zavarjanak - + Mute all notifications Összes értesítés némítása - + Invisible Láthatatlan - + Appear offline Megjelenés nem kapcsolódottként - + Status message Állapotüzenet - + What is your status? Mi az állapota? - + Clear status message after Állapotüzenet törlése ennyi idő után: - + Cancel Mégse - + Clear status message Állapotüzenet törlése - + Set status message Állapotüzenet beállítása @@ -5859,7 +5886,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Összeállítva a(z) <a href="%1">%2</a> Git verzióból, ekkor: %3, %4, Qt %5 (%6) használatával</small></p> diff --git a/translations/client_id.ts b/translations/client_id.ts index 36817b6dad7ad..f8d01514418bc 100644 --- a/translations/client_id.ts +++ b/translations/client_id.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Belum ada akun terkonfigurasi - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Hidupkan enkripsi + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. Akun ini mendukung enkripsi end-to-end - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. Mohon untuk memasukkan kata sandi (passphrase) enkripsi end to end Anda: <br><br>Pengguna: %2<br>Akun: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1833,7 +1853,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2572,6 +2592,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Tutup + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2904,60 +2929,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + 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! @@ -3061,144 +3086,144 @@ Note that using any logging command line options will override this setting. 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/> - + Invalid URL URL Tidak Valid - + 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 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + 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. - + There was an invalid response to an authenticated WebDAV request - + 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 … - + 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 - + Cannot 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> @@ -3376,7 +3401,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3593,46 +3618,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3653,7 +3678,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4439,7 +4464,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4449,38 +4474,38 @@ Server replied with error: %2 - + Unresolved conflict. - + 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. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal @@ -4490,12 +4515,12 @@ Server replied with error: %2 - + 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. @@ -4624,24 +4649,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4833,8 +4858,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4842,8 +4867,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5547,67 +5572,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb Jangan diganggu - + Mute all notifications Bisukan semua notifikasi - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message Tetapkan status pesan @@ -5829,7 +5854,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_is.ts b/translations/client_is.ts index 85cda5c3d84e1..2ce6390a5ea4a 100644 --- a/translations/client_is.ts +++ b/translations/client_is.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -411,12 +411,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -441,13 +441,13 @@ Enginn aðgangur stilltur. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -455,6 +455,11 @@ Enable encryption Virkja dulritun + + + End-to-end encryption has been enabled for this account + + Warning @@ -613,7 +618,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -622,6 +627,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ gagnageymslur: Þessi aðgangur styður enda-í-enda dulritun - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ gagnageymslur: Settu inn lykilorð fyrir enda-í-enda dulritun:<br><br>Notandi: %2<br>Aðgangur: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1836,7 +1856,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2573,6 +2593,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Loka + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2906,60 +2931,60 @@ niðurhals. Uppsetta útgáfan er %3.</p> - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Staðvær samstillingarmappa - - + + (%1) (%1) - + There isn't enough free space in the local folder! Það er ekki nægilegt laust pláss eftir í staðværu möppunni! @@ -3063,145 +3088,145 @@ niðurhals. Uppsetta útgáfan er %3.</p> OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Tókst að tengjast við %1: %2 útgáfa %3 (%4)</font><br/><br/> - + Invalid URL Ógild slóð - + Failed to connect to %1 at %2:<br/>%3 Tókst ekki að tengjast %1 á %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Féll á tíma þegar reynt var að tengjast við %1 á %2. - + Trying to connect to %1 at %2 … Reyni að tengjast við %1 á %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> - + Creating local sync folder %1 … Bý til staðværu samstillingarmöppuna %1 … - + OK - + failed. mistókst. - + Could not create local folder %1 Gat ekki búið til staðværu möppuna %1 - + No remote folder specified! Engin fjartengd mappa tilgreind! - + Error: %1 Villa: %1 - + creating folder on Nextcloud: %1 bý til möppu á Nextcloud: %1 - + Remote folder %1 created successfully. Það tókst að búa til fjartengdu möppuna %1. - + The remote folder %1 already exists. Connecting it for syncing. - - + + 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! Tenging við %1 tókst! - + Connection to %1 could not be established. Please check again. Ekki tókst að koma á tengingu við %1. Prófaðu aftur. - + Folder rename failed Endurnefning möppu mistókst - + Cannot 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> <font color="green"><b>Það tókst að búa til staðværu möppuna %1!</b></font> @@ -3379,7 +3404,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3596,46 +3621,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3656,7 +3681,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4444,7 +4469,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4454,38 +4479,38 @@ Server replied with error: %2 - + Unresolved conflict. Óleystur árekstur. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Einungis %1 eru tiltæk, þarf a.m.k. %2 til að ræsa - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Mistókst að opna eða búa til atvikaskrána. Gakktu úr skugga um að þú hafir les- og skrifheimildir í staðværu samstillingarmöppunni á tölvunni. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. Tekst ekki að lesa úr atvikaskrá samstillingar. - + Cannot open the sync journal Tekst ekki að opna atvikaskrá samstillingar @@ -4495,12 +4520,12 @@ Server replied with error: %2 - + 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. @@ -4629,24 +4654,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 skjáborðsforrit</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Þessi útgáfa var gefin út af %1</p> @@ -4839,8 +4864,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4848,8 +4873,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5553,67 +5578,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5835,7 +5860,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Byggt með Git revision <a href="%1">%2</a> á %3, %4 með Qt %5, %6</small></p> diff --git a/translations/client_it.ts b/translations/client_it.ts index 0a670f0697efb..f209e1336c8c8 100644 --- a/translations/client_it.ts +++ b/translations/client_it.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Cancella il messaggio di stato @@ -410,12 +410,12 @@ Sembra che tu abbia la funzione File Virtuali attiva in questa cartella. Al momento, non è possibile scaricare implicitamente file virtuali che sono cifrati end-to-end. Per avere la migliore esperienza con i file virtuali e la crittografia end-to-end, assicurati che la cartella cifrata sia contrassegnata con "Rendi sempre disponibile in locale". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Nessun account configurato. + + + Disable encryption + + Display mnemonic Visualizza mnemonico - - - End-to-end encryption has been enabled for this account - - Enable encryption Abilita cifratura + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Questa azione interromperà qualsiasi sincronizzazione attualmente in esecuzione - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Questa azione interromperà qualsiasi sincronizzazione attualmente in esecuzione 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Questa azione interromperà qualsiasi sincronizzazione attualmente in esecuzione Questo account supporta la cifratura End-To-End - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Questa azione interromperà qualsiasi sincronizzazione attualmente in esecuzione Digita la tua frase segreta di cifratura end-to-end: <br><br>Utente: %2<br>Account: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1847,7 +1867,7 @@ Se è stato un errore e decidi di tenere i file, saranno sincronizzati nuovament - - %1 + Could not decrypt! @@ -2588,6 +2608,11 @@ Gli elementi per i quali è consentita l'eliminazione saranno eliminati se Close Chiudi + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2921,60 +2946,60 @@ Nota che l'utilizzo di qualsiasi opzione della riga di comando di registraz - + Use &virtual files instead of downloading content immediately %1 Usa i file &virtuali invece di scaricare immediatamente il contenuto %1 - + (experimental) (sperimentale) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. I file virtuali non sono supportati per le radici delle partizioni di Windows come cartelle locali. Scegli una sottocartella valida sotto la lettera del disco. - + %1 folder "%2" is synced to local folder "%3" La cartella "%2" di %1 è sincronizzata con la cartella locale "%3" - + Sync the folder "%1" Sincronizza la cartella "%1" - + Warning: The local folder is not empty. Pick a resolution! Attenzione: la cartella locale non è vuota. Scegli una soluzione! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB Spazio libero di %1 - + Virtual files are not available for the selected folder I file virtuali non sono disponibili per la cartella selezionata - + Local Sync Folder Cartella locale di sincronizzazione - - + + (%1) (%1) - + There isn't enough free space in the local folder! Non c'è spazio libero sufficiente nella cartella locale! @@ -3078,144 +3103,144 @@ Nota che l'utilizzo di qualsiasi opzione della riga di comando di registraz OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Connesso correttamente a %1: %2 versione %3 (%4)</font><br/><br/> - + Invalid URL URL non valido - + Failed to connect to %1 at %2:<br/>%3 Connessione a %1 su %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Tempo scaduto durante il tentativo di connessione a %1 su %2. - + Trying to connect to %1 at %2 … Tentativo di connessione a %1 su %2... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. La richiesta autenticata al server è stata rediretta a "%1". L'URL è errato, il server non è configurato correttamente. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Accesso negato dal server. Per verificare di avere i permessi appropriati, <a href="%1">fai clic qui</a> per accedere al servizio con il tuo browser. - + There was an invalid response to an authenticated WebDAV request Ricevuta una risposta non valida a una richiesta WebDAV autenticata - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> La cartella di sincronizzazione locale %1 esiste già, impostata per la sincronizzazione.<br/><br/> - + Creating local sync folder %1 … Creazione della cartella locale di sincronizzazione %1... - + OK OK - + failed. non riuscita. - + Could not create local folder %1 Impossibile creare la cartella locale %1 - + No remote folder specified! Nessuna cartella remota specificata! - + Error: %1 Errore: %1 - + creating folder on Nextcloud: %1 creazione cartella su Nextcloud: %1 - + Remote folder %1 created successfully. La cartella remota %1 è stata creata correttamente. - + The remote folder %1 already exists. Connecting it for syncing. La cartella remota %1 esiste già. Connessione in corso per la sincronizzazione - - + + The folder creation resulted in HTTP error code %1 La creazione della cartella ha restituito un codice di errore HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> La creazione della cartella remota non è riuscita poiché le credenziali fornite sono errate!<br/>Torna indietro e verifica le credenziali.</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> <p><font color="red">La creazione della cartella remota non è riuscita probabilmente perché le credenziali fornite non sono corrette.</font><br/>Torna indietro e controlla le credenziali inserite.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Creazione della cartella remota %1 non riuscita con errore <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Una connessione di sincronizzazione da %1 alla cartella remota %2 è stata stabilita. - + Successfully connected to %1! Connesso con successo a %1! - + Connection to %1 could not be established. Please check again. La connessione a %1 non può essere stabilita. Prova ancora. - + Folder rename failed Rinomina della cartella non riuscita - + Cannot 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. Impossibile rimuovere o copiare la cartella poiché la cartella o un file contenuto in essa è aperto in un altro programma. Chiudi la cartella o il file e premi Riprova o annulla la configurazione. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Cartella locale %1 creata correttamente!</b></font> @@ -3393,7 +3418,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Impossibile sincronizzare a causa di un orario di modifica non valido - + Error while deleting file record %1 from the database Errore nella rilevazione del record del file %1 dal database @@ -3610,46 +3635,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Il file %1 non può essere rinominato in %2 per un conflitto con il nome di un file locale - - - + + + could not get file %1 from local DB impossibile ottenere il file %1 dal DB locale - + Error setting pin state Errore durante l'impostazione dello stato del PIN - - + + Error updating metadata: %1 Errore di invio dei metadati: %1 - + The file %1 is currently in use Il file %1 è attualmente in uso - - + + Could not delete file record %1 from local DB Impossibile eliminare il record del file %1 dal DB locale - + Failed to propagate directory rename in hierarchy - + Failed to rename file Rinominazione file non riuscita @@ -3670,7 +3695,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Codice HTTP errato restituito dal server. Atteso 204, ma ricevuto "%1 %2". @@ -4458,7 +4483,7 @@ Server replied with error: %2 Impossibile aggiornare i metadati dei file virtuali: %1 - + Could not update file metadata: %1 @@ -4468,38 +4493,38 @@ Server replied with error: %2 Impossibile impostare il record del file nel DB locale: %1 - + Unresolved conflict. Conflitto non risolto - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Sono disponibili solo %1, servono almeno %2 per iniziare - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Impossibile aprire o creare il database locale di sincronizzazione. Assicurati di avere accesso in scrittura alla cartella di sincronizzazione. - + Using virtual files with suffix, but suffix is not set Utilizzo di file virtuali con suffisso, ma il suffisso non è impostato - + Unable to read the blacklist from the local database Impossibile leggere la lista nera dal database locale - + Unable to read from the sync journal. Impossibile leggere dal registro di sincronizzazione. - + Cannot open the sync journal Impossibile aprire il registro di sincronizzazione @@ -4509,12 +4534,12 @@ Server replied with error: %2 La sincronizzazione riprenderà a breve. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Lo spazio su disco è basso: gli scaricamenti che potrebbero ridurre lo spazio libero sotto %1 saranno saltati. - + There is insufficient space available on the server for some uploads. Spazio disponibile insufficiente sul server per alcuni caricamenti. @@ -4643,24 +4668,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Client desktop di %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versione %1. Per ulteriori informazioni, fai clic <a href='%2'>qui</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Usato il plugin dei file virtuali: %1</small></p> - + <p>This release was supplied by %1</p> <p>Questa versione è stata fornita da %1</p> @@ -4852,8 +4877,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Errore di aggiornamento dei metadati a causa dell'orario di modifica non valido @@ -4861,8 +4886,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Errore di aggiornamento dei metadati a causa dell'orario di modifica non valido @@ -5566,67 +5591,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Stato in linea - + Online In linea - + Away Assente - + Do not disturb Non disturbare - + Mute all notifications Silenzia tutte le notifiche - + Invisible Invisibile - + Appear offline Appari non in linea - + Status message Messaggio di stato - + What is your status? Qual è il tuo stato? - + Clear status message after Cancella il messaggio di stato dopo - + Cancel Annulla - + Clear status message Cancella il messaggio di stato - + Set status message Imposta il messaggio di stato @@ -5848,7 +5873,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Compilato dalla revisione Git <a href="%1">%2</a> il %3, %4 utilizzando Qt %5, %6</small></p> diff --git a/translations/client_ja.ts b/translations/client_ja.ts index 124448c08af76..eb9092920329b 100644 --- a/translations/client_ja.ts +++ b/translations/client_ja.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu メニューのステータスメッセージの削除 @@ -410,12 +410,12 @@ このフォルダでは仮想ファイル機能が有効になっているようです。現時点では、エンドツーエンドで暗号化された仮想ファイルをバックグラウンドで暗黙的にダウンロードすることはできません。仮想ファイルとエンドツーエンド暗号化を最大限に活用するには、暗号化されたフォルダーに「ローカルで常に利用可能にする」というマークが付いていることを確認してください。 - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. アカウントが未設定です。 + + + Disable encryption + + Display mnemonic ニーモニックを表示 - - - End-to-end encryption has been enabled for this account - - Enable encryption 暗号化を有効にする + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ This action will abort any currently running synchronization. エンドツーエンドの暗号化ニーモニック - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ This action will abort any currently running synchronization. このアカウントはE2E暗号化に対応しています - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ This action will abort any currently running synchronization. エンドツーエンドの暗号化パスフレーズを入力してください:<br> <br>ユーザー:%2<br>アカウント:%3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1846,7 +1866,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2588,6 +2608,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close 閉じる + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2923,60 +2948,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 コンテンツをすぐにダウンロードする代わりに &仮想ファイルを使用する %1 - + (experimental) (試験的) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. 仮想ファイルは、ローカルフォルダーのWindowsルートパーティションではサポートされていません。ドライブレターの下の有効なサブフォルダを選択してください。 - + %1 folder "%2" is synced to local folder "%3" %1 のフォルダー "%2" はローカルフォルダー "%3" と同期しています - + Sync the folder "%1" "%1" フォルダーを同期 - + Warning: The local folder is not empty. Pick a resolution! 警告: ローカルフォルダーは空ではありません。対処法を選択してください! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB 空き容量 %1 - + Virtual files are not available for the selected folder 選択したフォルダーで仮想ファイルが使用できません - + Local Sync Folder ローカル同期フォルダー - - + + (%1) (%1) - + There isn't enough free space in the local folder! ローカルフォルダーに十分な空き容量がありません。 @@ -3080,144 +3105,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">正常に %1 へ接続されました:%2 バージョン %3 (%4)</font><br/><br/> - + Invalid URL 無効なURL - + Failed to connect to %1 at %2:<br/>%3 %2 の %1 に接続に失敗:<br/>%3 - + Timeout while trying to connect to %1 at %2. %2 の %1 へ接続を試みた際にタイムアウトしました。 - + Trying to connect to %1 at %2 … %2 の %1 へ接続を試みています… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. サーバーへの認証リクエストは "%1" へリダイレクトされました。URLが正しくありません。サーバーが間違って設定されています。 - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. サーバーによってアクセスが拒否されています。適切なアクセス権があるか検証するには、<a href="%1">ここをクリック</a>してブラウザーでサービスにアクセスしてください。 - + There was an invalid response to an authenticated WebDAV request 認証済みの WebDAV 要求に対する無効な応答がありました - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> ローカルの同期フォルダー %1 はすでに存在するため、同期の設定をしてください。<br/><br/> - + Creating local sync folder %1 … ローカル同期フォルダー %1 を作成中… - + OK OK - + failed. 失敗。 - + Could not create local folder %1 ローカルフォルダー %1 を作成できませんでした - + No remote folder specified! リモートフォルダーが指定されていません! - + Error: %1 エラー: %1 - + creating folder on Nextcloud: %1 Nextcloud上にフォルダーを作成中:%1 - + Remote folder %1 created successfully. リモートフォルダー %1 は正常に生成されました。 - + The remote folder %1 already exists. Connecting it for syncing. リモートフォルダー %1 はすでに存在します。同期のために接続しています。 - - + + The folder creation resulted in HTTP error code %1 フォルダーの作成はHTTPのエラーコード %1 で終了しました - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> 指定された資格情報が間違っているため、リモートフォルダーの作成に失敗しました!<br/>前に戻って資格情報を確認してください。</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> <p><font color="red">おそらく資格情報が間違っているため、リモートフォルダーの作成に失敗しました。</font><br/>前に戻り、資格情報をチェックしてください。</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. リモートフォルダー %1 の作成がエラーで失敗しました。<tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. %1 からリモートディレクトリ %2 への同期接続を設定しました。 - + Successfully connected to %1! %1への接続に成功しました! - + Connection to %1 could not be established. Please check again. %1 への接続を確立できませんでした。もう一度確認してください。 - + Folder rename failed フォルダー名の変更に失敗しました。 - + Cannot 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> <font color="green"><b>ローカルの同期フォルダー %1 は正常に作成されました!</b></font> @@ -3401,7 +3426,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss 修正日時が無効なため同期できません - + Error while deleting file record %1 from the database @@ -3618,46 +3643,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash ローカルファイル名が衝突しているため、ファイル %1 の名前を %2 に変更できません - - - + + + could not get file %1 from local DB - + Error setting pin state お気に入りに設定エラー - - + + Error updating metadata: %1 メタデータの更新中にエラーが発生しました:%1 - + The file %1 is currently in use ファイル %1 は現在使用中です - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file ファイル名を変更できませんでした @@ -3678,7 +3703,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". 誤ったHTTPコードがサーバーから返されました。204 を期待しましたが、"%1 %2" が返りました。 @@ -4466,7 +4491,7 @@ Server replied with error: %2 仮想ファイルのメタデータを更新できませんでした: %1 - + Could not update file metadata: %1 @@ -4476,38 +4501,38 @@ Server replied with error: %2 - + Unresolved conflict. 未解決の競合。 - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() %1 しか空き容量がありません、開始するためには少なくとも %2 は必要です。 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. ローカル同期データベースを開いたり作成できません。 同期フォルダーに書き込み権限があることを確認してください。 - + Using virtual files with suffix, but suffix is not set サフィックス付きの仮想ファイルを使用していますが、サフィックスが設定されていません - + Unable to read the blacklist from the local database ローカルデータベースからブラックリストを読み込みできません - + Unable to read from the sync journal. 同期ジャーナルから読み込みできません - + Cannot open the sync journal 同期ジャーナルを開くことができません @@ -4517,12 +4542,12 @@ Server replied with error: %2 まもなく同期が再開されます。 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. ディスク容量が少ない:%1以下の空き容量を減らすダウンロードはスキップされました。 - + There is insufficient space available on the server for some uploads. いくつかのアップロードのために、サーバーに十分なスペースがありません。 @@ -4651,24 +4676,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 デスクトップクライアント</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>バージョン %1. 詳細な情報は<a href='%2'>ここ</a>をクリックしてください。</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>仮想ファイルシステムプラグインを利用:%1</small></p> - + <p>This release was supplied by %1</p> <p>このリリースは%1によって提供されました</p> @@ -4860,8 +4885,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time 修正日時が無効なためメタデータの更新時にエラーが発生 @@ -4869,8 +4894,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time 修正日時が無効なためメタデータの更新時にエラーが発生 @@ -5574,67 +5599,67 @@ Server replied with error: %2 UserStatusSelector - + Online status オンラインステータス - + Online オンライン - + Away 離席中 - + Do not disturb 取り込み中 - + Mute all notifications 全ての通知をミュート - + Invisible オフライン - + Appear offline オフライン - + Status message ステータスメッセージ - + What is your status? 現在のオンラインステータスは? - + Clear status message after メッセージ有効期限 - + Cancel キャンセル - + Clear status message ステータスメッセージを消去 - + Set status message ステータスメッセージを設定 @@ -5856,7 +5881,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small><a href="%1">%2</a> %3, %4 のGitリビジョンからのビルド Qt %5, %6 を利用</small></p> diff --git a/translations/client_ko.ts b/translations/client_ko.ts index a2aa585166af5..ed20fd036be03 100644 --- a/translations/client_ko.ts +++ b/translations/client_ko.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu 상태 메시지 메뉴 지우기 @@ -410,12 +410,12 @@ 이 폴더에 가상 파일 기능이 활성화된 것 같습니다. 종단간 암호화 된 가상 파일은 다운로드 할 수 없습니다. 종단간 암호화와 가상 파일 기능의 원활한 동작을 위해 암호화된 폴더가 "로컬에서 항상 사용 가능"한지 확인하십시오. - + End-to-end Encryption with Virtual Files 가상 파일과 종단간 암호화 - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. 설정한 계정이 없습니다. + + + Disable encryption + + Display mnemonic 니모닉 표시 - - - End-to-end encryption has been enabled for this account - 이 계정에 종단간 암호화가 활성화됨 - Enable encryption 암호화 사용 + + + End-to-end encryption has been enabled for this account + 이 계정에 종단간 암호화가 활성화됨 + Warning @@ -616,7 +621,7 @@ This action will abort any currently running synchronization. 종단간 암호화 연상 기호 - + End-to-end encryption mnemonic 종단간 암호화 연상 기호 @@ -625,6 +630,21 @@ This action will abort any currently running synchronization. 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). 암호화 신원을 보호하기 위해 12개의 사전 단어를 연상 기호로 사용하여 암호화합니다. 이 내용을 기록하고 안전하게 보관하십시오. 휴대전화나 노트북과 같은 다른 기기를 계정에 추가해야합니다. + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ This action will abort any currently running synchronization. 이 계정은 종단간 암호화를 지원합니다. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ This action will abort any currently running synchronization. 종단간의 암호화 암구호를 입력하십시오: <br><br>사용자: %2<br>계정: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1846,7 +1866,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2590,6 +2610,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close 닫기 + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2926,61 +2951,61 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 컨텐츠를 즉시 다운로드 하는 대신 &가상 파일을 사용하십시오 %1 - + (experimental) (실험적) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. 가상 파일은 윈도우 파티션 루트에 로컬 폴더로 지원되지 않습니다. 드라이브 문자가 지정된 유효한 하위 폴더를 선택하십시오. - + %1 folder "%2" is synced to local folder "%3" %1 폴더 "%2"(이)가 로컬 폴더 '%3'(으)로 동기화되었습니다. - + Sync the folder "%1" 폴더 '%1' 동기화 - + Warning: The local folder is not empty. Pick a resolution! 경고: 로컬 폴더가 비어있지 않습니다. 해결 방법을 선택하십시오! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 남은 공간 - + Virtual files are not available for the selected folder 가상 파일을 선택한 폴더에서 사용할 수 없음 - + Local Sync Folder 로컬 동기화 폴더 - - + + (%1) (%1) - + There isn't enough free space in the local folder! 로컬 폴더에 공간이 부족합니다! @@ -3084,144 +3109,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">%1에 성공적으로 연결되었습니다: %2 버전 %3 (%4)</font><br/><br/> - + Invalid URL 잘못된 URL - + Failed to connect to %1 at %2:<br/>%3 %2에서 %1와 연결이 실패했습니다:<br/>%3 - + Timeout while trying to connect to %1 at %2. %2에서 %1와 연결을 시도하는 중 시간이 만료되었습니다. - + Trying to connect to %1 at %2 … %2에서 %1와 연결을 시도하는 중... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. 서버에 대한 인증 된 요청이 '%1'로 리디렉션되었습니다. URL이 잘못되어 서버가 잘못 구성되었습니다. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. 서버에서 액세스가 금지되었습니다. 올바른 액세스 권한이 있는지 확인하려면 <a href="%1">여기</a>를 클릭하여 브라우저로 서비스에 액세스하십시오. - + There was an invalid response to an authenticated WebDAV request 인증된 WebDAV 요청에 대한 응답이 잘못되었습니다. - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> 로컬 동기화 폴더 %1이 이미 존재하며, 동기화 하도록 설정했습니다.<br/><br/> - + Creating local sync folder %1 … 로컬 동기화 폴더 %1 생성 중... - + OK 확인 - + failed. 실패 - + Could not create local folder %1 로컬 폴더 %1을 만들 수 없음 - + No remote folder specified! 원격 폴더가 지정되지 않음 - + Error: %1 오류: %1 - + creating folder on Nextcloud: %1 Nextcloud에 폴더 생성 중: %1 - + Remote folder %1 created successfully. 원격 폴더 %1ㅣ 성공적으로 생성되었습니다. - + The remote folder %1 already exists. Connecting it for syncing. 원격 폴더 %1이 이미 존재합니다. 동기화를 위해 연결합니다. - - + + The folder creation resulted in HTTP error code %1 폴더 생성으로 인해 HTTP 오류 코드 %1이 발생했습니다. - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> 제공된 자격 증명이 잘못되어 원격 폴더 생성에 실패했습니다.<br/>돌아가서 자격 증명을 확인하십시오.</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> <p><font color="red">제공된 자격 증명이 잘못되어 원격 폴더 생성에 실패했을 수 있습니다.</font><br/>돌아가서 자격 증명을 확인하십시오.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. 원격 폴더 %1 생성이 오류 <tt>%2</tt>로 인해 실패했습니다. - + A sync connection from %1 to remote directory %2 was set up. %1에서 원격 디렉토리 %2에 대한 동기화 연결이 설정되었습니다. - + Successfully connected to %1! %1와 성공적으로 연결되었습니다. - + Connection to %1 could not be established. Please check again. %1와 연결을 수립할 수 없습니다. 다시 확인해주십시오. - + Folder rename failed 폴더 이름을 바꿀 수 없음 - + Cannot 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> <font color="green"><b>로컬 동기화 폴더 %1이 성공적으로 생성되었습니다!</b></font> @@ -3405,7 +3430,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss 유효하지 않은 수정 시간으로 인해 동기화할 수 없습니다. - + Error while deleting file record %1 from the database 파일 레코드 %1(을)를 데이터베이스에서 제거하는 중 오류 발생 @@ -3622,46 +3647,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash 로컬 파일 이름 충돌로 인해 파일 %1의 이름을 %2로 바꿀 수 없습니다. - - - + + + could not get file %1 from local DB 로컬 데이터베이스에서 파일 %1을(를) 불러올 수 없음 - + Error setting pin state 핀 상태 설정 오류 - - + + Error updating metadata: %1 메타데이터 갱신 오류: %1 - + The file %1 is currently in use 파일 %1(이)가 현재 사용 중입니다. - - + + Could not delete file record %1 from local DB 로컬 데이터베이스에서 파일 레코드 %1을(를) 제거할 수 없음 - + Failed to propagate directory rename in hierarchy - + Failed to rename file 파일 이름을 바꾸지 못했습니다. @@ -3682,7 +3707,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". 서버에서 잘못된 HTTP 코드를 반환했습니다. 204가 받아지는 대신 "1 %2"을 받았습니다. @@ -4470,7 +4495,7 @@ Server replied with error: %2 가상 파일 메타데이터를 업데이트할 수 없음: %1 - + Could not update file metadata: %1 파일 메타데이터를 업로드할 수 없음: %1 @@ -4480,38 +4505,38 @@ Server replied with error: %2 로컬 데이터베이스에서 파일 레코드 %1을(를) 설정할 수 없음 - + Unresolved conflict. 해결되지 않은 충돌 - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() %1 만 사용할 수 있습니다. 시작하려면 %2 이상이 필요합니다 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. 로컬 동기화 데이터베이스를 열거나 만들 수 없습니다. 동기화 폴더에 대한 쓰기 권한이 있는지 확인하십시오. - + Using virtual files with suffix, but suffix is not set 가상 파일에 접미사를 사용 중이나, 접미사가 설정되지 않음 - + Unable to read the blacklist from the local database 로컬 데이터베이스에서 블랙리스트를 읽을 수 없습니다. - + Unable to read from the sync journal. 동기화 저널에서 읽을 수 없습니다. - + Cannot open the sync journal 동기화 저널을 열 수 없습니다. @@ -4521,12 +4546,12 @@ Server replied with error: %2 동기화가 곧 재개됩니다. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. 디스크 공간이 부족합니다. 여유 공간이 %1 미만으로 남으면 다운로드를 건너 뜁니다. - + There is insufficient space available on the server for some uploads. 일부 업로드를 위해 서버에 사용 가능한 공간이 부족합니다. @@ -4655,24 +4680,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 데스크톱 클라이언트</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>버전 %1. 더 많은 정보를 보려면 <a href='%2'>여기</a>를 클릭하세요.</p> - + <p><small>Using virtual files plugin: %1</small></p> <small><p>가상 파일 플러그인 사용: %1</small></p> - + <p>This release was supplied by %1</p> <p>이 릴리스는 %1에 의해 제공되었습니다.</p> @@ -4864,8 +4889,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time 유효하지 않은 수정 시간으로 인한 메타데이터 업데이트 오류 @@ -4873,8 +4898,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time 유효하지 않은 수정 시간으로 인한 메타데이터 업데이트 오류 @@ -5578,67 +5603,67 @@ Server replied with error: %2 UserStatusSelector - + Online status 온라인 상태 - + Online 온라인 - + Away 자리 비움 - + Do not disturb 방해하지 마십시오 - + Mute all notifications 모든 알림 음소거 - + Invisible 숨겨짐 - + Appear offline 오프라인으로 표시 - + Status message 상태 메시지 - + What is your status? 당신의 상태는 무엇입니까? - + Clear status message after 이후 상태 메시지 삭제 - + Cancel 취소 - + Clear status message 상태 메시지 삭제 - + Set status message 상태 메시지 설정 @@ -5860,7 +5885,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Git 개정 <a href="%1">%2</a>에서 Qt %5, %6을 사용하여 %3, %4의 빌드</small></p> diff --git a/translations/client_lt_LT.ts b/translations/client_lt_LT.ts index 6e5198471519d..756bd817eb185 100644 --- a/translations/client_lt_LT.ts +++ b/translations/client_lt_LT.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Nėra sukonfiguruotų paskyrų. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Įjungti šifravimą + + + End-to-end encryption has been enabled for this account + + Warning @@ -612,7 +617,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -621,6 +626,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -743,12 +763,12 @@ This action will abort any currently running synchronization. Ši paskyra palaiko ištisinį šifravimą - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1041,7 +1061,7 @@ This action will abort any currently running synchronization. Įveskite savo ištisinio šifravimo slaptafrazę:<br><br>Naudotojas: %2<br>Paskyra: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1833,7 +1853,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2576,6 +2596,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Užverti + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2908,60 +2933,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Sinchronizavimo aplankas kompiuteryje - - + + (%1) (%1) - + There isn't enough free space in the local folder! Vietiniame aplanke nepakanka laisvos vietos! @@ -3065,144 +3090,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Sėkmingai prisijungė prie %1: %2 versija %3 (%4)</font><br/><br/> - + Invalid URL Neteisingas URL - + Failed to connect to %1 at %2:<br/>%3 %2 nepavyko prisijungti prie %1: <br/>%3 - + Timeout while trying to connect to %1 at %2. %2 prisijungimui prie %1 laikas pasibaigė. - + Trying to connect to %1 at %2 … Bandoma prisijungti prie %1 ties %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Prieigą apribojo serveris. Norėdami įsitikinti, kad turite tinkamą prieigą, <a href="%1">spustelėkite čia</a>ir paslauga bus atidaryta jūsų naršyklėje. - + There was an invalid response to an authenticated WebDAV request Neteisingas atsakymas į patvirtintą „WebDAV“ užklausą - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Sinchronizavimo aplankas %1 jau yra kompiuteryje, ruošiama sinchronizuoti.<br/><br/> - + Creating local sync folder %1 … Kuriamas vietinis sinchronizavimo aplankas %1… - + OK Gerai - + failed. nepavyko. - + Could not create local folder %1 Nepavyko sukurti vietinio aplanko %1 - + No remote folder specified! Nenurodytas nuotolinis aplankas! - + Error: %1 Klaida: %1 - + creating folder on Nextcloud: %1 kuriamas aplankas Nextcloud: %1 - + Remote folder %1 created successfully. Nuotolinis aplankas %1 sėkmingai sukurtas. - + The remote folder %1 already exists. Connecting it for syncing. Serverio aplankas %1 jau yra. Prisijunkite jį sinchronizavimui. - - + + The folder creation resulted in HTTP error code %1 Aplanko sukūrimas sąlygojo HTTP klaidos kodą %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Nepavyko sukurti aplanko serveryje dėl neteisingų prisijungimo duomenų! <br/>Grįžkite ir įsitinkite, kad prisijungimo duomenys teisingai.</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> <p><font color="red">Nepavyko sukurti aplanko serveryje dėl neteisingų prisijungimo duomenų.</font><br/>Grįžkite ir įsitinkite, kad prisijungimo duomenys teisingai.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Nepavyko sukurti aplanko %1 serveryje, klaida <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Sinchronizavimo ryšys su %1 su nuotoliniu katalogu %2 buvo nustatytas. - + Successfully connected to %1! Sėkmingai prisijungta prie %1! - + Connection to %1 could not be established. Please check again. Susijungti su %1 nepavyko. Pabandykite dar kartą. - + Folder rename failed Nepavyko pervadinti aplanką - + Cannot 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> <font color="green"><b>Sinchronizavimo aplankas %1 kompiuteryje buvo sėkmingai sukurtas! </b></font> @@ -3380,7 +3405,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3597,46 +3622,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB nepavyko iš vietinės duomenų bazės gauti failo %1 - + Error setting pin state - - + + Error updating metadata: %1 Klaida atnaujinant metaduomenis: %1 - + The file %1 is currently in use Šiuo metu failas %1 yra naudojamas - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Nepavyko pervadinti failo @@ -3657,7 +3682,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4445,7 +4470,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4455,38 +4480,38 @@ Server replied with error: %2 - + Unresolved conflict. Neišspręstas konfliktas. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Leidžiami tik %1, būtina bent %2, kad galėtumėte pradėti - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Nepavyko atverti ar sukurti sinchronizavimo duomenų bazės kompiuteryje. Įsitikinkite, kad į sinchronizavimo aplanką galite rašyti. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Nepavyko perskaityti juodojo sąrašo iš duomenų bazės kompiuteryje - + Unable to read from the sync journal. Nepavyko perskaityti sinchronizavimo žurnalo. - + Cannot open the sync journal Nepavyksta atverti sinchronizavimo žurnalo @@ -4496,12 +4521,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Mažai vietos diske: atsisiuntimai, kurie sumažintų vietą iki %1 buvo praleisti. - + There is insufficient space available on the server for some uploads. Kai kuriems įkėlimams serveryje neužteks vietos. @@ -4630,24 +4655,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 darbalaukio kliento programa</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versija %1. Išsamesnei informacijai, spustelėkite <a href='%2'>čia</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Šį išleidimą pateikė %1</p> @@ -4839,8 +4864,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4848,8 +4873,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5262,7 +5287,7 @@ Server replied with error: %2 %n hours ago - prieš %n valandąprieš %n valandasprieš %n valandųprieš %n valandų + prieš %n valandąprieš %n valandasprieš %n valandųprieš %n valandą @@ -5277,7 +5302,7 @@ Server replied with error: %2 %n minute ago - prieš %n minutęprieš %n minutesprieš %n minučiųprieš %n minučių + prieš %n minutęprieš %n minutesprieš %n minučiųprieš %n minutę @@ -5553,67 +5578,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message Būsenos žinutė - + What is your status? Kokia jūsų būsena? - + Clear status message after Išvalyti būsenos žinutę po - + Cancel Atsisakyti - + Clear status message Išvalyti būsenos žinutę - + Set status message Nustatyti būsenos žinutę @@ -5835,7 +5860,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Pagaminta pagal Git redakciją <a href="%1">%2</a>išleistą %3, %4 naudojant Qt %5, %6</small></p> diff --git a/translations/client_lv.ts b/translations/client_lv.ts index 3cdd53d1a548f..f72aaf34a365a 100644 --- a/translations/client_lv.ts +++ b/translations/client_lv.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Nav konfigurēts konts. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Ieslēgt šifrēšanu + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. Lūdzu ievadiet jūsu end to end šifrēšanas paroli:<br><br>Lietotājs: %2<br>Konts: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2566,6 +2586,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2898,60 +2923,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder - - + + (%1) - + There isn't enough free space in the local folder! @@ -3055,144 +3080,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> - + Invalid URL - + Failed to connect to %1 at %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> - + Creating local sync folder %1 … - + OK - + failed. - + Could not create local folder %1 - + No remote folder specified! - + Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. - + The remote folder %1 already exists. Connecting it for syncing. - - + + 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 - + Cannot 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> @@ -3370,7 +3395,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3587,46 +3612,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3647,7 +3672,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4433,7 +4458,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4443,38 +4468,38 @@ Server replied with error: %2 - + Unresolved conflict. - + 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. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal Nevar atvērt sinhronizācijas žurnālu @@ -4484,12 +4509,12 @@ Server replied with error: %2 - + 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. @@ -4618,24 +4643,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Šo izlaidumu piegādāja %1</p> @@ -4827,8 +4852,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4836,8 +4861,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5541,67 +5566,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Tiešsaistes statuss - + Online Tiešsaistē - + Away Prom - + Do not disturb Netraucēt - + Mute all notifications - + Invisible Neredzams - + Appear offline - + Status message Statusa ziņojums - + What is your status? - + Clear status message after Notīrīt statusa ziņojumu pēc - + Cancel - + Clear status message Notīrīt statusa ziņojumu - + Set status message Iestatīt statusa ziņojumu @@ -5823,7 +5848,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Būvēta no Git revīzijas <a href="%1">%2</a> uz %3, %4 izmantojot Qt %5, %6</small></p> diff --git a/translations/client_mk.ts b/translations/client_mk.ts index bff1710eb7878..47086c0f33d86 100644 --- a/translations/client_mk.ts +++ b/translations/client_mk.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Нема конфигурирано сметка. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Овозможи енкрипција + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. На оваа сметка е овозможена крај-до-крај енкрипција - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1831,7 +1851,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2573,6 +2593,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Затвори + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2905,60 +2930,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (експериментално) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" Синхронизирај ја папката "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 слободен простор - + Virtual files are not available for the selected folder Не се достапни виртуелни датотеки за избраната папка - + Local Sync Folder Локална синхронизирана папка - - + + (%1) (%1) - + There isn't enough free space in the local folder! Нема доволно простор во локалната папка! @@ -3062,144 +3087,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Успешно поврзување со %1: %2 верзија %3 (%4)</font><br/><br/> - + Invalid URL Невалидна URL - + Failed to connect to %1 at %2:<br/>%3 Неуспешно поврзување со %1 на %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Истече времето за поврзување на %1 во %2. - + Trying to connect to %1 at %2 … Обид за поврзување со %1 во %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Локалната папка %1 веќе постои, поставете ја за синхронизација.<br/><br/> - + Creating local sync folder %1 … Креирање на локална папка за синхронизација %1 … - + OK Добро - + failed. неуспешно. - + Could not create local folder %1 Неможе да се креира локалната папка %1 - + No remote folder specified! Нема избрано папка на серверот! - + Error: %1 Грешка: %1 - + creating folder on Nextcloud: %1 Креирање папка: %1 - + Remote folder %1 created successfully. Папката %1 е успрешно креирана на серверот. - + The remote folder %1 already exists. Connecting it for syncing. Папката %1 веќе постои на серверот. Поврзете се за да ја синхронизирате. - - + + 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> Креирањето на папката на серверот беше неуспешно бидејќи акредитивите се неточни!<br/>Вратете се назад и проверете ги вашите акредитиви.</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> <p><font color="red">Креирањето на папката на серверот беше неуспешно највероватно бидејќи акредитивите се неточни.</font><br/>Вратете се назад и проверете ги вашите акредитиви.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Креирање на папка %1 на серверот беше неуспешно со грешка <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. - + Successfully connected to %1! Успешно поврзување со %1! - + Connection to %1 could not be established. Please check again. Врската со %1 неможе да се воспостави. Пробајте покасно. - + Folder rename failed Неуспешно преименување на папка - + Cannot 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> <font color="green"><b>Локална папка за синхронизација %1 е успешно креирана!</b></font> @@ -3377,7 +3402,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3594,46 +3619,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use Датотеката %1, моментално се користи - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Неуспешно преименување на датотека @@ -3654,7 +3679,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Погрешен HTTP код е испратен од серверот. Се очекува 204, но примено е"%1 %2". @@ -4442,7 +4467,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4452,38 +4477,38 @@ Server replied with error: %2 - + Unresolved conflict. Неразрешен конфликт. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Достапно е %1, потребно е %2 за почеток - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal @@ -4493,12 +4518,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Има малку простор на дискот: Преземањата ќе доведат да просторот на дискот се намали под %1 поради тоа се прескокнува. - + There is insufficient space available on the server for some uploads. @@ -4627,24 +4652,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Клиент за компјутер</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Верзија %1. За повеќе информации кликнете <a href='%2'>тука</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Ова издание е обезбедено од %1</p> @@ -4836,8 +4861,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4845,8 +4870,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5550,67 +5575,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5832,7 +5857,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Изграден од Git ревизија <a href="%1">%2</a> на %3, %4 со користење на Qt %5, %6</small></p> diff --git a/translations/client_nb_NO.ts b/translations/client_nb_NO.ts index 3d569bf9fa34e..b5be9bcd63b33 100644 --- a/translations/client_nb_NO.ts +++ b/translations/client_nb_NO.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ Du ser ut til å ha funksjonen virtuelle filer aktivert på denne mappen. For øyeblikket er det ikke mulig å implisitt laste ned virtuelle filer som er ende-til-ende-kryptert. For å få den beste opplevelsen med virtuelle filer og ende-til-ende-kryptering, sørg for at den krypterte mappen er merket med "Gjør alltid tilgjengelig lokalt". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Ingen konto konfigurert. + + + Disable encryption + + Display mnemonic Vis mnemonic - - - End-to-end encryption has been enabled for this account - - Enable encryption Aktiver kryptering + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Denne handlingen vil avbryte enhver synkronisering som kjører. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Denne handlingen vil avbryte enhver synkronisering som kjører. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Denne handlingen vil avbryte enhver synkronisering som kjører. Denne kontoen støtter ende-til-ende kryptering - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Denne handlingen vil avbryte enhver synkronisering som kjører. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1835,7 +1855,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2574,6 +2594,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Lukk + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2906,60 +2931,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Lokal synkroniseringsmappe - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3063,144 +3088,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Vellykket oppkobling mot %1: %2 versjon %3 (%4)</font><br/><br/> - + Invalid URL Ugyldig URL - + Failed to connect to %1 at %2:<br/>%3 Klarte ikke å koble til %1 på %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Tidsavbrudd ved oppkobling mot %1 på %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Tilgang forbudt av serveren. For å sjekke om du har gyldig tilgang, <a href="%1">klikk her</a> for å aksessere tjenesten med nettleseren din. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Lokal synkroniseringsmappe %1 finnes allerede. Setter den opp for synkronisering.<br/><br/> - + Creating local sync folder %1 … - + OK - + failed. feilet. - + Could not create local folder %1 Klarte ikke å opprette lokal mappe %1 - + No remote folder specified! Ingen ekstern mappe spesifisert! - + Error: %1 Feil: %1 - + creating folder on Nextcloud: %1 oppretter mappe på Nextcloud: %1 - + Remote folder %1 created successfully. Ekstern mappe %1 ble opprettet. - + The remote folder %1 already exists. Connecting it for syncing. Ekstern mappe %1 finnes allerede. Kobler den til for synkronisering. - - + + The folder creation resulted in HTTP error code %1 Oppretting av mappe resulterte i HTTP-feilkode %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Oppretting av ekstern mappe feilet fordi påloggingsinformasjonen er feil!<br/>Gå tilbake og sjekk brukernavnet og passordet ditt.</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> <p><font color="red">Oppretting av ekstern mappe feilet, sannsynligvis fordi oppgitt påloggingsinformasjon er feil.</font><br/>Vennligst gå tilbake og sjekk ditt brukernavn og passord.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Oppretting av ekstern mappe %1 feilet med feil <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. En synkroniseringsforbindelse fra %1 til ekstern mappe %2 ble satt opp. - + Successfully connected to %1! Forbindelse til %1 opprettet! - + Connection to %1 could not be established. Please check again. Klarte ikke å etablere forbindelse til %1. Sjekk igjen. - + Folder rename failed Omdøping av mappe feilet - + Cannot 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> <font color="green"><b>Oppretting av lokal synkroniseringsmappe %1 vellykket!</b></font> @@ -3378,7 +3403,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3595,46 +3620,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3655,7 +3680,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4443,7 +4468,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4453,38 +4478,38 @@ Server replied with error: %2 - + Unresolved conflict. Uløst konflikt - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Bare %1 er tilgjengelig, trenger minst %2 for å begynne - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Kan ikke lese svartelisten fra den lokale databasen - + Unable to read from the sync journal. Kan ikke lese fra synkroniseringsjournalen - + Cannot open the sync journal Kan ikke åpne synkroniseringsjournalen @@ -4494,12 +4519,12 @@ Server replied with error: %2 - + 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. @@ -4628,24 +4653,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4837,8 +4862,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4846,8 +4871,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5551,67 +5576,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel Avbryt - + Clear status message - + Set status message @@ -5833,7 +5858,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_nl.ts b/translations/client_nl.ts index f95d897d6bf82..7cbe28ed04a95 100644 --- a/translations/client_nl.ts +++ b/translations/client_nl.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ Het lijkt erop dat de functie Virtuele bestanden voor deze map is ingeschakeld. Momenteel is het niet mogelijk om impliciet virtuele bestanden te downloaden die end-to-end versleuteld zijn. Om de beste ervaring met virtuele bestanden en end-to-end-versleuteling te krijgen, raden we aan om ervoor te zorgen dat de versleutelde map is gemarkeerd met "Altijd lokaal beschikbaar maken". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Geen account ingesteld. + + + Disable encryption + + Display mnemonic Geheugensteun weergeven - - - End-to-end encryption has been enabled for this account - - Enable encryption Encryptie activeren + + + End-to-end encryption has been enabled for this account + + Warning @@ -615,7 +620,7 @@ Dit zal alle synchronisaties, die op dit moment bezig zijn, afbreken. - + End-to-end encryption mnemonic @@ -624,6 +629,21 @@ Dit zal alle synchronisaties, die op dit moment bezig zijn, afbreken.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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -746,12 +766,12 @@ Dit zal alle synchronisaties, die op dit moment bezig zijn, afbreken.Dit account ondersteunt end-to-end-versleuteling - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1044,7 +1064,7 @@ Dit zal alle synchronisaties, die op dit moment bezig zijn, afbreken.Voer je end-to-end versleutelingswachtwoord in: <br><br>Gebruiker: %2<br>Account: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1296,7 +1316,7 @@ Dit zal alle synchronisaties, die op dit moment bezig zijn, afbreken. Could not find a file for local editing. Make sure its path is valid and it is synced locally. - + Kon geen bestand vinden om lokaal te bewerken. Zorg ervoor dat het pad juist is en dat het lokaal gesynchroniseerd is. @@ -1844,7 +1864,7 @@ Als dit een ongelukje was en je de bestanden wilt behouden, worden ze opnieuw ge - - %1 + Could not decrypt! @@ -2592,6 +2612,11 @@ Onderdelen die gewist mogen worden, worden verwijderd als ze verhinderen dat een Close Sluiten + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2927,60 +2952,60 @@ Merk op dat het gebruik van logging-opdrachtregel opties deze instelling zal ove - + Use &virtual files instead of downloading content immediately %1 Gebruik &virtuele bestanden in plaats van direct downloaden content%1 - + (experimental) (experimenteel) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Virtuele bestanden worden niet ondersteund voor Windows-partitie-hoofdmappen als lokale map. Kies een geldige submap onder de stationsletter. - + %1 folder "%2" is synced to local folder "%3" %1 map "%2" is gesynchroniseerd naar de lokale map "%3" - + Sync the folder "%1" Synchroniseer de map "%1" - + Warning: The local folder is not empty. Pick a resolution! Waarschuwing: De lokale map is niet leeg. Maak een keuze! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 vrije ruimte - + Virtual files are not available for the selected folder Virtuele bestanden zijn niet beschikbaar voor de geselecteerde map - + Local Sync Folder Lokale synchronisatiemap - - + + (%1) (%1) - + There isn't enough free space in the local folder! Er is niet genoeg ruimte beschikbaar in de lokale map! @@ -3084,144 +3109,144 @@ Merk op dat het gebruik van logging-opdrachtregel opties deze instelling zal ove OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Succesvol verbonden met %1: %2 versie %3 (%4)</font><br/><br/> - + Invalid URL Ongeldige URL - + Failed to connect to %1 at %2:<br/>%3 Kon geen verbinding maken met %1 op %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Time-out bij verbinden met %1 op %2. - + Trying to connect to %1 at %2 … Probeer te verbinden met %1 om %2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. De geauthentiseerde aanvraag voor de server werd omgeleid naar "%1". De URL is onjuist, de server is verkeerd geconfigureerd. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Toegang door server verboden. Om te verifiëren dat je toegang mag hebben, <a href="%1">klik hier</a> om met je browser toegang tot de service te krijgen. - + There was an invalid response to an authenticated WebDAV request Er is een ongeldig antwoord ontvangen op een geauthenticeerde WebDAV opvraging - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Lokale synchronisatie map %1 bestaat al, deze wordt ingesteld voor synchronisatie.<br/><br/> - + Creating local sync folder %1 … Creëren lokale synchronisatie map %1 ... - + OK OK - + failed. mislukt. - + Could not create local folder %1 Kan lokale map %1 niet aanmaken - + No remote folder specified! Geen externe map opgegeven! - + Error: %1 Fout: %1 - + creating folder on Nextcloud: %1 aanmaken map op Nextcloud: %1 - + Remote folder %1 created successfully. Externe map %1 succesvol gecreëerd. - + The remote folder %1 already exists. Connecting it for syncing. De externe map %1 bestaat al. Verbinden voor synchroniseren. - - + + The folder creation resulted in HTTP error code %1 Het aanmaken van de map resulteerde in HTTP foutcode %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Het aanmaken van de externe map is mislukt, waarschijnlijk omdat je inloggegevens fout waren.<br/>Ga terug en controleer je inloggegevens.</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> <p><font color="red">Het aanmaken van de externe map is mislukt, waarschijnlijk omdat je inloggegevens fout waren.</font><br/>ga terug en controleer je inloggevens.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Aanmaken van externe map %1 mislukt met fout <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Er is een synchronisatie verbinding van %1 naar externe map %2 opgezet. - + Successfully connected to %1! Succesvol verbonden met %1! - + Connection to %1 could not be established. Please check again. Er kan geen verbinding worden gemaakt met %1. Probeer het nog eens. - + Folder rename failed Hernoemen map mislukt - + Cannot 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. Kan de map niet verwijderen en back-uppen, omdat de map of een bestand daarin, geopend is in een ander programma. Sluit de map of het bestand en drup op Opnieuw of annuleer de installatie. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Lokale synch map %1 is succesvol aangemaakt!</b></font> @@ -3405,7 +3430,7 @@ Dit is een nieuwe, experimentele modus. Als je besluit het te gebruiken, vragen - + Error while deleting file record %1 from the database @@ -3622,46 +3647,46 @@ Dit is een nieuwe, experimentele modus. Als je besluit het te gebruiken, vragen OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Bestand %1 kan niet worden hernoemd naar %2, omdat de naam conflicteert met een lokaal bestand - - - + + + could not get file %1 from local DB - + Error setting pin state Fout bij instellen pin status - - + + Error updating metadata: %1 Fout bij bijwerken metadata: %1 - + The file %1 is currently in use Bestand %1 is al in gebruik - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Kon bestand niet hernoemen @@ -3682,7 +3707,7 @@ Dit is een nieuwe, experimentele modus. Als je besluit het te gebruiken, vragen OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Foutieve HTTP code ontvangen van de server. Verwacht was 204, maar ontvangen "%1 %2". @@ -4470,7 +4495,7 @@ Server replied with error: %2 Kon virtuele bestand metadata niet bijwerken: %1 - + Could not update file metadata: %1 @@ -4480,38 +4505,38 @@ Server replied with error: %2 - + Unresolved conflict. Bestandsconflict - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Slechts %1 beschikbaar, maar heeft minimaal %2 nodig om te starten - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Kon de lokale sync-database niet openen of aanmaken. Zorg ervoor dat je schrijf-toegang hebt in de sync-map - + Using virtual files with suffix, but suffix is not set gebruik maken van virtuele bestanden met achtervoegsel, maar achtervoegsel niet ingesteld - + Unable to read the blacklist from the local database Kan de blacklist niet lezen uit de lokale database - + Unable to read from the sync journal. Niet mogelijk om te lezen uit het synchronisatie verslag. - + Cannot open the sync journal Kan het sync transactielog niet openen @@ -4521,12 +4546,12 @@ Server replied with error: %2 Synchronisatie wordt spoedig hervat. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Schijfruimte laag: Downloads die de vrije ruimte tot onder %1 zouden reduceren, zijn overgeslagen. - + There is insufficient space available on the server for some uploads. Onvoldoende schijfruimte op de server voor sommige uploads. @@ -4655,24 +4680,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Desktop Client</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versie %1. Voor meer informatie klik <a href='%2'>hier</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Gebruik makend van virtuele bestanden plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Deze release is geleverd door %1</p> @@ -4864,8 +4889,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4873,8 +4898,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5578,67 +5603,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Online status - + Online Online - + Away Afwezig - + Do not disturb Niet storen - + Mute all notifications - + Invisible Onzichtbaar - + Appear offline - + Status message Statusbericht - + What is your status? Wat is je status? - + Clear status message after Statusbericht wissen na - + Cancel - + Clear status message Statusbericht wissen - + Set status message Statusbericht instellen @@ -5860,7 +5885,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Gebouwd vanaf Git revisie <a href="%1">%2</a> op %3, %4 gebruik makend van Qt %5, %6</small></p> diff --git a/translations/client_oc.ts b/translations/client_oc.ts index d1dfb4a0551b2..febafdf6b67b8 100644 --- a/translations/client_oc.ts +++ b/translations/client_oc.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Cap de compte pas configurat. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Activar lo chiframent + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. Aqueste compte es compatible amb lo chiframent del cap a la fin - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1827,7 +1847,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2564,6 +2584,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Tampar + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2896,60 +2921,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 espaci liure - + Virtual files are not available for the selected folder - + Local Sync Folder - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3053,144 +3078,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> - + Invalid URL URL invalida - + Failed to connect to %1 at %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> - + Creating local sync folder %1 … - + OK D’acòrdi - + failed. - + Could not create local folder %1 Impossible de crear lo dossièr local « %s » - + No remote folder specified! - + Error: %1 Error : %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. - + The remote folder %1 already exists. Connecting it for syncing. - - + + 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 - + Cannot 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> @@ -3368,7 +3393,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3585,46 +3610,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3645,7 +3670,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Marrit còdi HTTP tornat pel servidor. Esperat 204, mas recebut « %1 %2 ». @@ -4433,7 +4458,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4443,38 +4468,38 @@ Server replied with error: %2 - + Unresolved conflict. - + 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. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal @@ -4484,12 +4509,12 @@ Server replied with error: %2 - + 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. @@ -4618,24 +4643,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Client de burèu %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Version %1. Per mai d’informacion clicatz <a href='%2'>aquí</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Usatge extension pels fichièrs virtuals : %1</small></p> - + <p>This release was supplied by %1</p> <p>Aquesta version es provesida per %1</p> @@ -4827,8 +4852,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4836,8 +4861,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5541,67 +5566,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online En linha - + Away Absent - + Do not disturb Desrengar pas - + Mute all notifications - + Invisible Invisible - + Appear offline - + Status message Messatge d’estatut - + What is your status? Quin es vòstre estatut ? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5823,7 +5848,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Construit de la revision Git <a href="%1">%2</a> sus %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_pl.ts b/translations/client_pl.ts index af0abd8378bcf..b19a4a3844649 100644 --- a/translations/client_pl.ts +++ b/translations/client_pl.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Wyczyść menu komunikatu statusu @@ -410,12 +410,12 @@ Wygląda na to, że funkcja Pliki wirtualne jest włączona w tym katalogu. W tej chwili nie jest możliwe bezpośrednie pobieranie plików wirtualnych, które są zaszyfrowane end-to-end. Aby uzyskać jak najlepsze korzystanie z Plików wirtualnych i Szyfrowania end-to-end, upewnij się, że zaszyfrowany katalog jest oznaczony jako "Dostępne zawsze lokalnie". - + End-to-end Encryption with Virtual Files Szyfrowanie end-to-end za pomocą wirtualnych plików - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Wygląda na to, że w tym katalogu włączono funkcję plików wirtualnych. W tej chwili nie jest możliwe niejawne pobieranie wirtualnych plików, które są szyfrowane metodą end-to-end. Aby uzyskać najlepsze efekty z plikami wirtualnymi i szyfrowaniem end-to-end, upewnij się, że zaszyfrowany katalog jest oznaczony jako "Dostępne zawsze lokalnie". @@ -439,21 +439,26 @@ No account configured. Brak skonfigurowanych kont. + + + Disable encryption + + Display mnemonic Wyświetl mnemonik - - - End-to-end encryption has been enabled for this account - Na tym koncie włączono szyfrowanie typu end-to-end - Enable encryption Włącz szyfrowanie + + + End-to-end encryption has been enabled for this account + Na tym koncie włączono szyfrowanie typu end-to-end + Warning @@ -617,7 +622,7 @@ Ta czynność spowoduje przerwanie aktualnie uruchomionej synchronizacji.Pamięciowe szyfrowanie end-to-end - + End-to-end encryption mnemonic Mnemonik szyfrowania end-to-end @@ -626,6 +631,21 @@ Ta czynność spowoduje przerwanie aktualnie uruchomionej synchronizacji.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). Aby chronić Twoją tożsamość kryptograficzną, szyfrujemy ją za pomocą mnemonika z 12 słów słownikowych. Hasło zachowaj w bezpiecznym miejscu. Będzie ono potrzebne do dodania innych urządzeń do Twojego konta (takich jak telefon komórkowy lub laptop). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ Ta czynność spowoduje przerwanie aktualnie uruchomionej synchronizacji.To konto obsługuje szyfrowanie end-to-end - + Set up encryption Włącz szyfrowanie - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Szyfrowanie end-to-end zostało włączone na tym koncie z innym urządzeniu.<br>Można je włączyć na tym urządzeniu, wprowadzając swój mnemonik.<br>Umożliwi to synchronizację istniejących zaszyfrowanych katalogów. @@ -763,17 +783,17 @@ Ta czynność spowoduje przerwanie aktualnie uruchomionej synchronizacji. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Żądanie uwierzytelnienia do serwera zostało przekierowane do "%1". Adres URL jest nieprawidłowy, serwer został źle skonfigurowany. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + Dostęp zabroniony przez serwer. Aby sprawdzić, czy masz odpowiednie uprawnienia, <a href="%1">kliknij tutaj</a>, aby połączyć się z usługą poprzez przeglądarkę. There was an invalid response to an authenticated WebDAV request - + Wystąpiła nieprawidłowa odpowiedź na żądanie uwierzytelnienia WebDav @@ -1046,7 +1066,7 @@ Ta czynność spowoduje przerwanie aktualnie uruchomionej synchronizacji.Wprowadź hasło szyfrowania end to end:<br><br>Użytkownik: %2<br>Konto: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Wprowadź hasło szyfrowania End-to-End:<br><br>Nazwa użytkownika: %2<br>Konto: %3<br> @@ -1847,8 +1867,8 @@ Jeśli to był przypadek i zdecydujesz się zachować swoje pliki, zostaną one - - %1 - - %1 + Could not decrypt! + @@ -2590,6 +2610,11 @@ Elementy, dla których usunięcie jest dozwolone, zostaną usunięte, o ile umo Close Zamknij + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2925,60 +2950,60 @@ Zauważ, że użycie jakichkolwiek opcji wiersza poleceń logowania spowoduje za - + Use &virtual files instead of downloading content immediately %1 Użyj plików &wirtualnych zamiast bezpośrednio pobierać ich zawartość %1 - + (experimental) (eksperymentalne) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Pliki wirtualne nie są obsługiwane w przypadku katalogów głównych partycji Windows jako katalogu lokalnego. Wybierz prawidłowy podkatalog według litery dysku. - + %1 folder "%2" is synced to local folder "%3" Katalog %1 "%2" jest synchronizowany z katalogiem lokalnym "%3" - + Sync the folder "%1" Synchronizuj katalog "%1" - + Warning: The local folder is not empty. Pick a resolution! Uwaga: Katalog lokalny nie jest pusty. Bądź ostrożny! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 wolnej przestrzeni - + Virtual files are not available for the selected folder Pliki wirtualne nie są dostępne dla wybranego katalogu - + Local Sync Folder Lokalny katalog synchronizacji - - + + (%1) (%1) - + There isn't enough free space in the local folder! W katalogu lokalnym nie ma wystarczającej ilości wolnego miejsca! @@ -3082,144 +3107,144 @@ Zauważ, że użycie jakichkolwiek opcji wiersza poleceń logowania spowoduje za OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Udane połączenie z %1: %2 wersja %3 (%4)</font><br/><br/> - + Invalid URL Nieprawidłowy adres URL - + Failed to connect to %1 at %2:<br/>%3 Nie udało się połączyć do %1 w %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Przekroczono limit czasu podczas próby połączenia do %1 na %2. - + Trying to connect to %1 at %2 … Próba połączenia z %1 w %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Uwierzytelnione zapytanie do serwera zostało przekierowane do "%1". Adres URL jest nieprawidłowy, serwer został źle skonfigurowany. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Dostęp zabroniony przez serwer. Aby sprawdzić, czy masz odpowiednie uprawnienia, <a href="%1">kliknij tutaj</a>, aby połączyć się z usługą poprzez przeglądarkę. - + There was an invalid response to an authenticated WebDAV request Wystąpiła nieprawidłowa odpowiedź na żądanie uwierzytelnienia WebDav - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Lokalny katalog synchronizacji %1 już istnieje. Ustawiam go do synchronizacji.<br/><br/> - + Creating local sync folder %1 … Tworzenie lokalnego katalogu synchronizacji %1… - + OK OK - + failed. błąd. - + Could not create local folder %1 Nie można utworzyć katalogu lokalnego %1 - + No remote folder specified! Nie określono katalogu zdalnego! - + Error: %1 Błąd: %1 - + creating folder on Nextcloud: %1 tworzenie katalogu w Nextcloud: %1 - + Remote folder %1 created successfully. Katalog zdalny %1 został pomyślnie utworzony. - + The remote folder %1 already exists. Connecting it for syncing. Zdalny katalog %1 już istnieje. Podłączam go do synchronizowania. - - + + The folder creation resulted in HTTP error code %1 Tworzenie katalogu spowodowało kod błędu HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Nie udało się utworzyć zdalnego katalogu ponieważ podane poświadczenia są nieprawidłowe!<br/>Powróć i sprawdź poświadczenia.</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> <p><font color="red">Tworzenie katalogu zdalnego nie powiodło się. Prawdopodobnie dostarczone poświadczenia są nieprawidłowe.</font><br/>Powróć i sprawdź poświadczenia.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Tworzenie katalogu zdalnego %1 nie powiodło się z powodu błędu <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Połączenie synchronizacji z %1 do katalogu zdalnego %2 zostało utworzone. - + Successfully connected to %1! Udane połączenie z %1! - + Connection to %1 could not be established. Please check again. Nie można nawiązać połączenia z %1. Sprawdź ponownie. - + Folder rename failed Zmiana nazwy katalogu nie powiodła się - + Cannot 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. Nie można usunąć oraz wykonać kopii zapasowej katalogu, ponieważ katalog lub plik znajdujący się w nim jest otwarty w innym programie. Zamknij katalog lub plik i naciśnij przycisk "Ponów próbę" lub anuluj konfigurację. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Utworzenie lokalnego katalogu synchronizowanego %1 zakończone pomyślnie!</b></font> @@ -3403,7 +3428,7 @@ To nowy, eksperymentalny tryb. Jeśli zdecydujesz się z niego skorzystać, zgł Nie można zsynchronizować z powodu nieprawidłowego czasu modyfikacji - + Error while deleting file record %1 from the database Błąd podczas usuwania rekordu pliku %1 z bazy danych @@ -3620,46 +3645,46 @@ To nowy, eksperymentalny tryb. Jeśli zdecydujesz się z niego skorzystać, zgł OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Nie można zmienić nazwy pliku %1 na %2 z powodu konfliktu nazwy pliku lokalnego - - - + + + could not get file %1 from local DB Nie można pobrać pliku %1 z lokalnej bazy danych - + Error setting pin state Błąd podczas ustawiania stanu przypięcia - - + + Error updating metadata: %1 Błąd podczas aktualizowania metadanych: %1 - + The file %1 is currently in use Plik %1 jest aktualnie używany - - + + Could not delete file record %1 from local DB Nie można usunąć rekordu pliku %1 z lokalnej bazy danych - + Failed to propagate directory rename in hierarchy Nie udało się rozszerzyć zmiany nazwy katalogu w hierarchii - + Failed to rename file Nie udało się zmienić nazwy pliku @@ -3680,7 +3705,7 @@ To nowy, eksperymentalny tryb. Jeśli zdecydujesz się z niego skorzystać, zgł OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Serwer zwrócił nieprawidłowy kod HTTP. Oczekiwano 204, ale otrzymano "%1 %2". @@ -4470,7 +4495,7 @@ Serwer odpowiedział błędem: %2 Nie można zaktualizować metadanych pliku wirtualnego: %1 - + Could not update file metadata: %1 Nie można zaktualizować metadanych pliku: %1 @@ -4480,38 +4505,38 @@ Serwer odpowiedział błędem: %2 Nie można ustawić rekordu pliku na lokalną bazę danych: %1 - + Unresolved conflict. Nierozpoznany konflikt. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Dostępnych jest tylko %1, aby rozpocząć, potrzebujesz co najmniej %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Nie można otworzyć lub utworzyć lokalnej bazy danych synchronizacji. Upewnij się, że masz dostęp do zapisu w katalogu synchronizacji. - + Using virtual files with suffix, but suffix is not set Używanie plików wirtualnych z przyrostkiem, lecz przyrostek nie jest ustawiony - + Unable to read the blacklist from the local database Nie można odczytać czarnej listy z lokalnej bazy danych - + Unable to read from the sync journal. Nie można odczytać z dziennika synchronizacji. - + Cannot open the sync journal Nie można otworzyć dziennika synchronizacji @@ -4521,12 +4546,12 @@ Serwer odpowiedział błędem: %2 Synchronizacja zostanie wkrótce wznowiona. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Brak miejsca na dysku: Pominięto pobieranie plików, które zmniejszyłyby ilość wolnego miejsca poniżej %1. - + There is insufficient space available on the server for some uploads. Na serwerze nie ma wystarczającej ilości miejsca na niektóre wysłane pliki. @@ -4655,24 +4680,24 @@ Serwer odpowiedział błędem: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Desktop Client</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Wersja %1. Aby uzyskać więcej informacji, kliknij <a href='%2'>tutaj</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Używanie wtyczki plików wirtualnych: %1</small></p> - + <p>This release was supplied by %1</p> <p>To wydanie zostało dostarczone przez %1</p> @@ -4864,8 +4889,8 @@ Serwer odpowiedział błędem: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Błąd podczas aktualizacji metadanych z powodu nieprawidłowego czasu modyfikacji @@ -4873,8 +4898,8 @@ Serwer odpowiedział błędem: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Błąd podczas aktualizacji metadanych z powodu nieprawidłowego czasu modyfikacji @@ -5331,17 +5356,17 @@ Serwer odpowiedział błędem: %2 Create a new share link - + Utwórz nowy link udostępnienia Copy share link location - + Skopiuj lokalizację linku udostępniania Share options - + Opcje udostępniania @@ -5349,57 +5374,57 @@ Serwer odpowiedział błędem: %2 An error occurred setting the share password. - + Wystąpił błąd podczas ustawiania hasła udostępniania. Edit share - + Edytuj udostępnianie Dismiss - + Odrzuć Share label - + Udostępnij etykietę Allow editing - + Zezwalaj na edytowanie Password protect - + Zabezpiecz hasłem Set expiration date - + Ustaw datę wygaśnięcia Note to recipient - + Notatka dla odbiorcy Unshare - + Zatrzymaj udostępnianie Add another link - + Dodaj kolejny link Copy share link - + Skopiuj link udostępniania @@ -5504,7 +5529,7 @@ Serwer odpowiedział błędem: %2 No results for - + Brak wyników dla @@ -5512,7 +5537,7 @@ Serwer odpowiedział błędem: %2 Search results section %1 - + Sekcja wyników wyszukiwania %1 @@ -5578,67 +5603,67 @@ Serwer odpowiedział błędem: %2 UserStatusSelector - + Online status Status online - + Online Online - + Away Bezczynny - + Do not disturb Nie przeszkadzać - + Mute all notifications Wycisz wszystkie powiadomienia - + Invisible Niewidoczny - + Appear offline Widnieje jako offline - + Status message Komunikat statusu - + What is your status? Jaki jest Twój status? - + Clear status message after Wyczyść komunikat statusu po - + Cancel Anuluj - + Clear status message Wyczyść komunikat statusu - + Set status message Ustaw komunikat statusu @@ -5860,7 +5885,7 @@ Serwer odpowiedział błędem: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Zbudowany na podstawie wersji Git <a href="%1">%2</a> na %3, %4 przy użyciu Qt %5, %6</small></p> diff --git a/translations/client_pt.ts b/translations/client_pt.ts index 6ad64bab6da29..1d3d0e0a05ae8 100644 --- a/translations/client_pt.ts +++ b/translations/client_pt.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Nenhuma conta configurada. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Ativar a encriptação + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. Esta conta suporta encriptação ponto-a-ponto - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. Por favor, insira a sua palavra-passe de encriptação %1:<br><br>Utilizador: %2<br>Conta: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1829,7 +1849,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2568,6 +2588,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Fechar + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2900,60 +2925,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Pasta de Sincronização Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! Não existe espaço disponível na pasta local! @@ -3057,144 +3082,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Ligado com sucesso a %1: %2 - versão: %3 (%4)</font><br/><br/> - + Invalid URL URL inválido - + Failed to connect to %1 at %2:<br/>%3 Não foi possível ligar a %1 em %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Tempo expirou enquanto tentava ligar a %1 em %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acesso proibido pelo servidor. Para verificar que tem o acesso adequado, <a href="%1">clique aqui</a> para aceder ao serviço com o seu navegador. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> A pasta de sincronização local %1 já existe, a configurar para sincronizar.<br/><br/> - + Creating local sync folder %1 … - + OK OK - + failed. Falhou. - + Could not create local folder %1 Não foi possível criar a pasta local %1 - + No remote folder specified! Não foi indicada a pasta remota! - + Error: %1 Erro: %1 - + creating folder on Nextcloud: %1 a criar a pasta na Nextcloud: %1 - + Remote folder %1 created successfully. Criação da pasta remota %1 com sucesso! - + The remote folder %1 already exists. Connecting it for syncing. A pasta remota %1 já existe. Ligue-a para sincronizar. - - + + The folder creation resulted in HTTP error code %1 A criação da pasta resultou num erro HTTP com o código %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> A criação da pasta remota falhou, provavelmente por ter introduzido as credenciais erradas.<br/>Por favor, verifique as suas credenciais.</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> <p><font color="red">A criação da pasta remota falhou, provavelmente por ter introduzido as credenciais erradas.</font><br/>Por favor, verifique as suas credenciais.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. A criação da pasta remota %1 falhou com o erro <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. A sincronização de %1 com a pasta remota %2 foi criada com sucesso. - + Successfully connected to %1! Conectado com sucesso a %1! - + Connection to %1 could not be established. Please check again. Não foi possível ligar a %1 . Por Favor verifique novamente. - + Folder rename failed Erro ao renomear a pasta - + Cannot 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> <font color="green"><b>Pasta de sincronização local %1 criada com sucesso!</b></font> @@ -3372,7 +3397,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3589,46 +3614,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3649,7 +3674,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4437,7 +4462,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4447,38 +4472,38 @@ Server replied with error: %2 - + Unresolved conflict. Conflito por resolver. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Apenas %1 estão disponíveis, é preciso um mínimo de %2 para começar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Não foi possível abrir ou criar a base de dados de sincronização local. Verifique se tem acesso de gravação na pasta de sincronização. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Não foi possível ler a lista negra a partir da base de dados local - + Unable to read from the sync journal. Não foi possível ler a partir do jornal de sincronização. - + Cannot open the sync journal Impossível abrir o jornal de sincronismo @@ -4488,12 +4513,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. O espaço em disco é baixo: foram ignoradas as transferências que reduziriam o espaço abaixo de %1. - + There is insufficient space available on the server for some uploads. Não há espaço livre suficiente no servidor para alguns uploads. @@ -4622,24 +4647,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versão %1. Para mais informação por favor clique <a href='%2'>aqui</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Esta versão foi fornecida por %1</p> @@ -4831,8 +4856,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4840,8 +4865,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5545,67 +5570,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5827,7 +5852,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Construido a partir da revisão Git <a href="%1">%2</a> em %3, %4 usando Qt %5, %6</small></p> diff --git a/translations/client_pt_BR.ts b/translations/client_pt_BR.ts index f87b77080d42d..05e4b15d6a58f 100644 --- a/translations/client_pt_BR.ts +++ b/translations/client_pt_BR.ts @@ -31,7 +31,7 @@ Open file details - + Abrir detalhes do arquivo @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Limpar menu de mensagem de status @@ -196,7 +196,7 @@ Dismiss - + Dispensar @@ -410,14 +410,14 @@ Parece que o recurso Arquivos Virtuais está ativado nesta pasta. No momento, não é possível baixar implicitamente arquivos virtuais criptografados de ponta a ponta. Para obter a melhor experiência com arquivos virtuais e criptografia de ponta a ponta, certifique-se de que a pasta criptografada esteja marcada com "Tornar sempre disponível localmente". - + End-to-end Encryption with Virtual Files Criptografia Ponta a Ponta com Arquivos Virtuais - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". - + Parece que o recurso Arquivos virtuais está ativado nesta pasta. No momento, não é possível baixar implicitamente arquivos virtuais criptografados de ponta a ponta. Para obter a melhor experiência com arquivos virtuais e criptografia de ponta a ponta, certifique-se de que a pasta criptografada esteja marcada com "Tornar sempre disponível localmente". @@ -439,21 +439,26 @@ No account configured. Nenhuma conta configurada. + + + Disable encryption + + Display mnemonic Mostrar mnemônico - - - End-to-end encryption has been enabled for this account - Criptografia Ponta a Ponta foi habilitado para essa conta - Enable encryption Ativar criptografia + + + End-to-end encryption has been enabled for this account + Criptografia Ponta a Ponta foi habilitado para essa conta + Warning @@ -617,15 +622,30 @@ Esta ação irá cancelar qualquer sincronização atualmente em execução.Mnemônico de criptografia de ponta a ponta - + End-to-end encryption mnemonic - + Mnemônico da criptografia ponta a ponta 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). Para proteger sua identidade criptográfica, nós a criptografamos com um mnemônico de 12 palavras do dicionário. Por favor, anote-os e mantenha-os seguros. Eles serão necessários para adicionar outros dispositivos à sua conta (como seu celular ou computador) + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,14 +768,14 @@ Esta ação irá cancelar qualquer sincronização atualmente em execução.Esta conta suporta criptografia de ponta-a-ponta - + Set up encryption Configurar criptografia - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. - + A criptografia de ponta a ponta foi habilitada nesta conta com outro dispositivo.<br>Ele pode ser ativado neste dispositivo inserindo seu mnemônico.<br>Isso permitirá a sincronização de pastas criptografadas existentes. @@ -763,17 +783,17 @@ Esta ação irá cancelar qualquer sincronização atualmente em execução. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + A solicitação autenticada para o servidor foi redirecionada para "%1". O URL está incorreto, o servidor está configurado incorretamente. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + Acesso proibido pelo servidor. Para verificar se você tem acesso adequado, <a href="%1">clique aqui</a> para acessar o serviço com seu navegador. There was an invalid response to an authenticated WebDAV request - + Houve uma resposta inválida para uma solicitação autenticada do WebDAV @@ -1046,7 +1066,7 @@ Esta ação irá cancelar qualquer sincronização atualmente em execução.Insira a senha da criptografia de ponta-a-ponta:<br><br>Usuário: %2<br>Conta: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Digite sua senha de criptografia ponta a ponta:<br><br>Usuário: %2<br>Conta: %3<br> @@ -1316,7 +1336,7 @@ Esta ação irá cancelar qualquer sincronização atualmente em execução. Could not find a remote file info for local editing. Make sure its path is valid. - + Não foi possível encontrar um arquivo para edição local. Certifique-se de que seu caminho seja válido. @@ -1332,7 +1352,7 @@ Esta ação irá cancelar qualquer sincronização atualmente em execução. Lock will last for %1 minutes. You can also unlock this file manually once you are finished editing. - + Bloqueio vai durar por %1 minutos. Você também pode desbloquear este arquivo manualmente quando terminar de editar. @@ -1845,7 +1865,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2588,6 +2608,11 @@ Os itens em que a exclusão é permitida serão excluídos se impedirem a remoç Close Fechar + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2922,60 +2947,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 Use os arquivos &virtuais em vez de baixar o conteúdo imediatamente %1 - + (experimental) (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Arquivos virtuais não são suportados como partição raiz do Windows como pasta local. Escolha uma subpasta válida na letra da unidade. - + %1 folder "%2" is synced to local folder "%3" %1 pasta "%2" está sincronizada com a pasta local "%3" - + Sync the folder "%1" Sincronizar a pasta "%1" - + Warning: The local folder is not empty. Pick a resolution! Aviso: A pasta local não está vazia. Escolha uma resolução! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 de espaço livre - + Virtual files are not available for the selected folder Os arquivos virtuais não estão disponíveis para a pasta selecionada - + Local Sync Folder Pasta de Sincronização Local - - + + (%1) (%1) - + There isn't enough free space in the local folder! Não há espaço livre na pasta local! @@ -3079,144 +3104,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Conectado com sucesso a %1: %2 versão %3 (%4)</font><br/><br/> - + Invalid URL URL inválida - + Failed to connect to %1 at %2:<br/>%3 Falhou ao conectar com %1 em %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Atingido o tempo limite ao tentar conectar com %1 em %2. - + Trying to connect to %1 at %2 … Tentando conectar em %1 às %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. A solicitação autenticada para o servidor foi redirecionada para "%1". O URL está incorreto, o servidor está configurado incorretamente. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Acesso proibido pelo servidor. Para verificar se você tem acesso adequado, <a href="%1">clique aqui</a> para acessar o serviço com seu navegador. - + There was an invalid response to an authenticated WebDAV request Houve uma resposta inválida para uma solicitação autenticada do WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Pasta de sincronização local %1 já existe, configurando-a para sincronização. <br/><br/> - + Creating local sync folder %1 … Criando pasta de sincronização local %1… - + OK OK - + failed. falhou. - + Could not create local folder %1 Não foi possível criar pasta local %1 - + No remote folder specified! Nenhuma pasta remota foi especificada! - + Error: %1 Erro: %1 - + creating folder on Nextcloud: %1 criando pasta no Nextcloud: %1 - + Remote folder %1 created successfully. Pasta remota %1 criada com sucesso. - + The remote folder %1 already exists. Connecting it for syncing. A pasta remota %1 já existe. Conectando-a para sincronizar. - - + + The folder creation resulted in HTTP error code %1 A criação da pasta resultou em um erro HTTP de código %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> A criação da pasta remota falhou porque as credenciais fornecidas estão erradas!<br/>Por favor, volte e verifique suas credenciais.</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> <p><font color="red">A criação da pasta remota falhou provavelmente devido a credenciais incorretas</font><br/>Por favor, volte e verifique suas credenciais.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. A criação da pasta remota %1 falhou com erro <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Uma conexão de sincronização de %1 para o diretório remoto %2 foi realizada. - + Successfully connected to %1! Conectado com sucesso a %1! - + Connection to %1 could not be established. Please check again. A conexão a %1 não foi estabelecida. Por favor, verifique novamente. - + Folder rename failed Falha ao renomear pasta - + Cannot 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. Não foi possível remover e fazer o backup da pasta porque a pasta ou algum arquivo presente dentro desta pasta está aberto em outro programa. Por favor feche o arquivo ou a pasta e tente novamente ou cancele a operação. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Pasta de sincronização local %1 criada com sucesso!</b></font> @@ -3401,7 +3426,7 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr Não é possível sincronizar devido ao horário de modificação inválido - + Error while deleting file record %1 from the database Erro ao excluir o registro de arquivo %1 do banco de dados @@ -3618,46 +3643,46 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash O arquivo %1 não pode ser renomeada para %2 devido a um conflito com o nome de um arquivo local - - - + + + could not get file %1 from local DB não foi possível obter o arquivo %1 do BD local - + Error setting pin state Erro ao definir o estado do pin - - + + Error updating metadata: %1 Erro ao atualizar metadados: %1 - + The file %1 is currently in use O arquivo %1 está correntemente em uso - - + + Could not delete file record %1 from local DB Não foi possível excluir o registro de arquivo %1 do BD local - + Failed to propagate directory rename in hierarchy - + Falha ao propagar a renomeação do diretório na hierarquia - + Failed to rename file Falha ao renomear arquivo @@ -3678,7 +3703,7 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Código HTTP incorreto retornado pelo servidor. Esperado 204, mas recebido "%1 %2". @@ -3983,7 +4008,7 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr Internal link - + Link interno @@ -4073,34 +4098,36 @@ Este é um novo modo experimental. Se você decidir usá-lo, relate quaisquer pr Failed to encrypt folder at "%1" - + Falha ao criptografar a pasta em "%1" The account %1 does not have end-to-end encryption configured. Please configure this in your account settings to enable folder encryption. - + A conta %1 não tem criptografia de ponta a ponta configurada. Configure isso nas configurações da sua conta para habilitar a criptografia de pastas. Failed to encrypt folder - + Falha ao criptografar a pasta Could not encrypt the following folder: "%1". Server replied with error: %2 - + Não foi possível criptografar a seguinte pasta: "%1". + +Servidor respondeu com erro: %2 Folder encrypted successfully - + Pasta criptografada com sucesso The following folder was encrypted successfully: "%1" - + A seguinte pasta foi criptografada com sucesso: "%1" @@ -4148,7 +4175,7 @@ Server replied with error: %2 Leave this share - + Sair deste compartilhamento @@ -4174,7 +4201,7 @@ Server replied with error: %2 Encrypt - + Criptografar @@ -4466,9 +4493,9 @@ Server replied with error: %2 Não foi possível atualizar os metadados do arquivo virtual: %1 - + Could not update file metadata: %1 - + Não foi possível atualizar os metadados do arquivo: %1 @@ -4476,38 +4503,38 @@ Server replied with error: %2 Não foi possível definir o registro do arquivo para o BD local: %1 - + Unresolved conflict. Conflito não solucionado. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Apenas %1 está disponível, é preciso pelo menos %2 para começar - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Não é possível abrir ou criar o banco de dados de sincronização local. Certifique-se de ter acesso de gravação na pasta de sincronização. - + Using virtual files with suffix, but suffix is not set Usando arquivos virtuais com sufixo, mas o sufixo não está definido - + Unable to read the blacklist from the local database Não é possível ler a lista negra do banco de dados local - + Unable to read from the sync journal. Não é possível ler a partir do journal de sincronização. - + Cannot open the sync journal Não é possível abrir o arquivo de sincronização @@ -4517,12 +4544,12 @@ Server replied with error: %2 A sincronização será retomada em breve. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. O espaço em disco é pequeno: Os downloads que reduziriam o espaço livre abaixo de %1 foram ignorados. - + There is insufficient space available on the server for some uploads. Não há espaço disponível no servidor para alguns envios. @@ -4651,24 +4678,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Cliente Desktop</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versão %1. Para mais informações clique <a href='%2'>aqui</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Usando o plugin de arquivos virtuais: %1</small></p> - + <p>This release was supplied by %1</p> <p>Esta versão foi fornecida por %1</p> @@ -4860,8 +4887,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Erro ao atualizar os metadados devido a erro na data/hora modificada @@ -4869,8 +4896,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Erro ao atualizar os metadados devido a erro na data/hora modificada @@ -5327,17 +5354,17 @@ Server replied with error: %2 Create a new share link - + Criar um novo link de compartilhamento Copy share link location - + Copiar localização do link de compartilhamento Share options - + Opções de compartilhamento @@ -5345,57 +5372,57 @@ Server replied with error: %2 An error occurred setting the share password. - + Ocorreu um erro ao definir a senha de compartilhamento. Edit share - + Editar compartilhamento Dismiss - + Dispensar Share label - + Compartilhar etiqueta Allow editing - + Permitir edição Password protect - + Proteger com senha Set expiration date - + Definir data de validade Note to recipient - + Nota para o destinatário Unshare - + Descompartilhar Add another link - + Adicionar outro link Copy share link - + Copiar link de compartilhamento @@ -5500,7 +5527,7 @@ Server replied with error: %2 No results for - + Nenhum resultado para @@ -5508,7 +5535,7 @@ Server replied with error: %2 Search results section %1 - + Seção de resultados da pesquisa %1 @@ -5574,67 +5601,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Status online - + Online Online - + Away Longe - + Do not disturb Não perturbe - + Mute all notifications Silenciar todas as notificações - + Invisible Invisível - + Appear offline Aparecer off-line - + Status message Mensagem de status - + What is your status? Qual é o seu status? - + Clear status message after Limpar mensagem de status após - + Cancel Cancelar - + Clear status message Limpar mensagem de status - + Set status message Definir mensagem de status @@ -5856,7 +5883,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Construído da revisão Git <a href="%1">%2</a> em %3, %4 usando Qt %5, %6</small></p> diff --git a/translations/client_ro.ts b/translations/client_ro.ts index 4e0bdd50ae335..d9d3875c507b0 100644 --- a/translations/client_ro.ts +++ b/translations/client_ro.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ Se pare că ai activată opțiunea de Fișiere Virtuale pentru acest dosar. În acest moment nu este posibil să descarci în mod implicit astfel de fișiere. Pentru cea mai bună experiență folosind opțiunea de Fișiere Virtuale și criptare end-to-end asigurăte că ai marcat dosarul cu "Disponibil mereu local". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Niciun cont configurat. + + + Disable encryption + + Display mnemonic Afișează fraza menmonică - - - End-to-end encryption has been enabled for this account - - Enable encryption Activează criptarea + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Această acțiune va opri toate sincronizările în derulare din acest moment. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Această acțiune va opri toate sincronizările în derulare din acest moment.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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Această acțiune va opri toate sincronizările în derulare din acest moment.Contul permite criptare end-to-end. - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Această acțiune va opri toate sincronizările în derulare din acest moment.Vă rugăm să introduceți fraza de criptare end to end: <br><br>Utilizator:%2<br>Cont:%3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1843,7 +1863,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2580,6 +2600,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Închide + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2912,60 +2937,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3069,144 +3094,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> - + Invalid URL URL invalid - + Failed to connect to %1 at %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> - + Creating local sync folder %1 … - + OK - + failed. eșuat! - + Could not create local folder %1 - + No remote folder specified! - + Error: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. - + The remote folder %1 already exists. Connecting it for syncing. - - + + 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 - + Cannot 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> @@ -3384,7 +3409,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3601,46 +3626,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3661,7 +3686,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4447,7 +4472,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4457,38 +4482,38 @@ Server replied with error: %2 - + Unresolved conflict. - + 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. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database - + Unable to read from the sync journal. - + Cannot open the sync journal @@ -4498,12 +4523,12 @@ Server replied with error: %2 - + 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. @@ -4632,24 +4657,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4841,8 +4866,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4850,8 +4875,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5555,67 +5580,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5837,7 +5862,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> diff --git a/translations/client_ru.ts b/translations/client_ru.ts index 1ff4a22ff1ad0..17cf47fd8b106 100644 --- a/translations/client_ru.ts +++ b/translations/client_ru.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Меню отчистки статуса сообщения @@ -410,12 +410,12 @@ Для этой папки используется механизм виртуальных файлов. В настоящее время не придерживается «прозрачное» получение с сервера виртуальных файлов, зашифрованных с использованием оконечного шифрования. Для работы с такими файлами используйте пункт "Хранить на устройстве». - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Учётная запись не настроена. + + + Disable encryption + + Display mnemonic Показать мнемофразу - - - End-to-end encryption has been enabled for this account - - Enable encryption Включить шифрование + + + End-to-end encryption has been enabled for this account + + Warning @@ -615,7 +620,7 @@ This action will abort any currently running synchronization. Мнемофраза оконечного шифрования - + End-to-end encryption mnemonic @@ -624,6 +629,21 @@ This action will abort any currently running synchronization. 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). Для защиты личного идентификатора оконечного шифрования используется мнемофраза, состоящая из двенадцати слов. Мнемофразу следует записать и сохранить запись в надёжном месте, она потребуется для подключения к учётной записи ваших дополнительных устройств. + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -746,12 +766,12 @@ This action will abort any currently running synchronization. Эта учетная запись поддерживает сквозное шифрование - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1044,7 +1064,7 @@ This action will abort any currently running synchronization. Введите свою парольную фразу сквозного шифрования: <br><br> Пользователь: %2<br>Учётная запись: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1844,7 +1864,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2586,6 +2606,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Закрыть + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2921,60 +2946,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 Использовать &виртуальные файлы вместо загрузки %1 - + (experimental) (экспериментальная функция) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. В ОС Windows механизм виртуальных файлов не поддерживается для корневой уровня файловой системы. Для продолжения выберите папку на диске, а не сам диск. - + %1 folder "%2" is synced to local folder "%3" %1 каталог «%2» синхронизирован с локальной папкой «%3» - + Sync the folder "%1" Синхронизировать папку «%1» - + Warning: The local folder is not empty. Pick a resolution! Предупреждение: локальная папка не пуста. Выберите действие! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 свободного места - + Virtual files are not available for the selected folder Использование виртуальные файлов недоступно для выбранной папки. - + Local Sync Folder Локальный каталог синхронизации - - + + (%1) (%1) - + There isn't enough free space in the local folder! Недостаточно свободного места в локальной папке. @@ -3078,144 +3103,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Успешное подключение к %1: %2 версия %3 (%4)</font><br/><br/> - + Invalid URL Неверная ссылка - + Failed to connect to %1 at %2:<br/>%3 Не удалось подключиться к %1 в %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Превышено время ожидания соединения к %1 на %2. - + Trying to connect to %1 at %2 … Попытка подключения к серверу %1 по адресу %2... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Запрос авторизации с сервера перенаправлен на «%1». Ссылка неверна, сервер неправильно настроен. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Доступ запрещён сервером. Чтобы доказать, что у Вас есть права доступа, <a href="%1">нажмите здесь</a> для входа через Ваш браузер. - + There was an invalid response to an authenticated WebDAV request Получен неверный ответ на авторизованный запрос WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Локальный каталог синхронизации %1 уже существует, используем его для синхронизации.<br/><br/> - + Creating local sync folder %1 … Создание локальной папки синхронизации %1... - + OK ОК - + failed. не удалось. - + Could not create local folder %1 Не удалось создать локальный каталог синхронизации %1 - + No remote folder specified! Не указан удалённый каталог! - + Error: %1 Ошибка: %1 - + creating folder on Nextcloud: %1 создание папки на сервере Nextcloud: %1 - + Remote folder %1 created successfully. Папка «%1» на сервере успешно создана. - + The remote folder %1 already exists. Connecting it for syncing. Папка «%1» уже существует на сервере. Выполняется подключение для синхронизации. - - + + The folder creation resulted in HTTP error code %1 Создание каталога завершилось с HTTP-ошибкой %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Не удалось создать удаленный каталог, так как представленные параметры доступа неверны!<br/>Пожалуйста, вернитесь назад и проверьте учетные данные.</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> <p><font color="red">Не удалось создать удаленный каталог, возможно, указанные учетные данные неверны.</font><br/>Вернитесь назад и проверьте учетные данные.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Удаленный каталог %1 не создан из-за ошибки <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Установлено соединение синхронизации %1 к удалённому каталогу %2. - + Successfully connected to %1! Соединение с %1 успешно установлено. - + Connection to %1 could not be established. Please check again. Не удалось соединиться с %1. Попробуйте снова. - + Folder rename failed Ошибка переименования папки - + Cannot 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> <font color="green"><b>Локальная папка синхронизации «%1» успешно создана.</b></font> @@ -3399,7 +3424,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Синхронизация невозможна по причине некорректного времени изменения файла - + Error while deleting file record %1 from the database Не удалось удалить из базы данных запись %1 @@ -3616,46 +3641,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Файл %1 не может быть переименован в %2 из-за локального конфликта имён - - - + + + could not get file %1 from local DB не удалось получить файл %1 из локальной базы данных - + Error setting pin state Не удалось задать состояние pin - - + + Error updating metadata: %1 Ошибка обновления метаданных: %1 - + The file %1 is currently in use Файл «%1» используется - - + + Could not delete file record %1 from local DB Не удалось удалить запись о файле %1 из локальной базы данных - + Failed to propagate directory rename in hierarchy - + Failed to rename file Не удалось переименовать файл @@ -3676,7 +3701,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Получен неверный код HTTP-ответа сервера: ожидался код 204, но был получен «%1 %2». @@ -4464,7 +4489,7 @@ Server replied with error: %2 Не удалось обновить метаданные виртуального файла: %1 - + Could not update file metadata: %1 @@ -4474,38 +4499,38 @@ Server replied with error: %2 Не удалось сохранить запись о файле %1 в локальную базу данных - + Unresolved conflict. Неразрешённый конфликт. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Только %1 доступно, нужно как минимум %2 чтобы начать - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Не могу открыть или создать локальную базу данных синхронизации. Удостоверьтесь, что у вас есть доступ на запись в каталог синхронизации. - + Using virtual files with suffix, but suffix is not set Для виртуальных файлов настроено использование специального суффикса, но суффикс не указан - + Unable to read the blacklist from the local database Не удалось прочитать файл чёрного списка из локальной базы данных. - + Unable to read from the sync journal. Не удалось прочитать из журнала синхронизации. - + Cannot open the sync journal Не удаётся открыть журнал синхронизации @@ -4515,12 +4540,12 @@ Server replied with error: %2 Синхронизация возобновится в ближайшее время. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Мало места на диске: Скачивания, которые сократят свободное место ниже %1, будут пропущены. - + There is insufficient space available on the server for some uploads. На сервере недостаточно места для некоторых закачек. @@ -4649,24 +4674,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 клиент для ПК</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Версия %1. Для получения дополнительной информации нажмите <a href='%2'>сюда</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Используемый модуль поддержки виртуальных файлов: %1</small></p> - + <p>This release was supplied by %1</p> <p>Этот выпуск подготовлен %1</p> @@ -4858,8 +4883,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Ошибка обновления метаданных из-за недопустимого времени модификации @@ -4867,8 +4892,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Ошибка обновления метаданных из-за недопустимого времени модификации @@ -5572,67 +5597,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Статус работы в сети - + Online В сети - + Away Отошёл - + Do not disturb Не беспокоить - + Mute all notifications Отключить все уведомления - + Invisible Невидимый - + Appear offline Вне сети - + Status message Описание статуса - + What is your status? Опишите свой статус - + Clear status message after Убрать описание статуса через - + Cancel Отмена - + Clear status message Убрать описание статуса - + Set status message Описать статус @@ -5854,7 +5879,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Собрано из исходников Git версии <a href="%1">%2</a> на %3, %4 с использованием библиотек Qt %5, %6</small></p> diff --git a/translations/client_sc.ts b/translations/client_sc.ts index 9a8485c61b55c..e86e43ce41148 100644 --- a/translations/client_sc.ts +++ b/translations/client_sc.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ Parit chi tengas sa funtzione Archìvios Virtuales ativada in custa cartella. Pro immoe, no faghet a iscarrigare in manera implìtzita archìvios virtuales cun tzifradura end-to-end. Pro otènnere sa mègius esperièntzia cun Archìvios Virtuales e sa tzifradura end-to-end, assegura•ti chi sa cartella tzifrada siat marcada cun "Pone semper a disponimentu in manera locale". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Perunu contu cunfiguradu. + + + Disable encryption + + Display mnemonic Visualiza mnemònicu - - - End-to-end encryption has been enabled for this account - - Enable encryption Ativa tzifradura + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Custa atzione at a firmare cale si siat sincronizatzione immoe in esecutzione. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Custa atzione at a firmare cale si siat sincronizatzione immoe in esecutzione.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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Custa atzione at a firmare cale si siat sincronizatzione immoe in esecutzione.Custu contu non disponet de sa tzifradura end-to-end - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Custa atzione at a firmare cale si siat sincronizatzione immoe in esecutzione.Pro praghere, iscrie sa fràsia segreta de tzifradura end-to-end:<br><br>Utente: %2<br>Contu: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1847,7 +1867,7 @@ Si custu fiat un'errore e detzides de mantènnere is archìvios tuos, custo - - %1 + Could not decrypt! @@ -2590,6 +2610,11 @@ Is elementos in ue est permitidu ant a èssere cantzellados si impedint de catza Close Serra + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2925,60 +2950,60 @@ Càstia chi s'impreu de cale si siat optzione de sa riga de cumandu de regi - + Use &virtual files instead of downloading content immediately %1 Imprea is archìvios &virtuales imbetzes de iscarrigare deretu su cuntenutu %1 - + (experimental) (isperimentale) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Is archìvios virtuales no sunt suportados pro is sorgentes de partzidura de Windows comente cartellas locales. Sèbera una sutacartella bàlida a suta de sa lìtera de su discu. - + %1 folder "%2" is synced to local folder "%3" Sa cartella %1 de "%2" est sincronizada cun sa cartella locale "%3" - + Sync the folder "%1" Sincroniza sa cartella "%1" - + Warning: The local folder is not empty. Pick a resolution! Avisu: sa cartella locale no est bòida. Sèbera unu remèdiu! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB Logu lìberu %1 - + Virtual files are not available for the selected folder Is archìvios virtuales non sunt a disponimentu pro sa cartella seletzionada - + Local Sync Folder Sincronizatzione cartella locale - - + + (%1) (%1) - + There isn't enough free space in the local folder! Non bastat su logu lìberu in sa cartella locale! @@ -3082,144 +3107,144 @@ Càstia chi s'impreu de cale si siat optzione de sa riga de cumandu de regi OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Connètidu in manera curreta a %1: %2 versione %3 (%4)</font><br/><br/> - + Invalid URL URL non bàlidu - + Failed to connect to %1 at %2:<br/>%3 No at fatu a a si connètere a %1 in %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Tempus iscàdidu proende a si connètere a %1 in %2. - + Trying to connect to %1 at %2 … Intentu de connessione a %1 in %2... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Sa dimanda autenticada a su serbidore s'est torrada a deretare a '%1'. Su URL est isballiadu, su serbidore no est cunfiguradu in manera curreta. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Atzessu negadu dae su serbidore. Pro èssere seguros de àere is permissos giustos, <a href="%1">incarca inoghe</a> pro intrare a su sevìtziu cun su navigadore tuo. - + There was an invalid response to an authenticated WebDAV request Retzida una risposta non bàlida a una dimanda WebDAV autenticada - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Sa cartella de sincronizatzione locale %1 b'est giai, impostada pro sa sincronizatzione.<br/><br/> - + Creating local sync folder %1 … Creatzione dae sa cartella locale de sincronizatzione %1... - + OK AB - + failed. faddidu. - + Could not create local folder %1 No at fatu a creare sa cartella %1 - + No remote folder specified! Peruna cartella remota ispetzificada! - + Error: %1 Errore: %1 - + creating folder on Nextcloud: %1 creende una cartella in Nextcloud: %1 - + Remote folder %1 created successfully. Sa creatzione de sa cartella remota %1 est andada bene . - + The remote folder %1 already exists. Connecting it for syncing. Sa cartella remota %1 b'est giai. Connetende·dda pro dda sincronizare. - - + + The folder creation resulted in HTTP error code %1 Sa creatzione de sa cartella at torradu un'errore HTTP còdighe %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Sa creatzione de sa cartella remota est faddida ca mancari is credentziales sunt isballiadas.<br/>Torra in segus e controlla is credentziales.</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> <p><font color="red">Sa creatzione de sa cartella remota no est andada bene ca mancari is credentziales sunt isballiadas.</font><br/>Torra in segus e controlla is credentziales tuas.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Creatzione de sa cartella remota %1 faddida cun errore <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Istabilida una connessione de sincronizatzione dae %1 a sa cartella remota %2. - + Successfully connected to %1! Connessione a %1 renèssida! - + Connection to %1 could not be established. Please check again. Sa connessione a %1 non faghet a dda istabilire. Proa torra. - + Folder rename failed No at fatu a torrare a numenare sa cartella - + Cannot 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. No at fatu a catzare o copiare sa cartella ca sa cartella o s'archìviu in intro est abertu in un àteru programma. Serra sa cartella o s'archìviu e incarca Proa torra o annulla s'impostatzione. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Cartella locale %1 creada in manera curreta!</b></font> @@ -3402,7 +3427,7 @@ Custa est una modalidade noa, isperimentale. Si detzides de dda impreare, sinnal - + Error while deleting file record %1 from the database @@ -3619,46 +3644,46 @@ Custa est una modalidade noa, isperimentale. Si detzides de dda impreare, sinnal OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash S'archìviu %1 non faghet a ddu torrare a numenare %2 pro unu cunflitu cun su nùmene de s'archìviu locale - - - + + + could not get file %1 from local DB - + Error setting pin state Errore impostende s'istadu de su pin - - + + Error updating metadata: %1 Errore agiornende is metadatos: %1 - + The file %1 is currently in use S'archìviu %1 est giai impreadu - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file No at fatu a torrare a numenare s'archìviu @@ -3679,7 +3704,7 @@ Custa est una modalidade noa, isperimentale. Si detzides de dda impreare, sinnal OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Còdighe HTTP isballiadu torradu dae su serbidore. Atesu 204, ma retzidu "%1 %2". @@ -4467,7 +4492,7 @@ Server replied with error: %2 No at fatu a nche carrigare is metadatos de is archìvios virtuales: %1 - + Could not update file metadata: %1 @@ -4477,38 +4502,38 @@ Server replied with error: %2 - + Unresolved conflict. Cunflitu non isortu. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Sunt disponìbiles isceti %1, serbint isceti %2 pro cumintzare - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Impossìbile a abèrrere o a creare sa base de datos locale de sincronizatzione. Segura·ti de àere atzessu de iscritura in sa cartella de sincronizatzione. - + Using virtual files with suffix, but suffix is not set Impreu de is archìvios virtuales, ma su sufissu non est impostadu - + Unable to read the blacklist from the local database Non at fatu a lèghere sa lista niedda de sa base de datos locale - + Unable to read from the sync journal. No at fatu a lèghere dae su registru de sincronizatzione. - + Cannot open the sync journal Non faghet a abèrrerer su registru de sincronizatzione @@ -4518,12 +4543,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Su logu in su discu est pagu: is iscarrigamentos chi diant pòdere minimare su logu lìberu suta de %1 s'ant a lassare. - + There is insufficient space available on the server for some uploads. Non b'at logu in su serbidore pro unos cantos carrigamentos. @@ -4652,24 +4677,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Cliente de iscrivania</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Versione %1. Pro àteras informatziones incarca <a href='%2'>inoghe</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Impreende s'estensione de archìvios virtuales: %1</small></p> - + <p>This release was supplied by %1</p> <p>Custa versione est dispensada dae %1</p> @@ -4861,8 +4886,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4870,8 +4895,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5575,67 +5600,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Istadu in lìnia - + Online In lìnia - + Away Ausente - + Do not disturb No istorbes - + Mute all notifications - + Invisible Invisìbile - + Appear offline - + Status message Messàgiu de istadu - + What is your status? Cale est s'istadu tuo? - + Clear status message after Lìmpia su messàgiu de istadu a pustis - + Cancel - + Clear status message Lìmpia su messàgiu de istadu - + Set status message Imposta messàgiu de istadu @@ -5857,7 +5882,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Cumpiladu dae sa versione Git <a href="%1">%2</a> on %3, %4 impreende Qt %5, %6</small></p> diff --git a/translations/client_sk.ts b/translations/client_sk.ts index 7c668f0d17b0f..53bb9be8ef8d1 100644 --- a/translations/client_sk.ts +++ b/translations/client_sk.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Vymazať menu správ o stave @@ -410,12 +410,12 @@ Vyzerá, že podpora Virtuálnych Súborov je na tomto priečinku zapnutá. V súčasnosti nie je možné stiahnuť virtuálne súbory ktoré sú šifrované End-to-End. Pre získanie najlepšieho výsledku s Virtuálnymi súbormi a End-to-End šifrovaním, ubezpečte sa že šifrovaný priečinok je označený ako "Vždy dostupné lokálne". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Nie je nastavený žiadny učet. + + + Disable encryption + + Display mnemonic Zobraziť mnemotechnické - - - End-to-end encryption has been enabled for this account - - Enable encryption Zapnúť šifrovanie + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ Táto akcia zruší všetky prebiehajúce synchronizácie. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ Táto akcia zruší všetky prebiehajúce synchronizácie. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ Táto akcia zruší všetky prebiehajúce synchronizácie. Tento účet podporuje šifrovanie end-to-end - + Set up encryption Nastaviť šifrovanie - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ Táto akcia zruší všetky prebiehajúce synchronizácie. Zadajte svoju prístupovú frázu pre šifrovanie medzi koncovými bodmi: <br><br>Používateľ: %2<br>Účet: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1846,7 +1866,7 @@ Ak to bol omyl a rozhodnete sa tieto súbory ponechať, budú opäť synchronizo - - %1 + Could not decrypt! @@ -2589,6 +2609,11 @@ Položky, pri ktorých je povolené odstraňovanie sa vymažú, ak bránia odstr Close Zatvoriť + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Upozorňujeme, že použitie akýchkoľvek príkazov pre logovanie z príkazové - + Use &virtual files instead of downloading content immediately %1 Použiť virtuálne súbory namiesto okamžitého sťahovania obsahu %1 - + (experimental) (experimentálne) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Virtuálne súbory nie sú podporované na koreňovej partícii Windows ako lokálny priečinok. Prosím vyberte validný priečinok pod písmenom disku. - + %1 folder "%2" is synced to local folder "%3" %1 priečinok "%2" je zosynchronizovaný do lokálneho priečinka "%3" - + Sync the folder "%1" Sychronizovať priečinok "%1" - + Warning: The local folder is not empty. Pick a resolution! Varovanie: Lokálny priečinok nie je prázdny. Vyberte riešenie! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 voľného miesta - + Virtual files are not available for the selected folder Virtuálne súbory sú nedostupné pre vybraný priečinok - + Local Sync Folder Lokálny synchronizačný priečinok - - + + (%1) (%1) - + There isn't enough free space in the local folder! V lokálnom priečinku nie je dostatok voľného miesta! @@ -3081,144 +3106,144 @@ Upozorňujeme, že použitie akýchkoľvek príkazov pre logovanie z príkazové OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Úspešne pripojené k %1: %2 verzie %3 (%4)</font><br/><br/> - + Invalid URL Neplatná URL - + Failed to connect to %1 at %2:<br/>%3 Zlyhalo spojenie s %1 o %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Časový limit vypršal pri pokuse o pripojenie k %1 na %2. - + Trying to connect to %1 at %2 … Pokus o pripojenie k %1 na %2... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Overená požiadavka na server bola presmerovaná na "%1". URL je zlá, server nie je správne nakonfigurovaný. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Prístup zamietnutý serverom. Po overení správnych prístupových práv, <a href="%1">kliknite sem</a> a otvorte službu v svojom prezerači. - + There was an invalid response to an authenticated WebDAV request Neplatná odpoveď na overenú WebDAV požiadavku - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Lokálny synchronizačný priečinok %1 už existuje, prebieha jeho nastavovanie pre synchronizáciu.<br/><br/> - + Creating local sync folder %1 … Vytváranie lokálneho priečinka pre synchronizáciu %1... - + OK OK - + failed. neúspešné. - + Could not create local folder %1 Nemožno vytvoriť lokálny priečinok %1 - + No remote folder specified! Vzdialený priečinok nie je nastavený! - + Error: %1 Chyba: %1 - + creating folder on Nextcloud: %1 Vytvára sa priečinok v Nextcloud: %1 - + Remote folder %1 created successfully. Vzdialený priečinok %1 bol úspešne vytvorený. - + The remote folder %1 already exists. Connecting it for syncing. Vzdialený priečinok %1 už existuje. Prebieha jeho pripájanie pre synchronizáciu. - - + + The folder creation resulted in HTTP error code %1 Vytváranie priečinka skončilo s HTTP chybovým kódom %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Proces vytvárania vzdialeného priečinka zlyhal, lebo použité prihlasovacie údaje nie sú správne!<br/>Prosím skontrolujte si vaše údaje a skúste to znovu.</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> <p><font color="red">Vytvorenie vzdialeného priečinka pravdepodobne zlyhalo kvôli nesprávnym prihlasovacím údajom.</font><br/>Prosím choďte späť a skontrolujte ich.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Vytvorenie vzdialeného priečinka %1 zlyhalo s chybou <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Synchronizačné spojenie z %1 do vzdialeného priečinka %2 bolo práve nastavené. - + Successfully connected to %1! Úspešne pripojené s %1! - + Connection to %1 could not be established. Please check again. Pripojenie k %1 nemohlo byť iniciované. Prosím skontrolujte to znovu. - + Folder rename failed Premenovanie priečinka zlyhalo - + Cannot 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. Nemožno odstrániť a zazálohovať priečinok, pretože priečinok alebo súbor je otvorený v inom programe. Prosím zatvorte priečinok alebo súbor a skúste to znovu alebo zrušte akciu. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Lokálny synchronizačný priečinok %1 bol úspešne vytvorený!</b></font> @@ -3402,7 +3427,7 @@ Toto je nový experimentálny režim. Ak sa ho rozhodnete použiť, nahláste v Chyba pri synchronizácii z dôvodu neplatného času poslednej zmeny - + Error while deleting file record %1 from the database Chyba pri mazaní záznamu o súbore %1 z databázy @@ -3619,46 +3644,46 @@ Toto je nový experimentálny režim. Ak sa ho rozhodnete použiť, nahláste v OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Súbor %1 nemôže byť premenovaný na %2 z dôvodu, že tento názov je už použitý - - - + + + could not get file %1 from local DB nie je možné získať súbor %1 z lokálnej DB - + Error setting pin state Chyba pri nastavovaní stavu pin-u - - + + Error updating metadata: %1 Chyba pri aktualizácii metadát: %1 - + The file %1 is currently in use Súbor %1 sa v súčasnosti používa - - + + Could not delete file record %1 from local DB Nie je možné vymazať záznam o súbore %1 z lokálnej DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Nepodarilo sa premenovať súbor @@ -3679,7 +3704,7 @@ Toto je nový experimentálny režim. Ak sa ho rozhodnete použiť, nahláste v OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Server vrátil neplatný HTTP kód. Očakávaný bol 204, ale vrátený bol "%1 %2". @@ -4467,7 +4492,7 @@ Server replied with error: %2 Nemôžem aktualizovať metadáta virtuálneho súboru: %1 - + Could not update file metadata: %1 Nemôžem aktualizovať metadáta súboru: %1 @@ -4477,38 +4502,38 @@ Server replied with error: %2 Nie je možné vytvoriť záznam o súbore v lokálnej DB: %1 - + Unresolved conflict. Nevyriešený konflikt. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Je dostupných len %1, pre spustenie je potrebných aspoň %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Nie je možné otvoriť alebo vytvoriť miestnu synchronizačnú databázu. Skontrolujte či máte právo na zápis do synchronizačného priečinku. - + Using virtual files with suffix, but suffix is not set Používate virtuálne súbory s príponou, ale prípona nie je nastavená - + Unable to read the blacklist from the local database Nepodarilo sa načítať čiernu listinu z miestnej databázy - + Unable to read from the sync journal. Nemožno čítať zo synchronizačného žurnálu - + Cannot open the sync journal Nemožno otvoriť sync žurnál @@ -4518,12 +4543,12 @@ Server replied with error: %2 Synchronizácia bude čoskoro pokračovať. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Na disku dochádza voľné miesto. Sťahovanie, ktoré by zmenšilo voľné miesto pod %1 bude vynechané. - + There is insufficient space available on the server for some uploads. Na serveri nie je pre niektoré z nahrávaných súborov dostatok voľného miesta. @@ -4652,24 +4677,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Klient %1 pre počítač</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Verzia %1. Viac informácií získate <a href='%2'>kliknutím sem</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Používa zásuvný modul virtuálnych súborov: %1</small></p> - + <p>This release was supplied by %1</p> <p>Toto vydanie bolo poskytnuté %1</p> @@ -4861,8 +4886,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Chyba pri aktualizácii metadát z dôvodu neplatného času poslednej zmeny @@ -4870,8 +4895,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Chyba pri aktualizácii metadát z dôvodu neplatného času poslednej zmeny @@ -5575,67 +5600,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Stav pripojenia - + Online Pripojené - + Away Preč - + Do not disturb Nerušiť - + Mute all notifications Stíšiť všetky upozornenia - + Invisible Neviditeľný - + Appear offline V odpojenom režime - + Status message Správa o stave - + What is your status? Aký je váš stav? - + Clear status message after Vyčistiť správu o stave po - + Cancel Zrušiť - + Clear status message Vyčistiť správu o stave - + Set status message Nastaviť správu o stave @@ -5857,7 +5882,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Zostavené z Git revízie <a href="%1">%2</a> na %3, %4 s použitím Qt %5, %6</small></p> diff --git a/translations/client_sl.ts b/translations/client_sl.ts index 68ac062c70b7f..946c4308477bc 100644 --- a/translations/client_sl.ts +++ b/translations/client_sl.ts @@ -9,7 +9,7 @@ In %1 - + V %1 @@ -36,7 +36,7 @@ Open share dialog - + Odpri pogovorno okno souporabe @@ -49,13 +49,13 @@ No activities yet - + Ni še zabeležene dejavnosti BasicComboBox - + Clear status message menu @@ -214,7 +214,7 @@ File details of %1 · %2 - + Podrobnosti datoteke %1 · %2 @@ -341,7 +341,7 @@ File %1 is already locked by %2. - + Datoteka %1 je že zaklenjena (%2). @@ -410,12 +410,12 @@ Kaže, da imate na tej mapi omogočeno možnost navideznih datotek. Trenutno ni mogoče neposredno prejeti tovrstnih datotek, če so šifrirane po protokolu E2E. Za najenostavnejše delo z navideznimi datotekami poskrbite, da je šifrirana mapa označena kot »Vedno na voljo krajevno«. - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Ni nastavljenega računa. + + + Disable encryption + + Display mnemonic Pokaži mnemoniko - - - End-to-end encryption has been enabled for this account - - Enable encryption Omogoči šifriranje + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju.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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju.Račun podpira celovito šifriranje E2E - + Set up encryption - + Nastavitev šifriranja - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -762,17 +782,17 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Zahteva za overitev s strežnikom je bila preusmerjena na »%1«. Naslov URL ni veljaven ali pa strežnik ni ustrezno nastavljen. Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. - + Strežnik ne dovoli dostopa. Če želite preveriti, ali imate ustrezna dovoljenja, <a href="%1">kliknite</a> za dostop do te storitve z brskalnikom. There was an invalid response to an authenticated WebDAV request - + Zaznan je neveljaven odziv za zahtevo overitve WebDAV @@ -833,12 +853,12 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. Fetching activities… - + Poteka pridobivanje dejavnosti ... Fetching activities … - + Poteka pridobivanje dejavnosti ... @@ -929,7 +949,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. There was an error while accessing the configuration file at %1. Please make sure the file can be accessed by your system account. - + Med dostopom do nastavitvene datoteke na %1 je prišlo do napake. Preverite, ali je dostopna z uporabniškim računom. @@ -952,7 +972,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. &Username: - + Uporabniško ime: @@ -1001,7 +1021,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. Network error: %1 - + Omrežna napaka: %1 @@ -1021,7 +1041,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. Restoration failed: %1 - + Obnovitev je spodletela: %1 @@ -1045,7 +1065,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju.Vnesite neposredno geslo:<br><br>uporabnik: %2<br>račun: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1265,7 +1285,7 @@ S tem dejanjem prav tako prekinete vsa trenutna usklajevanja v izvajanju. Invalid token received. - + Prejet je neveljaven žeton @@ -1761,17 +1781,17 @@ Ali ste prepričani, da želite posodobiti spremembe s strežnikom? Last sync was successful. - + Zadnje usklajevanje je bilo uspešno končano. Setup error. - + Napaka nastavitve. Sync request was cancelled. - + Zahteva usklajevanja je bila preklicana. @@ -1846,7 +1866,7 @@ Ali ste prepričani, da želite posodobiti spremembe s strežnikom? - - %1 + Could not decrypt! @@ -2538,22 +2558,22 @@ Predmeti v mapah, ki jih je dovoljeno izbrisati, bodo odstranjeni, če prepreču Filename contains leading and trailing spaces. - + Ime datoteke vsebuje začetne in pripete presledne znake. Filename contains leading spaces. - + Ime datoteke vsebuje začetne presledne znake. Filename contains trailing spaces. - + Ime datoteke vsebuje pripete presledne znake. Use invalid name - + Uporabi neveljavno ime @@ -2589,6 +2609,11 @@ Predmeti v mapah, ki jih je dovoljeno izbrisati, bodo odstranjeni, če prepreču Close Zapri + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Uporaba kateregakoli argumenta z ukazom v ukazni vrstici prepiše to nastavitev. - + Use &virtual files instead of downloading content immediately %1 - Uporabite $navidezne datoteke namesto prejemanja celotne vsebine %1 + Uporabi &navidezne datoteke in ne prejemi celotne vsebine %1 - + (experimental) (preizkusno) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Kot krajevne datoteke na ravni korenske mape v okolju Windows navidezne datoteke niso podprte. Izbrati je treba ustrezno podrejeno mapo na črkovnem pogonu. - + %1 folder "%2" is synced to local folder "%3" %1 mapa »%2« je usklajena s krajevno mapo »%3« - + Sync the folder "%1" Uskladi mapo » %1 « - + Warning: The local folder is not empty. Pick a resolution! Opozorilo: krajevna mapa ni prazna. Izberite razpoložljivo možnost za razrešitev problema! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 razpoložljivega prostora - + Virtual files are not available for the selected folder Navidezne datoteke niso na voljo za izbrano mapo - + Local Sync Folder Krajevna mapa usklajevanja - - + + (%1) (%1) - + There isn't enough free space in the local folder! V krajevni mapi ni dovolj prostora! @@ -3081,144 +3106,144 @@ Uporaba kateregakoli argumenta z ukazom v ukazni vrstici prepiše to nastavitev. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Uspešno je vzpostavljena povezava s strežnikom %1: %2 različica %3 (%4)</font><br/><br/> - + Invalid URL Neveljaven naslov URL - + Failed to connect to %1 at %2:<br/>%3 Povezava s strežnikom %1 pri %2 je spodletela:<br/>%3 - + Timeout while trying to connect to %1 at %2. Povezovanje na %1 pri %2 je časovno poteklo. - + Trying to connect to %1 at %2 … Poteka poskus povezave z %1 na %2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Zahteva za overitev s strežnikom je bila preusmerjena na »%1«. Naslov URL ni veljaven ali pa strežnik ni ustrezno nastavljen. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Strežnik ne dovoli dostopa. Če želite preveriti, ali imate ustrezna dovoljenja, <a href="%1">kliknite</a> za dostop do te storitve z brskalnikom. - + There was an invalid response to an authenticated WebDAV request Zaznan je neveljaven odziv za zahtevo overitve WebDAV - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Krajevna usklajevana mapa %1 že obstaja. Nastavljena bo za usklajevanje.<br/><br/> - + Creating local sync folder %1 … Poteka ustvarjanje mape za krajevno usklajevanje %1 ... - + OK V redu - + failed. je spodletelo. - + Could not create local folder %1 Krajevne mape %1 ni mogoče ustvariti. - + No remote folder specified! Ni navedene oddaljene mape! - + Error: %1 Napaka: %1 - + creating folder on Nextcloud: %1 ustvarjanje mape v oblaku Nextcoud: %1 - + Remote folder %1 created successfully. Oddaljena mapa %1 je uspešno ustvarjena. - + The remote folder %1 already exists. Connecting it for syncing. Oddaljena mapa %1 že obstaja. Vzpostavljena bo povezava za usklajevanje. - - + + The folder creation resulted in HTTP error code %1 Ustvarjanje mape je povzročilo napako HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Ustvarjanje mape na oddaljenem naslovu je spodletelo zaradi napačnih poveril. <br/>Vrnite se in preverite zahtevana gesla.</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> <p><font color="red">Ustvarjanje oddaljene mape je spodletelo. Najverjetneje je vzrok v neustreznih poverilih.</font><br/>Vrnite se na predhodno stran in jih preverite.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Ustvarjanje oddaljene mape %1 je spodletelo z napako <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Vzpostavljena je povezava za usklajevanje med %1 in oddaljeno mapo %2. - + Successfully connected to %1! Povezava s strežnikom %1 je uspešno vzpostavljena! - + Connection to %1 could not be established. Please check again. Povezave z %1 ni mogoče vzpostaviti. Preveriti je treba nastavitve. - + Folder rename failed Preimenovanje mape je spodletelo - + Cannot 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. Mape ni mogoče odstraniti niti ni mogoče ustvariti varnostne kopije, ker je mapa, oziroma dokument v njej, odprt v drugem programu. Zaprite mapo oziroma dokument, ali pa prekinite namestitev. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Krajevno usklajena mapa %1 je uspešno ustvarjena!</b></font> @@ -3402,7 +3427,7 @@ To je nov preizkusni način. Če ga boste uporabili, pošljite tudi poročila o - + Error while deleting file record %1 from the database @@ -3619,46 +3644,46 @@ To je nov preizkusni način. Če ga boste uporabili, pošljite tudi poročila o OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Datoteke %1 ni mogoče preimenovati v %2 zaradi že obstoječe datoteke s tem imenom. - - - + + + could not get file %1 from local DB - + Error setting pin state Napaka nastavljanja pripetega staja - - + + Error updating metadata: %1 Prišlo je do napake posodabljanja metapodatkov: %1 - + The file %1 is currently in use Datoteka %1 je trenutno v uporabi. - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file Preimenovanje datoteke je spodletelo @@ -3679,7 +3704,7 @@ To je nov preizkusni način. Če ga boste uporabili, pošljite tudi poročila o OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". S strežnika je vrnjen neveljaven odziv HTTP. Pričakovan je 204, prejet pa je bil »%1 %2«. @@ -3984,7 +4009,7 @@ To je nov preizkusni način. Če ga boste uporabili, pošljite tudi poročila o Internal link - + Notranja povezava @@ -4180,12 +4205,12 @@ Server replied with error: %2 Lock file - + Zakleni datoteko Unlock file - + Odkleni datoteko @@ -4467,7 +4492,7 @@ Server replied with error: %2 Ni mogoče posodobiti metapodatkov navidezne datoteke: %1 - + Could not update file metadata: %1 @@ -4477,38 +4502,38 @@ Server replied with error: %2 - + Unresolved conflict. Nerazrešen spor - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Na voljo je le %1, za zagon pa je zahtevanih vsaj %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Ni mogoče odpreti ali ustvariti krajevne usklajevalne podatkovne zbirke. Prepričajte se, da imate ustrezna dovoljenja za pisanje v usklajevani mapi. - + Using virtual files with suffix, but suffix is not set V uporabi so navidezne datoteke s pripono, a ta ni nastavljena. - + Unable to read the blacklist from the local database Ni mogoče prebrati črnega seznama iz krajevne mape - + Unable to read from the sync journal. Ni mogoče brati iz dnevnika usklajevanja - + Cannot open the sync journal Ni mogoče odpreti dnevnika usklajevanja @@ -4518,12 +4543,12 @@ Server replied with error: %2 Usklajevanje se bo v kratkem nadaljevalo. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Zmanjkuje prostora na disku: prejem predmetov, ki bi zmanjšali prostor na disku pod %1 bo prekinjen. - + There is insufficient space available on the server for some uploads. Za usklajevanje je na strežniku premalo prostora. @@ -4594,7 +4619,7 @@ Server replied with error: %2 Download - + Prejmi @@ -4626,7 +4651,7 @@ Server replied with error: %2 Help - + Pomoč @@ -4652,24 +4677,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>Namizni program %1</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Nameščena je različica %1. Več podrobnosti je zabeleženih v <a href='%2'>priročniku Nextcloud</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Uporablja vstavek navideznih datotek: %1</small></p> - + <p>This release was supplied by %1</p> <p>Objavo je omogočila skupina %1</p> @@ -4861,8 +4886,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4870,8 +4895,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -4922,7 +4947,7 @@ Server replied with error: %2 Log in - + Prijava @@ -4933,7 +4958,7 @@ Server replied with error: %2 Sign up with provider - + Prijava s podatki ponudnika @@ -5100,7 +5125,7 @@ Server replied with error: %2 Username - + Uporabniško ime @@ -5115,7 +5140,7 @@ Server replied with error: %2 Choose different folder - + Izbor ciljne mape @@ -5239,27 +5264,27 @@ Server replied with error: %2 You renamed %1 - + Preimenovali ste %1 You deleted %1 - + Izbrisali ste %1 You created %1 - + Ustvarili ste %1 You changed %1 - + Spremenili ste %1 Synced %1 - + Usklajeno %1 @@ -5320,7 +5345,7 @@ Server replied with error: %2 Mark as read - + Označi kot prebrano @@ -5328,7 +5353,7 @@ Server replied with error: %2 Create a new share link - + Ustvari novo povezavo za souporabo @@ -5338,7 +5363,7 @@ Server replied with error: %2 Share options - + Možnosti souporabe @@ -5356,7 +5381,7 @@ Server replied with error: %2 Dismiss - + Opusti @@ -5366,17 +5391,17 @@ Server replied with error: %2 Allow editing - + Dovoli urejanje Password protect - + Zaščiti z geslom Set expiration date - + Nastavi datum preteka @@ -5575,67 +5600,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Povezano stanje - + Online Na voljo - + Away Ne spremljam - + Do not disturb Ne pustim se motiti - + Mute all notifications - + Invisible Drugim nevidno - + Appear offline - + Status message Sporočilo stanja - + What is your status? Kako želite nastaviti stanje? - + Clear status message after Počisti sporočilo stanja po - + Cancel - + Clear status message Počisti sporočilo stanja - + Set status message Nastavi sporočilo stanja @@ -5857,7 +5882,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Izgradnje iz predelave Git <a href="%1">%2</a> na %3, %4 z uporabo Qt %5, %6</small></p> diff --git a/translations/client_sr.ts b/translations/client_sr.ts index 041171f7c3125..df83cd33a5bc2 100644 --- a/translations/client_sr.ts +++ b/translations/client_sr.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ Није подешен налог. - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption Укључи шифровање + + + End-to-end encryption has been enabled for this account + + Warning @@ -612,7 +617,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -621,6 +626,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -743,12 +763,12 @@ This action will abort any currently running synchronization. Овај налог подржава шифровање са краја на крај - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1041,7 +1061,7 @@ This action will abort any currently running synchronization. Унесите Вашу лозинку за шифровање са краја на крај:<br><br>Корисник: %2<br>Налог: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1835,7 +1855,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2576,6 +2596,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Затвори + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2908,60 +2933,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder Синхронизација локалне фасцикле - - + + (%1) (%1) - + There isn't enough free space in the local folder! Нема довољно слободног места у локалној фасцикли! @@ -3065,144 +3090,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Успешно повезан са %1: %2 верзија %3 (%4)</font><br/><br/> - + Invalid URL Неисправна адреса - + Failed to connect to %1 at %2:<br/>%3 Неуспешно повезивање са %1 на %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Време је истекло у покушају повезивања са %1 на %2. - + Trying to connect to %1 at %2 … Покушавам да се повежем са %1 на %2… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Сервер није дозволио приступ. Да проверите имате ли исправан приступ, <a href="%1">кликните овде</a> да бисте приступили услузи из прегледача. - + There was an invalid response to an authenticated WebDAV request Добијен је неисправан одговор на аутентификовани ВебДАВ захтев - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Локална фасцикла %1 већ постоји. Одређујем је за синхронизацију.<br/><br/> - + Creating local sync folder %1 … Правим локалну фасциклу синхронизације %1… - + OK - + failed. неуспешно - + Could not create local folder %1 Не могу да направим локалну фасциклу %1 - + No remote folder specified! Није наведена удаљена фасцикла! - + Error: %1 Грешка: %1 - + creating folder on Nextcloud: %1 правим фасциклу на Некстклауду: % 1 - + Remote folder %1 created successfully. Удаљена фасцикла %1 је успешно направљена. - + The remote folder %1 already exists. Connecting it for syncing. Удаљена фасцикла %1 већ постоји. Повезујем се ради синхронизовања. - - + + The folder creation resulted in HTTP error code %1 Прављење фасцикле довело је до ХТТП грешке са кодом %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Прављење удаљене фасцикле није успело због погрешних акредитива!<br/>Идите назад и проверите ваше акредитиве.</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> <p><font color="red">Прављење удаљене фасцикле није успело због погрешних акредитива.</font><br/>Идите назад и проверите ваше акредитиве.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Прављење удаљене фасцикле %1 није успело због грешке <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. Веза за синхронизацију %1 до удаљеног директоријума %2 је подешена. - + Successfully connected to %1! Успешно повезан са %1! - + Connection to %1 could not be established. Please check again. Не може се успоставити веза са %1. Проверите поново. - + Folder rename failed Преименовање није успело - + Cannot 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> <font color="green"><b>Локална фасцикла за синхронизовање %1 је успешно направљена!</b></font> @@ -3380,7 +3405,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3597,46 +3622,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3657,7 +3682,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -4445,7 +4470,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4455,38 +4480,38 @@ Server replied with error: %2 - + Unresolved conflict. Неразрешени конфликт. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Доступно је само %1, треба бар %2 за започињање - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Не могу да отворим или креирам локалну базу за синхронизацију. Погледајте да ли имате право писања у синхронизационој фасцикли. - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database Не могу да читам листу ставки игнорисаних за синхронизацију из локалне базе - + Unable to read from the sync journal. Не могу да читам синхронизациони журнал. - + Cannot open the sync journal Не могу да отворим журнал синхронизације @@ -4496,12 +4521,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Мало простора на диску: преузимања која би смањила слободно место испод %1 су прескочена. - + There is insufficient space available on the server for some uploads. Нема довољно места на серверу за нека отпремања. @@ -4630,24 +4655,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 десктоп клијент</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Верзија %1. За више информација кликните <a href='%2'>овде</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> <p>Ово издање је обезбедио %1</p> @@ -4839,8 +4864,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4848,8 +4873,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5553,67 +5578,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5835,7 +5860,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Направљено од ГИТ ревизије <a href="%1">%2</a> %3, %4 користећи QT %5, %6</small></p> diff --git a/translations/client_sv.ts b/translations/client_sv.ts index 6e9946f63cbbb..94345996891fa 100644 --- a/translations/client_sv.ts +++ b/translations/client_sv.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Rensa statusmeddelandemenyn @@ -410,12 +410,12 @@ Det verkar som att funktionen "Virtuella filer" är aktiverad för denna mapp. För närvarande är det inte möjligt att uteslutande ladda ner virtuella filer med end-to-end-kryptering. För bästa upplevelse med virtuella filer och end-to-end-kryptering, säkerställ att "Gör alltid tillgänglig lokalt" är aktiverat. - + End-to-end Encryption with Virtual Files Ändpunkt-till-ändpunkt-kryptering med virtuella filer - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Det verkar som att funktionen "Virtuella filer" är aktiverad för denna mapp. För närvarande är det inte möjligt att ladda ner virtuella filer med ändpunkt-till-ändpunkt-kryptering. För virtuella filer och ändpunkt-till-ändpunkt-kryptering, verifiera att "Gör alltid tillgänglig lokalt" är aktiverat på den krypterade mappen. @@ -439,21 +439,26 @@ No account configured. Inget konto är konfigurerat. + + + Disable encryption + + Display mnemonic Visa mnemonic - - - End-to-end encryption has been enabled for this account - Ändpunkt-till-ändpunkt-kryptering har aktiverats för detta konto - Enable encryption Aktivera kryptering + + + End-to-end encryption has been enabled for this account + Ändpunkt-till-ändpunkt-kryptering har aktiverats för detta konto + Warning @@ -617,7 +622,7 @@ Den här åtgärden avbryter alla synkroniseringar som körs. End to end krypteringsord - + End-to-end encryption mnemonic Ändpunkt-till-ändpunkt krypteringsord @@ -626,6 +631,21 @@ Den här åtgärden avbryter alla synkroniseringar som körs. 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). För att skydda din krypteringsidentitet, krypterar vi den med en mnemoteknisk av 12 ord. Notera dessa krypteringsord och håll dem säkra. De kommer behövas för att lägga till andra enheter till ditt konto (t.ex. mobiltelefon eller laptop). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ Den här åtgärden avbryter alla synkroniseringar som körs. Detta konto stödjer ändpunkt-till-ändpunkt-kryptering - + Set up encryption Aktivera kryptering - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Ändpunkt-till-ändpunkt-kryptering har aktiverats på det här kontot med en annan enhet.<br>Det kan aktiveras på den här enheten genom att ange ditt krypteringsord.<br>Detta kommer att möjliggöra synkronisering av befintliga krypterade mappar. @@ -1046,7 +1066,7 @@ Den här åtgärden avbryter alla synkroniseringar som körs. Vänligen ange ditt lösenord för end-to-end-kryptering:<br><br>Användare: %2<br>Konto: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Ange din lösenordsfras för ändpunkt-till-ändpunkt-kryptering:<br><br>Användarnamn: %2<br>Konto: %3<br> @@ -1847,7 +1867,7 @@ Om detta var ett misstag och du vill behålla dina filer, kommer de att synkroni - - %1 + Could not decrypt! @@ -2588,6 +2608,11 @@ Objekt där radering är tillåtet raderas om de förhindrar att en mapp tas bor Close Stäng + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2923,60 +2948,60 @@ Observera att om du använder kommandoradsalternativ för loggning kommer den h - + Use &virtual files instead of downloading content immediately %1 Använd &virtuella filer istället för att ladda ner innehåll direkt %1 - + (experimental) (experimentell) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Windows stödjer inte virtuella filer direkt i rotkataloger. Välj en underkatalog. - + %1 folder "%2" is synced to local folder "%3" %1 mappen "%2" är synkroniserad mot den lokala mappen "%3" - + Sync the folder "%1" Synkronisera mappen '%1' - + Warning: The local folder is not empty. Pick a resolution! Varning: Den lokala mappen är inte tom. Välj en lösning! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 ledigt utrymme - + Virtual files are not available for the selected folder Virtuella filer är inte tillgängliga för den valda mappen - + Local Sync Folder Lokal mapp för synkronisering - - + + (%1) (%1) - + There isn't enough free space in the local folder! Det finns inte tillräckligt med ledigt utrymme i den lokala mappen! @@ -3080,144 +3105,144 @@ Observera att om du använder kommandoradsalternativ för loggning kommer den h OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Lyckades ansluta till %1: %2 version %3 (%4)</font><br/><br/> - + Invalid URL Ogiltig webbadress - + Failed to connect to %1 at %2:<br/>%3 Misslyckades att ansluta till %1 vid %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Försök att ansluta till %1 på %2 tog för lång tid. - + Trying to connect to %1 at %2 … Försöker ansluta till %1 på %2 ... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Den autentiserade begäran till servern omdirigerades till "%1". URL:n är felaktig, servern är felkonfigurerad. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Åtkomst förbjuden av servern. För att bekräfta att du har korrekta rättigheter, <a href="%1">klicka här</a> för att ansluta till tjänsten med din webb-läsare. - + There was an invalid response to an authenticated WebDAV request Det var ett ogiltigt svar på en verifierad WebDAV-begäran - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Den lokala synkroniseringsmappen % 1 finns redan, aktiverar den för synkronisering.<br/><br/> - + Creating local sync folder %1 … Skapar lokal synkroniseringsmapp %1 ... - + OK OK - + failed. misslyckades. - + Could not create local folder %1 Kunde inte skapa lokal mapp %1 - + No remote folder specified! Ingen fjärrmapp specificerad! - + Error: %1 Fel: %1 - + creating folder on Nextcloud: %1 skapar mapp på Nextcloud: %1 - + Remote folder %1 created successfully. Fjärrmapp %1 har skapats. - + The remote folder %1 already exists. Connecting it for syncing. Fjärrmappen %1 finns redan. Ansluter den för synkronisering. - - + + The folder creation resulted in HTTP error code %1 Skapande av mapp resulterade i HTTP felkod %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Det gick inte att skapa mappen efter som du inte har tillräckliga rättigheter!<br/>Vänligen återvänd och kontrollera dina rättigheter. - + <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> <p><font color="red">Misslyckades skapa fjärrmappen, troligen p.g.a felaktiga inloggningsuppgifter.</font><br/>Kontrollera dina inloggningsuppgifter.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Misslyckades skapa fjärrmapp %1 med fel <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. En synkroniseringsanslutning från %1 till fjärrmappen %2 har skapats. - + Successfully connected to %1! Ansluten till %1! - + Connection to %1 could not be established. Please check again. Anslutningen till %1 kunde inte etableras. Vänligen kontrollera och försök igen. - + Folder rename failed Omdöpning av mapp misslyckades - + Cannot 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. Kan inte ta bort och göra en säkerhetskopia av mappen på grund av att mappen eller en fil i den används av ett annat program. Stäng mappen eller filen och försök igen eller avbryt installationen. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>Lokal synkroniseringsmapp %1 skapad!</b></font> @@ -3401,7 +3426,7 @@ Detta är ett nytt experimentellt läge. Om du bestämmer dig för att använda Det går inte att synkronisera på grund av ogiltig ändringstid - + Error while deleting file record %1 from the database Fel vid borttagning av filpost %1 från databasen @@ -3618,46 +3643,46 @@ Detta är ett nytt experimentellt läge. Om du bestämmer dig för att använda OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Filen %1 kan inte döpas om till %2 på grund av namnkonflikt med en lokal fil - - - + + + could not get file %1 from local DB kunde inte hämta filen %1 från lokal DB - + Error setting pin state Kunde inte sätta pin-status - - + + Error updating metadata: %1 Fel vid uppdatering av metadata: %1 - + The file %1 is currently in use Filen %1 används för tillfället - - + + Could not delete file record %1 from local DB Kunde inte ta bort filposten %1 från lokal DB - + Failed to propagate directory rename in hierarchy Kunde inte propagera namnbyte på katalogen i hierarkin - + Failed to rename file Kunde inte döpa om filen @@ -3678,7 +3703,7 @@ Detta är ett nytt experimentellt läge. Om du bestämmer dig för att använda OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Felaktig HTTP-kod i svaret från servern. 204 förväntades, men "%1 %2" mottogs. @@ -4468,7 +4493,7 @@ Servern svarade med fel: %2 Kunde inte uppdatera virtuell filmetadata: %1 - + Could not update file metadata: %1 Kunde inte uppdatera filens metadata: %1 @@ -4478,38 +4503,38 @@ Servern svarade med fel: %2 Kunde inte ställa in filposten till lokal DB: %1 - + Unresolved conflict. Olöst konflikt. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Endast %1 tillgängligt, behöver minst %2 för att starta - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Kunde inte öppna eller återskapa den lokala synkroniseringsdatabasen. Säkerställ att du har skrivrättigheter till synkroniseringsmappen. - + Using virtual files with suffix, but suffix is not set Använder virtuella filer med suffix, men suffix är inte inställt - + Unable to read the blacklist from the local database Kunde inte läsa svartlistan från den lokala databasen - + Unable to read from the sync journal. Det går inte att läsa från synkroniseringsjournalen. - + Cannot open the sync journal Det går inte att öppna synkroniseringsjournalen @@ -4519,12 +4544,12 @@ Servern svarade med fel: %2 Synkroniseringen kommer att återupptas inom kort. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Diskutrymmet är lågt: Hämtningar som skulle reducera det fria utrymmet under %1 hoppas över. - + There is insufficient space available on the server for some uploads. Det finns inte tillräckligt med utrymme på servern för vissa uppladdningar. @@ -4653,24 +4678,24 @@ Servern svarade med fel: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Skrivbordsklient</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>Version %1. För mer information klicka <a href='%2'>här</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Använder plugin för virtuella filer: %1</small></p> - + <p>This release was supplied by %1</p> <p>Denna release levererades av %1</p> @@ -4862,8 +4887,8 @@ Servern svarade med fel: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Fel vid uppdatering av metadata på grund av ogiltig ändringstid @@ -4871,8 +4896,8 @@ Servern svarade med fel: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Fel vid uppdatering av metadata på grund av ogiltig ändringstid @@ -5329,17 +5354,17 @@ Servern svarade med fel: %2 Create a new share link - + Skapa en ny delad länk Copy share link location - + Kopiera delningslänkens plats Share options - + Delningsalternativ @@ -5347,57 +5372,57 @@ Servern svarade med fel: %2 An error occurred setting the share password. - + Ett fel uppstod vid inställning av delningslösenordet. Edit share - + Redigera delning Dismiss - + Avfärda Share label - + Delningsetikett Allow editing - + Tillåt redigering Password protect - + Lösenordsskydda Set expiration date - + Välj utgångsdatum Note to recipient - + Notering till mottagare Unshare - + Sluta dela Add another link - + Lägg till en annan länk Copy share link - + Kopiera delningslänk @@ -5502,7 +5527,7 @@ Servern svarade med fel: %2 No results for - + Inga resultat för @@ -5510,7 +5535,7 @@ Servern svarade med fel: %2 Search results section %1 - + Sökresultat %1 @@ -5576,67 +5601,67 @@ Servern svarade med fel: %2 UserStatusSelector - + Online status Status - + Online Online - + Away Borta - + Do not disturb Stör ej - + Mute all notifications Stäng av alla aviseringar - + Invisible Osynlig - + Appear offline Visa som frånkopplad - + Status message Statusmeddelande - + What is your status? Vad är din status? - + Clear status message after Rensa status efter - + Cancel Avbryt - + Clear status message Rensa status - + Set status message Välj status @@ -5858,7 +5883,7 @@ Servern svarade med fel: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Byggd från Git revision <a href="%1">%2</a> den %3, %4 med Qt %5, %6</small></p> diff --git a/translations/client_th.ts b/translations/client_th.ts index 4517be8914ead..10657a1c3f91f 100644 --- a/translations/client_th.ts +++ b/translations/client_th.ts @@ -31,7 +31,7 @@ Open file details - + เปิดรายละเอียดไฟล์ @@ -49,13 +49,13 @@ No activities yet - + ยังไม่มีกิจกรรม BasicComboBox - + Clear status message menu @@ -70,7 +70,7 @@ Answer Talk call notification - + รับสายในการแจ้งเตือน Talk @@ -80,7 +80,7 @@ Decline Talk call notification - + ปฏิเสธสายในการแจ้งเตือน Talk @@ -172,7 +172,7 @@ Opening file for local editing - + กำลังเปิดไฟล์สำหรับการแก้ไขที่ต้นทาง @@ -188,7 +188,7 @@ Error - + ข้อผิดพลาด @@ -196,17 +196,17 @@ Dismiss - + ปิดทิ้ง Activity - + กิจกรรม Sharing - + การแชร์ @@ -214,7 +214,7 @@ File details of %1 · %2 - + รายละเอียดไฟล์ %1 · %2 @@ -233,7 +233,7 @@ Moving to the trash is not implemented on this platform - + แพลตฟอร์มนี้ยังไม่รองรับการย้ายไปยังถังขยะ @@ -410,12 +410,12 @@ - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -440,13 +440,13 @@ ไม่มีบัญชีที่กำหนดค่าไว้ - - Display mnemonic + + Disable encryption - - End-to-end encryption has been enabled for this account + + Display mnemonic @@ -454,6 +454,11 @@ Enable encryption เปิดใช้งานการเข้ารหัส + + + End-to-end encryption has been enabled for this account + + Warning @@ -611,7 +616,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -620,6 +625,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -742,12 +762,12 @@ This action will abort any currently running synchronization. บัญชีนี้รองรับการเข้ารหัสลับแบบต้นทางถึงปลายทาง - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1040,7 +1060,7 @@ This action will abort any currently running synchronization. - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1645,7 +1665,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Keep files - เก็บไฟล์เอาไว้ + เก็บไฟล์ไว้ @@ -1731,7 +1751,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Last Sync was successful. - ซิงค์ครั้งล่าสุดเสร็จเรียบร้อยแล้ว + การซิงค์ครั้งล่าสุดสำเร็จ @@ -1786,22 +1806,22 @@ If this was an accident and you decide to keep your files, they will be re-synce You have no permission to write to the selected folder! - คุณมีสิทธิ์ที่จะเขียนโฟลเดอร์ที่เลือกนี้! + คุณไม่มีสิทธิ์ที่จะเขียนไปยังโฟลเดอร์ที่เลือก! The local folder %1 already contains a folder used in a folder sync connection. Please pick another one! - เนื้อหาโฟลเดอร์ต้นทาง %1 ได้ถูกใช้ไปแล้วในโฟลเดอร์ที่ซิงค์ กรุณาเลือกอีกอันหนึ่ง! + โฟลเดอร์ต้นทาง %1 มีโฟลเดอร์ที่ใช้ในการเชื่อมต่อโฟลเดอร์ซิงค์อยู่แล้ว กรุณาเลือกโฟลเดอร์อื่น! The local folder %1 is already contained in a folder used in a folder sync connection. Please pick another one! - เนื้อหาของโฟลเดอร์ต้นทาง %1 ไดถูกใช้ไปแล้วในโฟลเดอร์ที่ซิงค์ กรุณาเลือกอีกอันหนึ่ง! + โฟลเดอร์ต้นทาง %1 มีอยู่ในโฟลเดอร์ที่ถูกใช้ในการเชื่อมต่อโฟลเดอร์ซิงค์อยู่แล้ว กรุณาเลือกโฟลเดอร์อื่น! There is already a sync from the server to this local folder. Please pick another local folder! - โฟลเดอร์ต้นทางนี้ได้ถูกซิงค์กับเซิร์ฟเวอร์แล้ว โปรดเลือกโฟลเดอร์ต้นทางอื่นๆ! + มีการซิงค์จากเซิร์ฟเวอร์มายังโฟลเดอร์ต้นทางนี้แล้ว กรุณาเลือกโฟลเดอร์ต้นทางอื่น! @@ -1809,7 +1829,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Add Folder Sync Connection - เพิ่มโฟลเดอร์ที่ต้องการซิงค์ + เพิ่มการเชื่อมต่อโฟลเดอร์ซิงค์ @@ -1831,7 +1851,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -1844,7 +1864,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Error while loading the list of folders from the server. - ข้อผิดพลาดขณะโหลดรายชื่อโฟลเดอร์จากเซิร์ฟเวอร์ + เกิดข้อผิดพลาดขณะโหลดรายชื่อโฟลเดอร์จากเซิร์ฟเวอร์ @@ -1854,7 +1874,7 @@ If this was an accident and you decide to keep your files, they will be re-synce There are unresolved conflicts. Click for details. - มีข้อขัดแย้งที่ยังไม่ได้รับการแก้ไข คลิกเพื่อดูรายละเอียด + มีข้อขัดแย้งที่ยังไม่ได้แก้ไข คลิกเพื่อดูรายละเอียด @@ -1901,7 +1921,7 @@ If this was an accident and you decide to keep your files, they will be re-synce , - หรือ + , @@ -1967,7 +1987,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Waiting for %n other folder(s) … - กำลังรออีก %n โฟลเดอร์อื่น … + กำลังรอสำหรับ %n โฟลเดอร์อื่น … @@ -1996,12 +2016,12 @@ If this was an accident and you decide to keep your files, they will be re-synce Add Folder Sync Connection - เพิ่มโฟลเดอร์ที่ต้องการซิงค์ + เพิ่มการเชื่อมต่อโฟลเดอร์ซิงค์ Add Sync Connection - เพิ่มการซิงค์ให้ตรงกัน + เพิ่มการเชื่อมต่อการซิงค์ @@ -2009,7 +2029,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Click to select a local folder to sync. - คลิกเพื่อเลือกโฟลเดอร์ในการซิงค์ + คลิกเพื่อเลือกโฟลเดอร์ต้นทางที่จะซิงค์ @@ -2032,12 +2052,12 @@ If this was an accident and you decide to keep your files, they will be re-synce Enter the name of the new folder to be created below "%1": - ใส่ชื่อของโฟลเดอร์ใหม่ที่จะถูกสร้างขึ้นภายใต้ '%1': + ใส่ชื่อของโฟลเดอร์ใหม่ที่จะถูกสร้างขึ้นภายใต้ "%1": Folder was successfully created on %1. - โฟลเดอร์ถูกสร้างขึ้นเรียบร้อยเมื่อ %1 + สร้างโฟลเดอร์บน %1 เรียบร้อย @@ -2047,7 +2067,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Failed to create the folder on %1. Please check manually. - ไม่สามารถสร้างโฟลเดอร์บน %1 กรุณาตรวจสอบด้วยตนเอง + ไม่สามารถสร้างโฟลเดอร์บน %1 กรุณาตรวจสอบด้วยตัวเอง @@ -2229,7 +2249,7 @@ If this was an accident and you decide to keep your files, they will be re-synce Ask for confirmation before synchronizing folders larger than - ถามก่อนที่จะซิงค์กับโฟลเดอร์ที่มีขนาดใหญ่กว่า + ถามก่อนที่จะซิงค์โฟลเดอร์ที่มีขนาดใหญ่กว่า @@ -2250,7 +2270,7 @@ If this was an accident and you decide to keep your files, they will be re-synce S&how crash reporter - แ&สดงรายงานความผิดพลาด + แ&สดงตัวรายงานข้อผิดพลาด @@ -2381,17 +2401,17 @@ Note that this selects only what pool upgrades are taken from, and that there ar Global Ignore Settings - รายละเอียดการตั้งค่าทั่วไป + การตั้งค่าการละเว้นทั้งหมด Sync hidden files - ซิงค์ไฟล์ที่ถูกซ่อนอยู่ + ซิงค์ไฟล์ที่ซ่อนอยู่ Files Ignored by Patterns - ข้ามไฟล์โดยรูปแบบ + รูปแบบไฟล์ที่ละเว้น @@ -2570,6 +2590,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2586,7 +2611,7 @@ Items where deletion is allowed will be deleted if they prevent a directory from Log Output - ผลลัพธ์ของไฟล์ log + ผลลัพธ์ของไฟล์บันทึก @@ -2709,7 +2734,7 @@ Note that using any logging command line options will override this setting. Proxy server requires authentication - ต้องตรวจสอบพร็อกซีเซิร์ฟเวอร์ + พร็อกซีเซิร์ฟเวอร์ต้องยืนยันตัวตน @@ -2719,13 +2744,13 @@ Note that using any logging command line options will override this setting. Download Bandwidth - ดาวน์โหลดแบนด์วิดธ์ + แบนด์วิดท์ดาวน์โหลด Limit to - จำกัดถึง + จำกัดที่ @@ -2754,22 +2779,22 @@ Note that using any logging command line options will override this setting. Upload Bandwidth - อัพโหลดแบนด์วิดธ์ + แบนด์วิดท์อัปโหลด Hostname of proxy server - ชื่อโฮสต์ของเซิร์ฟเวอร์พร็อกซี่ + ชื่อโฮสต์ของพร็อกซีเซิร์ฟเวอร์ Username for proxy server - ชื่อผู้ใช้ของเซิร์ฟเวอร์พร็อกซี่ + ชื่อผู้ใช้ของพร็อกซีเซิร์ฟเวอร์ Password for proxy server - รหัสผ่านของเซิร์ฟเวอร์พร็อกซี่ + รหัสผ่านของพร็อกซีเซิร์ฟเวอร์ @@ -2880,12 +2905,12 @@ Note that using any logging command line options will override this setting. Update status is unknown: Did not check for new updates. - สถานะการอัพเดทที่ไม่รู้จัก: จะไม่มีการตรวจสอบการอัพเดทใหม่ + สถานะการอัปเดตไม่รู้จัก: ไม่ได้ตรวจสอบการอัปเดตใหม่ No updates available. Your installation is at the latest version. - ไม่พบการอัพเดท ตัวที่ติดตั้งเป็นเวอร์ชั่นล่าสุด + ไม่พบการอัปเดต การติดตั้งของคุณเป็นรุ่นล่าสุด @@ -2902,60 +2927,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 - + (experimental) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. - + %1 folder "%2" is synced to local folder "%3" - + Sync the folder "%1" - + Warning: The local folder is not empty. Pick a resolution! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB - + Virtual files are not available for the selected folder - + Local Sync Folder โฟลเดอร์ซิงค์ต้นทาง - - + + (%1) (%1) - + There isn't enough free space in the local folder! @@ -3021,7 +3046,7 @@ Note that using any logging command line options will override this setting. Login in your browser - เข้าสู่ระบบในเบราเซอร์ของคุณ + เข้าสู่ระบบในเบราว์เซอร์ของคุณ @@ -3043,7 +3068,7 @@ Note that using any logging command line options will override this setting. &Next > - &ถัดไป > + ถั&ดไป > @@ -3059,146 +3084,146 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">เชื่อมต่อกับ %1: %2 รุ่น %3 (%4) เสร็จเรียบร้อยแล้ว</font><br/><br/> - + Invalid URL URL ไม่ถูกต้อง - + Failed to connect to %1 at %2:<br/>%3 ไม่สามารถเชื่อมต่อไปยัง %1 ที่ %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. - หมดเวลาขณะที่พยายามเชื่อมต่อไปยัง %1 ที่ %2 + หมดเวลาขณะพยายามเชื่อมต่อไปยัง %1 ที่ %2 - + Trying to connect to %1 at %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. การเข้าถึงถูกระงับโดยเซิร์ฟเวอร์ เพื่อตรวจสอบว่าคุณมีการเข้าถึงที่เหมาะสม <a href="%1">คลิกที่นี่</a>เพื่อเข้าถึงบริการกับเบราว์เซอร์ของคุณ - + There was an invalid response to an authenticated WebDAV request - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> - ซิงค์โฟลเดอร์ต้นทาง %1 มีอยู่แล้ว กรุณาตั้งค่าเพื่อถ่ายข้อมูล <br/<br/> + โฟลเดอร์ซิงค์ต้นทาง %1 มีอยู่แล้ว กำลังตั้งค่าเพื่อซิงค์ <br/><br/> - + Creating local sync folder %1 … - + OK - + failed. ล้มเหลว - + Could not create local folder %1 - ไม่สามารถสร้างผสานข้อมูลโฟลเดอร์ต้นทาง %1... + ไม่สามารถสร้างโฟลเดอร์ต้นทาง %1 - + No remote folder specified! ไม่มีโฟลเดอร์รีโมทที่ระบุ! - + Error: %1 ข้อผิดพลาด: %1 - + creating folder on Nextcloud: %1 - + Remote folder %1 created successfully. โฟลเดอร์รีโมท %1 ถูกสร้างเรียบร้อยแล้ว - + The remote folder %1 already exists. Connecting it for syncing. โฟลเดอร์ปลายทาง %1 มีอยู่แล้ว กำลังเชื่อมต่อเพื่อซิงค์ข้อมูล - - + + The folder creation resulted in HTTP error code %1 การสร้างโฟลเดอร์ดังกล่าวทำให้เกิดรหัสข้อผิดพลาด HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> - สร้างโฟลเดอร์ระยะไกลล้มเหลวเนื่องจากมีข้อมูลผิดพลาด! + สร้างโฟลเดอร์ระยะไกลล้มเหลว เนื่องจากข้อมูลประจำตัวที่ระบุไว้ไม่ถูกต้อง!<br/>กรุณาย้อนกลับไปตรวจสอบข้อมูลประจำตัวของคุณ</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> <p><font color="red">การสร้างโฟลเดอร์ปลายทางล้มเหลว ซึ่งอาจมีสาเหตุมาจากการกรอกข้อมูลส่วนตัวไม่ถูกต้อง</font><br/>กรุณาย้อนกลับและตรวจสอบข้อมูลส่วนตัวของคุณอีกครั้ง</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. การสร้างโฟลเดอร์ปลายทาง %1 ล้มเหลวเนื่องจากข้อผิดพลาด <tt>%2</tt> - + A sync connection from %1 to remote directory %2 was set up. - การเชื่อมต่อเผื่อซิงค์จาก %1 ไปที่ไดเร็กทอรี่ระยะไกล %2 ได้ถูกติดตั้งแล้ว + การเชื่อมต่อการซิงค์จาก %1 ไปยังไดเร็กทอรีระยะไกล %2 ได้ถูกติดตั้งแล้ว - + Successfully connected to %1! เชื่อมต่อไปที่ %1 สำเร็จ - + Connection to %1 could not be established. Please check again. การเชื่อมต่อกับ %1 ไม่สามารถดำเนินการได้ กรุณาตรวจสอบอีกครั้ง - + Folder rename failed เปลี่ยนชื่อโฟลเดอร์ล้มเหลว - + Cannot 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> - <font color="green"><b>ซิงค์โฟลเดอร์ต้นทาง %1 ได้ถูกสร้างขึ้นเรียบร้อยแล้ว!</b></font> + <font color="green"><b>สร้างโฟลเดอร์ซิงค์ต้นทาง %1 เรียบร้อยแล้ว!</b></font> @@ -3374,7 +3399,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3485,12 +3510,12 @@ This is a new, experimental mode. If you decide to use it, please report any iss File %1 can not be downloaded because of a local file name clash! - ไฟล์ %1 ไม่สามารถดาวน์โหลดได้เพราะชื่อไฟล์ต้นทางเหมือนกัน! + ไม่สามารถดาวน์โหลดไฟล์ %1 เพราะชื่อไฟล์ต้นทางเหมือนกัน! The download would reduce free local disk space below the limit - การดาวน์โหลดจะช่วยลดพืนที่จัดเก็บภายในเครื่องที่ต่ำกว่าขีดจำกัด + การดาวน์โหลดจะลดพื้นที่จัดเก็บที่ว่างอยู่ในเครื่องลงต่ำกว่าขีดจำกัด @@ -3505,7 +3530,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss The file could not be downloaded completely. - ดาวน์โหลดไฟล์ไม่สำเร็จ + ไม่สามารถดาวน์โหลดไฟล์ได้ครบถ้วน @@ -3515,7 +3540,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss File %1 cannot be saved because of a local file name clash! - ไฟล์ %1 ไม่สามารถบันทึกได้เพราะชื่อไฟล์ต้นทางเหมือนกัน! + ไม่สามารถบันทึกไฟล์ %1 เพราะชื่อไฟล์ต้นทางเหมือนกัน! @@ -3539,12 +3564,12 @@ This is a new, experimental mode. If you decide to use it, please report any iss ; Restoration Failed: %1 - ; ฟื้นฟูล้มเหลว: %1 + ; กู้คืนล้มเหลว: %1 A file or folder was removed from a read only share, but restoring failed: %1 - ไฟล์หรือโฟลเดอร์ที่ถูกลบออกจากส่วนการอ่านเพียงอย่างเดียว แต่ล้มเหลวในการฟื้นฟู: %1 + มีไฟล์หรือโฟลเดอร์ถูกลบออกจากการแชร์แบบอ่านเท่านั้นแล้ว แต่การกู้คืนล้มเหลว: %1 @@ -3557,7 +3582,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Attention, possible case sensitivity clash with %1 - คำเตือน เคสที่เป็นไปไม่ได้มีผลกับ %1 + คำเตือน เป็นไปได้ว่ามีตัวพิมพ์เล็กใหญ่เหมือนกับ %1 @@ -3580,7 +3605,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Could not remove %1 because of a local file name clash - ไม่สามารถลบ %1 เพราะชื่อไฟล์ต้นทางเหมือนกัน! + ไม่สามารถลบ %1 เพราะชื่อไฟล์ต้นทางเหมือนกัน @@ -3591,46 +3616,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash - - - + + + could not get file %1 from local DB - + Error setting pin state - - + + Error updating metadata: %1 - + The file %1 is currently in use - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file @@ -3640,7 +3665,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Wrong HTTP code returned by server. Expected 204, but received "%1 %2". - รหัส HTTP ผิดพลาด โดยเซิร์ฟเวอร์คาดว่าจะได้รับรหัส 204 แต่กลับได้รับ "%1 %2" + รหัส HTTP ที่ส่งคืนจากเซิร์ฟเวอร์ไม่ถูกต้อง คาดว่าจะได้รับรหัส 204 แต่ได้รับ "%1 %2" @@ -3651,7 +3676,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". @@ -3661,7 +3686,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Wrong HTTP code returned by server. Expected 201, but received "%1 %2". - รหัส HTTP ผิดพลาด โดยเซิร์ฟเวอร์คาดว่าจะได้รับรหัส 201 แต่กลับได้รับ "%1 %2" + รหัส HTTP ที่ส่งคืนจากเซิร์ฟเวอร์ไม่ถูกต้อง คาดว่าจะได้รับรหัส 201 แต่ได้รับ "%1 %2" @@ -3684,7 +3709,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Wrong HTTP code returned by server. Expected 201, but received "%1 %2". - รหัส HTTP ผิดพลาด โดยเซิร์ฟเวอร์คาดว่าจะได้รับรหัส 201 แต่กลับได้รับ "%1 %2" + รหัส HTTP ที่ส่งคืนจากเซิร์ฟเวอร์ไม่ถูกต้อง คาดว่าจะได้รับรหัส 201 แต่ได้รับ "%1 %2" @@ -3727,13 +3752,13 @@ This is a new, experimental mode. If you decide to use it, please report any iss File %1 cannot be uploaded because another file with the same name, differing only in case, exists - ไม่สามารถอัพโหลดไฟล์ %1 เนื่องจากมีไฟล์อื่นที่มีชื่อเดียวกันอยู่แล้ว + ไม่สามารถอัปโหลดไฟล์ %1 เนื่องจากมีไฟล์อื่นที่มีชื่อเดียวกันอยู่ แต่ต่างกันเพียงตัวพิมพ์ใหญ่เล็ก Upload of %1 exceeds the quota for the folder - การอัพโหลด %1 เกินโควต้าของโฟลเดอร์ + การอัปโหลด %1 เกินโควต้าของโฟลเดอร์ @@ -3750,12 +3775,12 @@ This is a new, experimental mode. If you decide to use it, please report any iss Local file changed during syncing. It will be resumed. - ไฟล์ต้นทางถูกเปลี่ยนแปลงในระหว่างการซิงค์ มันจะกลับมา + ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะซิงค์ การซิงค์จะกลับมาต่อ Local file changed during sync. - ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะกำลังซิงค์ + ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะซิงค์ @@ -3783,7 +3808,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Local file changed during sync. - ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะกำลังซิงค์ + ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะซิงค์ @@ -3793,7 +3818,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Unexpected return code from server (%1) - มีรหัสข้อผิดพลาดตอบกลับมาจากเซิร์ฟเวอร์ (%1) + มีรหัสส่งคืนที่ไม่คาดคิดตอบกลับมาจากเซิร์ฟเวอร์ (%1) @@ -3803,7 +3828,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Missing ETag from server - ETag ได้หายไปจากเซิร์ฟเวอร์ + ETag จากเซิร์ฟเวอร์ขาดไป @@ -3811,7 +3836,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Poll URL missing - ไม่มี Poll URL + Poll URL ขาดไป @@ -3821,7 +3846,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Local file changed during sync. - ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะกำลังซิงค์ + ไฟล์ต้นทางถูกเปลี่ยนแปลงขณะซิงค์ @@ -3834,12 +3859,12 @@ This is a new, experimental mode. If you decide to use it, please report any iss Proxy authentication required - การตรวจสอบพร็อกซีที่จำเป็น + จำเป็นต้องตรวจสอบความถูกต้องพร็อกซี Username: - ชื่อผู้ใช้งาน + ชื่อผู้ใช้: @@ -3891,7 +3916,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss No subfolders currently on the server. - ไม่มีโฟลเดอร์ย่อยอยู่บนเซิร์ฟเวอร์ + ไม่มีโฟลเดอร์ย่อยที่อยู่บนเซิร์ฟเวอร์ @@ -3909,7 +3934,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Dismiss - ยกเลิก + ปิดทิ้ง @@ -3917,7 +3942,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Settings - ตั้งค่า + การตั้งค่า @@ -4251,7 +4276,7 @@ Server replied with error: %2 Serial: - ซีเรียล: + หมายเลขลำดับ: @@ -4307,7 +4332,8 @@ Server replied with error: %2 This connection is encrypted using %1 bit %2. - การเชื่อมต่อนี้ถูกเข้ารหัสโดยใช้ %1 บิต %2 + การเชื่อมต่อนี้ถูกเข้ารหัสโดยใช้ %2 %1 บิต + @@ -4368,7 +4394,7 @@ Server replied with error: %2 &lt;not specified&gt; - &lt;ยังไม่ได้ถูกระบุ&gt; + &lt;ไม่ได้ระบุ&gt; @@ -4437,7 +4463,7 @@ Server replied with error: %2 - + Could not update file metadata: %1 @@ -4447,38 +4473,38 @@ Server replied with error: %2 - + Unresolved conflict. ข้อขัดแย้งที่ยังไม่ได้แก้ไข - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() มีเพียง %1 ต้องมีอย่างน้อย %2 เพื่อเริ่มต้น - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. ไม่สามารถเปิดหรือสร้างฐานข้อมูลการซิงค์ในเครื่อง ตรวจสอบว่าคุณมีสิทธิ์การเขียนในโฟลเดอร์ซิงค์ - + Using virtual files with suffix, but suffix is not set - + Unable to read the blacklist from the local database ไม่สามารถอ่านบัญชีดำจากฐานข้อมูลต้นทาง - + Unable to read from the sync journal. ไม่สามารถอ่านจากบันทึกการซิงค์ - + Cannot open the sync journal ไม่สามารถเปิดบันทึกการซิงค์ @@ -4488,12 +4514,12 @@ Server replied with error: %2 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. พื้นที่จัดเก็บเหลือน้อย: การดาวน์โหลดที่จะลดพื้นที่ว่างลงต่ำกว่า %1 ถูกข้ามไป - + There is insufficient space available on the server for some uploads. มีพื้นที่ว่างบนเซิร์ฟเวอร์ไม่เพียงพอสำหรับการอัปโหลดบางรายการ @@ -4591,7 +4617,7 @@ Server replied with error: %2 Settings - ตั้งค่า + การตั้งค่า @@ -4622,24 +4648,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> - + <p>This release was supplied by %1</p> @@ -4831,8 +4857,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time @@ -4840,8 +4866,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time @@ -5012,7 +5038,7 @@ Server replied with error: %2 Error during synchronization - เกิดข้อผิดพลาดขณะทำการซิงค์ + เกิดข้อผิดพลาดขณะซิงโครไนซ์ @@ -5121,7 +5147,7 @@ Server replied with error: %2 Choose what to sync - เลือกข้อมูลที่ต้องการประสาน + เลือกสิ่งที่จะซิงค์ @@ -5264,7 +5290,7 @@ Server replied with error: %2 Less than a minute ago - ไม่กี่นาทีที่ผ่านมา + ไม่ถึงนาทีที่ผ่านมา @@ -5545,67 +5571,67 @@ Server replied with error: %2 UserStatusSelector - + Online status - + Online - + Away - + Do not disturb - + Mute all notifications - + Invisible - + Appear offline - + Status message - + What is your status? - + Clear status message after - + Cancel - + Clear status message - + Set status message @@ -5615,17 +5641,17 @@ Server replied with error: %2 %L1 GB - %L1 กิกะไบต์ + %L1 GB %L1 MB - %L1 เมกะไบต์ + %L1 MB %L1 KB - %L1 กิโลไบต์ + %L1 KB @@ -5827,7 +5853,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> @@ -5941,7 +5967,7 @@ Server replied with error: %2 Waiting to start sync - กำลังรอการเริ่มต้นซิงค์ + กำลังรอเริ่มต้นการซิงค์ @@ -5951,7 +5977,7 @@ Server replied with error: %2 Sync Success - การซิงค์เสร็จสิ้น + การซิงค์สำเร็จ @@ -5966,7 +5992,7 @@ Server replied with error: %2 Setup Error - เกิดข้อผิดพลาดในการตั้งค่า + ตั้งค่าผิดพลาด @@ -6183,7 +6209,7 @@ Server replied with error: %2 Set expiration date - กำหนดวันที่หมดอายุ + กำหนดวันหมดอายุ diff --git a/translations/client_tr.ts b/translations/client_tr.ts index dbebbf31c0510..075f5c94bfede 100644 --- a/translations/client_tr.ts +++ b/translations/client_tr.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Durum iletisini kaldırma menüsü @@ -410,12 +410,12 @@ Görünüşe göre bu klasör için sanal dosyalar özelliğini etkinleştirmişsiniz. Şu anda uçtan uca şifrelenmiş sanal dosyaların örtülü olarak indirilmesi desteklenmiyor. Sanal dosyalar ve uçtan uca şifreleme ile en iyi deneyimi elde etmek için, şifrelenmiş klasörün "Her zaman yerel olarak kullanılabilsin" olarak işaretlendiğinden emin olun. - + End-to-end Encryption with Virtual Files Sanal dosyalar ile uçtan uca şifreleme - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". Görünüşe göre bu klasör için sanal dosyalar özelliğini etkinleştirmişsiniz. Şu anda uçtan uca şifrelenmiş sanal dosyaların örtülü olarak indirilmesi desteklenmiyor. Sanal dosyalar ve uçtan uca şifreleme ile en iyi deneyimi elde etmek için, şifrelenmiş klasörün "Her zaman yerel olarak kullanılabilsin" olarak işaretlendiğinden emin olun. @@ -439,21 +439,26 @@ No account configured. Herhangi bir hesap yapılandırılmamış. + + + Disable encryption + + Display mnemonic Anımsatıcı görüntülensin - - - End-to-end encryption has been enabled for this account - Bu hesap için uçtan uca şifreleme kullanılıyor - Enable encryption Şifreleme kullanılsın + + + End-to-end encryption has been enabled for this account + Bu hesap için uçtan uca şifreleme kullanılıyor + Warning @@ -617,7 +622,7 @@ Bu işlem şu anda yürütülmekte olan eşitleme işlemlerini durdurur.Uçtan uca şifreleme anımsatıcısı - + End-to-end encryption mnemonic Uçtan uca şifreleme anımsatıcısı @@ -626,6 +631,21 @@ Bu işlem şu anda yürütülmekte olan eşitleme işlemlerini durdurur.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). Şifreli kimliğiniz korunmak için 12 sözlük sözcüğünden oluşan bir anımsatıcı ile şifrelendi. Lütfen bu sözcükleri not ederek güvenli bir yerde saklayın. Bu bilgi hesabınıza başka aygıtlar (cep telefonu ya da bilgisayar) eklemek istediğinizde gerekir. + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ Bu işlem şu anda yürütülmekte olan eşitleme işlemlerini durdurur.Bu hesap uçtan uca şifrelemeyi destekliyor - + Set up encryption Şifreleme kurulumu - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. Bu hesapta uçtan uca şifreleme başka bir aygıt ile etkinleştirilmiş.<br>Anımsatıcınızı yazarak bu aygıt için etkinleştirebilirsiniz.<br>Böylece var olan şifrelenmiş klasörler eşitlenmeye başlanır. @@ -1046,7 +1066,7 @@ Bu işlem şu anda yürütülmekte olan eşitleme işlemlerini durdurur.Lütfen uçtan uca şifreleme parolasını yazın:<br><br>Kullanıcı:%2<br>Hesap:%3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> Lütfen uçtan uca şifreleme parolasını yazın:<br><br>Kullanıcı adı: %2<br>Hesap: %3<br> @@ -1846,8 +1866,8 @@ Bu işlemi yanlışlıkla yaptıysanız ve dosyalarınızı korumak istiyorsanı - - %1 - - %1 + Could not decrypt! + @@ -2589,6 +2609,11 @@ Silme izni verildiğinde bir klasörün silinmesini engelleyen ögeler silinir. Close Kapat + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Komut satırından verilen günlük komutlarının bu ayarın yerine geçeceğin - + Use &virtual files instead of downloading content immediately %1 İçerik &hemen indirilmek yerine sanal dosyalar kullanılsın %1 - + (experimental) (deneysel) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Sanal dosyalar, yerel klasör olarak Windows bölümü kök klasörlerini desteklemez. Lütfen sürücü harfinin altında bulunan bir klasör seçin. - + %1 folder "%2" is synced to local folder "%3" %1 klasörü "%2", yerel "%3" klasörü ile eşitlendi - + Sync the folder "%1" "%1" klasörünü eşitle - + Warning: The local folder is not empty. Pick a resolution! Uyarı: Yerel klasör boş değil. Bir çözüm seçin! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 boş alan - + Virtual files are not available for the selected folder Sanal dosyalar seçilmiş klasör için kullanılamaz - + Local Sync Folder Yerel eşitleme klasörü - - + + (%1) (%1) - + There isn't enough free space in the local folder! Yerel klasörde yeterli boş alan yok! @@ -3081,144 +3106,144 @@ Komut satırından verilen günlük komutlarının bu ayarın yerine geçeceğin OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">%1 bağlantısı kuruldu: %2 sürüm %3 (%4)</font><br/><br/> - + Invalid URL Adres geçersiz - + Failed to connect to %1 at %2:<br/>%3 %1 ile %2 zamanında bağlantı kurulamadı:<br/>%3 - + Timeout while trying to connect to %1 at %2. %1 ile %2 zamanında bağlantı kurulurken zaman aşımı. - + Trying to connect to %1 at %2 … %2 üzerindeki %1 ile bağlantı kuruluyor … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Sunucuya yapılan kimlik doğrulama isteği "%1" adresine yönlendirildi. Adres ya da sunucu yapılandırması hatalı. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Erişim sunucu tarafından engellendi. Web tarayıcınız ile hizmete erişerek yeterli izne sahip olup olmadığınızı doğrulamak için <a href="%1">buraya tıklayın</a>. - + There was an invalid response to an authenticated WebDAV request Kimliği doğrulanmış bir WebDAV isteğine geçersiz bir yanıt verildi - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> %1 yerel eşitleme klasörü zaten var, eşitlemeye ayarlanıyor.<br/><br/> - + Creating local sync folder %1 … %1 yerel eşitleme klasörü oluşturuluyor … - + OK Tamam - + failed. başarısız. - + Could not create local folder %1 %1 yerel klasörü oluşturulamadı - + No remote folder specified! Uzak klasör belirtilmemiş! - + Error: %1 Hata: %1 - + creating folder on Nextcloud: %1 Nextcloud üzerinde klasör oluşturuluyor: %1 - + Remote folder %1 created successfully. %1 uzak klasörü oluşturuldu. - + The remote folder %1 already exists. Connecting it for syncing. Uzak klasör %1 zaten var. Eşitlemek için bağlantı kuruluyor. - - + + The folder creation resulted in HTTP error code %1 Klasör oluşturma işlemi %1 HTTP hata kodu ile sonuçlandı - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Geçersiz kimlik doğrulama bilgileri nedeniyle uzak klasör oluşturulamadı!<br/>Lütfen geri giderek kimlik doğrulama bilgilerinizi denetleyin.</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> <p><font color="red">Büyük olasılıkla belirtilen kimlik doğrulama bilgileri hatalı olduğundan uzak klasör oluşturulamadı.</font><br/>Lütfen geri giderek kimlik doğrulama bilgilerinizi doğrulayın.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. %1 uzak klasörü <tt>%2</tt> hatası nedeniyle oluşturulamadı. - + A sync connection from %1 to remote directory %2 was set up. %1 ile %2 uzak klasörü arasında bir eşitleme bağlantısı ayarlandı. - + Successfully connected to %1! %1 ile bağlantı kuruldu! - + Connection to %1 could not be established. Please check again. %1 ile bağlantı kurulamadı. Lütfen yeniden denetleyin. - + Folder rename failed Klasör yeniden adlandırılamadı - + Cannot 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. Klasör ya da içindeki bir dosya başka bir program tarafından kullanıldığından, bu klasör üzerinde silme ya da yedekleme işlemleri yapılamıyor. Lütfen klasör ya da dosyayı kapatıp yeniden deneyin ya da kurulumu iptal edin. - + <font color="green"><b>Local sync folder %1 successfully created!</b></font> <font color="green"><b>%1 yerel eşitleme klasörü oluşturuldu!</b></font> @@ -3402,7 +3427,7 @@ Bu yeni ve deneysel bir özelliktir. Kullanmaya karar verirseniz, lütfen karş Değiştirilme zamanı geçersiz olduğundan eşitlenemedi - + Error while deleting file record %1 from the database %1 dosya kaydı veritabanından silinirken sorun çıktı @@ -3619,46 +3644,46 @@ Bu yeni ve deneysel bir özelliktir. Kullanmaya karar verirseniz, lütfen karş OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Yerel bir dosya adı ile çakışması nedeniyle %1 dosyası %2 olarak adlandırılamadı - - - + + + could not get file %1 from local DB %1 dosyası yerel veritabanından alınamadı - + Error setting pin state Sabitleme durumu ayarlanırken sorun çıktı - - + + Error updating metadata: %1 Üst veriler güncellenirken sorun çıktı: %1 - + The file %1 is currently in use %1 dosyası şu anda kullanılıyor - - + + Could not delete file record %1 from local DB %1 dosya kaydı yerel veritabanından silinemedi - + Failed to propagate directory rename in hierarchy Hiyerarşi içinde klasörü yeniden adlandırma işlemi yapılamadı - + Failed to rename file Dosya yeniden adlandırılamadı @@ -3679,7 +3704,7 @@ Bu yeni ve deneysel bir özelliktir. Kullanmaya karar verirseniz, lütfen karş OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Sunucudan alınan HTTP kodu yanlış. 204 bekleniyordu, ancak "%1 %2" alındı. @@ -4469,7 +4494,7 @@ Sunucunun verdiği hata yanıtı: %2 Sanal dosya üst verileri güncellenemedi: %1 - + Could not update file metadata: %1 Dosya üst verileri güncellenemedi: %1 @@ -4479,38 +4504,38 @@ Sunucunun verdiği hata yanıtı: %2 Dosya kaydı yerel veritabanına yapılamadı: %1 - + Unresolved conflict. Çözülmemiş çakışma. - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Yalnızca %1 kullanılabilir, başlatabilmek için en az %2 gerekli - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Yerel eşitleme klasörü açılamadı ya da oluşturulamadı. Eşitleme klasörüne yazma izniniz olduğundan emin olun. - + Using virtual files with suffix, but suffix is not set Sanal dosyalar son ek ile kullanılıyor. Ancak son ek ayarlanmamış - + Unable to read the blacklist from the local database Yerel veritabanından kara liste okunamadı - + Unable to read from the sync journal. Eşitleme günlüğü okunamadı. - + Cannot open the sync journal Eşitleme günlüğü açılamadı @@ -4520,12 +4545,12 @@ Sunucunun verdiği hata yanıtı: %2 Eşitleme kısa bir süre sonra sürdürülecek - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Disk alanı azaldı: Boş alanı %1 değerinin altına düşürecek indirmeler atlandı. - + There is insufficient space available on the server for some uploads. Sunucu üzerinde bazı yüklemeleri kaydetmek için yeterli alan yok. @@ -4654,24 +4679,24 @@ Sunucunun verdiği hata yanıtı: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 Masaüstü istemcisi</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>%1. sürüm. Ayrıntılı bilgi almak için <a href='%2'>buraya tıklayabilirsiniz</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Sanal dosyalar eklentisi kullanılarak: %1</small></p> - + <p>This release was supplied by %1</p> <p>Bu sürüm %1 tarafından hazırlanmıştır</p> @@ -4863,8 +4888,8 @@ Sunucunun verdiği hata yanıtı: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Değiştirilme zamanı geçersiz olduğundan üst veriler yüklenirken sorun çıktı @@ -4872,8 +4897,8 @@ Sunucunun verdiği hata yanıtı: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Değiştirilme zamanı geçersiz olduğundan üst veriler yüklenirken sorun çıktı @@ -5577,67 +5602,67 @@ Sunucunun verdiği hata yanıtı: %2 UserStatusSelector - + Online status Çevrimiçi durumu - + Online Çevrimiçi - + Away Uzakta - + Do not disturb Rahatsız etmeyin - + Mute all notifications Tüm bildirimleri kapat - + Invisible Görünmez - + Appear offline Çevrimdışı görün - + Status message Durum iletisi - + What is your status? Durumunuz nedir? - + Clear status message after Durum iletisinin kaldırılma süresi - + Cancel İptal - + Clear status message Durum iletisini kaldır - + Set status message Durum iletisini ayarla @@ -5859,7 +5884,7 @@ Sunucunun verdiği hata yanıtı: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Git sürümü <a href="%1">%2</a> ile %3 zamanında, %4 Qt %5 kullanılarak, %6 hazırlandı</small></p> diff --git a/translations/client_uk.ts b/translations/client_uk.ts index ed4e7850e468d..0b891152139fc 100644 --- a/translations/client_uk.ts +++ b/translations/client_uk.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu Очистити меню статусних повідомлень @@ -410,12 +410,12 @@ Схоже, що ви увімкнули функціонал віртуальних файлів для цього каталогу. Наразі, явним чином неможливо завантажувати віртуальні файли, які було зашифровано за допомогою наскрізного шифрування. Щоби отримати максимум можливостей від віртуальних файлів та насрізного шифрування, радимо позначити зашифровані каталоги "Зробити завжди доступними на пристрої". - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". @@ -439,21 +439,26 @@ No account configured. Обліковий запис не налаштовано. + + + Disable encryption + + Display mnemonic Відобразити мнемоніку - - - End-to-end encryption has been enabled for this account - - Enable encryption Увімкнути шифрування + + + End-to-end encryption has been enabled for this account + + Warning @@ -616,7 +621,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -625,6 +630,21 @@ This action will abort any currently running synchronization. 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). + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -747,12 +767,12 @@ This action will abort any currently running synchronization. Цей обліковий запис підтримує шифрування end-to-end - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. @@ -1045,7 +1065,7 @@ This action will abort any currently running synchronization. Будь ласка, зазначте пароль для наскрізного шифрування:<br><br>Користувач: %2<br>Обліковий запис: %3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1066,7 +1086,7 @@ This action will abort any currently running synchronization. Conflicting versions of %1. - Конфліктуючі версії %1. + Конфліктні версії %1. @@ -1104,7 +1124,7 @@ This action will abort any currently running synchronization. Server version - Server version + Версія у хмарі @@ -1140,7 +1160,7 @@ This action will abort any currently running synchronization. Keep server version - Зберегти серверну версію + Зберегти версію у хмарі @@ -1846,7 +1866,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2589,6 +2609,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close Закрити + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 Використовувати &віртуальні файли замість безпосереднього звантаження вмісту %1 - + (experimental) (експериментально) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Віртуальні файли не підтримуються для кореневих розділів у Windows у вигляді каталогів на пристрої. Будь ласка, виберіть дійсний підкаталог на диску. - + %1 folder "%2" is synced to local folder "%3" %1 каталог "%2" синхронізовано з каталогом на пристрої "%3" - + Sync the folder "%1" Синхронізувати каталог "%1" - + Warning: The local folder is not empty. Pick a resolution! Увага: Каталог на пристрої не є порожнім. Прийміть рішення! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 вільного місця - + Virtual files are not available for the selected folder Віртуальні файли не доступні для вибраного каталогу - + Local Sync Folder Каталог на пристрої для синхронізації - - + + (%1) (%1) - + There isn't enough free space in the local folder! Недостатньо вільного місця у каталозі на пристрої! @@ -3081,144 +3106,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">Успішно підключено до %1: %2 версія %3 (%4)</font><br/><br/> - + Invalid URL Невірний URL - + Failed to connect to %1 at %2:<br/>%3 Не вдалося з'єднатися з %1 в %2:<br/>%3 - + Timeout while trying to connect to %1 at %2. Перевищено час очікування з'єднання до %1 на %2. - + Trying to connect to %1 at %2 … З'єднання з %1 через %2... - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. Авторизований запит до сервера переспрямовано на "%1". Або URL неправильний, або помилка у конфігурації сервера. - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. Доступ заборонений сервером. Щоб довести, що у Вас є права доступу, <a href="%1">клікніть тут</a> для входу через Ваш браузер. - + There was an invalid response to an authenticated WebDAV request Отримано неправильну відповідь на запит авторизації WebDAV. - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> Каталог на пристрої для синхронізації %1 вже існує, налаштовуємо для синхронізації.<br/><br/> - + Creating local sync folder %1 … Створення каталогу на пристрої для синхронізації %1... - + OK Гаразд - + failed. не вдалося. - + Could not create local folder %1 Не вдалося створити каталог на вашому пристрої $1 - + No remote folder specified! Не зазначено віддалений каталог! - + Error: %1 Помилка: %1 - + creating folder on Nextcloud: %1 створення каталогу у хмарі на Nextcloud: %1 - + Remote folder %1 created successfully. Віддалений каталог %1 успішно створено. - + The remote folder %1 already exists. Connecting it for syncing. Віддалений каталог %1 вже існує. Під'єднання каталогу для синхронізації. - - + + The folder creation resulted in HTTP error code %1 Створення каталогу завершилось помилкою HTTP %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> Не вдалося створити віддалений каталог через направильно зазначені облікові дані.<br/>Поверніться назад та перевірте ваші облікові дані.</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> <p><font color="red">Створити віддалений каталог не вдалося, можливо, через неправильно зазначені облікові дані.</font><br/>Будь ласка, поверніться назад та перевірте облікові дані.</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. Не вдалося створити віддалений каталог %1 через помилку <tt>%2</tt>. - + A sync connection from %1 to remote directory %2 was set up. З'єднання для синхронізації %1 з віддаленим каталогом %2 встановлено. - + Successfully connected to %1! Успішно під'єднано до %1! - + Connection to %1 could not be established. Please check again. Підключення до %1 встановити не вдалося. Будь ласка, перевірте ще раз. - + Folder rename failed Не вдалося перейменувати каталог - + Cannot 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> <font color="green"><b>Каталог синхронізації %1 на пристрої успішно створено!</b></font> @@ -3402,7 +3427,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss Неможливо виконати синхронізацію через неправильний час модифікації - + Error while deleting file record %1 from the database Помилка під час вилучення запису файлу %1 з бази даних @@ -3619,46 +3644,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash Файл %1 неможливо перейменувати у %2 через конфлікт з назвою файлу на пристрої - - - + + + could not get file %1 from local DB неможливо отримати файл %1 з локальної БД - + Error setting pin state Помилка у встановленні стану PIN - - + + Error updating metadata: %1 Помилка під час оновлення метаданих: %1 - + The file %1 is currently in use Файл %1 зараз використовується - - + + Could not delete file record %1 from local DB Неможливо вилучити запис файлу %1 з локальної БД - + Failed to propagate directory rename in hierarchy - + Failed to rename file Помилка при перейменуванні файлу @@ -3679,7 +3704,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". Сервер повернув неправильний код HTTP. Очікувалося 204, але отримано "%1 %2". @@ -4467,7 +4492,7 @@ Server replied with error: %2 Неможливо оновити метадані віртуального файлу: %1 - + Could not update file metadata: %1 @@ -4477,38 +4502,38 @@ Server replied with error: %2 Неможливо встановити запис файлу до локальної БД: %1 - + Unresolved conflict. Конфлікт, який неможна вирішити - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() Доступно лише %1, для початку необхідно хоча б %2 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. Неможливо відкрити або створити локальну синхронізовану базу даних. Перевірте, що ви маєте доступ на запис у каталозі синхронізації. - + Using virtual files with suffix, but suffix is not set Використання віртуальних файлів з суфіксом, але суфікс не встановлено - + Unable to read the blacklist from the local database Неможливо прочитати чорний список з локальної бази даних - + Unable to read from the sync journal. Неможливо прочитати з журналу синхронізації. - + Cannot open the sync journal Не вдається відкрити протокол синхронізації @@ -4518,12 +4543,12 @@ Server replied with error: %2 Синхронізацію буде невдовзі відновлено. - + Disk space is low: Downloads that would reduce free space below %1 were skipped. Закінчується місце на диску. Звантаження, які можуть зменшити вільне місце до 1% буде пропущено. - + There is insufficient space available on the server for some uploads. Недостатньо місця на сервері для окремих завантажень. @@ -4652,24 +4677,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 клієнт для робочої істанції</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> </p>Версія %1. Докладно дивіться <a href='%2'>тут</a>.</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>Використання плаґіну віртуальних файлів: %1</small></p> - + <p>This release was supplied by %1</p> <p>Цю збірку поставлено %1</p> @@ -4861,8 +4886,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time Помилка з оновленням метаданих через неправильний час змін. @@ -4870,8 +4895,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time Помилка з оновленням метаданих через неправильний час змін. @@ -5575,67 +5600,67 @@ Server replied with error: %2 UserStatusSelector - + Online status Статус в мережі - + Online У мережі - + Away Відійшов - + Do not disturb Не турбувати - + Mute all notifications Без сповіщень - + Invisible Невидимий - + Appear offline Схоже поза мережею - + Status message Статусне повідомлення - + What is your status? Який у вас статус? - + Clear status message after Очистити статусне повідомлення після - + Cancel Скасувати - + Clear status message Очистити статусне повідомлення - + Set status message Встановити статусне повідомлення @@ -5857,7 +5882,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>Побудовано з ревізії Git<a href="%1">%2</a> на %3, %4 з використанням Qt %5, %6</small></p> diff --git a/translations/client_zh_CN.ts b/translations/client_zh_CN.ts index f79f68ed3e72d..14a22951d0fb9 100644 --- a/translations/client_zh_CN.ts +++ b/translations/client_zh_CN.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu @@ -410,12 +410,12 @@ 你似乎在这个文件夹上启用了虚拟文件功能。目前,不可能隐含下载端到端加密的虚拟文件。为了获得虚拟文件和端到端加密的最佳体验,请确保加密的文件夹被标记为 "始终在本地可用"。 - + End-to-end Encryption with Virtual Files - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". 你似乎在这个文件夹上启用了虚拟文件功能。目前,不可能隐含下载端到端加密的虚拟文件。为了获得虚拟文件和端到端加密的最佳体验,请确保加密的文件夹被标记为 "始终在本地可用"。 @@ -439,21 +439,26 @@ No account configured. 没有配置账号。 + + + Disable encryption + + Display mnemonic 显示助记符 - - - End-to-end encryption has been enabled for this account - - Enable encryption 启用加密 + + + End-to-end encryption has been enabled for this account + + Warning @@ -613,7 +618,7 @@ This action will abort any currently running synchronization. - + End-to-end encryption mnemonic @@ -622,6 +627,21 @@ This action will abort any currently running synchronization. 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). 为了保护您的加密身份,我们用 12 个字典中的助记词对其进行加密。请记下这些并妥善保管。在向您的账户添加其他设备(如您的手机或笔记本电脑)时将需要它们。 + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -744,12 +764,12 @@ This action will abort any currently running synchronization. 此账号支持端到端加密 - + Set up encryption - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. 在这个账户上已经在另一个设备上启用了端到端加密。<br>可以通过输入你的助记符在这个设备上启用它。<br>这将使现有的加密文件夹得到同步。 @@ -1042,7 +1062,7 @@ This action will abort any currently running synchronization. 请输入端到端加密短语:<br><br>用户名:%2<br>账号:%3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> @@ -1843,7 +1863,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2586,6 +2606,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close 关闭 + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2918,60 +2943,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 使用 &虚拟文件,而非立即下载内容 %1 - + (experimental) (实验性) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Windows 分区根目录不支持虚拟文件作为本地文件夹。请在驱动器号下选择有效的子文件夹。 - + %1 folder "%2" is synced to local folder "%3" %1 文件夹 "%2" 已同步至本地文件夹 "%3" - + Sync the folder "%1" 同步文件夹 "%1" - + Warning: The local folder is not empty. Pick a resolution! 警告:本地文件夹不是空的。选择一个分辨率! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 剩余空间 - + Virtual files are not available for the selected folder 虚拟文件对所选文件夹不可用 - + Local Sync Folder 本地同步文件夹 - - + + (%1) (%1) - + There isn't enough free space in the local folder! 本地文件夹可用空间不足! @@ -3075,144 +3100,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">成功连接到 %1:%2 版本 %3(%4)</font><br/><br/> - + Invalid URL 无效URL - + Failed to connect to %1 at %2:<br/>%3 连接到 %1 (%2)失败:<br />%3 - + Timeout while trying to connect to %1 at %2. 连接到 %1 (%2) 时超时。 - + Trying to connect to %1 at %2 … 尝试连接到 %1 的 %2 … - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. 已通过身份验证的服务器请求被重定向到“%1”。URL 错误,服务器配置错误。 - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. 服务器拒绝了访问。<a href="%1">点击这里打开浏览器</a> 来确认您是否有权访问。 - + There was an invalid response to an authenticated WebDAV request 对已认证的 WebDAV 请求的响应无效 - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> 本地同步文件夹 %1 已存在,将使用它来同步。<br/><br/> - + Creating local sync folder %1 … 正在新建本地同步文件夹 %1 … - + OK - + failed. 失败 - + Could not create local folder %1 不能创建本地文件夹 %1 - + No remote folder specified! 未指定远程文件夹! - + Error: %1 错误:%1 - + creating folder on Nextcloud: %1 在 Nextcloud 上创建文件夹:%1 - + Remote folder %1 created successfully. 远程文件夹 %1 成功创建。 - + The remote folder %1 already exists. Connecting it for syncing. 远程文件夹 %1 已存在。连接它以供同步。 - - + + The folder creation resulted in HTTP error code %1 创建文件夹出现 HTTP 错误代码 %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> 远程文件夹创建失败,因为提供的凭证有误!<br/>请返回并检查您的凭证。</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> <p><font color="red">远程文件夹创建失败,可能是由于提供的用户名密码不正确。</font><br/>请返回并检查它们。</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. 创建远程文件夹 %1 失败,错误为 <tt>%2</tt>。 - + A sync connection from %1 to remote directory %2 was set up. 已经设置了一个 %1 到远程文件夹 %2 的同步连接 - + Successfully connected to %1! 成功连接到了 %1! - + Connection to %1 could not be established. Please check again. 无法建立到 %1 的链接,请稍后重试。 - + Folder rename failed 文件夹更名失败 - + Cannot 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> <font color="green"><b>本地同步目录 %1 已成功创建</b></font> @@ -3390,7 +3415,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss - + Error while deleting file record %1 from the database @@ -3607,46 +3632,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash 文件 %1 无法被重命名至 %2,因为一个本地文件名冲突 - - - + + + could not get file %1 from local DB - + Error setting pin state 设置固定状态出错 - - + + Error updating metadata: %1 更新元数据出错:%1 - + The file %1 is currently in use 文件 %1 在使用中 - - + + Could not delete file record %1 from local DB - + Failed to propagate directory rename in hierarchy - + Failed to rename file 重命名文件失败 @@ -3667,7 +3692,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". 服务器返回了错误的 HTTP 代码。预期的是 204,但接收到的是 "%1 %2"。 @@ -4455,7 +4480,7 @@ Server replied with error: %2 无法更新虚拟文件元数据:%1 - + Could not update file metadata: %1 @@ -4465,38 +4490,38 @@ Server replied with error: %2 - + Unresolved conflict. 未解决的冲突。 - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() 仅有 %1 有效,至少需要 %2 才能开始 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. 无法打开或创建本地同步数据库。请确保您在同步文件夹下有写入权限。 - + Using virtual files with suffix, but suffix is not set 使用带后缀的虚拟文件,但未设置后缀。 - + Unable to read the blacklist from the local database 无法从本地数据库读取黑名单 - + Unable to read from the sync journal. 无法读取同步日志。 - + Cannot open the sync journal 无法打开同步日志 @@ -4506,12 +4531,12 @@ Server replied with error: %2 同步将很快恢复。 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. 硬盘剩余容量过低:下载后将会导致剩余容量低于 %1 的文件将会被跳过。 - + There is insufficient space available on the server for some uploads. 对于某些上传文件来说,服务器端的可用空间不足。 @@ -4640,24 +4665,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 桌面客户端</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>版本 %1。详情请点击<a href='%2'>这里</a>。</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>正使用虚拟文件插件:%1</small></p> - + <p>This release was supplied by %1</p> <p>该版本由 %1 提供</p> @@ -4849,8 +4874,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time 由于修改时间无效,更新元数据时出错 @@ -4858,8 +4883,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time 由于修改时间无效,更新元数据时出错 @@ -5563,67 +5588,67 @@ Server replied with error: %2 UserStatusSelector - + Online status 在线状态 - + Online 在线 - + Away 离开 - + Do not disturb 勿扰 - + Mute all notifications 静音所有通知 - + Invisible 不可见 - + Appear offline 显示为离线 - + Status message 状态消息 - + What is your status? 你什么状态? - + Clear status message after 在指定时间段后清除状态消息 - + Cancel 取消 - + Clear status message 清除状态消息 - + Set status message 设置状态消息 @@ -5845,7 +5870,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>使用Qt %5, %6,从 %3, %4 上的Git版本<a href="%1">%2</a>构建</small></p> diff --git a/translations/client_zh_HK.ts b/translations/client_zh_HK.ts index dfccd196be1f6..24ba5f7a182ff 100644 --- a/translations/client_zh_HK.ts +++ b/translations/client_zh_HK.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu 清除狀態訊息選項單 @@ -411,12 +411,12 @@ 您似乎在此資料夾上啟用了「虛擬文件」功能。目前,無法隱式下載經過端到端加密的虛擬檔案。為了獲得最佳的虛擬檔案和端到端加密體驗,請確保已加密的資料夾標記有“在近端始終可用”。 - + End-to-end Encryption with Virtual Files 虛擬檔案的端到端加密 - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". 您似乎在此資料夾上啟用了「虛擬文件」功能。目前,無法隱式下載經過端到端加密的虛擬檔案。為了獲得最佳的虛擬檔案和端到端加密體驗,請確保已加密的資料夾標記有“在近端始終可用”。 @@ -440,21 +440,26 @@ No account configured. 沒有設置帳號。 + + + Disable encryption + + Display mnemonic 顯示助記碼 - - - End-to-end encryption has been enabled for this account - 此賬戶已啟用端到端加密 - Enable encryption 啟用加密 + + + End-to-end encryption has been enabled for this account + 此賬戶已啟用端到端加密 + Warning @@ -618,7 +623,7 @@ This action will abort any currently running synchronization. 端到端加密助記碼 - + End-to-end encryption mnemonic 端到端加密助記碼 @@ -627,6 +632,21 @@ This action will abort any currently running synchronization. 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). 為了保護您的身分,我們將用含12個單詞的助記碼進行加密。請將這些單詞記在一個安全的地方。要將其他裝置(如手提電話或手提電腦)加入您的賬戶中,需用到此助記碼。 + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -749,12 +769,12 @@ This action will abort any currently running synchronization. 此賬戶支援端到端加密 - + Set up encryption 設定加密 - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. 已在另一裝置上為此賬戶啟用端到端加密。<br>可通過輸入您的助記碼在此裝置上啟用。<br>這將啟用現有加密資料夾的同步。 @@ -1047,7 +1067,7 @@ This action will abort any currently running synchronization. 請輸入您端對端加密的密碼短語:<br><br>用戶:%2<br>賬戶:%3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> 請輸入您的端到端加密密碼:<br><br>用戶名:%2<br>帳戶:%3<br> @@ -1846,7 +1866,7 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 + Could not decrypt! @@ -2589,6 +2609,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close 關閉 + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2924,60 +2949,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 使用虛擬檔案(&v),而不是立即下載內容 %1 - + (experimental) (實驗性) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Windows分區根目錄不支持將虛擬文件作為近端資料夾使用。請在硬盤驅動器號下選擇一個有效的子資料夾。 - + %1 folder "%2" is synced to local folder "%3" %1 資料夾 "%2" 與近端資料夾 "%3" 同步 - + Sync the folder "%1" 同步資料夾 "%1" - + Warning: The local folder is not empty. Pick a resolution! 警告:近端資料夾不為空。選擇一個解決方案! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 剩餘空間 - + Virtual files are not available for the selected folder 選擇的資料夾無法使用虛擬檔案 - + Local Sync Folder 近端同步資料夾 - - + + (%1) (%1) - + There isn't enough free space in the local folder! 近端資料夾沒有足夠的剩餘空間! @@ -3081,144 +3106,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">成功連線到 %1: %2 版本 %3(%4)</font><br/><br/> - + Invalid URL 連結無效 - + Failed to connect to %1 at %2:<br/>%3 從 %2 連線到 %1 失敗:<br/>%3 - + Timeout while trying to connect to %1 at %2. 從 %2 嘗試連線到 %1 逾時。 - + Trying to connect to %1 at %2 … 嘗試以 %1 身分連線到 %2 - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. 對伺服器的經過身份驗證的請求已重定向到 “%1”。 URL 有錯誤,伺服器配置亦有錯誤。 - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. 從伺服器存取被拒絕。為了正確驗證您的存取資訊 <a href="%1">請點選這裡</a> 透過瀏覽器來存取服務 - + There was an invalid response to an authenticated WebDAV request 伺服器回應 WebDAV 驗證請求不合法 - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> 近端同步資料夾%1已存在, 將其設置為同步<br/><br/> - + Creating local sync folder %1 … 正在新增本機同步資料夾 %1... - + OK OK - + failed. 失敗 - + Could not create local folder %1 無法建立近端資料夾 %1 - + No remote folder specified! 沒有指定遠端資料夾! - + Error: %1 錯誤: %1 - + creating folder on Nextcloud: %1 正在Nextcloud上新增資料夾:%1 - + Remote folder %1 created successfully. 遠端資料夾%1建立成功! - + The remote folder %1 already exists. Connecting it for syncing. 遠端資料夾%1已存在,連線同步中 - - + + The folder creation resulted in HTTP error code %1 在HTTP建立資料夾失敗, error code %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> 由於帳號或密碼錯誤,遠端資料夾建立失敗<br/>請檢查您的帳號密碼。</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> <p><font color="red">遠端資料夾建立失敗,也許是因為所提供的帳號密碼錯誤</font><br/>請重新檢查您的帳號密碼</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. 建立遠端資料夾%1發生錯誤<tt>%2</tt>失敗 - + A sync connection from %1 to remote directory %2 was set up. 從%1到遠端資料夾%2的連線已建立 - + Successfully connected to %1! 成功連接到 %1 ! - + Connection to %1 could not be established. Please check again. 無法建立連線%1, 請重新檢查 - + Folder rename failed 重新命名資料夾失敗 - + Cannot 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> <font color="green"><b>近端同步資料夾 %1 建立成功!</b></font> @@ -3402,7 +3427,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss 由於修改時間無效,無法同步 - + Error while deleting file record %1 from the database 從數據庫中刪除檔案記錄 %1 時出錯 @@ -3619,46 +3644,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash 檔案 %1 無法更名成 %2,因為近端端的檔案名稱已毀損 - - - + + + could not get file %1 from local DB 無法從近端數據庫獲取檔案 %1 - + Error setting pin state 設置PIN狀態時出錯 - - + + Error updating metadata: %1 更新元數據時出錯:%1 - + The file %1 is currently in use 檔案 %1 正在使用中 - - + + Could not delete file record %1 from local DB 無法從近端數據庫中刪除檔案 %1 - + Failed to propagate directory rename in hierarchy 未能在層次結構中傳播目錄重命名 - + Failed to rename file 重新命名檔案失敗 @@ -3679,7 +3704,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". 伺服器返回的 HTTP 代碼錯誤。預期 204,但收到“%1%2”。 @@ -4469,7 +4494,7 @@ Server replied with error: %2 無法更新虛擬文件元數據:%1 - + Could not update file metadata: %1 無法更新檔案元數據:%1 @@ -4479,38 +4504,38 @@ Server replied with error: %2 無法將檔案記錄設置到近端數據庫: %1 - + Unresolved conflict. 未解決的抵觸。 - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() 目前僅有 %1 可以使用,至少需要 %2 才能開始 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. 無法開啟或新增近端同步數據庫。請確保您有寫入同步資料夾的權限。 - + Using virtual files with suffix, but suffix is not set 使用帶後綴的虛擬文件,但未設置後綴 - + Unable to read the blacklist from the local database 無法從近端數據庫讀取黑名單。 - + Unable to read from the sync journal. 無法讀取同步日誌。 - + Cannot open the sync journal 同步處理日誌無法開啟 @@ -4520,12 +4545,12 @@ Server replied with error: %2 同步會很快恢復 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. 剩餘空間不足:下載後將使剩餘空間降至低於%1的檔案一律跳過。 - + There is insufficient space available on the server for some uploads. 伺服器上的剩餘空間不足以容納某些要上載的檔案。 @@ -4654,24 +4679,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 桌面版用戶端</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>版本為%1。詳細資訊請<a href='%2'>點擊此處</a>。</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>使用虛擬文件插件:%1</small></p> - + <p>This release was supplied by %1</p> 此版本由%1發佈。 @@ -4863,8 +4888,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time 由於修改時間無效,更新元數據時出錯。 @@ -4872,8 +4897,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time 由於修改時間無效,更新元數據時出錯。 @@ -5577,67 +5602,67 @@ Server replied with error: %2 UserStatusSelector - + Online status 線上狀態 - + Online 在線 - + Away 離開 - + Do not disturb 請勿打擾 - + Mute all notifications 靜音所有通知 - + Invisible 隱藏 - + Appear offline 顯示為離線 - + Status message 狀態訊息 - + What is your status? 您目前的狀態是什麼呢? - + Clear status message after 繼此之後清除狀態訊息 - + Cancel 取消 - + Clear status message 清除狀態訊息 - + Set status message 設定狀態訊息 @@ -5859,7 +5884,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>根據Git版本號<a href="%1">%2</a>在 %3, %4建置 使用了Qt %5,%6</small></p> diff --git a/translations/client_zh_TW.ts b/translations/client_zh_TW.ts index b781e2afbcc94..fd89f481cbde8 100644 --- a/translations/client_zh_TW.ts +++ b/translations/client_zh_TW.ts @@ -55,7 +55,7 @@ BasicComboBox - + Clear status message menu 清除狀態訊息選單 @@ -410,12 +410,12 @@ 您似乎在此資料夾啟用了虛擬檔案的功能。目前無法下載透過端到端加密的虛擬檔案。為了得到最佳的虛擬檔案與端到端加密體驗,請確保已加密的資料夾被標記為「一律可在本機使用」。 - + End-to-end Encryption with Virtual Files 虛擬檔案的端到端加密 - + You seem to have the Virtual Files feature enabled on this folder. At the moment, it is not possible to implicitly download virtual files that are end-to-end encrypted. To get the best experience with virtual files and end-to-end encryption, make sure the encrypted folder is marked with "Make always available locally". 您似乎在此資料夾啟用了虛擬檔案的功能。目前無法下載透過端到端加密的虛擬檔案。為了得到最佳的虛擬檔案與端到端加密體驗,請確保已加密的資料夾被標記為「一律可在本機使用」。 @@ -439,21 +439,26 @@ No account configured. 未設定帳號。 + + + Disable encryption + + Display mnemonic 顯示助記碼 - - - End-to-end encryption has been enabled for this account - 此帳號已啟用端到端加密 - Enable encryption 啟用加密 + + + End-to-end encryption has been enabled for this account + 此帳號已啟用端到端加密 + Warning @@ -617,7 +622,7 @@ This action will abort any currently running synchronization. 端到端加密助記詞 - + End-to-end encryption mnemonic 端到端加密助記字串 @@ -626,6 +631,21 @@ This action will abort any currently running synchronization. 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). 為了保護您的身份,我們將用含 12 個單詞的助記詞進行加密。請將這些單詞記在一個安全的地方。要將其他裝置(如手機或筆記型電腦)加入您的帳號中,需用到此助記詞。 + + + Disable end-to-end encryption + + + + + Disable end-to-end encryption for %1? + + + + + Removing end-to-end encryption will remove locally-synced files that are encrypted.<br>Encrypted files will remain on the server. + + Sync Running @@ -748,12 +768,12 @@ This action will abort any currently running synchronization. 此帳號支援端點對端點加密 - + Set up encryption 設定加密 - + End-to-end encryption has been enabled on this account with another device.<br>It can be enabled on this device by entering your mnemonic.<br>This will enable synchronisation of existing encrypted folders. 已在其他裝置上為此帳號啟用端到端加密。<br>可透過輸入您的助記字串在此裝置上啟用。<br>這將啟用現有加密資料夾的同步。 @@ -1046,7 +1066,7 @@ This action will abort any currently running synchronization. 請輸入您的端到端加密認證資訊:<br><br>使用者:%2<br>帳號:%3<br> - + Please enter your end-to-end encryption passphrase:<br><br>Username: %2<br>Account: %3<br> 請輸入您的端到端加密通關密語:<br><br>使用者名稱:%2<br>帳號:%3<br> @@ -1847,8 +1867,8 @@ If this was an accident and you decide to keep your files, they will be re-synce - - %1 - - %1 + Could not decrypt! + @@ -2590,6 +2610,11 @@ Items where deletion is allowed will be deleted if they prevent a directory from Close 關閉 + + + <p>Copyright 2017-2023 Nextcloud GmbH<br />Copyright 2012-2023 ownCloud GmbH</p> + + <p>Copyright 2017-2021 Nextcloud GmbH<br />Copyright 2012-2021 ownCloud GmbH</p> @@ -2925,60 +2950,60 @@ Note that using any logging command line options will override this setting. - + Use &virtual files instead of downloading content immediately %1 使用虛擬檔案取代立即下載內容 %1 (&V) - + (experimental) (實驗性) - + Virtual files are not supported for Windows partition roots as local folder. Please choose a valid subfolder under drive letter. Windows 分割區跟目錄不支援將虛擬檔案作為本機資料夾使用。請在磁碟區代號下選擇有效的子資料夾。 - + %1 folder "%2" is synced to local folder "%3" %1 資料夾「%2」與本機資料夾「%3」同步 - + Sync the folder "%1" 同步資料夾「%1」 - + Warning: The local folder is not empty. Pick a resolution! 警告:本機的資料夾不是空的。請選擇解決方案! - + %1 free space %1 gets replaced with the size and a matching unit. Example: 3 MB or 5 GB %1 剩餘空間 - + Virtual files are not available for the selected folder 選取的資料夾無法使用虛擬檔案 - + Local Sync Folder 本機同步資料夾 - - + + (%1) (%1) - + There isn't enough free space in the local folder! 本機資料夾沒有足夠的剩餘空間! @@ -3082,144 +3107,144 @@ Note that using any logging command line options will override this setting. OCC::OwncloudSetupWizard - + <font color="green">Successfully connected to %1: %2 version %3 (%4)</font><br/><br/> <font color="green">成功連線到 %1:%2 版本 %3 (%4)</font><br/><br/> - + Invalid URL 連結無效 - + Failed to connect to %1 at %2:<br/>%3 從 %2 連線到 %1 失敗:<br/>%3 - + Timeout while trying to connect to %1 at %2. 從 %2 嘗試連線到 %1 逾時。 - + Trying to connect to %1 at %2 … 嘗試以 %1 身分連線到 %2…… - + The authenticated request to the server was redirected to "%1". The URL is bad, the server is misconfigured. 伺服器要求的認證請求被導向「%1」。這個網址可能不安全,此伺服器可能設定有錯。 - + Access forbidden by server. To verify that you have proper access, <a href="%1">click here</a> to access the service with your browser. 從伺服器存取被拒絕。為了正確驗證您的存取資訊,<a href="%1">請點選這裡</a>透過瀏覽器來存取服務。 - + There was an invalid response to an authenticated WebDAV request 伺服器回應 WebDAV 驗證請求無效 - + Local sync folder %1 already exists, setting it up for sync.<br/><br/> 本機同步資料夾 %1 已存在,將其設定為同步。<br/><br/> - + Creating local sync folder %1 … 正在新增本機同步資料夾 %1…… - + OK 確定 - + failed. 失敗。 - + Could not create local folder %1 無法建立本機資料夾 %1 - + No remote folder specified! 未指定遠端資料夾! - + Error: %1 錯誤:%1 - + creating folder on Nextcloud: %1 正在 Nextcloud 上建立資料夾:%1 - + Remote folder %1 created successfully. 遠端資料夾 %1 成功建立。 - + The remote folder %1 already exists. Connecting it for syncing. 遠端資料夾 %1 已存在。正在連線同步。 - - + + The folder creation resulted in HTTP error code %1 資料夾建立結果為 HTTP 錯誤碼 %1 - + The remote folder creation failed because the provided credentials are wrong!<br/>Please go back and check your credentials.</p> 由於帳號或密碼錯誤,遠端資料夾建立失敗!<br/>請檢查您的帳號密碼。</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> <p><font color="red">遠端資料夾建立失敗,也許是因為所提供的帳號密碼錯誤。</font><br/>請重新檢查您的帳號密碼。</p> - - + + Remote folder %1 creation failed with error <tt>%2</tt>. 建立遠端資料夾 %1 時發生錯誤 <tt>%2</tt>。 - + A sync connection from %1 to remote directory %2 was set up. 從 %1 到遠端資料夾 %2 的連線已建立。 - + Successfully connected to %1! 成功連線至 %1! - + Connection to %1 could not be established. Please check again. 無法建立到 %1 的連線。請再檢查一次。 - + Folder rename failed 重新命名資料夾失敗 - + Cannot 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> <font color="green"><b>本機同步資料夾 %1 建立成功!</b></font> @@ -3403,7 +3428,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss 由於修改時間無效,因此無法同步 - + Error while deleting file record %1 from the database 從資料庫刪除紀錄 %1 時發生錯誤 @@ -3620,46 +3645,46 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateLocalRename - + File %1 cannot be renamed to %2 because of a local file name clash 檔案 %1 無法重新命名為 %2,因為本機檔案名稱有衝突 - - - + + + could not get file %1 from local DB 無法從本機資料庫取得檔案 %1 - + Error setting pin state 設定釘選狀態時發生錯誤 - - + + Error updating metadata: %1 更新詮釋資料時發生錯誤:%1 - + The file %1 is currently in use 檔案 %1 目前正在使用中 - - + + Could not delete file record %1 from local DB 無法從本機資料庫刪除檔案紀錄 %1 - + Failed to propagate directory rename in hierarchy 無法在層次結構中傳播目錄重新命名 - + Failed to rename file 重新命名檔案失敗 @@ -3680,7 +3705,7 @@ This is a new, experimental mode. If you decide to use it, please report any iss OCC::PropagateRemoteDeleteEncryptedRootFolder - + Wrong HTTP code returned by server. Expected 204, but received "%1 %2". 伺服器回傳錯誤的 HTTP 代碼。預期為 204,但收到的是「%1 %2」。 @@ -4468,7 +4493,7 @@ Server replied with error: %2 無法更新虛擬檔案詮釋資料:%1 - + Could not update file metadata: %1 無法更新檔案詮釋資料:%1 @@ -4478,38 +4503,38 @@ Server replied with error: %2 無法將檔案紀錄設定至本機資料庫:%1 - + Unresolved conflict. 未解決的衝突。 - + Only %1 are available, need at least %2 to start Placeholders are postfixed with file sizes using Utility::octetsToString() 目前僅有 %1 可以使用,至少需要 %2 才能開始 - + Unable to open or create the local sync database. Make sure you have write access in the sync folder. 無法開啟或建立本機同步資料庫。請確保您有寫入同步資料夾的權限。 - + Using virtual files with suffix, but suffix is not set 正在使用有後綴的虛擬檔案,但未設定後綴 - + Unable to read the blacklist from the local database 無法從本機資料庫讀取黑名單 - + Unable to read from the sync journal. 無法讀取同步日誌。 - + Cannot open the sync journal 無法開啟同步日誌 @@ -4519,12 +4544,12 @@ Server replied with error: %2 同步會很快恢復 - + Disk space is low: Downloads that would reduce free space below %1 were skipped. 剩餘空間不足:下載後將使剩餘空間降至低於 %1 的檔案一律跳過。 - + There is insufficient space available on the server for some uploads. 伺服器上的剩餘空間不足以容納某些要上傳的檔案。 @@ -4653,24 +4678,24 @@ Server replied with error: %2 OCC::Theme - + <p>%1 Desktop Client</p> Example text: "<p>Nextcloud Desktop Client</p>" (%1 is the application name) <p>%1 桌面版客戶端</p> - - + + <p>Version %1. For more information please click <a href='%2'>here</a>.</p> <p>版本為 %1。詳細資訊請點擊<a href='%2'>此處</a>。</p> - + <p><small>Using virtual files plugin: %1</small></p> <p><small>正在使用虛擬檔案外掛程式:%1</small></p> - + <p>This release was supplied by %1</p> <p>此版本由 %1 提供</p> @@ -4862,8 +4887,8 @@ Server replied with error: %2 OCC::VfsSuffix - - + + Error updating metadata due to invalid modification time 因為修改時間無效,所以更新詮釋資料時發生錯誤 @@ -4871,8 +4896,8 @@ Server replied with error: %2 OCC::VfsXAttr - - + + Error updating metadata due to invalid modification time 因為修改時間無效,所以更新詮釋資料時發生錯誤 @@ -5576,67 +5601,67 @@ Server replied with error: %2 UserStatusSelector - + Online status 線上狀態 - + Online 線上 - + Away 離開 - + Do not disturb 請勿打擾 - + Mute all notifications 靜音所有通知 - + Invisible 隱藏 - + Appear offline 顯示為離線 - + Status message 狀態訊息 - + What is your status? 您目前的狀態是什麼呢? - + Clear status message after 在這個時間後清除狀態訊息 - + Cancel 取消 - + Clear status message 清除狀態訊息 - + Set status message 設定狀態訊息 @@ -5858,7 +5883,7 @@ Server replied with error: %2 nextcloudTheme::about() - + <p><small>Built from Git revision <a href="%1">%2</a> on %3, %4 using Qt %5, %6</small></p> <p><small>從 Git 修訂版本 <a href="%1">%2</a> 在 %3 上建置,%4 使用 Qt %5,%6</small></p>