From 95553f0e91935170702d96370454a3f73a5f3abc Mon Sep 17 00:00:00 2001 From: Zhang Yu Date: Wed, 17 Jan 2024 11:24:34 +0800 Subject: [PATCH 01/25] fix: file info error on moving a cached file. One file that is deleted is still cached and its file info hold error data. Then a same name file created from cache will use this error file info. If a file that was cached needs to refresh after creating. Log: Bug: https://pms.uniontech.com/bug-view-239731.html --- .../desktop/core/ddplugin-canvas/model/fileinfomodel.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/plugins/desktop/core/ddplugin-canvas/model/fileinfomodel.cpp b/src/plugins/desktop/core/ddplugin-canvas/model/fileinfomodel.cpp index 7075d24b22..7f3b62cc06 100644 --- a/src/plugins/desktop/core/ddplugin-canvas/model/fileinfomodel.cpp +++ b/src/plugins/desktop/core/ddplugin-canvas/model/fileinfomodel.cpp @@ -134,6 +134,8 @@ void FileInfoModelPrivate::replaceData(const QUrl &oldUrl, const QUrl &newUrl) return; } + // check the newUrl whether has been in cache. + auto cachedInfo = InfoCacheController::instance().getCacheInfo(newUrl); auto newInfo = FileCreator->createFileInfo(newUrl); if (Q_UNLIKELY(newInfo.isNull())) { fmWarning() << "fail to create new file info:" << newUrl << "old" << oldUrl; @@ -172,6 +174,11 @@ void FileInfoModelPrivate::replaceData(const QUrl &oldUrl, const QUrl &newUrl) fileMap.remove(oldUrl); fileMap.insert(newUrl, newInfo); lk.unlock(); + + // refresh file because an old info cahe may exist. + if (cachedInfo == newInfo) + newInfo->refresh(); + emit q->dataReplaced(oldUrl, newUrl); } From 87d03fa96bbf0ba1cf5d3246af412d828067327e Mon Sep 17 00:00:00 2001 From: liyigang Date: Wed, 17 Jan 2024 14:42:55 +0800 Subject: [PATCH 02/25] fix: Recently, when I clicked on the detailed interface, I crashed Failed to determine if filesize is null Log: Recently, when I clicked on the detailed interface, I crashed --- .../core/dfmplugin-detailspace/views/filebaseinfoview.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/plugins/filemanager/core/dfmplugin-detailspace/views/filebaseinfoview.cpp b/src/plugins/filemanager/core/dfmplugin-detailspace/views/filebaseinfoview.cpp index 791835381a..612369a6e2 100644 --- a/src/plugins/filemanager/core/dfmplugin-detailspace/views/filebaseinfoview.cpp +++ b/src/plugins/filemanager/core/dfmplugin-detailspace/views/filebaseinfoview.cpp @@ -198,7 +198,10 @@ void FileBaseInfoView::basicFill(const QUrl &url) lastModified.isValid() ? fileChangeTime->setRightValue(lastModified.toString(FileUtils::dateTimeFormat()), Qt::ElideMiddle, Qt::AlignLeft, true, 150) : fileChangeTime->setVisible(false); } - fileSize->setVisible(false); + + if (fileSize) + fileSize->setVisible(false); + if (fileSize && fileSize->RightValue().isEmpty() && !info->isAttributes(OptInfoType::kIsDir)) { fileSize->setVisible(true); fileSize->setRightValue(FileUtils::formatSize(info->size()), Qt::ElideNone, Qt::AlignLeft, true); From 702c04135fd39b5e629fe6531b0b6b3ff901d0f5 Mon Sep 17 00:00:00 2001 From: liuyangming Date: Wed, 17 Jan 2024 13:52:44 +0800 Subject: [PATCH 03/25] fix: [menu]view mode menu issue hide tree view mode action of menu in the dir not support tree view. Log: fix menu issue Bug: https://pms.uniontech.com/bug-view-240215.html --- .../dfmplugin-workspace/menus/sortanddisplaymenuscene.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/menus/sortanddisplaymenuscene.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/menus/sortanddisplaymenuscene.cpp index ee89430a1d..d5edff8ac0 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/menus/sortanddisplaymenuscene.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/menus/sortanddisplaymenuscene.cpp @@ -7,6 +7,7 @@ #include "workspacemenu_defines.h" #include "views/fileview.h" #include "models/fileviewmodel.h" +#include "utils/workspacehelper.h" #include #include @@ -205,7 +206,8 @@ QMenu *SortAndDisplayMenuScenePrivate::addDisplayAsActions(QMenu *menu) predicateAction[ActionID::kDisplayList] = tempAction; tempAction->setProperty(ActionPropertyKey::kActionID, QString(ActionID::kDisplayList)); - if (DConfigManager::instance()->value(kViewDConfName, kTreeViewEnable, true).toBool()) { + if (WorkspaceHelper::instance()->supportTreeView(view->rootUrl().scheme()) + && DConfigManager::instance()->value(kViewDConfName, kTreeViewEnable, true).toBool()) { tempAction = subMenu->addAction(predicateName.value(ActionID::kDisplayTree)); tempAction->setCheckable(true); predicateAction[ActionID::kDisplayTree] = tempAction; From 17721e5f13c9263946fcc35f3f27b45f820d6a49 Mon Sep 17 00:00:00 2001 From: xust Date: Wed, 17 Jan 2024 13:32:48 +0800 Subject: [PATCH 04/25] fix: [computer] ejected optical drive shows usage as title. Log: as title --- .../dfmplugin-computer/fileentity/blockentryfileentity.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/filemanager/core/dfmplugin-computer/fileentity/blockentryfileentity.cpp b/src/plugins/filemanager/core/dfmplugin-computer/fileentity/blockentryfileentity.cpp index 905d2779fe..5b6826742c 100644 --- a/src/plugins/filemanager/core/dfmplugin-computer/fileentity/blockentryfileentity.cpp +++ b/src/plugins/filemanager/core/dfmplugin-computer/fileentity/blockentryfileentity.cpp @@ -258,6 +258,10 @@ bool BlockEntryFileEntity::showSizeAndProgress() const if (getProperty(DeviceProperty::kMountPoint).toString().isEmpty()) return false; + if (getProperty(DeviceProperty::kOpticalDrive).toBool() + && !getProperty(DeviceProperty::kMediaAvailable).toBool()) + return false; + if (datas.value(DeviceProperty::kIsEncrypted).toBool()) { if (datas.contains(BlockAdditionalProperty::kClearBlockProperty)) return true; From 7440b8c327b5abd1f76852d7173a8e8722f047b8 Mon Sep 17 00:00:00 2001 From: ComixHe Date: Wed, 17 Jan 2024 15:28:56 +0800 Subject: [PATCH 05/25] fix: compatible with org.desktopspec.ApplicationManager1 compatible with org.desktopspec.ApplicationManager1 Log: compatible with org.desktopspec.ApplicationManager1 --- src/dfm-base/utils/universalutils.cpp | 40 +++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/src/dfm-base/utils/universalutils.cpp b/src/dfm-base/utils/universalutils.cpp index 81a914e091..9f6680e405 100644 --- a/src/dfm-base/utils/universalutils.cpp +++ b/src/dfm-base/utils/universalutils.cpp @@ -20,11 +20,12 @@ #include #include #include +#include #ifdef COMPILE_ON_V23 -# define APP_MANAGER_SERVICE "org.deepin.dde.Application1.Manager" -# define APP_MANAGER_PATH "/org/deepin/dde/Application1/Manager" -# define APP_MANAGER_INTERFACE "org.deepin.dde.Application1.Manager" +# define APP_MANAGER_SERVICE "org.desktopspec.ApplicationManager1" +# define APP_MANAGER_PATH_PREFIX "/org/desktopspec/ApplicationManager1" +# define APP_INTERFACE "org.desktopspec.ApplicationManager1.Application" # define SYSTEM_SYSTEMINFO_SERVICE "org.deepin.dde.SystemInfo1" # define SYSTEM_SYSTEMINFO_PATH "/org/deepin/dde/SystemInfo1" @@ -260,6 +261,7 @@ bool UniversalUtils::checkLaunchAppInterface() initStatus = false; return; } +#ifndef COMPILE_ON_V23 QDBusInterface introspect(APP_MANAGER_SERVICE, APP_MANAGER_PATH, "org.freedesktop.DBus.Introspectable", @@ -283,12 +285,38 @@ bool UniversalUtils::checkLaunchAppInterface() } else { initStatus = false; } +#endif }); return initStatus; } bool UniversalUtils::launchAppByDBus(const QString &desktopFile, const QStringList &filePaths) { +#ifdef COMPILE_ON_V23 + const auto& components = desktopFile.split('/',Qt::SkipEmptyParts); + const auto& file = components.last(); + constexpr decltype(auto) desktopSuffix{u8".desktop"}; + + if(!file.endsWith(desktopSuffix)) { + qCDebug(logDFMBase) << "invalid desktop file:" << desktopFile << file; + return false; + } + + const auto& desktopId = file.chopped(sizeof(desktopSuffix) - 1); + const auto& DBusAppId = DUtil::escapeToObjectPath(desktopId); + const auto& currentAppPath = QString{APP_MANAGER_PATH_PREFIX} + "/" + DBusAppId; + qCDebug(logDFMBase) << "app object path:" << currentAppPath; + QDBusInterface appManager(APP_MANAGER_SERVICE, + currentAppPath, + APP_INTERFACE, + QDBusConnection::sessionBus()); + + auto reply = appManager.callWithArgumentList(QDBus::Block, QStringLiteral("Launch"),{ + QVariant::fromValue(QString{}), QVariant::fromValue(filePaths), QVariant::fromValue(QVariantMap{})}); + + return reply.type() == QDBusMessage::ReplyMessage; + +#else QDBusInterface appManager(APP_MANAGER_SERVICE, APP_MANAGER_PATH, APP_MANAGER_INTERFACE, @@ -298,10 +326,15 @@ bool UniversalUtils::launchAppByDBus(const QString &desktopFile, const QStringLi argumentList << QVariant::fromValue(desktopFile) << QVariant::fromValue(static_cast(QX11Info::getTimestamp())) << QVariant::fromValue(filePaths); appManager.asyncCallWithArgumentList(QStringLiteral("LaunchApp"), argumentList); return true; +#endif } bool UniversalUtils::runCommand(const QString &cmd, const QStringList &args, const QString &wd) { +#ifdef COMPILE_ON_V23 + qCDebug(logDFMBase) << "new AM wouldn't provide any method to run Command, so launch cmd by qt:" << cmd << args; + return QProcess::startDetached(cmd, args, wd); +#else if (checkLaunchAppInterface()) { qCDebug(logDFMBase) << "launch cmd by dbus:" << cmd << args; QDBusInterface appManager(APP_MANAGER_SERVICE, @@ -327,6 +360,7 @@ bool UniversalUtils::runCommand(const QString &cmd, const QStringList &args, con } return false; +#endif } int UniversalUtils::dockHeight() From 7e3f22fb80a57f237fe7e271a6139af5809664a6 Mon Sep 17 00:00:00 2001 From: Zhang Sheng Date: Wed, 17 Jan 2024 17:33:19 +0800 Subject: [PATCH 06/25] feat: [log] log filter add log filter config Log: add log filter config Bug: https://pms.uniontech.com/bug-view-239819.html --- .../configs/org.deepin.dde.file-manager.json | 11 +++ assets/log/debug/org.deepin.file-manager.json | 12 +++ assets/log/{ => viewer}/dde-file-manager.json | 7 -- debian/dde-file-manager.install | 1 + include/dfm-base/dfm_log_defines.h | 10 +-- src/apps/dde-desktop/main.cpp | 8 +- src/apps/dde-file-dialog-wayland/main.cpp | 8 +- src/apps/dde-file-dialog-x11/main.cpp | 8 +- src/apps/dde-file-dialog/main.cpp | 8 +- src/apps/dde-file-manager-daemon/main.cpp | 19 +++-- src/apps/dde-file-manager-server/main.cpp | 8 +- src/apps/dde-file-manager/main.cpp | 11 ++- src/dfm-base/CMakeLists.txt | 10 ++- src/dfm-base/base/application/application.cpp | 2 +- src/dfm-base/utils/loggerrules.cpp | 77 +++++++++++++++++++ src/dfm-base/utils/loggerrules.h | 48 ++++++++++++ src/dfm-framework/log/framelogmanager.cpp | 2 +- .../daemon/core/daemonplugin-core/core.cpp | 6 +- .../filemanager/dfmplugin-vault/vault.cpp | 4 - 19 files changed, 218 insertions(+), 42 deletions(-) create mode 100644 assets/log/debug/org.deepin.file-manager.json rename assets/log/{ => viewer}/dde-file-manager.json (86%) create mode 100644 src/dfm-base/utils/loggerrules.cpp create mode 100644 src/dfm-base/utils/loggerrules.h diff --git a/assets/configs/org.deepin.dde.file-manager.json b/assets/configs/org.deepin.dde.file-manager.json index a513b1e73d..9098654882 100644 --- a/assets/configs/org.deepin.dde.file-manager.json +++ b/assets/configs/org.deepin.dde.file-manager.json @@ -188,6 +188,17 @@ "description":"Used to determine if all directories use async iteration to load files", "permissions":"readwrite", "visibility":"private" + }, + "log_rules": { + "value": "*.debug=false;*.info=false;*.warning=true", + "serial": 0, + "flags": ["global"], + "name": "log rules", + "name[zh_CN]": "日志规则", + "description": "log rules", + "description[zh_CN]": "日志规则", + "permissions": "readwrite", + "visibility": "public" } } } diff --git a/assets/log/debug/org.deepin.file-manager.json b/assets/log/debug/org.deepin.file-manager.json new file mode 100644 index 0000000000..3acb111029 --- /dev/null +++ b/assets/log/debug/org.deepin.file-manager.json @@ -0,0 +1,12 @@ +{ + "name": "dde-file-manager", + "group": "", + "submodules": [ + { + "name": "dde-file-manager", + "exec": "dde-file-manager_debug.sh" + } + ], + "reboot": 0, + "version": "V1.0" +} \ No newline at end of file diff --git a/assets/log/dde-file-manager.json b/assets/log/viewer/dde-file-manager.json similarity index 86% rename from assets/log/dde-file-manager.json rename to assets/log/viewer/dde-file-manager.json index 3a11897229..3d66f8c35d 100644 --- a/assets/log/dde-file-manager.json +++ b/assets/log/viewer/dde-file-manager.json @@ -36,13 +36,6 @@ "logType": "journal", "logPath": "" }, - { - "name": "dde-file-manager-daemon", - "filter": "", - "exec": "/usr/bin/dde-file-manager-daemon", - "logType": "journal", - "logPath": "" - }, { "name": "dde-file-manager-server", "filter": "", diff --git a/debian/dde-file-manager.install b/debian/dde-file-manager.install index ef33531d83..2ae068cc46 100644 --- a/debian/dde-file-manager.install +++ b/debian/dde-file-manager.install @@ -20,6 +20,7 @@ usr/share/dbus-1/system-services/com.deepin.filemanager.daemon.service usr/share/deepin-manual/manual-assets/application usr/share/polkit-1/actions/*.policy usr/share/deepin-log-viewer/deepin-log.conf.d/*.json +usr/share/deepin-debug-config/deepin-debug-config.d/*.json usr/share/qt5/doc usr/lib/systemd/system/ lib/systemd/ usr/lib/systemd/user/ diff --git a/include/dfm-base/dfm_log_defines.h b/include/dfm-base/dfm_log_defines.h index ca284d4826..ec8e845526 100644 --- a/include/dfm-base/dfm_log_defines.h +++ b/include/dfm-base/dfm_log_defines.h @@ -40,11 +40,11 @@ // Wrap qCDebug for all plugins // Note: Used in the plugin's namespace!!! #undef DFM_LOG_REISGER_CATEGORY -#define DFM_LOG_REISGER_CATEGORY2(name) \ - const QLoggingCategory &__log##name() \ - { \ - static const QLoggingCategory category("log.plugin." #name); \ - return category; \ +#define DFM_LOG_REISGER_CATEGORY2(name) \ + const QLoggingCategory &__log##name() \ + { \ + static const QLoggingCategory category("org.deepin.dde.filemanager.plugin." #name); \ + return category; \ } #define DFM_LOG_REISGER_CATEGORY(nameMacro) DFM_LOG_REISGER_CATEGORY2(nameMacro) diff --git a/src/apps/dde-desktop/main.cpp b/src/apps/dde-desktop/main.cpp index 87aafa9e2f..6cd63684ef 100644 --- a/src/apps/dde-desktop/main.cpp +++ b/src/apps/dde-desktop/main.cpp @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -35,7 +36,7 @@ #include #include -Q_LOGGING_CATEGORY(logAppDesktop, "log.app.dde-desktop") +Q_LOGGING_CATEGORY(logAppDesktop, "org.deepin.dde.filemanager.desktop") DGUI_USE_NAMESPACE DWIDGET_USE_NAMESPACE @@ -153,6 +154,9 @@ static void registerDDESession() static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static void checkUpgrade(DApplication *app) @@ -215,6 +219,7 @@ static void autoReleaseMemory() int main(int argc, char *argv[]) { + initLog(); QString mainTime = QDateTime::currentDateTime().toString(); DApplication a(argc, argv); a.setOrganizationName(ORGANIZATION_NAME); @@ -233,7 +238,6 @@ int main(int argc, char *argv[]) } DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); autoReleaseMemory(); qCInfo(logAppDesktop) << "start desktop " << a.applicationVersion() << "pid" << getpid() << "parent id" << getppid() diff --git a/src/apps/dde-file-dialog-wayland/main.cpp b/src/apps/dde-file-dialog-wayland/main.cpp index a0b664b8b5..20370bf4a0 100644 --- a/src/apps/dde-file-dialog-wayland/main.cpp +++ b/src/apps/dde-file-dialog-wayland/main.cpp @@ -11,12 +11,13 @@ #include #include +#include #include #include -Q_LOGGING_CATEGORY(logAppDialogWayland, "log.app.dde-select-dialog-wayland") +Q_LOGGING_CATEGORY(logAppDialogWayland, "org.deepin.dde.filemanager.filedialog-wayland") DGUI_USE_NAMESPACE DWIDGET_USE_NAMESPACE @@ -40,6 +41,9 @@ static constexpr char kDFMCoreLibName[] { "libdfmplugin-core.so" }; static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static void initEnv() @@ -168,6 +172,7 @@ static void handleSIGTERM(int sig) int main(int argc, char *argv[]) { initEnv(); + initLog(); // Fixed the locale codec to utf-8 QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf-8")); @@ -190,7 +195,6 @@ int main(int argc, char *argv[]) signal(SIGTERM, handleSIGTERM); DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); if (!pluginsLoad()) { qCCritical(logAppDialogWayland) << "Load pugin failed!"; diff --git a/src/apps/dde-file-dialog-x11/main.cpp b/src/apps/dde-file-dialog-x11/main.cpp index 35e150c862..c647e7d477 100644 --- a/src/apps/dde-file-dialog-x11/main.cpp +++ b/src/apps/dde-file-dialog-x11/main.cpp @@ -11,12 +11,13 @@ #include #include +#include #include #include -Q_LOGGING_CATEGORY(logAppDialogX11, "log.app.dde-select-dialog-x11") +Q_LOGGING_CATEGORY(logAppDialogX11, "org.deepin.dde.filemanager.filedialog-x11") DGUI_USE_NAMESPACE DWIDGET_USE_NAMESPACE @@ -40,6 +41,9 @@ static constexpr char kDFMCoreLibName[] { "libdfmplugin-core.so" }; static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static void initEnv() @@ -168,6 +172,7 @@ static void handleSIGTERM(int sig) int main(int argc, char *argv[]) { initEnv(); + initLog(); // Fixed the locale codec to utf-8 QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf-8")); @@ -190,7 +195,6 @@ int main(int argc, char *argv[]) signal(SIGTERM, handleSIGTERM); DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); if (!pluginsLoad()) { qCCritical(logAppDialogX11) << "Load pugin failed!"; diff --git a/src/apps/dde-file-dialog/main.cpp b/src/apps/dde-file-dialog/main.cpp index c01818a916..ec2eab132a 100644 --- a/src/apps/dde-file-dialog/main.cpp +++ b/src/apps/dde-file-dialog/main.cpp @@ -11,12 +11,13 @@ #include #include +#include #include #include -Q_LOGGING_CATEGORY(logAppDialog, "log.app.dde-file-dialog") +Q_LOGGING_CATEGORY(logAppDialog, "org.deepin.dde.filemanager.filedialog") DGUI_USE_NAMESPACE DWIDGET_USE_NAMESPACE @@ -40,6 +41,9 @@ static constexpr char kDFMCoreLibName[] { "libdfmplugin-core.so" }; static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static void initEnv() @@ -165,6 +169,7 @@ static void handleSIGTERM(int sig) int main(int argc, char *argv[]) { initEnv(); + initLog(); // Fixed the locale codec to utf-8 QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf-8")); @@ -186,7 +191,6 @@ int main(int argc, char *argv[]) signal(SIGTERM, handleSIGTERM); DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); if (!pluginsLoad()) { qCCritical(logAppDialog) << "Load pugin failed!"; diff --git a/src/apps/dde-file-manager-daemon/main.cpp b/src/apps/dde-file-manager-daemon/main.cpp index b71c818e50..9eb3339ad7 100644 --- a/src/apps/dde-file-manager-daemon/main.cpp +++ b/src/apps/dde-file-manager-daemon/main.cpp @@ -4,14 +4,17 @@ #include "config.h" // cmake -#include -#include -#include - #include #include +#include +#include + +#include +#include +#include + #include #include #include @@ -19,7 +22,7 @@ #include #include -Q_LOGGING_CATEGORY(logAppDaemon, "log.app.dde-file-manager-daemon") +Q_LOGGING_CATEGORY(logAppDaemon, "org.deepin.dde.filemanager.daemon") static constexpr char kDaemonInterface[] { "org.deepin.plugin.daemon" }; static constexpr char kPluginCore[] { "daemonplugin-core" }; @@ -57,6 +60,9 @@ static void initEnv() static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static bool pluginsLoad() @@ -112,12 +118,13 @@ static bool pluginsLoad() int main(int argc, char *argv[]) { initEnv(); + initLog(); + QCoreApplication a(argc, argv); a.setOrganizationName("deepin"); DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); if (!pluginsLoad()) { qCCritical(logAppDaemon) << "Load plugin failed!"; abort(); diff --git a/src/apps/dde-file-manager-server/main.cpp b/src/apps/dde-file-manager-server/main.cpp index 0f72f58206..c4b44d334a 100644 --- a/src/apps/dde-file-manager-server/main.cpp +++ b/src/apps/dde-file-manager-server/main.cpp @@ -5,6 +5,7 @@ #include "config.h" #include +#include #include @@ -17,7 +18,7 @@ #include #include -Q_LOGGING_CATEGORY(logAppServer, "log.app.dde-file-manager-server") +Q_LOGGING_CATEGORY(logAppServer, "org.deepin.dde.filemanager.server") static constexpr char kServerInterface[] { "org.deepin.plugin.server" }; static constexpr char kPluginCore[] { "serverplugin-core" }; @@ -37,6 +38,9 @@ DCORE_USE_NAMESPACE static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static bool pluginsLoad() @@ -105,6 +109,7 @@ DWIDGET_USE_NAMESPACE int main(int argc, char *argv[]) { + initLog(); DApplication a(argc, argv); a.setOrganizationName(ORGANIZATION_NAME); { @@ -119,7 +124,6 @@ int main(int argc, char *argv[]) signal(SIGABRT, handleSIGABRT); DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); if (!pluginsLoad()) { qCCritical(logAppServer) << "Load pugin failed!"; diff --git a/src/apps/dde-file-manager/main.cpp b/src/apps/dde-file-manager/main.cpp index dd2e25edeb..35b226ab63 100644 --- a/src/apps/dde-file-manager/main.cpp +++ b/src/apps/dde-file-manager/main.cpp @@ -10,6 +10,7 @@ #include #include +#include #include #include @@ -26,7 +27,7 @@ #include #include -Q_LOGGING_CATEGORY(logAppFileManager, "log.app.dde-file-manager") +Q_LOGGING_CATEGORY(logAppFileManager, "org.deepin.dde.filemanager.filemanager") DGUI_USE_NAMESPACE DWIDGET_USE_NAMESPACE @@ -209,6 +210,9 @@ static void initEnv() static void initLog() { dpfLogManager->applySuggestedLogSettings(); +#ifdef DTKCORE_CLASS_DConfigFile + LoggerRules::instance().initLoggerRules(); +#endif } static void checkUpgrade(SingleApplication *app) @@ -264,6 +268,9 @@ int main(int argc, char *argv[]) { initEnv(); + // Warning: set log filter must before QApplication inited + initLog(); + // Fixed the locale codec to utf-8 QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf-8")); @@ -281,9 +288,7 @@ int main(int argc, char *argv[]) "trash, compression/decompression, file property " "and other useful functions.")); a.setAttribute(Qt::AA_UseHighDpiPixmaps); - DPF_NAMESPACE::backtrace::installStackTraceHandler(); - initLog(); autoReleaseMemory(); CommandParser::instance().process(); diff --git a/src/dfm-base/CMakeLists.txt b/src/dfm-base/CMakeLists.txt index 6c918dd2a2..64d45fdf15 100644 --- a/src/dfm-base/CMakeLists.txt +++ b/src/dfm-base/CMakeLists.txt @@ -187,9 +187,13 @@ install(FILES ${AssetsPath}/.readme DESTINATION ${OemMenuDir}) set(ContexMenuDir "${CMAKE_INSTALL_PREFIX}/share/applications/context-menus") install(FILES ${AssetsPath}/.readme DESTINATION ${ContexMenuDir}) -# log config -set(LogConfDir "${CMAKE_INSTALL_PREFIX}/share/deepin-log-viewer/deepin-log.conf.d") -install(FILES ${AssetsPath}/log/dde-file-manager.json DESTINATION ${LogConfDir}) +# log viewer +set(LogViewerConfDir "${CMAKE_INSTALL_PREFIX}/share/deepin-log-viewer/deepin-log.conf.d") +install(FILES ${AssetsPath}/log/viewer/dde-file-manager.json DESTINATION ${LogViewerConfDir}) + +# log debug +set(LogDebugConfDir "${CMAKE_INSTALL_PREFIX}/share/deepin-debug-config/deepin-debug-config.d") +install(FILES ${AssetsPath}/log/debug/org.deepin.file-manager.json DESTINATION ${LogDebugConfDir}) include(${CMAKE_SOURCE_DIR}/install_dconfig.cmake) INSTALL_DCONFIG("org.deepin.dde.file-manager.json") diff --git a/src/dfm-base/base/application/application.cpp b/src/dfm-base/base/application/application.cpp index 01ed3dad0c..ec7c445724 100644 --- a/src/dfm-base/base/application/application.cpp +++ b/src/dfm-base/base/application/application.cpp @@ -12,7 +12,7 @@ #include #include -Q_LOGGING_CATEGORY(logDFMBase, "log.lib.dfmbase") +Q_LOGGING_CATEGORY(logDFMBase, "org.deepin.dde.filemanager.lib.base") namespace dfmbase { diff --git a/src/dfm-base/utils/loggerrules.cpp b/src/dfm-base/utils/loggerrules.cpp new file mode 100644 index 0000000000..ca3b2b66f6 --- /dev/null +++ b/src/dfm-base/utils/loggerrules.cpp @@ -0,0 +1,77 @@ +// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. +// +// SPDX-License-Identifier: GPL-3.0-or-later + +#include "loggerrules.h" + +#include + +DFMBASE_BEGIN_NAMESPACE + +LoggerRules &LoggerRules::instance() +{ + static LoggerRules rules; + return rules; +} + +void LoggerRules::initLoggerRules() +{ + QByteArray logRules = qgetenv("QT_LOGGING_RULES"); + qunsetenv("QT_LOGGING_RULES"); + + // set env + currentRules = logRules; + qCWarning(logDFMBase) << "Current system env log rules:" << logRules; + + logRules = DConfigManager::instance()->value(kDefaultCfgPath, "log_rules").toByteArray(); + qCWarning(logDFMBase) << "Current app log rules :" << logRules; + appendRules(logRules); + setRules(currentRules); + + // watch dconfig + connect(DConfigManager::instance(), &DConfigManager::valueChanged, this, [this](const QString &config, const QString &key) { + if (config == kDefaultCfgPath && key == "log_rules") { + setRules(DConfigManager::instance()->value(kDefaultCfgPath, key).toByteArray()); + qCWarning(logDFMBase) << "value changed:" << key; + } + }); +} + +QString LoggerRules::rules() const +{ + return currentRules; +} + +void LoggerRules::setRules(const QString &rules) +{ + auto tmpRules = rules; + currentRules = tmpRules.replace(";", "\n"); + QLoggingCategory::setFilterRules(currentRules); +} + +LoggerRules::LoggerRules(QObject *parent) + : QObject(parent) +{ +} + +LoggerRules::~LoggerRules() +{ +} + +void LoggerRules::appendRules(const QString &rules) +{ + QString tmpRules = rules; + tmpRules = tmpRules.replace(";", "\n"); + auto tmplist = tmpRules.split('\n'); + for (int i = 0; i < tmplist.count(); i++) + if (currentRules.contains(tmplist.at(i))) { + tmplist.removeAt(i); + i--; + } + if (tmplist.isEmpty()) + return; + currentRules.isEmpty() ? currentRules = tmplist.join("\n") + : currentRules += "\n" + tmplist.join("\n"); +} + +DFMBASE_END_NAMESPACE diff --git a/src/dfm-base/utils/loggerrules.h b/src/dfm-base/utils/loggerrules.h new file mode 100644 index 0000000000..cd44a81d72 --- /dev/null +++ b/src/dfm-base/utils/loggerrules.h @@ -0,0 +1,48 @@ +// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. +// +// SPDX-License-Identifier: GPL-3.0-or-later + +#ifndef LOGGERRULES_H +#define LOGGERRULES_H + +#include + +#include + +DFMBASE_BEGIN_NAMESPACE + +//! +//! \brief Refrence: https://gitlabwh.uniontech.com/ +//! ut000683/deepin-docs/-/blob/main/debug.md +//! +//! The impl copy from: https://github.com/linuxdeepin/deepin-log-viewer +//! /pull/253/files +//! +//! verify: sudo deepin-debug-config -s -m all -l on +//! + +class LoggerRules : public QObject +{ + Q_OBJECT + Q_DISABLE_COPY(LoggerRules) + +public: + static LoggerRules &instance(); + + void initLoggerRules(); + QString rules() const; + void setRules(const QString &rules); + +private: + explicit LoggerRules(QObject *parent = nullptr); + ~LoggerRules(); + + void appendRules(const QString &rules); + +private: + QString currentRules; +}; + +DFMBASE_END_NAMESPACE + +#endif // LOGGERRULES_H diff --git a/src/dfm-framework/log/framelogmanager.cpp b/src/dfm-framework/log/framelogmanager.cpp index f9f74b36ce..3eda3efb23 100644 --- a/src/dfm-framework/log/framelogmanager.cpp +++ b/src/dfm-framework/log/framelogmanager.cpp @@ -8,7 +8,7 @@ #include -Q_LOGGING_CATEGORY(logDPF, "log.lib.dpf") +Q_LOGGING_CATEGORY(logDPF, "org.deepin.dde.filemanager.lib.framework") DCORE_USE_NAMESPACE DPF_USE_NAMESPACE diff --git a/src/plugins/daemon/core/daemonplugin-core/core.cpp b/src/plugins/daemon/core/daemonplugin-core/core.cpp index 1814783c2c..75f90617dd 100644 --- a/src/plugins/daemon/core/daemonplugin-core/core.cpp +++ b/src/plugins/daemon/core/daemonplugin-core/core.cpp @@ -43,10 +43,12 @@ bool Core::start() { QDBusConnection connection = QDBusConnection::systemBus(); if (!connection.interface()->isServiceRegistered(kDaemonServicePath)) { - fmInfo() << connection.registerService(kDaemonServicePath) << "register" << kDaemonServicePath << "success"; + connection.registerService(kDaemonServicePath); + fmInfo() << "register" << kDaemonServicePath << "success"; qputenv(kEnvNameOfDaemonRegistered, "TRUE"); } else { - fmWarning() << connection.registerService(kDaemonServicePath) << "register" << kDaemonServicePath << "failed"; + connection.registerService(kDaemonServicePath); + fmWarning() << "register" << kDaemonServicePath << "failed"; qputenv(kEnvNameOfDaemonRegistered, "FALSE"); } diff --git a/src/plugins/filemanager/dfmplugin-vault/vault.cpp b/src/plugins/filemanager/dfmplugin-vault/vault.cpp index 71c9739ed1..842e1e0623 100644 --- a/src/plugins/filemanager/dfmplugin-vault/vault.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/vault.cpp @@ -32,10 +32,6 @@ void Vault::initialize() bool Vault::start() { - QString err; - if (!DConfigManager::instance()->addConfig("org.deepin.dde.file-manager.vault", &err)) - fmWarning() << "Vault: create dconfig failed: " << err; - VaultVisibleManager::instance()->pluginServiceRegister(); return true; } From 9e41157dc98bb0ac2590f342f48620284326a016 Mon Sep 17 00:00:00 2001 From: xust Date: Thu, 18 Jan 2024 14:08:03 +0800 Subject: [PATCH 07/25] fix: [dock] dlnfs mount shows in dock plugin as title. Log: as title. Bug: https://pms.uniontech.com/bug-view-240511.html --- .../disk-mount/CMakeLists.txt | 11 +++-- .../disk-mount/device/dockitemdatamanager.cpp | 44 +++++++++++++++++++ .../disk-mount/device/dockitemdatamanager.h | 4 ++ .../disk-mount/utils/dockutils.cpp | 38 ++++++++++++++++ .../disk-mount/utils/dockutils.h | 2 + .../disk-mount/CMakeLists.txt | 4 ++ 6 files changed, 99 insertions(+), 4 deletions(-) diff --git a/src/external/dde-dock-plugins/disk-mount/CMakeLists.txt b/src/external/dde-dock-plugins/disk-mount/CMakeLists.txt index 410564d3e9..7c81ba816d 100644 --- a/src/external/dde-dock-plugins/disk-mount/CMakeLists.txt +++ b/src/external/dde-dock-plugins/disk-mount/CMakeLists.txt @@ -24,23 +24,25 @@ find_package(Dtk COMPONENTS Widget Gui REQUIRED) find_package(PkgConfig REQUIRED) pkg_check_modules(DdeDockInterface REQUIRED dde-dock) -pkg_check_modules(Gesttings REQUIRED gsettings-qt) +pkg_check_modules(Gesttings REQUIRED gsettings-qt) +pkg_search_module(LibMount REQUIRED mount IMPORTED_TARGET) set(QRC_FILE resources.qrc resources/theme-icons.qrc - ) +) qt5_add_resources(QRC_RESOURCES ${QRC_FILE}) qt5_add_dbus_interface(MOUNT_PLUGIN_FILES "${CMAKE_SOURCE_DIR}/assets/dbus/org.deepin.filemanager.server.DeviceManager.xml" - devicemanager_interface) + devicemanager_interface +) add_library(${PROJECT_NAME} SHARED ${MOUNT_PLUGIN_FILES} ${QRC_RESOURCES} - ) +) set_target_properties(${PROJECT_NAME} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ./) @@ -62,6 +64,7 @@ target_link_libraries(${PROJECT_NAME} PRIVATE ${DtkGui_LIBRARIES} ${Gesttings_LIBRARIES} ${DdeDockInterface_LIBRARIES} + PkgConfig::LibMount Qt5::Concurrent ) diff --git a/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.cpp b/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.cpp index 2a2650dcd6..4d91624b33 100644 --- a/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.cpp +++ b/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.cpp @@ -34,6 +34,7 @@ DockItemDataManager::DockItemDataManager(QObject *parent) QDBusConnection::sessionBus(), this)); connectDeviceManger(); + watchService(); } void DockItemDataManager::onBlockMounted(const QString &id) @@ -109,6 +110,8 @@ bool DockItemDataManager::blockDeviceFilter(const QVariantMap &data) bool DockItemDataManager::protoDeviceFilter(const QVariantMap &data) { + if (device_utils::isDlnfsMount(data.value(GlobalServerDefines::DeviceProperty::kMountPoint).toString())) + return kIgnore; return kDisplay; } @@ -143,6 +146,31 @@ void DockItemDataManager::sendNotification(const QString &id, const QString &ope notify(title, msg); } +void DockItemDataManager::onServiceRegistered() +{ + devMng.reset(new DeviceManager(kDeviceService, + kDevMngPath, + QDBusConnection::sessionBus(), + this)); + connectDeviceManger(); + initialize(); +} + +void DockItemDataManager::onServiceUnregistered() +{ + QStringList blkIDs = blocks.keys(); + for (auto id : blkIDs) + Q_EMIT mountRemoved(id); + QStringList protoIDs = protocols.keys(); + for (auto id : protoIDs) + Q_EMIT mountRemoved(id); + + Q_EMIT requesetSetDockVisible(false); + + blocks.clear(); + protocols.clear(); +} + void DockItemDataManager::updateDockVisible() { bool visible = blocks.count() > 0 || protocols.count() > 0; @@ -285,3 +313,19 @@ void DockItemDataManager::connectDeviceManger() connect(devMng.data(), &DeviceManager::NotifyDeviceBusy, this, &DockItemDataManager::sendNotification); } + +void DockItemDataManager::watchService() +{ + auto watcher = new QDBusServiceWatcher(kDeviceService, QDBusConnection::sessionBus(), + QDBusServiceWatcher::WatchForOwnerChange, this); + connect(watcher, &QDBusServiceWatcher::serviceUnregistered, + this, [this](auto serv) { + qCInfo(logAppDock) << serv << "unregistered."; + onServiceUnregistered(); + }); + connect(watcher, &QDBusServiceWatcher::serviceRegistered, + this, [this](auto serv) { + qCInfo(logAppDock) << serv << "registered."; + onServiceRegistered(); + }); +} diff --git a/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.h b/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.h index 8bbfe2bddb..87c9a0f001 100644 --- a/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.h +++ b/src/external/dde-dock-plugins/disk-mount/device/dockitemdatamanager.h @@ -38,6 +38,9 @@ private Q_SLOTS: void onProtocolUnmounted(const QString &id); void sendNotification(const QString &id, const QString &operation); + void onServiceRegistered(); + void onServiceUnregistered(); + private: explicit DockItemDataManager(QObject *parent = nullptr); @@ -51,6 +54,7 @@ private Q_SLOTS: DockItemData buildProtocolItem(const QVariantMap &data); void connectDeviceManger(); + void watchService(); private: ItemContainer blocks; diff --git a/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp b/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp index f33f092114..d8500905ba 100644 --- a/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp +++ b/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp @@ -10,6 +10,8 @@ #include #include +#include + Q_LOGGING_CATEGORY(logAppDock, "log.dock.disk-mount") QString size_format::formatDiskSize(const quint64 num) @@ -135,3 +137,39 @@ QUrl device_utils::protocolDeviceTarget(const QVariantMap &data) } return QUrl::fromLocalFile(mpt); } + +bool device_utils::isDlnfsMount(const QString &mpt) +{ + auto unifyPath = [](const QString &path) { + return path.endsWith("/") ? path : path + "/"; + }; + + const QString &_mpt = unifyPath(mpt); + + libmnt_table *tab = mnt_new_table(); + libmnt_iter *iter = mnt_new_iter(MNT_ITER_BACKWARD); + + int ret = mnt_table_parse_mtab(tab, nullptr); + if (ret != 0) { + qCWarning(logAppDock) << "device: cannot parse mtab" << ret; + mnt_free_table(tab); + mnt_free_iter(iter); + return false; + } + + libmnt_fs *fs = nullptr; + while (mnt_table_next_fs(tab, iter, &fs) == 0) { + if (fs && strcmp("dlnfs", mnt_fs_get_source(fs)) == 0) { + QString target = unifyPath(mnt_fs_get_target(fs)); + if (target == _mpt) { + mnt_free_table(tab); + mnt_free_iter(iter); + return true; + } + } + } + + mnt_free_table(tab); + mnt_free_iter(iter); + return false; +} diff --git a/src/external/dde-dock-plugins/disk-mount/utils/dockutils.h b/src/external/dde-dock-plugins/disk-mount/utils/dockutils.h index 3bb1725683..a21f858e30 100644 --- a/src/external/dde-dock-plugins/disk-mount/utils/dockutils.h +++ b/src/external/dde-dock-plugins/disk-mount/utils/dockutils.h @@ -27,6 +27,8 @@ QString protocolDeviceIcon(const QVariantMap &data); QUrl blockDeviceTarget(const QVariantMap &data); QUrl protocolDeviceTarget(const QVariantMap &data); + +bool isDlnfsMount(const QString &mpt); } #endif // DOCKUTILS_H diff --git a/tests/external/dde-dock-plugins/disk-mount/CMakeLists.txt b/tests/external/dde-dock-plugins/disk-mount/CMakeLists.txt index ebb42c1d82..920bb2c306 100644 --- a/tests/external/dde-dock-plugins/disk-mount/CMakeLists.txt +++ b/tests/external/dde-dock-plugins/disk-mount/CMakeLists.txt @@ -28,6 +28,9 @@ find_package(Qt5Widgets REQUIRED) find_package(Qt5DBus REQUIRED) find_package(Qt5 COMPONENTS Concurrent Core REQUIRED) find_package(DtkWidget REQUIRED) +find_package(PkgConfig REQUIRED) + +pkg_search_module(LibMount REQUIRED mount IMPORTED_TARGET) set(QRC_FILE ${DOCK_SRC_PATH}/resources.qrc @@ -56,5 +59,6 @@ target_link_libraries(${PROJECT_NAME} PRIVATE ${Qt5Core_LIBRARIES} ${Qt5DBus_LIBRARIES} ${DtkWidget_LIBRARIES} + PkgConfig::LibMount Qt5::Concurrent ) From eae96bcb843f95fe36663063867eb06c62e2e2de Mon Sep 17 00:00:00 2001 From: Zhang Yu Date: Thu, 18 Jan 2024 10:28:30 +0800 Subject: [PATCH 08/25] chore: typo COMPOSITOR fix COMPOSITER to COMPOSITOR. Log: --- src/apps/dde-desktop/main.cpp | 2 +- .../desktop/core/ddplugin-core/screen/screenproxyqt.cpp | 2 +- src/plugins/desktop/ddplugin-wallpapersetting/wlsetplugin.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/dde-desktop/main.cpp b/src/apps/dde-desktop/main.cpp index 6cd63684ef..14db16ffd5 100644 --- a/src/apps/dde-desktop/main.cpp +++ b/src/apps/dde-desktop/main.cpp @@ -92,7 +92,7 @@ static bool pluginsLoad() QStringList blackNames { DConfigManager::instance()->value(kPluginsDConfName, "desktop.blackList").toStringList() }; #ifdef COMPILE_ON_V23 - if (qEnvironmentVariable("DDE_CURRENT_COMPOSITER") == "TreeLand") { + if (qEnvironmentVariable("DDE_CURRENT_COMPOSITOR") == "TreeLand") { qCInfo(logAppDesktop) << "disable background by TreeLand"; if (!blackNames.contains("ddplugin-background")) { blackNames.append("ddplugin-background"); diff --git a/src/plugins/desktop/core/ddplugin-core/screen/screenproxyqt.cpp b/src/plugins/desktop/core/ddplugin-core/screen/screenproxyqt.cpp index 61303a6f80..df607cf7e3 100644 --- a/src/plugins/desktop/core/ddplugin-core/screen/screenproxyqt.cpp +++ b/src/plugins/desktop/core/ddplugin-core/screen/screenproxyqt.cpp @@ -130,7 +130,7 @@ qreal ScreenProxyQt::devicePixelRatio() const DisplayMode ScreenProxyQt::displayMode() const { #ifdef COMPILE_ON_V23 - if (qEnvironmentVariable("DDE_CURRENT_COMPOSITER") == "TreeLand") { + if (qEnvironmentVariable("DDE_CURRENT_COMPOSITOR") == "TreeLand") { return DisplayMode::kShowonly; } #endif diff --git a/src/plugins/desktop/ddplugin-wallpapersetting/wlsetplugin.cpp b/src/plugins/desktop/ddplugin-wallpapersetting/wlsetplugin.cpp index 2ba4163584..034cdf88f4 100644 --- a/src/plugins/desktop/ddplugin-wallpapersetting/wlsetplugin.cpp +++ b/src/plugins/desktop/ddplugin-wallpapersetting/wlsetplugin.cpp @@ -97,7 +97,7 @@ void EventHandle::startTreeland() bool EventHandle::wallpaperSetting(const QString &name) { - if (qEnvironmentVariable("DDE_CURRENT_COMPOSITER") == "TreeLand") { + if (qEnvironmentVariable("DDE_CURRENT_COMPOSITOR") == "TreeLand") { startTreeland(); } else { show(name, (int)WallpaperSettings::Mode::WallpaperMode); @@ -108,7 +108,7 @@ bool EventHandle::wallpaperSetting(const QString &name) bool EventHandle::screenSaverSetting(const QString &name) { - if (qEnvironmentVariable("DDE_CURRENT_COMPOSITER") == "TreeLand") { + if (qEnvironmentVariable("DDE_CURRENT_COMPOSITOR") == "TreeLand") { startTreeland(); } else { show(name, (int)WallpaperSettings::Mode::ScreenSaverMode); From 22bf4ed03b89571e5e6881a5b0713db316d41d45 Mon Sep 17 00:00:00 2001 From: liuyangming Date: Thu, 18 Jan 2024 10:32:40 +0800 Subject: [PATCH 09/25] fix: [workspace]statusbar issue display issue Log: fix statusbar display issue Bug: https://pms.uniontech.com/bug-view-239943.html --- .../widgets/dfmstatusbar/basicstatusbar.cpp | 2 +- .../dfmplugin-workspace/views/fileviewstatusbar.cpp | 13 +++++++++++-- .../dfmplugin-workspace/views/fileviewstatusbar.h | 1 + 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/dfm-base/widgets/dfmstatusbar/basicstatusbar.cpp b/src/dfm-base/widgets/dfmstatusbar/basicstatusbar.cpp index 356a577826..f8ef9a67dc 100644 --- a/src/dfm-base/widgets/dfmstatusbar/basicstatusbar.cpp +++ b/src/dfm-base/widgets/dfmstatusbar/basicstatusbar.cpp @@ -27,7 +27,7 @@ QSize BasicStatusBar::sizeHint() const { QSize size = QFrame::sizeHint(); - size.setHeight(qMax(25, size.height())); + size.setHeight(qMax(32, size.height())); return size; } diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.cpp index 2d743137c6..f8c63b469a 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.cpp @@ -35,10 +35,13 @@ void FileViewStatusBar::setScalingVisible(const bool visible) if (!scaleSlider) return; - if (visible) + if (visible) { + stretchWidget->show(); scaleSlider->show(); - else + } else { + stretchWidget->hide(); scaleSlider->hide(); + } } int FileViewStatusBar::scalingValue() @@ -100,6 +103,12 @@ void FileViewStatusBar::initLoadingIndicator() void FileViewStatusBar::setCustomLayout() { insertWidget(0, loadingIndicator); + + stretchWidget = new QWidget(this); + stretchWidget->setFixedSize(120, 30); + stretchWidget->hide(); + insertWidget(1, stretchWidget); + addWidget(scaleSlider, 0, Qt::AlignRight); } diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.h b/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.h index 1437d9884b..6d5cbcc76c 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.h +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/fileviewstatusbar.h @@ -40,6 +40,7 @@ class FileViewStatusBar : public BasicStatusBar DPictureSequenceView *loadingIndicator { nullptr }; DSlider *scaleSlider { nullptr }; + QWidget *stretchWidget { nullptr }; }; } From a66525099d23efd39e380b2ed9f3af0c5c9a1642 Mon Sep 17 00:00:00 2001 From: "max.lv" Date: Wed, 17 Jan 2024 15:03:46 +0800 Subject: [PATCH 10/25] chore: update the baseline version to 6.0.40 update the baseline version to 6.0.40 Log: update the baseline version to 6.0.40 Bug: no --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 2e9a2b7af4..09ec2784de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +dde-file-manager (6.0.40) unstable; urgency=medium + + * update file manager baseline version to V6.0.40 + + -- lvwujun Wed, 17 Jan 2024 15:03:17 +0800 + dde-file-manager (6.0.39) unstable; urgency=medium * update file manager baseline version to V6.0.39 From c2578bf8b490d5afc1cd22642f2a6b22e3373bec Mon Sep 17 00:00:00 2001 From: Gong Heng Date: Thu, 18 Jan 2024 16:39:02 +0800 Subject: [PATCH 11/25] fix: [vault] vault root file can not drop cache the file info error Log: fix issue Bug: https://pms.uniontech.com/bug-view-240555.html --- .../filemanager/dfmplugin-vault/fileutils/vaultfileiterator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/filemanager/dfmplugin-vault/fileutils/vaultfileiterator.cpp b/src/plugins/filemanager/dfmplugin-vault/fileutils/vaultfileiterator.cpp index d8ec6836a1..5c076260aa 100644 --- a/src/plugins/filemanager/dfmplugin-vault/fileutils/vaultfileiterator.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/fileutils/vaultfileiterator.cpp @@ -88,7 +88,7 @@ const FileInfoPointer VaultFileIterator::fileInfo() const FileInfoPointer vaultInfo(new VaultFileInfo(fileUrl(), infoTrans)); emit InfoCacheController::instance().removeCacheFileInfo({fileUrl()}); - emit InfoCacheController::instance().cacheFileInfo(fileUrl(), infoTrans); + emit InfoCacheController::instance().cacheFileInfo(fileUrl(), vaultInfo); return vaultInfo; } From 399d5f971e2655a92220b603e5ef24de5d0c149a Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Wed, 18 Jan 2023 10:12:28 +0100 Subject: [PATCH 12/25] fsearch: Include for the usleep function This improves compatibility with compilers which do not support implicit function declarations. Upstream fsearch does not call usleep and is therefore not affected by this issue. --- .../dfmplugin-search/3rdparty/fsearch/fsearch_thread_pool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/filemanager/dfmplugin-search/3rdparty/fsearch/fsearch_thread_pool.c b/src/plugins/filemanager/dfmplugin-search/3rdparty/fsearch/fsearch_thread_pool.c index 35ee6899c5..2150383540 100644 --- a/src/plugins/filemanager/dfmplugin-search/3rdparty/fsearch/fsearch_thread_pool.c +++ b/src/plugins/filemanager/dfmplugin-search/3rdparty/fsearch/fsearch_thread_pool.c @@ -20,6 +20,8 @@ #include "fsearch_thread_pool.h" #include +#include + struct _FsearchThreadPool { GList *threads; uint32_t num_threads; From 73a1015aa1075560726182694babeba161e40711 Mon Sep 17 00:00:00 2001 From: Gong Heng Date: Fri, 19 Jan 2024 13:09:43 +0800 Subject: [PATCH 13/25] fix: [vault] After upgrade, can not unlock vault by key add the key unlock vault logic code Log: fix issue Bug: https://pms.uniontech.com/bug-view-240657.html --- .../dfmplugin-vault/utils/vaulthelper.cpp | 2 +- .../dfmplugin-vault/utils/vaulthelper.h | 2 +- .../vaultremovebypasswordview.cpp | 25 ++++++++ .../vaultremovebypasswordview.h | 5 ++ .../vaultremovebyrecoverykeyview.cpp | 64 ++++++++++++++++++- .../vaultremovebyrecoverykeyview.h | 19 ++++-- .../views/unlockview/recoverykeyview.cpp | 39 +++++------ .../views/unlockview/recoverykeyview.h | 6 +- .../views/unlockview/unlockview.cpp | 8 ++- .../views/vaultremovepages.cpp | 14 +++- 10 files changed, 144 insertions(+), 40 deletions(-) diff --git a/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.cpp b/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.cpp index ae6c9235fc..5225e5ed44 100644 --- a/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.cpp @@ -164,7 +164,7 @@ void VaultHelper::openNewWindow(const QUrl &url) VaultEventCaller::sendOpenWindow(url); } -bool VaultHelper::getVaultVersion() +bool VaultHelper::getVaultVersion() const { VaultConfig config; QString strVersion = config.get(kConfigNodeName, kConfigKeyVersion).toString(); diff --git a/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.h b/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.h index c5f27b471c..deac3cee17 100644 --- a/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.h +++ b/src/plugins/filemanager/dfmplugin-vault/utils/vaulthelper.h @@ -48,7 +48,7 @@ class VaultHelper final : public QObject * \brief getVaultVersion 获取当前保险箱版本是否是1050及以上版本 * \return true大于等于1050,false小于1050 */ - bool getVaultVersion(); + bool getVaultVersion() const; void killVaultTasks(); diff --git a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.cpp b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.cpp index 672698d19f..b72a6726f1 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.cpp @@ -14,10 +14,12 @@ #include #include #include +#include #include #include #include +#include DWIDGET_USE_NAMESPACE using namespace dfmplugin_vault; @@ -42,9 +44,18 @@ VaultRemoveByPasswordView::VaultRemoveByPasswordView(QWidget *parent) layout->addWidget(tipsBtn); layout->setContentsMargins(0, 0, 0, 0); + if (!VaultHelper::instance()->getVaultVersion()) { + keyDeleteLabel = new DLabel(tr("Key delete")); + DFontSizeManager::instance()->bind(keyDeleteLabel, DFontSizeManager::T8, QFont::Medium); + keyDeleteLabel->installEventFilter(this); + keyDeleteLabel->setForegroundRole(DPalette::ColorType::LightLively); + } + QVBoxLayout *mainLay = new QVBoxLayout; mainLay->addWidget(hintInfo); mainLay->addItem(layout); + if (keyDeleteLabel) + mainLay->addWidget(keyDeleteLabel, 0, Qt::AlignRight); setLayout(mainLay); connect(pwdEdit->lineEdit(), &QLineEdit::textChanged, this, &VaultRemoveByPasswordView::onPasswordChanged); @@ -189,3 +200,17 @@ void VaultRemoveByPasswordView::slotCheckAuthorizationFinished(PolkitQt1::Author emit signalJump(RemoveWidgetType::kRemoveProgressWidget); } + +bool VaultRemoveByPasswordView::eventFilter(QObject *obj, QEvent *evt) +{ + if (obj && obj == keyDeleteLabel) { + if (evt->type() == QEvent::MouseButtonPress) { + QMouseEvent *mouseEvent = static_cast(evt); + if (mouseEvent->button() == Qt::LeftButton) { + emit signalJump(RemoveWidgetType::kRecoveryKeyWidget); + return true; + } + } + } + return QWidget::eventFilter(obj, evt); +} diff --git a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.h b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.h index fd5581189a..46c8f7324f 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.h +++ b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebypasswordview.h @@ -20,6 +20,7 @@ DWIDGET_BEGIN_NAMESPACE class DPasswordEdit; class DToolTip; class DFloatingWidget; +class DLabel; DWIDGET_END_NAMESPACE namespace dfmplugin_vault { @@ -51,11 +52,15 @@ public Q_SLOTS: void signalJump(const RemoveWidgetType &type); void sigCloseDialog(); +protected: + bool eventFilter(QObject *obj, QEvent *evt) override; + private: DTK_WIDGET_NAMESPACE::DPasswordEdit *pwdEdit { nullptr }; QPushButton *tipsBtn { nullptr }; DTK_WIDGET_NAMESPACE::DToolTip *tooltip { nullptr }; DTK_WIDGET_NAMESPACE::DFloatingWidget *floatWidget { nullptr }; + DTK_WIDGET_NAMESPACE::DLabel *keyDeleteLabel { Q_NULLPTR }; }; } #endif // VAULTREMOVEBYPASSWORDVIEW_H diff --git a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.cpp b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.cpp index 275353e370..c70fc92946 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.cpp @@ -3,10 +3,13 @@ // SPDX-License-Identifier: GPL-3.0-or-later #include "vaultremovebyrecoverykeyview.h" +#include "utils/vaulthelper.h" +#include "utils/encryption/operatorcenter.h" #include #include #include +#include #include #include @@ -16,6 +19,7 @@ DWIDGET_USE_NAMESPACE using namespace dfmplugin_vault; +using namespace PolkitQt1; VaultRemoveByRecoverykeyView::VaultRemoveByRecoverykeyView(QWidget *parent) : QWidget(parent) @@ -53,7 +57,6 @@ void VaultRemoveByRecoverykeyView::clear() void VaultRemoveByRecoverykeyView::showAlertMessage(const QString &text, int duration) { - if (!tooltip) { tooltip = new DToolTip(text); tooltip->setObjectName("AlertTooltip"); @@ -85,6 +88,44 @@ void VaultRemoveByRecoverykeyView::showAlertMessage(const QString &text, int dur }); } +QStringList VaultRemoveByRecoverykeyView::btnText() const +{ + return { tr("Cancel"), tr("Delete") }; +} + +QString VaultRemoveByRecoverykeyView::titleText() const +{ + return tr("Delete File Vault"); +} + +void VaultRemoveByRecoverykeyView::buttonClicked(int index, const QString &text) +{ + Q_UNUSED(text) + + switch (index) { + case 0: { // cancel + emit sigCloseDialog(); + } break; + case 1: { // ok + const QString key = getRecoverykey(); + QString cipher; + if (!OperatorCenter::getInstance()->checkUserKey(key, cipher)) { + showAlertMessage(tr("Wrong recovery key")); + return; + } + + auto ins = Authority::instance(); + ins->checkAuthorization(kPolkitVaultRemove, + UnixProcessSubject(getpid()), + Authority::AllowUserInteraction); + connect(ins, &Authority::checkAuthorizationFinished, + this, &VaultRemoveByRecoverykeyView::slotCheckAuthorizationFinished); + } break; + default: + break; + } +} + void VaultRemoveByRecoverykeyView::onRecoveryKeyChanged() { QString key = keyEdit->toPlainText(); @@ -124,6 +165,27 @@ void VaultRemoveByRecoverykeyView::onRecoveryKeyChanged() keyEdit->blockSignals(false); } +void VaultRemoveByRecoverykeyView::slotCheckAuthorizationFinished(PolkitQt1::Authority::Result result) +{ + disconnect(Authority::instance(), &Authority::checkAuthorizationFinished, + this, &VaultRemoveByRecoverykeyView::slotCheckAuthorizationFinished); + + if (Authority::Yes != result) + return; + + if (!VaultHelper::instance()->lockVault(false)) { + QString errMsg = tr("Failed to delete file vault"); + DDialog dialog(this); + dialog.setIcon(QIcon::fromTheme("dialog-warning")); + dialog.setTitle(errMsg); + dialog.addButton(tr("OK"), true, DDialog::ButtonRecommend); + dialog.exec(); + return; + } + + emit signalJump(RemoveWidgetType::kRemoveProgressWidget); +} + int VaultRemoveByRecoverykeyView::afterRecoveryKeyChanged(QString &str) { if (str.isEmpty()) { diff --git a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.h b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.h index 269913fd37..677a11b6e4 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.h +++ b/src/plugins/filemanager/dfmplugin-vault/views/removevaultview/vaultremovebyrecoverykeyview.h @@ -9,6 +9,8 @@ #include +#include + #include class QPlainTextEdit; @@ -26,19 +28,22 @@ class VaultRemoveByRecoverykeyView : public QWidget explicit VaultRemoveByRecoverykeyView(QWidget *parent = nullptr); ~VaultRemoveByRecoverykeyView() override; - /*! - * /brief 获取凭证 - */ QString getRecoverykey(); - - /*! - * /brief 清空凭证 - */ void clear(); void showAlertMessage(const QString &text, int duration = 3000); + + QStringList btnText() const; + QString titleText() const; + void buttonClicked(int index, const QString &text); + public slots: void onRecoveryKeyChanged(); + void slotCheckAuthorizationFinished(PolkitQt1::Authority::Result result); + +Q_SIGNALS: + void signalJump(const RemoveWidgetType &type); + void sigCloseDialog(); private: //! 输入凭证后,对凭证添加“-” diff --git a/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.cpp b/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.cpp index 14b1ddde4a..f1542155ea 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.cpp @@ -8,6 +8,7 @@ #include "utils/servicemanager.h" #include "utils/encryption/interfaceactivevault.h" #include "utils/fileencrypthandle.h" +#include "utils/vaultautolock.h" #include #include @@ -27,32 +28,19 @@ using namespace dfmplugin_vault; RecoveryKeyView::RecoveryKeyView(QWidget *parent) : QFrame(parent) { - //! 标题 - QLabel *pTitle = new QLabel(tr("Unlock by Key"), this); - QFont font = pTitle->font(); - font.setPixelSize(16); - pTitle->setFont(font); - pTitle->setAlignment(Qt::AlignHCenter); - //! 密钥编辑框 recoveryKeyEdit = new QPlainTextEdit(this); recoveryKeyEdit->setPlaceholderText(tr("Input the 32-digit recovery key")); recoveryKeyEdit->setMaximumBlockCount(MAX_KEY_LENGTH + 3); recoveryKeyEdit->installEventFilter(this); - //! 主视图 - QFrame *mainFrame = new QFrame(this); //! 布局 - QVBoxLayout *mainLayout = new QVBoxLayout(mainFrame); + QVBoxLayout *mainLayout = new QVBoxLayout(); mainLayout->setMargin(0); - mainLayout->addWidget(pTitle); mainLayout->addWidget(recoveryKeyEdit); + setLayout(mainLayout); - mainFrame->setLayout(mainLayout); - - // connect(this, &RecoveryKeyView::buttonClicked, this, &RecoveryKeyView::onButtonClicked); connect(recoveryKeyEdit, &QPlainTextEdit::textChanged, this, &RecoveryKeyView::recoveryKeyChanged); - connect(FileEncryptHandle::instance(), &FileEncryptHandle::signalUnlockVault, this, &RecoveryKeyView::onUnlockVault); } RecoveryKeyView::~RecoveryKeyView() @@ -107,7 +95,7 @@ void RecoveryKeyView::showAlertMessage(const QString &text, int duration) void RecoveryKeyView::buttonClicked(int index, const QString &text) { - if (index == 1) { + if (index == 1) { // unlock vault //! 点击解锁后,灰化解锁按钮 emit sigBtnEnabled(1, false); @@ -119,12 +107,15 @@ void RecoveryKeyView::buttonClicked(int index, const QString &text) unlockByKey = true; QString encryptBaseDir = PathManager::vaultLockPath(); QString decryptFileDir = PathManager::vaultUnlockPath(); - FileEncryptHandle::instance()->unlockVault(encryptBaseDir, decryptFileDir, strCipher); + bool result = FileEncryptHandle::instance()->unlockVault(encryptBaseDir, decryptFileDir, strCipher); + handleUnlockVault(result); } else { showAlertMessage(tr("Wrong recovery key")); } - + emit sigBtnEnabled(1, true); return; + } else { + emit sigCloseDialog(); } } @@ -180,9 +171,9 @@ void RecoveryKeyView::recoveryKeyChanged() int maxLength = MAX_KEY_LENGTH + 7; if (key.isEmpty()) { - // getButton(1)->setEnabled(false); + emit sigBtnEnabled(1, false); } else { - // getButton(1)->setEnabled(true); + emit sigBtnEnabled(1, true); } //! 限制密钥输入框只能输入数字、字母、以及+/- @@ -219,11 +210,15 @@ void RecoveryKeyView::recoveryKeyChanged() recoveryKeyEdit->blockSignals(false); } -void RecoveryKeyView::onUnlockVault(int state) +void RecoveryKeyView::handleUnlockVault(bool result) { if (unlockByKey) { - if (state == 0) { + if (result) { //! success + VaultHelper::instance()->defaultCdAction(VaultHelper::instance()->currentWindowId(), + VaultHelper::instance()->rootUrl()); + VaultHelper::recordTime(kjsonGroupName, kjsonKeyInterviewItme); + VaultAutoLock::instance()->slotUnlockVault(0); emit sigCloseDialog(); } else { //! others diff --git a/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.h b/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.h index a839214dba..79077f5144 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.h +++ b/src/plugins/filemanager/dfmplugin-vault/views/unlockview/recoverykeyview.h @@ -42,16 +42,12 @@ class RecoveryKeyView : public QFrame void sigCloseDialog(); private slots: - void recoveryKeyChanged(); - void onUnlockVault(int state); - private: + void handleUnlockVault(bool result); bool eventFilter(QObject *watched, QEvent *event) override; - int afterRecoveryKeyChanged(QString &str); - void showEvent(QShowEvent *event) override; private: diff --git a/src/plugins/filemanager/dfmplugin-vault/views/unlockview/unlockview.cpp b/src/plugins/filemanager/dfmplugin-vault/views/unlockview/unlockview.cpp index 4b2b3fcac2..60396b6132 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/unlockview/unlockview.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/views/unlockview/unlockview.cpp @@ -54,7 +54,7 @@ QString UnlockView::titleText() void UnlockView::initUI() { //! Set font. - forgetPassword = new DLabel(tr("Forgot password?")); + forgetPassword = new DLabel(VaultHelper::instance()->getVaultVersion() ? tr("Forgot password?") : tr("Key unlock")); DFontSizeManager::instance()->bind(forgetPassword, DFontSizeManager::T8, QFont::Medium); forgetPassword->installEventFilter(this); forgetPassword->setForegroundRole(DPalette::ColorType::LightLively); @@ -312,7 +312,11 @@ bool UnlockView::eventFilter(QObject *obj, QEvent *evt) if (evt->type() == QEvent::MouseButtonPress) { QMouseEvent *mouseEvent = static_cast(evt); if (mouseEvent->button() == Qt::LeftButton) { - emit signalJump(PageType::kRetrievePage); + if (VaultHelper::instance()->getVaultVersion()) + emit signalJump(PageType::kRetrievePage); + else + emit signalJump(PageType::kRecoverPage); + return true; } } } diff --git a/src/plugins/filemanager/dfmplugin-vault/views/vaultremovepages.cpp b/src/plugins/filemanager/dfmplugin-vault/views/vaultremovepages.cpp index 5f04721ae9..df6f01c8a0 100644 --- a/src/plugins/filemanager/dfmplugin-vault/views/vaultremovepages.cpp +++ b/src/plugins/filemanager/dfmplugin-vault/views/vaultremovepages.cpp @@ -91,7 +91,19 @@ void VaultRemovePages::showPasswordWidget() void VaultRemovePages::showRecoveryKeyWidget() { + clearContents(true); + clearButtons(); + recoverykeyView = new VaultRemoveByRecoverykeyView(this); + setTitle(recoverykeyView->titleText()); + addContent(recoverykeyView); + QStringList btns = recoverykeyView->btnText(); + if (btns.size() > 1) { + addButton(btns[0], false); + addButton(btns[1], true, ButtonType::ButtonRecommend); + } + connect(recoverykeyView, &VaultRemoveByRecoverykeyView::signalJump, this, &VaultRemovePages::pageSelect); + connect(recoverykeyView, &VaultRemoveByRecoverykeyView::sigCloseDialog, this, &VaultRemovePages::close); } void VaultRemovePages::showRemoveProgressWidget() @@ -148,7 +160,7 @@ void VaultRemovePages::onButtonClicked(int index, const QString &text) if (getContent(0) == passwordView) { passwordView->buttonClicked(index, text); } else if (getContent(0) == recoverykeyView) { - + recoverykeyView->buttonClicked(index, text); } else if (getContent(0) == progressView) { progressView->buttonClicked(index, text); } else if (getContent(0) == noneWidget) { From 121616c8d9deba3a9a40e31b53521b0efd64a08f Mon Sep 17 00:00:00 2001 From: Gong Heng Date: Fri, 19 Jan 2024 15:37:32 +0800 Subject: [PATCH 14/25] fix: [vault] add translate for vault add translate for vault Log: fix issue Bug: https://pms.uniontech.com/bug-view-240657.html --- translations/dde-file-manager.ts | 127 +- translations/dde-file-manager_ady.ts | 1349 +++++++------- translations/dde-file-manager_af.ts | 1349 +++++++------- translations/dde-file-manager_am_ET.ts | 1387 +++++++-------- translations/dde-file-manager_ar.ts | 1395 +++++++-------- translations/dde-file-manager_ast.ts | 1387 +++++++-------- translations/dde-file-manager_az.ts | 1436 +++++++-------- translations/dde-file-manager_bg.ts | 1391 +++++++-------- translations/dde-file-manager_bn.ts | 1367 ++++++++------- translations/dde-file-manager_bo.ts | 181 +- translations/dde-file-manager_bqi.ts | 1369 ++++++++------- translations/dde-file-manager_br.ts | 1349 +++++++------- translations/dde-file-manager_ca.ts | 1429 +++++++-------- translations/dde-file-manager_cs.ts | 1547 ++++++++-------- translations/dde-file-manager_da.ts | 1391 +++++++-------- translations/dde-file-manager_de.ts | 1531 ++++++++-------- translations/dde-file-manager_el.ts | 1391 +++++++-------- translations/dde-file-manager_en_AU.ts | 1357 ++++++++------- translations/dde-file-manager_en_GB.ts | 1349 +++++++------- translations/dde-file-manager_eo.ts | 1359 ++++++++------- translations/dde-file-manager_es.ts | 1554 +++++++++-------- translations/dde-file-manager_et.ts | 1387 +++++++-------- translations/dde-file-manager_fa.ts | 1401 +++++++-------- translations/dde-file-manager_fi.ts | 1579 ++++++++--------- translations/dde-file-manager_fil.ts | 1349 +++++++------- translations/dde-file-manager_fr.ts | 1421 +++++++-------- translations/dde-file-manager_gl_ES.ts | 1391 +++++++-------- translations/dde-file-manager_he.ts | 1349 +++++++------- translations/dde-file-manager_hi_IN.ts | 1373 ++++++++------- translations/dde-file-manager_hr.ts | 1481 ++++++++-------- translations/dde-file-manager_hu.ts | 1425 +++++++-------- translations/dde-file-manager_hy.ts | 1349 +++++++------- translations/dde-file-manager_id.ts | 1405 +++++++-------- translations/dde-file-manager_it.ts | 1429 +++++++-------- translations/dde-file-manager_ja.ts | 1403 +++++++-------- translations/dde-file-manager_ka.ts | 1349 +++++++------- translations/dde-file-manager_kab.ts | 1355 ++++++++------- translations/dde-file-manager_km_KH.ts | 1375 ++++++++------- translations/dde-file-manager_kn_IN.ts | 1349 +++++++------- translations/dde-file-manager_ko.ts | 1391 +++++++-------- translations/dde-file-manager_ku.ts | 1351 +++++++------- translations/dde-file-manager_ku_IQ.ts | 1349 +++++++------- translations/dde-file-manager_ky.ts | 1349 +++++++------- translations/dde-file-manager_ky@Arab.ts | 1349 +++++++------- translations/dde-file-manager_lt.ts | 1403 +++++++-------- translations/dde-file-manager_ml.ts | 1385 +++++++-------- translations/dde-file-manager_mn.ts | 1369 ++++++++------- translations/dde-file-manager_mr.ts | 1349 +++++++------- translations/dde-file-manager_ms.ts | 2032 +++++++++++----------- translations/dde-file-manager_nb.ts | 1389 +++++++-------- translations/dde-file-manager_ne.ts | 1391 +++++++-------- translations/dde-file-manager_nl.ts | 1431 +++++++-------- translations/dde-file-manager_pa.ts | 1383 +++++++-------- translations/dde-file-manager_pam.ts | 1349 +++++++------- translations/dde-file-manager_pl.ts | 1467 ++++++++-------- translations/dde-file-manager_pt.ts | 1421 +++++++-------- translations/dde-file-manager_pt_BR.ts | 1561 +++++++++-------- translations/dde-file-manager_ro.ts | 1391 +++++++-------- translations/dde-file-manager_ru.ts | 1421 +++++++-------- translations/dde-file-manager_sc.ts | 1349 +++++++------- translations/dde-file-manager_si.ts | 1349 +++++++------- translations/dde-file-manager_si_LK.ts | 1349 +++++++------- translations/dde-file-manager_sk.ts | 1391 +++++++-------- translations/dde-file-manager_sl.ts | 1421 +++++++-------- translations/dde-file-manager_sq.ts | 1433 +++++++-------- translations/dde-file-manager_sr.ts | 1421 +++++++-------- translations/dde-file-manager_sv.ts | 1391 +++++++-------- translations/dde-file-manager_sw.ts | 1349 +++++++------- translations/dde-file-manager_ta.ts | 1385 +++++++-------- translations/dde-file-manager_th.ts | 1349 +++++++------- translations/dde-file-manager_tr.ts | 1421 +++++++-------- translations/dde-file-manager_tzm.ts | 1363 ++++++++------- translations/dde-file-manager_ug.ts | 179 +- translations/dde-file-manager_uk.ts | 1552 +++++++++-------- translations/dde-file-manager_ur.ts | 1349 +++++++------- translations/dde-file-manager_uz.ts | 1349 +++++++------- translations/dde-file-manager_vi.ts | 1349 +++++++------- translations/dde-file-manager_zh_CN.ts | 197 ++- translations/dde-file-manager_zh_HK.ts | 157 +- translations/dde-file-manager_zh_TW.ts | 159 +- 80 files changed, 53514 insertions(+), 51444 deletions(-) diff --git a/translations/dde-file-manager.ts b/translations/dde-file-manager.ts index b985715429..d17310fc48 100644 --- a/translations/dde-file-manager.ts +++ b/translations/dde-file-manager.ts @@ -17,12 +17,12 @@ Application - + File Manager File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. @@ -30,7 +30,7 @@ DesktopMain - + Desktop Desktop @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed The device has been safely removed - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 Volume @@ -212,7 +212,7 @@ - + %1 on %2 @@ -886,19 +886,19 @@ (copy %1) - - + + dde-file-manager dde-file-manager - + Files are being processed Files are being processed - + Bit Bit @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key Unlock by Key - + Input the 32-digit recovery key Input the 32-digit recovery key - + Cancel button Cancel - + Unlock button Unlock - + Wrong recovery key Wrong recovery key - + Failed to unlock file vault Failed to unlock file vault - + OK OK @@ -5937,6 +5936,11 @@ Forgot password? Forgot password? + + + Key unlock + + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted Once deleted, the files in it will be permanently deleted - + Password Password - + + Key delete + + + + Password hint: %1 Password hint: %1 - + Cancel Cancel - + Delete Delete - + Delete File Vault Delete File Vault - + Wrong password Wrong password - + Failed to delete file vault Failed to delete file vault - + OK OK @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key Input the 32-digit recovery key + + + Cancel + Cancel + + + + Delete + Delete + + + + Delete File Vault + Delete File Vault + + + + Wrong recovery key + Wrong recovery key + + + + Failed to delete file vault + Failed to delete file vault + + + + OK + OK + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... Loading... @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sort by - + Display as Display as - + Name Name - + Time modified Time modified - + Size Size - + Type Type - + Icon Icon - + List List - + Tree diff --git a/translations/dde-file-manager_ady.ts b/translations/dde-file-manager_ady.ts index 2876d96f18..64cb09b9b9 100644 --- a/translations/dde-file-manager_ady.ts +++ b/translations/dde-file-manager_ady.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_af.ts b/translations/dde-file-manager_af.ts index d1d5273292..27d009a387 100644 --- a/translations/dde-file-manager_af.ts +++ b/translations/dde-file-manager_af.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_am_ET.ts b/translations/dde-file-manager_am_ET.ts index 7914793727..7b5f31212d 100644 --- a/translations/dde-file-manager_am_ET.ts +++ b/translations/dde-file-manager_am_ET.ts @@ -15,99 +15,104 @@ Application - + File Manager የ ፋይል አስተዳዳሪ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + ዴስክቶፕ - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - ዴስክቶፕ + + Disk + ዲስክ - - - DiskControlWidget - - Disks - + + Open + መክፈቻ - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - ዲስክ + + + remove + - - Open - መክፈቻ + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk የ ስርአት ዲስክ - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home ቤት @@ -223,7 +228,6 @@ - Desktop ዴስክቶፕ @@ -233,7 +237,6 @@ - Videos ቪዲዮዎች @@ -243,7 +246,6 @@ - Music ሙዚቃ @@ -253,7 +255,6 @@ - Pictures ስእሎች @@ -263,7 +264,6 @@ - Documents ሰነዶች @@ -273,7 +273,6 @@ - Downloads የ ወረዱ @@ -282,7 +281,6 @@ - Trash ቆሻሻ @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ በራሱ መጫኛ - + @@ -319,47 +316,46 @@ %1 ስራዎች በ ሂደት ላይ - + %1 item %1 እቃ - + %1 items %1 እቃዎች - + Unable to find the original file - - + + File has been moved or deleted ፋይሉ ተንቀሳቅሷል ወይንም ጠፍቷል - - - + + You do not have permission to access this folder እዚህ ፎልደር ጋር ለ መድረስ በቂ ፍቃድ የሎትም - - + + You do not have permission to traverse files in it - - + + Folder is empty ፎልደሩ ባዶ ነው - + Loading... በ መጫን ላይ... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer ኮምፒዩተር @@ -424,9 +419,8 @@ - - - + + Computers in LAN ኮምፒዩተር በ LAN ውስጥ @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut አቋራጭ - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ ቢት - Access denied - Confirm button ማረጋገጫ - - - The device has been safely removed - - - - + + - - - + + + Open in new window በ አዲስ መስኮት ውስጥ መክፈቻ @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab በ አዲስ tab ውስጥ መክፈቻ @@ -968,8 +953,8 @@ - - + + Properties ባህሪዎች @@ -1005,7 +990,7 @@ አዲስ ፋይል - + Create symlink አገናኝ መፍጠሪያ @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ እቃዎች: %1 - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk የ አካባቢ ዲስክ - + Removable disk የሚወልቅ ዲስክ - + DVD - + Network shared directory ኔትዎርክ የሚካፈለው ዳይሬክቶሪ - - + + Android mobile device አንድሮይድ ተንቀሳቃሽ አካል - + Apple mobile device አፕል ተንቀሳቃሽ አካል - + Unknown device ያልታወቀ አካል - + Remove button ማስወገጃ - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history የ ቅርብ ጊዜ ታሪክ ማጽጃ - - - + + + Source path የ ምንጩ መንገድ @@ -1419,12 +1404,12 @@ - + Empty Trash ቆሻሻ ባዶ ማድረጊያ - + Location አካባቢ: @@ -1524,7 +1509,7 @@ በ መፈለግ ላይ... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type አይነት - + Time accessed - + Time modified የ ተሻሻለበት ጊዜ - + Time created የ ተፈጠረበት ጊዜ - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size የ ምልክት መጠን @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 እቃ ተመርጧል @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button እሺ - + Operation failed! ተግባሩ አልተሳካም! @@ -2554,191 +2529,191 @@ ኢላማው ፎልደር በ ምንጭ ፎልደር ውስጥ ነው! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button መሰረዣ - + Format button አቀራረብ - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? እርስዎ ማስኬድ ነው %1 ወይንም ማሳየት የሚፈልጉት? - + It is an executable text file. የሚፈጸም የ ጽሁፍ ፋይል ነው - - - + + + Run button ማስኬጃ - - + + Run in terminal button በ ተርሚናል ውስጥ ማስኬጃ - + Display button ማሳያ - + Do you want to run %1? - + It is an executable file. የሚፈጸም የ ጽሁፍ ፋይል ነው - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? በ ቋሚነት ላጥፋ %1 እቃዎቹን? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button ማጥፊያ - + Permanently delete %1? በ ቋሚነት ላጥፋው %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty ባዶ - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" ቀደም ብሎ ነበር: እባክዎን ሌላ ስም ይጠቀሙ - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel መሰረዣ - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 ይህ አቋራጭ የሚያመሳከረው ተቀይሯል ወይንም ተንቀሳቅሷል - + Do you want to delete this shortcut? ይህን አቋራጭ ቁልፍ ማጥፋት ይፈልጋሉ? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted የ ተመረጠው ፋይል የያዘው የ ስርአት ፋይል / ዳይሬክቶሪ ነው: እና ማጥፋት አይቻልም @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others ሌሎች - + Close መዝጊያ - + Close current tab የ አሁኑን tab መዝጊያ - + Back ወደ ኋላ - + Forward ወደ ፊት - + Switch to next tab መቀየሪያ ወደሚቀጥለው tab - + Switch to previous tab መቀየሪያ ወዳለፈው tab - + Next file የሚቀጥለው ፋይል - + Previous file ያለፈው ፋይል - + Switch tab by specified number between 1 to 8 መቀየሪያ tab በ ተወነው ቁጥር በ 1 እስከ 8 መካከል @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 መጠን:%1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button ሁለቱንም ማስቀመጫ - + Skip button መዝለያ - - + + Replace button መቀየሪያ - + Do not ask again በድጋሚ አትጠይቀኝ - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button መሰረዣ - + Remove button ማስወገጃ @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer ኮምፒዩተር - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer ኮምፒዩተር - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories የ እኔ ዳይሬክቶሪዎች - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type የ አካሉ አይነት - + Total space ጠቅላላ ቦታ - + File system - + Contains የያዘው - + Free space ነፃ ቦታ - + %1 items %1 እቃዎች - + %1 item %1 እቃ @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ መጠን - + Dimension - + Duration - + Type አይነት - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - መለጠፊያ + &Paste + - Cut - መቁረጫ + Cu&t + - Copy - ኮፒ + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - መክፈቻ + &Open + - Rename - እንደገና መሰየሚያ + Rena&me + - Delete - ማጥፊያ + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal በ ተርሚናል ውስጥ መክፈቻ + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to መላኪያ ወደ - + + Bluetooth + + + + Create link አገናኝ መፍጠሪያ - + Send to desktop ወደ ዴስክቶፕ መላኪያ @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - መክፈቻ + + &Open + - + Open in new window በ አዲስ መስኮት ውስጥ መክፈቻ - + Open in new tab በ አዲስ tab ውስጥ መክፈቻ - + Cancel sharing ማካፈያ መሰረዣ - - Properties - ባህሪዎች + + P&roperties + dfmplugin_myshares::MyShares - + My Shares እኔ የማካፍላቸው @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size መጠን - + Contains የያዘው - + Type አይነት - + Location አካባቢ: - + Time created የ ተፈጠረበት ጊዜ - + Time accessed - + Time modified የ ተሻሻለበት ጊዜ - + Hide this file - - + + %1 item %1 እቃ - + %1 items %1 እቃዎች @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit ቢት - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer ኮምፒዩተር - + Basic Info መሰረታዊ መረጃ - + Computer name - + Version እትም: - + Edition - + OS build - + Type አይነት - + Processor ሂደት - + Memory ማስታወሻ @@ -4890,6 +4873,14 @@ %1 ፋይል(ሎች), %2 ፎልደር(ሮች) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - ባህሪዎች + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path መንገድ - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text ጽሁፍ - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search መፈለጊያ + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path መንገድ @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location የ ፋይል አካባቢ መክፈቻ - + Select all ሁሉንም መምረጫ - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other ሌላ - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - ኮምፒዩተር በ LAN ውስጥ - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - መክፈቻ + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location የ ፋይል አካባቢ መክፈቻ @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button መሰረዣ - + Connect button መገናኛ - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path የ ምንጩ መንገድ - + Time deleted የ ጠፋበት ጊዜ @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore እንደ ነበር መመለሻ - + Restore all ሁሉንም እንደ ነበር መመለሻ - + Empty trash - + Source path የ ምንጩ መንገድ - + Time deleted የ ጠፋበት ጊዜ @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash ቆሻሻ @@ -5526,17 +5529,17 @@ ቆሻሻ - + item እቃ - + items እቃዎች - + Contains %1 %2 የያዘው %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size መጠን - + Contains የያዘው - + Type አይነት - + Location አካባቢ: - + Time created የ ተፈጠረበት ጊዜ - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK እሺ @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - የ መግቢያ ቃል + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + የ መግቢያ ቃል + + + + Password hint: %1 - + Cancel - button - መሰረዣ + - - Use Key - button + + Delete - - Delete - button - ማጥፊያ + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button - እሺ + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by መለያ በ - + Display as ማሳያ እንደ - + Name ስም - + Time modified የ ተሻሻለበት ጊዜ - + Size መጠን - + Type አይነት - + Icon ምልክት - + List ዝርዝር + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button ማስቀመጫ @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button ማስቀመጫ - + Open button መክፈቻ @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ar.ts b/translations/dde-file-manager_ar.ts index 6e640138ca..76112751d0 100644 --- a/translations/dde-file-manager_ar.ts +++ b/translations/dde-file-manager_ar.ts @@ -15,99 +15,104 @@ Application - + File Manager مدير الملفات - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. مدير الملفات هو أداة سهلة وقوية لإدارة الملفات، وتتميز بالقدرة على البحث، النسخ، حذف الملفات، الضغط وفك الضغط، عرض خصائص الملفات، وغيرها من الوظائف المفيدة. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + سطح المكتب - DeepinStorage + DeviceList - - - %1 Volume - الحجم %1 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - سطح المكتب + + Disk + القرص - - - DiskControlWidget - - Disks - الأقراص + + Open + فتح - - The device was not safely removed - لم يتم إزالة الجهاز بأمان + + Eject all + إخراج الكل + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - القرص قيد الاستخدام ، لا يمكن فصله اﻵن + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - القرص + + + remove + - - Open - فتح + + Operation failed + - - Eject all - إخراج الكل + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown غير معروف @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk قرص النظام - + Data Disk قرص البيانات - + Blank %1 Disc تفريغ القرص %1 - - - + + + Unknown غير معروف - + %1 Drive %1 قرص - + %1 Encrypted تم تشفير %1 - + + %1 Volume الحجم %1 - - + Scanning the device, stop it? يتم فحص الجهاز ... هل تريد إيقافه ؟ - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home المنزل @@ -223,7 +228,6 @@ - Desktop سطح المكتب @@ -233,7 +237,6 @@ - Videos الفيديو @@ -243,7 +246,6 @@ - Music الصوتيات @@ -253,7 +255,6 @@ - Pictures الصور @@ -263,7 +264,6 @@ - Documents المستندات @@ -273,7 +273,6 @@ - Downloads التنزيلات @@ -282,7 +281,6 @@ - Trash سلة المهملات @@ -293,12 +291,11 @@ - Recent حديث - + @@ -306,7 +303,7 @@ وصل تلقائي - + @@ -319,47 +316,46 @@ %1 من المهام قيد المعالجة - + %1 item %1 عنصر - + %1 items %1 من العناصر - + Unable to find the original file - - + + File has been moved or deleted تم نقل الملف أو أنه قد حذف - - - + + You do not have permission to access this folder ليس لديك صلاحيات للوصول إلى هذا المجلد - - + + You do not have permission to traverse files in it - - + + Folder is empty المجلد فارغ - + Loading... يحمل الآن ... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer الحاسوب @@ -424,9 +419,8 @@ - - - + + Computers in LAN حواسيب في الشبكة @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag علامة استدلال @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button إيقاف - + Shortcut اختصار - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ بت - Access denied تم رفض الوصول - Confirm button تأكيد - - - The device has been safely removed - تمت إزالة الجهاز بأمان - - - + + - - - + + + Open in new window فتح في نافذة جديدة @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab فتح في تبويب جديد @@ -968,8 +953,8 @@ - - + + Properties الخصائص @@ -1005,7 +990,7 @@ ملف جديد - + Create symlink إنشاء وصلة رمزية @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? هل أنت متأكد من حذف كافة البيانات على هذه الأسطوانة؟ - + Erase button مسح - + This action cannot be undone هذا الإجراء لا يمكن إلغاؤه - + How do you want to use this disc? كيف تريد استخدام هذه الأسطوانة؟ - + Burn image button حرق ISO - + Burn files button حرق ملفات - + %1 is a duplicate file. %1 هو ملف مكرر. - + Insufficient disc space. مساحة القرص غير كافية. - + Lost connection to drive. تم فقد الاتصال بالقرص. - + The CD/DVD drive is not ready. Try another disc. قرص CD/DVD ليس مستعدًا. جرب أسطوانة أخرى. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. قرص CD/DVD مشغول. اخرج من البرنامج الذي يستخدم القرص، ثم أدخل القرص مرة أخرى. - + Invalid volume name - + Unknown error خطأ غير معروف @@ -1194,42 +1179,42 @@ العناصر: %1 - + Orange برتقالي - + Red أحمر - + Purple بنفسجي - + Navy-blue أزرق داكن - + Azure أزرق سماوي - + Green أخضر - + Yellow أصفر - + Gray رمادي @@ -1305,76 +1290,76 @@ - + User directory - + Local disk قرص محلي - + Removable disk قرص قابل للإزالة - + DVD دي في دي - + Network shared directory الدليل المشترك للشبكة - - + + Android mobile device جهاز أندرويد محمول - + Apple mobile device جهاز آبل محمول - + Unknown device جهاز غير معروف - + Remove button إزالة - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history مسح السجل الحديث - - - + + + Source path مسار المصدر @@ -1419,12 +1404,12 @@ - + Empty Trash إقراغ سلة المحذوفات - + Location المكان @@ -1524,7 +1509,7 @@ يبحث اﻵن ... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + In trial period قيد التجربة + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type النوع - + Time accessed وقت الدخول - + Time modified وقت التعديل - + Time created وقت الإنشاء - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size حجم الأيقونة @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 عنصر محدد @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button حسناً - + Operation failed! فشلت العملية ! @@ -2554,191 +2529,191 @@ المجلد الهدف داخل مجلد المصدر ! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button إلغاء - + Format button التنسيق - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? هل تريد تشغيل %1 أم عرض محتواه ؟ - + It is an executable text file. ملف نصي قابل للتنفيذ. - - - + + + Run button تشغيل - - + + Run in terminal button تشغيل في الطرفية - + Display button عرض - + Do you want to run %1? هل أنت متأكد من تشغيل %1؟ - + It is an executable file. إنه ملف تنفيذي - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? حذف بشكل دائم %1 عناصر ؟ - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button حذف - + Permanently delete %1? حذف %1 بشكل دائم ؟ - - + + This action cannot be undone هذا الإجراء لا يمكن إلغاؤه - + Are you sure you want to empty %1 item? هل أنت متأكد من إفراغ %1 عنصر ؟ - + Are you sure you want to empty %1 items? هل أنت متأكد من إفراغ %1 عنصر ؟ - + Empty فارغ/إفراغ - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only فشل إستعادة %1 ملف/ملفات، المجلد المستهدف للقراءة فقط - + Failed to restore %1 files, the target folder is read-only فشل إستعادة %1 ملف/ملفات، المجلد المستهدف للقراءة فقط - + "%1" already exists, please use another name. "%1" موجود بالفعل، يرجى استخدام اسماً آخر. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel إلغاء - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved إن " %1 " الذي يشير إليه هذا الاختصار قد تغير أو تم نقله . - + Do you want to delete this shortcut? هل تريد حذف هذا الاختصار ؟ - + This file is not executable, do you want to add the execute permission and run? هذا الملف غير قابل للتشغيل، هل تريد أن تعطيه الأذن وتشغله؟ - + The selected files contain system file/directory, and it cannot be deleted تحتوي الملفات المحددة على ملفات نظام / دليل، ولا يمكن حذفه @@ -2866,278 +2841,276 @@ أدخل كلمة المرور لفك تشفير القرص + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others غير ذلك - + Close إغلاق - + Close current tab إغلاق التبويب الحالي - + Back رجوع - + Forward للأمام - + Switch to next tab التبديل إلى التبويب التالي - + Switch to previous tab التبديل إلى التبويب السابق - + Next file الملف التالي - + Previous file الملف السابق - + Switch tab by specified number between 1 to 8 تبديل التبويب عن طريق رقم محدد ما بين 1 إلى 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 وقت التعديل : %1 - + Original folder المجلد الأصلي - + Contains: %1 المحتويات : %1 - + Original file الملف الأصلي - + Size: %1 الحجم : %1 - + Target folder المجلد المستهدف - + + In data statistics ... - + Target file الملف المستهدف @@ -3466,37 +3445,37 @@ - + Keep both button الاحتفاظ بكليهما - + Skip button تخطي - - + + Replace button استبدال - + Do not ask again لا تسأل ثانيةً - + Retry button إعادة المحاولة - + Merge button دمج @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button إلغاء - + Remove button إزالة @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer الحاسوب - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer الحاسوب - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories مسار مجلداتي - + Disks الأقراص @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type نوع الجهاز - + Total space المساحة الإجمالية - + File system نظام الملف - + Contains المحتويات - + Free space المساحة الفارغة - + %1 items %1 من العناصر - + %1 item %1 عنصر @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ الحجم - + Dimension البُعد - + Duration الفترة - + Type النوع - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - لصق + &Paste + - Cut - قص + Cu&t + - Copy - نسخ + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - فتح + &Open + - Rename - إعادة تسمية + Rena&me + - Delete - حذف + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal فتح في الطرفية + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to إرسال إلى - + + Bluetooth + + + + Create link إنشاء رابط - + Send to desktop إرسال إلى سطح المكتب @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - فتح + + &Open + - + Open in new window فتح في نافذة جديدة - + Open in new tab فتح في تبويب جديد - + Cancel sharing إلغاء المشاركة - - Properties - الخصائص + + P&roperties + dfmplugin_myshares::MyShares - + My Shares مشاركاتي @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size الحجم - + Contains المحتويات - + Type النوع - + Location المكان - + Time created وقت الإنشاء - + Time accessed وقت الدخول - + Time modified وقت التعديل - + Hide this file إخفاء هذا الملف - - + + %1 item %1 عنصر - + %1 items %1 من العناصر @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit بت - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer الحاسوب - + Basic Info المعلومات الأساسية - + Computer name - + Version اﻹصدار - + Edition - + OS build - + Type النوع - + Processor المعالج - + Memory الذاكرة @@ -4890,6 +4873,14 @@ %1 من الملفات %2 من المجلدات + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - الخصائص + P&roperties + dfmplugin_recent::Recent - - + Recent حديث @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path المسار - + Last access آخر دخول - + Recent حديث @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: بحث: - + File Type: نوع الملف: - + File Size: حجم الملف: - + Time Modified: وقت التعديل: - + Time Accessed: - + Time Created: - + Reset إعادة ضبط - + All subdirectories الموقع بتفرعاته - + Current directory الموقع الحالي - + Application تطبيق - + Video فيديو - + Audio صوت - + Image صورة - + Archive أرشيف - + Text نص - + Executable ملف تنفيذي - + Backup file ملف احتياطي - + Today اليوم - + Yesterday أمس - + This week هذا الأسبوع - + Last week الأسبوع الماضى - + This month هذا الشهر - + Last month الشهر الماضي - + This year هذا العام - + Last year العام الماضي @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search بحث + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path المسار @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location فتح مكان الملف - + Select all تحديد الكل - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag علامة استدلال - - Bookmark - - - - + Other آخر - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - حواسيب في الشبكة - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - فتح + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag علامة استدلال @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location فتح مكان الملف @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server الاتصال بالخادم - - - + + + Clear History مسح السجل الحديث - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button إلغاء - + Connect button اتصال - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path مسار المصدر - + Time deleted تاريخ الحذف @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore استعادة - + Restore all استعادة الكل - + Empty trash - + Source path مسار المصدر - + Time deleted تاريخ الحذف @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash سلة المهملات @@ -5526,17 +5529,17 @@ سلة المهملات - + item عنصر - + items من العناصر - + Contains %1 %2 يحتوي على %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size الحجم - + Contains المحتويات - + Type النوع - + Location المكان - + Time created وقت الإنشاء - + Time accessed وقت الدخول - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK حسناً @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ التالي - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault حقيبة الملفات المحمية @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - كلمة المرور + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + كلمة المرور + + + + Password hint: %1 - + Cancel - button - إلغاء + - - Use Key - button + + Delete - - Delete - button - حذف + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button - حسناً + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault حقيبة الملفات المحمية - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by ترتيب حسب - + Display as عرض حسب - + Name الاسم - + Time modified وقت التعديل - + Size الحجم - + Type النوع - + Icon رموز - + List قائمة + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button حفظ @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button حفظ - + Open button فتح @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ast.ts b/translations/dde-file-manager_ast.ts index d1c4933613..aec4e2ddce 100644 --- a/translations/dde-file-manager_ast.ts +++ b/translations/dde-file-manager_ast.ts @@ -15,99 +15,104 @@ Application - + File Manager Xestor de ficheros - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Escritoriu - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - Escritoriu + + Disk + Discu - - - DiskControlWidget - - Disks - + + Open + Abrir - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Discu + + + remove + - - Open - Abrir + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Discu del sistema - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Home @@ -223,7 +228,6 @@ - Desktop Escritoriu @@ -233,7 +237,6 @@ - Videos Vídeos @@ -243,7 +246,6 @@ - Music Música @@ -253,7 +255,6 @@ - Pictures Semeyes @@ -263,7 +264,6 @@ - Documents Documentos @@ -273,7 +273,6 @@ - Downloads Descargues @@ -282,7 +281,6 @@ - Trash Papelera @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ Auto-montar - + @@ -319,47 +316,46 @@ %1 xeres en cursu - + %1 item %1 elementu - + %1 items %1 elementos - + Unable to find the original file - - + + File has been moved or deleted El ficheru movióse o desanicióse - - - + + You do not have permission to access this folder Nun tienes permisu p'acceder a esta carpeta - - + + You do not have permission to traverse files in it - - + + Folder is empty La carpeta ta balera - + Loading... Cargando... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Ordenador @@ -424,9 +419,8 @@ - - - + + Computers in LAN Ordenadores na LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Atayu - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bits - Access denied - Confirm button Confirmar - - - The device has been safely removed - - - - + + - - - + + + Open in new window Abrir na ventana nueva @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Abrir na llingüeta nueva @@ -968,8 +953,8 @@ - - + + Properties Propiedaes @@ -1005,7 +990,7 @@ Ficheru nuevu - + Create symlink Crear enllaz simbólicu @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ Elementos: %1 - + Orange Naranxa - + Red Bermeyu - + Purple Moráu - + Navy-blue - + Azure - + Green Verde - + Yellow Mariellu - + Gray Buxu @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Discu llocal - + Removable disk Discu estrayible - + DVD DVD - + Network shared directory Direutoriu compartíu de rede - - + + Android mobile device Preséu Android - + Apple mobile device Preséu d'Apple - + Unknown device Preséu desconocíu - + Remove button Desaniciar - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Llimpiar historial recién - - - + + + Source path Camín de fonte @@ -1419,12 +1404,12 @@ - + Empty Trash Balerar papelera - + Location Allugamientu @@ -1524,7 +1509,7 @@ Guetando... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Triba - + Time accessed - + Time modified Data de modificación - + Time created Data de creación - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Tamañu d'iconos @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 elementu esbilláu @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Aceutar - + Operation failed! ¡Falló la operación! @@ -2554,191 +2529,191 @@ ¡La carpeta destín ta dientro la carpeta fonte! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Encaboxar - + Format button Formatu - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? ¿Quies executar %1 o amosar el so conteníu? - + It is an executable text file. Ye un ficheru executable. - - - + + + Run button Executar - - + + Run in terminal button Executar na terminal - + Display button Amosar - + Do you want to run %1? ¿Quies executar %1? - + It is an executable file. Ye un ficheru executable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? ¿Desaniciar %1 elementos dafechu? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Desaniciar - + Permanently delete %1? ¿Desaniciar %1 dafechu? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Balero - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. «%1» yá esiste, por favor usa otru nome. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Encaboxar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? ¿Ques desaniciar esti atayu? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted Los ficheros esbillaos contienen direutorios/ficheros y nun puen desaniciase @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Otros - + Close Zarrar - + Close current tab Zarru de la llingüeta actual - + Back Atrás - + Forward - + Switch to next tab - + Switch to previous tab - + Next file Ficheru siguiente - + Previous file Ficheru previu - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Carpeta orixinal - + Contains: %1 - + Original file Ficheru orixinal - + Size: %1 Tamañu: %1 - + Target folder Carpeta de destín - + + In data statistics ... - + Target file Ficheru de destín @@ -3466,37 +3445,37 @@ - + Keep both button Caltener dambos - + Skip button Saltar - - + + Replace button Trocar - + Do not ask again Nun entrugar de nueves - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Encaboxar - + Remove button Desaniciar @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Ordenador - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Ordenador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Los mios direutorios - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Triba de preséu - + Total space Espaciu total - + File system - + Contains Contién - + Free space Espaciu llibre - + %1 items %1 elementos - + %1 item %1 elementu @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Tamañu - + Dimension - + Duration - + Type Triba - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Apegar + &Paste + - Cut - Cortar + Cu&t + - Copy - Copiar + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Abrir + &Open + - Rename - Renomar + Rena&me + - Delete - Desaniciar + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Abrir na terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Unviar a - + + Bluetooth + + + + Create link Crear enllaz - + Send to desktop Unviar a Escritoriu @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Abrir + + &Open + - + Open in new window Abrir na ventana nueva - + Open in new tab Abrir na llingüeta nueva - + Cancel sharing Encaboxar compartición - - Properties - Propiedaes + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Les mios comparticiones @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Tamañu - + Contains Contién - + Type Triba - + Location Allugamientu - + Time created Data de creación - + Time accessed - + Time modified Data de modificación - + Hide this file - - + + %1 item %1 elementu - + %1 items %1 elementos @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bits - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Ordenador - + Basic Info Información básica - + Computer name - + Version Versión - + Edition - + OS build - + Type Triba - + Processor Procesador - + Memory Memoria @@ -4890,6 +4873,14 @@ %1 ficheru(os), %2 carpeta(es) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propiedaes + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Camín - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text Testu - + Executable Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Guetar + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Camín @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir allugamientu del ficheru - + Select all Esbillar too - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other Otru - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Ordenadores na LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Abrir + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir allugamientu del ficheru @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Encaboxar - + Connect button Coneutar - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Camín fonte - + Time deleted Data de desaniciu @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar too - + Empty trash - + Source path Camín de fonte - + Time deleted Data de desaniciu @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papelera @@ -5526,17 +5529,17 @@ Papelera - + item elementu - + items elementos - + Contains %1 %2 Contién %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Tamañu - + Contains Contién - + Type Triba - + Location Allugamientu - + Time created Data de creación - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK Aceutar @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Contraseña + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Contraseña + + + + Password hint: %1 - + Cancel - button - Encaboxar + - - Use Key - button + + Delete - - Delete - button - Desaniciar + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button - Aceutar + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar per - + Display as Amosar como - + Name Nome - + Time modified Data de modificación - + Size Tamañu - + Type Triba - + Icon Iconu - + List Llista + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Guardar @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Guardar - + Open button Abrir @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_az.ts b/translations/dde-file-manager_az.ts index 57d86bebf4..0b9581f10b 100644 --- a/translations/dde-file-manager_az.ts +++ b/translations/dde-file-manager_az.ts @@ -15,99 +15,104 @@ Application - + File Manager Fayl Meneceri - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Fayl Meneceri, axtarmaq, kopyalamaq, zibil qutusu, sıxmaq/aşmaq, fayl xüsusiyyətləri və digər faydalı funksiyaları ilə hazırlanmış, faylları rahat idarə etmək üçün güclü vasitədir. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - %1 / %2 + + Desktop + İş Masası - DeepinStorage + DeviceList - - - %1 Volume - %1 disk tutumu + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - İş Masası + + Disk + Disk - - - DiskControlWidget - - Disks - Disklər + + Open + Açmaq - - The device was not safely removed - Cihaz təhlükəsiz şəkildə çıxarılmadı + + Eject all + Hamısını çıxartmaq + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Növbəti dəfə "Təhlükəsiz Çıxartmaq" vurun və sonra çıxardın + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disk məşğuldur, indi ayrıla bilməz + + eject + - - The device is busy, cannot eject now - Cihaz məşğuldur, indi çıxarıla bilməz + + unmount + - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Açmaq + + Operation failed + - - Eject all - Hamısını çıxartmaq + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files Bütün fayllar + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Naməlum @@ -123,88 +128,89 @@ QObject - + need authorization to access Giriş üçün kimlik doğrulaması tələb olunur - + Can't verify the identity of %1. %1 kimliyini doğrulamaq mümkün olmadı. - + This happens when you log in to a computer the first time. Bu, siz kompyuterə ilk dəfə daxil olduğunuz zaman baş verir - + The identity sent by the remote computer is Uzaq kompyuter tərəfindən göndərilən kimlik - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Davam etmənin təhlükəsiz olduğundan tamamilə əmin olmaq istəyirsinizsə, sistem administratoru ilə əlaqə saxlayın. - - - + + + System Disk Sistem diski - + Data Disk Verilənlər Diski - + Blank %1 Disc Boş %1 disk - - - + + + Unknown Naməlum - + %1 Drive %1 sürücü - + %1 Encrypted %1 şifrələnib - + + %1 Volume %1 disk tutumu - - + Scanning the device, stop it? Cihazlar aşkarlanır, dayandırılsın? - + Unmount failed Ayrıla bilmədi - + Cannot stop scanning device Cihaz axtarışı dayandırıla biulməz - + + %1 on %2 %1 / %2 @@ -213,7 +219,6 @@ - Home Ev @@ -223,7 +228,6 @@ - Desktop İş Masası @@ -233,7 +237,6 @@ - Videos Videolar @@ -243,7 +246,6 @@ - Music Musiqilər @@ -253,7 +255,6 @@ - Pictures Şəkillər @@ -263,7 +264,6 @@ - Documents Sənədlər @@ -273,7 +273,6 @@ - Downloads Endirmələr @@ -282,7 +281,6 @@ - Trash Səbət @@ -293,12 +291,11 @@ - Recent Sonuncu - + @@ -306,7 +303,7 @@ Avtomatik qoşulma - + @@ -319,47 +316,46 @@ %1 tapşırıq icra olunur - + %1 item %1 element - + %1 items %1 element - + Unable to find the original file Orijinal faylı tapmaq mümkün olmadı - - + + File has been moved or deleted Fayl silinib və ya köçürülüb - - - + + You do not have permission to access this folder Bu qovluğa girməniz üçün icazəniz yoxdur - - + + You do not have permission to traverse files in it Onun daxilindəki fayllara keçid etməyə icazəniz yoxdur - - + + Folder is empty Qovluq boşdur - + Loading... Yüklənir... @@ -408,7 +404,7 @@ - + Built-in disks Daxili disklər @@ -416,7 +412,6 @@ - Computer Kompyuter @@ -424,9 +419,8 @@ - - - + + Computers in LAN LAN-dakı kompyuterlər @@ -434,7 +428,7 @@ - + Loop partitions Dairəvi bölmələr @@ -442,7 +436,8 @@ - + + Mounted sharing folders Qoşulmuş paylaşım qovluqları @@ -450,7 +445,6 @@ - My shares Mənim paylaşımlarım @@ -458,7 +452,7 @@ - + Network Şəbəkə @@ -466,7 +460,7 @@ - + Mounted partitions and discs Qoşulmuş bölmələr və disklər @@ -474,7 +468,7 @@ - + Partitions Bölmələr @@ -482,7 +476,7 @@ - + Quick access Cəld giriş @@ -490,7 +484,7 @@ - + Tag Etiket @@ -498,7 +492,7 @@ - + Added tags Etiketlər əlavə olundu @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Quraşdırılmış Samba paylaşımlarını göstərməyə davam edin @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Dayandırmaq - + Shortcut Qısayol - + This system wallpaper is locked. Please contact your admin. Sistem arxa fon şəkli kilidlənib. İnzibatçıya müraciət edin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopyala) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (%1 kopyala) @@ -909,33 +901,26 @@ Bit - Access denied İcazə verilmədi - Confirm button Tədiqləmək - - - The device has been safely removed - Bu cihaz təhlükəsiz çıxarıldı - - - + + - - - + + + Open in new window Yeni pəncərədə açmaq @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Yeni vərəqdə açmaq @@ -968,8 +953,8 @@ - - + + Properties Tərcihlər @@ -1005,7 +990,7 @@ Yeni fayl - + Create symlink Simvolik keçid yaratmaq @@ -1092,70 +1077,70 @@ Diskə əlavə etmək - + Are you sure you want to erase all data on the disc? Disdəki bütün məlumatları silmək istədiyinizə əminsiniz? - + Erase button Silmək - + This action cannot be undone Bu əməl ləğv edilə bilməz - + How do you want to use this disc? Bu diski necə istifadə etmək istəyirsiniz? - + Burn image button Disk surəti yazmaq - + Burn files button Fayllar yazmaq - + %1 is a duplicate file. %1 təkrarlanan fayldır. - + Insufficient disc space. Disk sahəsi kifayət deyil. - + Lost connection to drive. Sürücü ilə bağlantı itirildi - + The CD/DVD drive is not ready. Try another disc. CD/DVD sürücüsü hazır deyil. Başqa diski yoxlayın. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD sürücüsü məşquldur,Sürücün istifadə edən tətbiqdən çıxın və diski yenidən daxil edin. - + Invalid volume name Səhv tutum adı - + Unknown error Naməlum xəta @@ -1194,42 +1179,42 @@ ELementlər: %1 - + Orange Narıncı - + Red Qırmızı - + Purple Cəhrayı - + Navy-blue Tünd göy - + Azure Lacivərd - + Green Yaşıl - + Yellow Sarı - + Gray Boz @@ -1305,76 +1290,76 @@ Giriş mümkün deyil - + User directory İstifadəçi qovluğu - + Local disk Yerli disk - + Removable disk Çıxarılabilən disk - + DVD DVD - + Network shared directory Şəbəkədə paylaşılan qovluq - - + + Android mobile device Android mobil cihazı - + Apple mobile device Apple mobil cihazı - + Unknown device Naməlim cihaz - + Remove button Silmək - + Do you want to remove this item? Bu elementi silmək istıyirsiniz? - + Do yout want to remove %1 items? %1 elementi silmək istəyirsiniz? - + It does not delete the original files Bu, orijinal faylları silmir - + Clear recent history Əvvəlki tarixçəni silmək - - - + + + Source path Mənbə yolu @@ -1419,12 +1404,12 @@ Elementi səbətdə açmaq mümkün deyil, lütfən öncə geri qaytarın - + Empty Trash Səbəti boşaltmaq - + Location Yer @@ -1524,7 +1509,7 @@ Axtarış... - + My Vault Mənim seyfim @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Səlahiyyət verilməyib - - + + In trial period Sınaq müddətində + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Yeni kolleksiya @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop İş masasını nizamla - + Desktop options İş masası seçimləri - + Organize by Buna görə nizamla: - + Custom collection Xüsusi kolleksiya - + Type Növ - + Time accessed İstifadə Vaxtı - + Time modified Dəyişilmə Vaxtı - + Time created Yaradılma Vaxtı - + Create a collection Kolleksiya yarat - - - Display Size - Ekran ölçüsü - - - - Smaller - Kiçik - - - - Normal - Normal - - - - Larger - Geniş - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options İş masası seçimləri - + Auto arrange icons Nişanların avtomatik düzülüşü @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Ekran ölçüsü - - - + Icon size Nişan ölçüsü @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Fayl bələdçisi yeni versiyaya yenilənəcək və bu zaman işlək tapşırıqların icrası ləğv ediləcək. İndi yeniləmək istəyirsən? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? İş masası xidmətləri yeni veriyaya yenilənəcək və bu zaman işlək tapşırıqların işi dayandırılacaq. İndi yeniləmək istəyirsən? - + Update button Yeniləyin - + Cancel button İmtina @@ -2385,7 +2360,7 @@ - + %1 item selected %1 element seçildi @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Əməliyyat baş tutmadı! @@ -2554,191 +2529,191 @@ Hədəf qovluğu mənbə qovluğu daxilindədir! - + The passphrase is needed to access encrypted data on %1. %1 üzərindəki şifrələnmiş verilənlərə giriş üçün gizli söz daxil edilməlidir. - - - - - - - - + + + + + + + + Cancel button İmtina - + Format button Formatlamaq - + To access the device, you must format the disk first. Are you sure you want to format it now? Cihaza daxil olmaq üçün öncə onu format etməlisiniz. Onu format etmək istədiyinizə əminsiniz? - + Do you want to run %1 or display its content? %1 başlatmaq, yoxsa tərkiblərini göstərmək istəyirsiniz? - + It is an executable text file. Bu icra faylıdır. - - - + + + Run button Başlatmaq - - + + Run in terminal button Terminalda başlatmaq - + Display button Ekran - + Do you want to run %1? %1 başlatmaq istəyirsiniz? - + It is an executable file. Bu icra faylıdır. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? %1 seçilmiş elementi səbətə köçürmək mümkün olmadı. Onları həmişəlik silmək istəyirsiniz? - + Permanently delete %1 items? %1 element həmişəlik silinsin? - + Cannot move "%1" to the trash. Do you want to permanently delete it? "%1" elemntini səbətə köçürmək mümkün olmadı. Onu həmişəlik silmək istəyirsiniz? - - - + + + Delete button Silmək - + Permanently delete %1? %1 həmişəlik silinsin? - - + + This action cannot be undone Bu əməl ləğv edilə bilməz - + Are you sure you want to empty %1 item? %1 elementi təmizləmək istədiyinizə əminsiniz? - + Are you sure you want to empty %1 items? %1 elementi təmizləmək istədiyinizə əminsiniz? - + Empty Boş - + Do you want to delete %1? %1 silmək istəyirsiniz - + Do you want to delete the selected %1 items? Seçilmiş %1 elementi silmək istəyirsiniz? - + Failed to restore %1 file, the target folder is read-only %1 faylın bərpası baş tutmadı, hədəf qovluq yalnız oxumaq üçündür - + Failed to restore %1 files, the target folder is read-only %1 faylın bərpası baş tutmadı, hədəf qovluq yalnız oxumaq üçündür - + "%1" already exists, please use another name. "%1" artıq mövcuddur, lütfən başqa ad seçin. - + Device or resource busy Cihaz və ya resurs məşğuldur - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Əgər fayl "." ilə başlayırsa o gizlədiləcək. Onu gizlətmək istəyirsiniz? - + Hide Gizlədin - + Cancel İmtina - + Unable to access %1 %1-ə giriş mümkün olmadı - + %1 that this shortcut refers to has been changed or moved %1 qısayolu dəyişdirilmiş və ya silinmiş obyektə aiddir - + Do you want to delete this shortcut? Bu qısayolu silmək istəyirsiniz? - + This file is not executable, do you want to add the execute permission and run? Bu icra faylı deyil, ona icraedilmə icazəsi əlavə etmək və başlatmaq istəyirsiniz? - + The selected files contain system file/directory, and it cannot be deleted Seçilmiş fayl fayldan/qovluqdan ibarətdir və silinə bilməz @@ -2866,278 +2841,276 @@ Diskin şifrəsini açmaq üçün şifrəni daxil edin + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Digəriləri - + Close Bağlamaq - + Close current tab Cari vərəqi bağlamaq - + Back Geriyə - + Forward İrəli - + Switch to next tab Sonrakı vərəqə keçmək - + Switch to previous tab Əvvəlki vərəqə keçmək - + Next file Növbəti fayl - + Previous file Əvvəlki fayl - + Switch tab by specified number between 1 to 8 Vərəqlərə verilmiş 1-dən 8-ə sayları arasında keçid etmək @@ -3416,47 +3394,43 @@ Ziddiyyət haqqında məlumatın göstərilməsi finksiyasında %1 Info hədəf faylı ayartmaq mümkün olmadı! - + Time modified: %1 Dəyişilmə vaxtı: %1 - - In data statistics - Verilənlərin statistikasında - - - + Original folder Orijinal qovluq - + Contains: %1 Tərkibləri: %1 - + Original file Orijinal fayl - + Size: %1 Ölçüsü: %1 - + Target folder Hədəf qovluğu - + + In data statistics ... - + Target file Hədəf faylı @@ -3471,37 +3445,37 @@ Lütfən gözləyin - + Keep both button Hər ikisini saxlamaq - + Skip button Ötürmək - - + + Replace button Əvəzləmək - + Do not ask again Yenidən soruşmamaq - + Retry button Təkrar - + Merge button Birləşdirmək @@ -3515,7 +3489,7 @@ Paylaşım qovluğunu qorumaq üçün şifrə daxil edin - + Set a password on the shared folder for non-anonymous access Gizli olmayan giriş üçün paylaşım qovluğuna bir şifrə təyin edin @@ -3541,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Təəssüf, sürətli giriş kataloqununuzu tapmaq mümkün olmadı, onu silək? - + Cancel button İmtina - + Remove button Silmək @@ -3810,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Kompyuter - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3849,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Cihaz kiliddən çıxarıla bilmədi - + Wrong password Səhv şirə - + Rename failed Adını dəyişmək mümkün olmadı - + The device is busy and cannot be renamed now Cihaz məşğuldur və hazırda adı dəyiədirilə bilməz - + Format failed Formatlamaq mümkün olmadı - + The device is busy and cannot be formatted now Cihaz məşğuldur və hazırda formatlana bilməz - + Mount error Qoşulma xətası - + Cannot access %1 %1 girişi mümkün deyil @@ -3892,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Kompyuter - + %1 is read-only. Do you want to enable read and write permissions for it? %1 yalnız oxumaq üçündür. Onun üçün oxumaq və yazmaq icazələrini açmaq istəyirsiniz? - + Once enabled, read/write permission will be granted permanently Aktiv etdikdən sonra oxumağa və yazmağa həmişəlik icazə veriləcəkdir - + Cancel Ləğv edin - + Enable Now İndi aktiv edin @@ -3920,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mənim qovluğum - + Disks Disklər @@ -3933,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Əsas məlumatlar - + Device type Cihaz növü - + Total space Ümumi sahə - + File system Fayl sistemi - + Contains Tərkibləri - + Free space Boş sahə - + %1 items %1 element - + %1 item %1 element @@ -3976,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 / %2 @@ -3995,27 +3968,27 @@ Ölçüsü - + Dimension Ölçü - + Duration Müddət - + Type Növ - + Accessed Daxil oldu - + Modified Dəyişdirildi @@ -4285,7 +4258,7 @@ Failed to move the file %1 to trash - + %1 faylını səbətə köçürmək mümkün olmadı @@ -4362,7 +4335,7 @@ Copy or Cut File failed! - + Faylı köçürmək və ya kəsmək mümkün olmadı! @@ -4392,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + %1 faylını səbətə köçürmək mümkün olmadı, səbəb: %2 @@ -4411,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4444,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Faylın adının dəyişdirilməsi xətası - + Failed to create the directory Kataloq yaratmaq mümkün olmadı - + Failed to create the file Faylı yaratmaq mümkün olmadı - + link file error keçid faylı xətası - - + + Failed to modify file permissions - + Fayl icazələrini dəyişmək mümkün olmadı @@ -4482,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Yerləşdirmək + &Paste + - Cut - Kəsmək + Cu&t + - Copy - Kopyalamaq + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Açmaq + &Open + - Rename - Yenidən adlandırmaq + Rena&me + - Delete - Silmək + &Delete + @@ -4584,6 +4557,11 @@ Open in terminal Terminalda açmaq + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4601,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Buraya göndərmək - + + Bluetooth + + + + Create link Keçid yaratmaq - + Send to desktop İş masasına göndərmək @@ -4619,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Paylaşım - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Açmaq + + &Open + - + Open in new window Yeni pəncərədə açmaq - + Open in new tab Yeni vərəqdə açmaq - + Cancel sharing Paylaşımı ləğv etmək - - Properties - Tərcihlər + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Mənim Paylaşımlarım @@ -4705,7 +4683,7 @@ Yazmaq üçün fayl yoxdur - + Unable to burn. Not enough free space on the target disk. Yazmaq mümkün olmadı. Hədəf diskində kifayət qədər boş yer yoxdur. @@ -4713,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Əsas məlumatlar - + Size Ölçüsü - + Contains Tərkibləri - + Type Növ - + Location Yer - + Time created Yaradılma Vaxtı - + Time accessed İstifadə Vaxtı - + Time modified Dəyişilmə Vaxtı - + Hide this file Bu faylı gizlətmək - - + + %1 item %1 element - + %1 items %1 element @@ -4785,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Məxfiliyin təhlükəsizliyi üçün - + For Government Hökümət üçün - + For Enterprise Müəssisə üçün - + Bit Bit - + Available Mövcud @@ -4813,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Kompyuter - + Basic Info Baza məlumatları - + Computer name Kompyuterin adı - + Version Versiya - + Edition Nəşr - + OS build ƏS-i quruluşu - + Type Növ - + Processor Prosessor - + Memory Yaddaş @@ -4896,6 +4874,14 @@ %1 fayl(lar), %2 qovluq(lar) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4915,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Tərcihlər + P&roperties + dfmplugin_recent::Recent - - + Recent Sonuncu @@ -4931,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Yol - + Last access Sonuncu giriş - + Recent Sonuncu @@ -4972,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Axtarış: - + File Type: Fayl Növü: - + File Size: Fayl Ölçüsü: - + Time Modified: Dəyişilmə Vaxtı: - + Time Accessed: İstifadə Vaxtı: - + Time Created: Yaradılma Vaxtı: - + Reset Sıfırlamaq - + All subdirectories Bütün alt qovluqlar - + Current directory Cari qovluq - + Application Tətbiq - + Video Video - + Audio Səs - + Image Şəkil - + Archive Arxiv - + Text Mətn - + Executable İcra ediləbilən - + Backup file Ehtiyyat Nüsxə - + Today Bu gün - + Yesterday Sabah - + This week Bu həftə - + Last week Keçən həftə - + This month Bu ay - + Last month Keçən ay - + This year Bu il - + Last year Keçən il @@ -5100,15 +5085,31 @@ dfmplugin_search::Search - + + Search Axtarmaq + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Yol @@ -5116,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Fayl yerini açmaq - + Select all Hamısını seçmək - + Path Yol @@ -5134,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Cəld giriş - + Partitions Bölmələr - + Network Şəbəkə - + Tag Etiket - - Bookmark - Əlfəcin - - - + Other Digər - + Unknown Group Naməlum qrup - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - LAN-dakı kompyuterlər - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Açmaq + &Open + @@ -5196,8 +5184,8 @@ - Properties - Xüsusiyyətlər + P&roperties + @@ -5231,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Etiket @@ -5239,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Fayl yerini açmaq @@ -5289,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Serverə bağlantı - - - + + + Clear History Tarixçəni təmizləmək - + Unfavorite Seçilməmiş - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button İmtina - + Connect button Bağlantı - + Charset Encoding Simvol kodlaşması - + Default Standart - + My Favorites Seçilmişlər - + No favorites yet Heç bir seçilmiş yoxdur - + Favorite Seçilmiş @@ -5478,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Mənbə yolu - + Time deleted Silinmə vaxtı @@ -5491,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Bərpa etmək - + Restore all Hamısını bərpa etmək - + Empty trash Səbəti boşalt - + Source path Mənbə yolu - + Time deleted Silinmə vaxtı @@ -5519,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Səbət @@ -5532,17 +5530,17 @@ Səbət - + item Element - + items Elementlər - + Contains %1 %2 Tərkibi %1 %2 @@ -5724,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Əsas məlumatlar - + Size Ölçüsü - + Contains Tərkibləri - + Type Növ - + Location Yer - + Time created Yaradılma Vaxtı - + Time accessed İstifadə Vaxtı - + Time locked Kilidlənmə vaxtı @@ -5990,7 +5988,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Fayl seyfini şifrələmək @@ -6011,19 +6009,19 @@ - - - + + + Encrypt Şifrələmək - + Failed to create file vault: %1 Fayl seyfi yaradılması alınmadı: %1 - + OK OK @@ -6074,7 +6072,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Seyfin açarını təyin edin @@ -6100,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 simvollar, A-Z, a-z, 0-9 və simvollardan ibarət @@ -6135,8 +6133,8 @@ Növbəti - - + + Passwords do not match Şifrələr oxşar deyil @@ -6144,7 +6142,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Fayl seyfi @@ -6194,7 +6192,7 @@ dfmplugin_vault::VaultHelper - + Vault Seyf @@ -6204,7 +6202,7 @@ Seyf əlçatan deyil, çünki "cryfs" quraşdırılmayıb - + A task is in progress, so it cannot perform your operation Tapşırıq icra olunur, ona görə də əməliyyatınızı icra edə bilmir @@ -6212,98 +6210,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mənim seyfim - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Şifrə + + Cancel + - - Password hint: %1 - Şifrə ipucu: %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - 32-rəqəmli bərpa açarını daxil edin + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Fayl seyfini silmək + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Silidikdən sonra daxilindəki fayllar həmişəlik itiriləcəkdir + + Password + Şifrə - - Cancel - button - İmtina + + Password hint: %1 + Şifrə ipucu: %1 - - Use Key - button - Açar istifadə edin + + Cancel + - + Delete - button - Silmək + - - Removing... - Silinir... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Səhv şifrə + + Input the 32-digit recovery key + 32-rəqəmli bərpa açarını daxil edin + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Səhv bərpa açarı + + Removing... + - - Failed to delete file vault - Fayl seyfinin silinməsi alınmadı + + OK + - - Deleted successfully - Uğurla silindi + + Delete File Vault + - - Failed to delete - Silmək alınmadı + + Deleted successfully + @@ -6314,16 +6335,10 @@ Mənim seyfim - + File Vault Fayl seyfi - - - - Vault - Seyf - dfmplugin_workspace::FileOperatorHelper @@ -6336,22 +6351,22 @@ dfmplugin_workspace::FileViewModel - + Name Ad - + Time modified Dəyişdirilmə vaxtı - + Size Ölçüsü - + Type Növ @@ -6367,7 +6382,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 icazə verilmir @@ -6383,45 +6398,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Çeşidləmə sırası - + Display as Belə göstərmək - + Name Ad - + Time modified Dəyişilmə Vaxtı - + Size Ölçüsü - + Type Növ - + Icon Nişan - + List Siyahı + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6434,7 +6454,7 @@ filedialog_core::FileDialog - + Save button Saxlamaq @@ -6443,13 +6463,13 @@ filedialog_core::FileDialogStatusBar - + Save button Saxlamaq - + Open button Açmaq @@ -6487,112 +6507,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Əlçatan ölçülər: - + Custom Size İstifadəçi ölçüsü - + Device Pixel Ratio: Cihazın piksel nisbəti: - + Theme: Mövzu: - + Light İşıqlanma - + Dark Qaranlıq - + Mode: Rejim: - + Normal Normal - + Disabled Söndürülüb - + Hovered Üzərində - + Pressed Sıxılmış - + Palette Palitra - + Current mode icon does not support the palette Cari rejimin nişanı palitranı dəstəkləmir - + Foreground: Ön plan: - + Background: Arxa plan: - + Highlight: Rəngli seçim - + HighlightForeground: Ön plan fərqlənməsi - + Background Color: Arxa fon rəngi: - + White - + Black Qara - + Transparent Şəffaf - + Custom Fərdi @@ -6624,22 +6644,22 @@ plugin_filepreview::MusicMessageView - + Artist: İfaçı: - + Album: Albom: - + unknown artist naməlum ifaçı - + unknown album naməlum albom diff --git a/translations/dde-file-manager_bg.ts b/translations/dde-file-manager_bg.ts index eca9cc31e9..5eac2709e9 100644 --- a/translations/dde-file-manager_bg.ts +++ b/translations/dde-file-manager_bg.ts @@ -15,99 +15,104 @@ Application - + File Manager Файлов мениджър - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Десктоп - DeepinStorage + DeviceList - - - %1 Volume - %1 обем + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Десктоп + + Disk + Диск - - - DiskControlWidget - - Disks - Дискове + + Open + Отваряне - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - Файлове от диска се използват не можете да го демонтирате + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Диск + + + remove + - - Open - Отваряне + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Непознат @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Системен диск - + Data Disk Диск за данни - + Blank %1 Disc - - - + + + Unknown Непознат - + %1 Drive - + %1 Encrypted - + + %1 Volume %1 обем - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Домашна директория @@ -223,7 +228,6 @@ - Desktop Работен плот @@ -233,7 +237,6 @@ - Videos Видео @@ -243,7 +246,6 @@ - Music Музика @@ -253,7 +255,6 @@ - Pictures Снимки @@ -263,7 +264,6 @@ - Documents Документи @@ -273,7 +273,6 @@ - Downloads Свалени @@ -282,7 +281,6 @@ - Trash Кошче @@ -293,12 +291,11 @@ - Recent Последни - + @@ -306,7 +303,7 @@ Автоматично монтиране - + @@ -319,47 +316,46 @@ %1 задачи в изпълнение - + %1 item %1 обект - + %1 items %1 обекта - + Unable to find the original file - - + + File has been moved or deleted Файлът е преместен или изтрит - - - + + You do not have permission to access this folder Вие нямате права за достъп до тази папка - - + + You do not have permission to traverse files in it - - + + Folder is empty Папката е празна - + Loading... Зареждане @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Компютър @@ -424,9 +419,8 @@ - - - + + Computers in LAN Компютри в LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Таг @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Пряк път - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Бит - Access denied Достъп отказан - Confirm button Потвърждавам - - - The device has been safely removed - - - - + + - - - + + + Open in new window Отваряне в нов прозорец @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Отваряне в нов раздел @@ -968,8 +953,8 @@ - - + + Properties Свойства @@ -1005,7 +990,7 @@ Нов файл - + Create symlink Създаване на символна връзка @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? Сигурни ли сте, искате да изтриете всички данни на диска? - + Erase button Изтриване - + This action cannot be undone Това действие не може да бъде възстановено - + How do you want to use this disc? Как искате да използвате този диск? - + Burn image button Записване на образ - + Burn files button Записване на файлове - + %1 is a duplicate file. %1 се повтаря. - + Insufficient disc space. Недостатъчно дисково пространство. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ Елементи: %1 - + Orange Оранжев - + Red Червен - + Purple Лилав - + Navy-blue Морско синьо - + Azure Небесен - + Green Зелен - + Yellow Жълт - + Gray Сив @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Локален диск - + Removable disk Сменяем диск - + DVD DVD - + Network shared directory Споделени папки в мрежата - - + + Android mobile device Android мобилни устройства - + Apple mobile device Apple мобилни устройства - + Unknown device Непознато устройство - + Remove button Преместване - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Изчисти последната история - - - + + + Source path Път до източника @@ -1419,12 +1404,12 @@ - + Empty Trash Изпразване на кошчето - + Location Нахождение @@ -1524,7 +1509,7 @@ Търсене... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Тип - + Time accessed - + Time modified Време на промяна - + Time created Време на създаване - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Размер на икона @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 елемент е избран @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button ОК - + Operation failed! Операцията е неуспешна! @@ -2554,191 +2529,191 @@ Целевата папка се намира в изходната папка! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Отказ - + Format button Формат - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Да пусна ли %1 или да покажа съдържанието му? - + It is an executable text file. Това е изпълним текстов файл. - - - + + + Run button Стартиране - - + + Run in terminal button Стартиране в терминал - + Display button Екран - + Do you want to run %1? Искате ли да стартирате %1? - + It is an executable file. Това е изпълним файл. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Изтриване завинаги на %1 обекта? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Изтриване - + Permanently delete %1? Изтриване завинаги на %1? - - + + This action cannot be undone Това действие не може да бъде възстановено - + Are you sure you want to empty %1 item? Наистина ли искате да изпразните %1 обект? - + Are you sure you want to empty %1 items? Наистина ли искате да премахнете %1 обекта? - + Empty Изпразване - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Не може да се възстанови %1 файл, избраната папка е само за четене - + Failed to restore %1 files, the target folder is read-only Не може да се възстановят %1 файлове, избраната папка е само за четене - + "%1" already exists, please use another name. "%1" вече съществува, моля, използвайте друго име. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Отказ - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved прекият път за %1 може да е бил променен или преместен - + Do you want to delete this shortcut? Искате ли да изтриете този пряк път ? - + This file is not executable, do you want to add the execute permission and run? Този файл не е изпълним, искате ли да добавите разрешението за изпълнение и да стартирате? - + The selected files contain system file/directory, and it cannot be deleted Избраните файлове, съдържат системни файлове/директории и не могат да бъдат изтрити @@ -2866,278 +2841,276 @@ Моля, въведете парола за декриптиране на диска + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Други - + Close Затваряне - + Close current tab Затвори текущия раздел - + Back Обратно - + Forward Напред - + Switch to next tab Премини на следващия раздел - + Switch to previous tab Премини на предишния раздел - + Next file Следващ файл - + Previous file Предишен файл - + Switch tab by specified number between 1 to 8 Превключи раздела по зададен номер от 1 до 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Оригинална папка - + Contains: %1 - + Original file Оригинален файл - + Size: %1 Размер: %1 - + Target folder Целева папка - + + In data statistics ... - + Target file Целеви файл @@ -3466,37 +3445,37 @@ - + Keep both button Запази и двете - + Skip button Пропускане - - + + Replace button Замени - + Do not ask again Не ме питай повече - + Retry button Отново - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Отказ - + Remove button Преместване @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Компютър - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Компютър - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Моите папки - + Disks Дискове @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Тип на устройството - + Total space Общо пространство - + File system - + Contains Съдържание - + Free space Свободно пространство - + %1 items %1 обекта - + %1 item %1 обект @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Размер - + Dimension - + Duration - + Type Тип - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Поставяне + &Paste + - Cut - Отрязване + Cu&t + - Copy - Копиране + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Отваряне + &Open + - Rename - Преименуване + Rena&me + - Delete - Изтриване + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Отваряне в терминал + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Изпрати до - + + Bluetooth + + + + Create link Създаване на връзка - + Send to desktop Изпращане на десктопа @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Отваряне + + &Open + - + Open in new window Отваряне в нов прозорец - + Open in new tab Отваряне в нов раздел - + Cancel sharing Отказване на споделянето - - Properties - Свойства + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Споделени @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Размер - + Contains Съдържание - + Type Тип - + Location Нахождение - + Time created Време на създаване - + Time accessed - + Time modified Време на промяна - + Hide this file - - + + %1 item %1 обект - + %1 items %1 обекта @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Бит - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Компютър - + Basic Info Основна информация - + Computer name - + Version Версия - + Edition - + OS build - + Type Тип - + Processor Процесор - + Memory Памет @@ -4890,6 +4873,14 @@ %1 файл(ове), %2 папка(и) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Свойства + P&roperties + dfmplugin_recent::Recent - - + Recent Последни @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Път - + Last access Последно използван - + Recent Последни @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Търсене: - + File Type: Тип на файл: - + File Size: Размер на файл: - + Time Modified: Време на промяна: - + Time Accessed: - + Time Created: - + Reset Възстанови - + All subdirectories Всички подпапки - + Current directory Текуща папка - + Application Приложение - + Video Видео - + Audio Аудио - + Image Изображение - + Archive Архив - + Text Текст - + Executable Изпълним - + Backup file - + Today Днес - + Yesterday Вчера - + This week Тази седмица - + Last week Миналата седмица - + This month Този месец - + Last month Миналия месец - + This year Тази година - + Last year Миналата година @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Търсене + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Път @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Отвори местоположението на файла - + Select all Избор на всичко - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Таг - - Bookmark - - - - + Other Друг - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Компютри в LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Отваряне + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Таг @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Отвори местоположението на файла @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Отказ - + Connect button Свързване - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Път до източника - + Time deleted Време на изтриване @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Възстановяване - + Restore all Възстановяване на всичко - + Empty trash - + Source path Път до източника - + Time deleted Време на изтриване @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Кошче @@ -5526,17 +5529,17 @@ Кошче - + item елемент - + items елементи - + Contains %1 %2 Съдържа %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Размер - + Contains Съдържание - + Type Тип - + Location Нахождение - + Time created Време на създаване - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ОК @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Парола + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Парола + + + + Password hint: %1 - + Cancel - button - Отказ + - - Use Key - button + + Delete - - Delete - button - Изтриване + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - ОК + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Сортиране по - + Display as Показване като - + Name Име - + Time modified Време на промяна - + Size Размер - + Type Тип - + Icon Икона - + List Списък + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Запазване @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Запазване - + Open button Отваряне @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_bn.ts b/translations/dde-file-manager_bn.ts index 30e290db1f..10f5df5561 100644 --- a/translations/dde-file-manager_bn.ts +++ b/translations/dde-file-manager_bn.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + ডেস্কটপ - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - ডেস্কটপ + + Disk + ডিস্ক - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - ডিস্ক + + + remove + - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk সিস্টেম ডিস্ক - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop ডেস্কটপ @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash ট্র্যাশ @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item %1 আইটেম - + %1 items %1 গুলো আইটেম - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... লোড হচ্ছে.... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer কম্পিউটার @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ বিট - Access denied - Confirm button নিশ্চিত করুন - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties বৈশিষ্ট্যসমূহ @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type ধরণ - + Time accessed - + Time modified সময় পরিবর্তন হয়ে গেছে - + Time created তৈরি করার সময় - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size আইকনের আকার @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 আইটেম নির্বাচন করা হয়েছে @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button ঠিক আছে - + Operation failed! অপারেশন বার্থ হয়েছে @@ -2554,191 +2529,191 @@ টার্গেট করা ফোল্ডারটি উৎস ফোল্ডারের ভেতরে অবস্থিত - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button বাতিল করুন - + Format button ফরম্যাট - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? আপনি কি %1 চালাতে চান না এর কন্টেন্ট দেখাতে চান ? - + It is an executable text file. এটি একটি এক্সেকিউটাবলে টেক্সট ফাইল - - - + + + Run button চালান - - + + Run in terminal button টার্মিনালে চালান - + Display button ডিসপ্লে - + Do you want to run %1? - + It is an executable file. এটি একটি এক্সেকিউটাবলে ফাইল - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 গুলো আইটেম স্থায়ীভাবে মুছে ফেলবেন ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button মুছে ফেলুন - + Permanently delete %1? %1 স্থায়ীভাবে মুছে ফেলবেন ? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty খালি - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" আগে থেকেই আছে, অন্য কোন নাম ব্যবহার করুন। - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel বাতিল করুন - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button বাতিল করুন - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer কম্পিউটার - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer কম্পিউটার - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories আমার পথগুলো - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items %1 গুলো আইটেম - + %1 item %1 আইটেম @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ আকার - + Dimension - + Duration - + Type ধরণ - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,18 +4473,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete - মুছে ফেলুন + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - বৈশিষ্ট্যসমূহ + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size আকার - + Contains - + Type ধরণ - + Location - + Time created তৈরি করার সময় - + Time accessed - + Time modified সময় পরিবর্তন হয়ে গেছে - + Hide this file - - + + %1 item %1 আইটেম - + %1 items %1 গুলো আইটেম @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit বিট - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer কম্পিউটার - + Basic Info প্রাথমিক তথ্য - + Computer name - + Version ভার্সন - + Edition - + OS build - + Type ধরণ - + Processor প্রসেসর - + Memory মেমরি @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - বৈশিষ্ট্যসমূহ + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button বাতিল করুন - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash ট্র্যাশ @@ -5526,17 +5529,17 @@ ট্র্যাশ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size আকার - + Contains - + Type ধরণ - + Location - + Time created তৈরি করার সময় - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ঠিক আছে @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button - বাতিল করুন + + Password hint: %1 + - - Use Key - button + + Cancel - + Delete - button - মুছে ফেলুন + - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button - ঠিক আছে + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name নাম - + Time modified সময় পরিবর্তন হয়ে গেছে - + Size আকার - + Type ধরণ - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_bo.ts b/translations/dde-file-manager_bo.ts index d354e1a968..df177c542b 100644 --- a/translations/dde-file-manager_bo.ts +++ b/translations/dde-file-manager_bo.ts @@ -17,12 +17,12 @@ Application - + File Manager ཡིག་ཆ་དོ་དམ་བྱེད་ཆས། - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ཡིག་ཆ་དོ་དམ་བྱེད་ཆས་ནི་རྩོལ་ནུས་སྟོབས་ཆེན་ཡོད་པའི་དོ་དམ་ཡོ་བྱད་ཅིག་ཡིན། དེར་བཤེར་འཚོལ་དང་། པར་སློག སྙིགས་སྣོད། སྡུད་སྒྲིལ། བསྡུས་འགྲོལ། ཡིག་ཆའི་ངོ་བོ་སོགས་ཚུད་པའི་དོ་དམ་རྩོལ་ནུས་ལྡན་ཡོད། @@ -30,7 +30,7 @@ DesktopMain - + Desktop ཅོག་ངོས་མངོན་སྟོན། @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - སྒྲིག་ཆས་བདེ་འཇགས་ངང་སྤོ་འབུད་བྱས་སོང་། + - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume བམ་པོ་%1  @@ -212,7 +212,7 @@ - + %1 on %2 %2 ཡི་ %1 @@ -886,19 +886,19 @@ (འདྲ་དཔེ། %1) - - + + dde-file-manager dde-file-manager - + Files are being processed ཡིག་ཆ་ཐག་གཅོད་བཞིན་པ། - + Bit གནས། @@ -3004,7 +3004,7 @@ Tree - + སྡོང་དབྱིབས་མཐོང་རིས། @@ -3277,7 +3277,7 @@ Switch to tree view - + སྡོང་དབྱིབས་མཐོང་རིས་ལ་བརྗེ་བ། @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - + ཡིག་ཆ་%1 སྙིགས་སྣོད་དུ་སྤོ་མ་ཐུབ། @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - + ཡིག་ཆ་མཁོ་ཕབ་བམ་དྲས་སྦྱར་བྱེད་མ་ཐུབ། @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - + ཡིག་ཆ་%1 སྙིགས་སྣོད་དུ་སྤོ་མ་ཐུབ། རྒྱུ་མཚན་ནི་%2 @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - + ཡིག་ཆ་མཁོ་ཕབ་བམ་དྲས་སྦྱར་བྱེད་མ་ཐུབ། རྒྱུ་མཚན་ནི་%1 @@ -4442,7 +4442,7 @@ Failed to modify file permissions - + ཡིག་ཆའི་དབང་ཚད་བཅོས་ཐུབ་མ་སོང་། @@ -4588,7 +4588,7 @@ Bluetooth - སོ་སྔོན། + @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key གསང་ལྡེ་འབྱེད་ཐབས་སོར་ཆུད་པ། - + Input the 32-digit recovery key གྲངས་གནས་32ནང་འཇུག་བྱས་ཏེ་གསང་ལྡེ་སོར་ཆུད་པ། - + Cancel button འདོར་བ། - + Unlock button སྒོ་ལྕགས་འབྱེད་པ། - + Wrong recovery key གསང་ལྡེ་ནོར་བ། - + Failed to unlock file vault ཉེན་འགོག་སྒམ་ཆུང་སྒོ་ལྕགས་འབྱེད་མ་ཐུབ། - + OK ཆོག @@ -5937,6 +5936,11 @@ Forgot password? གསང་ཨང་བརྗེད་འདུག་གམ། + + + Key unlock + + Password @@ -6221,111 +6225,146 @@ Cancel - འདོར་བ། + འདོར་བ། Delete - སུབ་པ། + སུབ་པ། Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། Failed to delete file vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབས་མ་ཐུབ། + OK - ཆོག + ཆོག Once deleted, the files in it will be permanently deleted - ཉེན་འགོག་སྒམ་ཆུང་བསུབས་རྗེས། དེའི་ནང་གི་ནང་དོན་ཚང་མ་ཡོངས་སུ་བསུབས་ངེས་རེད། + dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted - ཉེན་འགོག་སྒམ་ཆུང་བསུབས་རྗེས། དེའི་ནང་གི་ནང་དོན་ཚང་མ་ཡོངས་སུ་བསུབས་ངེས་རེད། + - + Password གསང་ཨང་། - + + Key delete + + + + Password hint: %1 གསང་ཨང་དྲན་སྐུལ། %1 - + Cancel - འདོར་བ། + འདོར་བ། - + Delete - སུབ་པ། + སུབ་པ། - + Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། - + Wrong password - གསང་ཨང་ནོར་བ། + གསང་ཨང་ནོར་བ། - + Failed to delete file vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབས་མ་ཐུབ། + - + OK - ཆོག + ཆོག dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key གྲངས་གནས་32ནང་འཇུག་བྱས་ཏེ་གསང་ལྡེ་སོར་ཆུད་པ། + + + Cancel + འདོར་བ། + + + + Delete + སུབ་པ། + + + + Delete File Vault + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + + + + Wrong recovery key + གསང་ལྡེ་ནོར་བ། + + + + Failed to delete file vault + + + + + OK + ཆོག + dfmplugin_vault::VaultRemoveProgressView Removing... - སུབ་བཞིན་པ། + OK - ཆོག + ཆོག Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། Deleted successfully - བསུབས་པ། + @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... སྣོན་འཇུག་བྱེད་བཞིན་པ། @@ -6399,49 +6438,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by སྟར་སྒྲིག་སྟངས། - + Display as མངོན་སྟོན་བྱེད་སྟངས། - + Name མིང་། - + Time modified བཟོ་བཅོས་དུས་ཚོད། - + Size ཆེ་ཆུང་། - + Type རིགས་གྲས། - + Icon རྟགས་རིས་མཐོང་རིས། - + List གསལ་ཐོའི་མཐོང་རིས། - + Tree - + སྡོང་དབྱིབས་མཐོང་རིས། diff --git a/translations/dde-file-manager_bqi.ts b/translations/dde-file-manager_bqi.ts index 252c6d81dc..44766037dd 100644 --- a/translations/dde-file-manager_bqi.ts +++ b/translations/dde-file-manager_bqi.ts @@ -15,99 +15,104 @@ Application - + File Manager dîvowdâri fāyl - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + dêsktāp - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - dêsktāp + + Disk + - - - DiskControlWidget - - Disks - + + Open + gušiďên - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open - gušiďên + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home howne @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music ārêńg @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ purniďênê xotkār - + @@ -319,47 +316,46 @@ - + %1 item %1 āytem - + %1 items %1 āytemā - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty dobalga pati hêď - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares yak rasuviyā mo @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut miyowbor - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (lefgiri) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (lefgiri %1) @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window gušiďên mênê nimdari nu @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab gušiďên mênê balgê nu @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red so'r - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device dasgā mobāyl androyd - + Apple mobile device dasgā mobāyl apêl - + Unknown device dasgā nāšênās - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history roftên virgār dindâyi - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash dalâšqâli nê pati ko - + Location jāga @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - hêndā niyaštgêr - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons kêtên kerdênê xotkārê āykonal @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - hêndā niyaštgêr - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? êxuy %1 nê ra' vani yā mo'tavāsê niya'ri? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button niyaštgêr - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? zê râsti êxuy 1% zê āytêmā nê pati kuni? - + Are you sure you want to empty %1 items? zê râsti êxuy 1% zê āytêmā nê pati kuni? - + Empty pati - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 hêndā: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type no'ê dasgā - + Total space poy jāga - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ hêndā - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,35 +4455,35 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - jā vandên + &Paste + - Cut - jā goro kerdên + Cu&t + - Copy - lefgiri + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - gušiďên + &Open + - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal gušiďên mênê têrmināl + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to fêšnāďên vê - + + Bluetooth + + + + Create link - + Send to desktop fêšnāďên vê dêsktāp @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share yak rasuvi - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - gušiďên + + &Open + - + Open in new window gušiďên mênê nimdari nu - + Open in new tab gušiďên mênê balgê nu - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares yak rasuviyā mo @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size hêndā - + Contains - + Type - + Location jāga - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition ālêšt kerdên - + OS build - + Type - + Processor - + Memory virga @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: hêndā fāyl: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location gušiďên jāga fāyl - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - gušiďên + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location gušiďên jāga fāyl @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History roftên virgār - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash dalâšqâli nê pati ko - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size hêndā - + Contains - + Type - + Location jāga - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 nî'lêsow @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as niyaštgêr vê onvān - + Name - + Time modified - + Size hêndā - + Type - + Icon - + List nomga + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button zaft kerdên @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button zaft kerdên - + Open button gušiďên @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_br.ts b/translations/dde-file-manager_br.ts index cc1d2da413..ecf1c108e0 100644 --- a/translations/dde-file-manager_br.ts +++ b/translations/dde-file-manager_br.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ca.ts b/translations/dde-file-manager_ca.ts index 063c205820..47130a648c 100644 --- a/translations/dde-file-manager_ca.ts +++ b/translations/dde-file-manager_ca.ts @@ -15,99 +15,104 @@ Application - + File Manager Gestor de fitxers - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. El Gestor de fitxers és una eina de gestió de fitxers potent i fàcil d'usar que permet cercar, copiar, eliminar, comprimir i descomprimir fitxers, canviar-ne les propietats i altres funcions útils. - - DAttachedProtocolDevice - - - %1 on %2 - %1 a %2 - - - - DeepinStorage - - - - %1 Volume - Volum: %1 - - DesktopMain - + Desktop Escriptori - DiskControlWidget + DeviceList - + Disks Discs - - - The device was not safely removed - El dispositiu no s'ha extret amb seguretat. - - - - Click "Safely Remove" and then disconnect it next time - A la propera, cliqueu a "Extreu-lo amb seguretat" i després desconnecteu-lo. - - - - Disk is busy, cannot unmount now - El disc està ocupat. No es pot desmuntar ara. - - - - The device is busy, cannot eject now - El dispositiu està ocupat. No es pot extreure ara. - DiskMountPlugin - + Disk Disc - + Open Obre - + Eject all Extreu-ho tot + + DockItemDataManager + + + The device has been safely removed + El dispositiu s'ha extret amb seguretat. + + + + eject + expulsar + + + + unmount + desmuntar + + + + + remove + eliminar + + + + Operation failed + Ha fallat l'operació. + + + + Device (%1) is busy, cannot %2 now. + El dispositiu (%1) està ocupat, ara no es pot %2. + + FileDialogHandle - + All Files Tots els fitxers + + FileOperateBaseWorker + + + The file name or the path is too long! + El nom del fitxer o el camí és massa llarg! + + MimeTypeDisplayManager - + Unknown Desconegut @@ -123,88 +128,89 @@ QObject - + need authorization to access cal autorització per accedir-hi - + Can't verify the identity of %1. No es pot verificar la identitat de %1. - + This happens when you log in to a computer the first time. Això passa quan obriu la sessió per primer cop. - + The identity sent by the remote computer is La identitat enviada per l'ordinador remot és - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Si voleu estar absolutament segur que és segur continuar, poseu-vos en contacte amb l'administrador del sistema. - - - + + + System Disk Disc de sistema - + Data Disk Disc de dades - + Blank %1 Disc Disc en blanc %1 - - - + + + Unknown Desconegut - + %1 Drive Dispositiu: %1 - + %1 Encrypted Encriptat: %1 - + + %1 Volume Volum: %1 - - + Scanning the device, stop it? S'escaneja el dispositiu. Voleu interrompre-ho? - + Unmount failed Ha fallat el desmuntatge. - + Cannot stop scanning device No es pot aturar l'escaneig del dispositiu. - + + %1 on %2 %1 a %2 @@ -213,7 +219,6 @@ - Home Carpeta de l'usuari @@ -223,7 +228,6 @@ - Desktop Escriptori @@ -233,7 +237,6 @@ - Videos Vídeos @@ -243,7 +246,6 @@ - Music Música @@ -253,7 +255,6 @@ - Pictures Imatges @@ -263,7 +264,6 @@ - Documents Documents @@ -273,7 +273,6 @@ - Downloads Baixades @@ -282,7 +281,6 @@ - Trash Paperera @@ -293,12 +291,11 @@ - Recent Recent - + @@ -306,7 +303,7 @@ Muntatge automàtic - + @@ -319,47 +316,46 @@ %1 tasques en execució - + %1 item %1 element - + %1 items %1 elements - + Unable to find the original file No es pot trobar el fitxer original. - - + + File has been moved or deleted El fitxer s'ha desplaçat o eliminat - - - + + You do not have permission to access this folder No teniu permís per accedir a aquesta carpeta. - - + + You do not have permission to traverse files in it No teniu permís per passar-hi fitxers. - - + + Folder is empty La carpeta és buida - + Loading... Carregant... @@ -408,7 +404,7 @@ - + Built-in disks Discs integrats @@ -416,7 +412,6 @@ - Computer Ordinador @@ -424,9 +419,8 @@ - - - + + Computers in LAN Ordinadors a la xarxa d'àrea local @@ -434,7 +428,7 @@ - + Loop partitions Particions de bucle @@ -442,7 +436,8 @@ - + + Mounted sharing folders Carpetes de compartició muntades @@ -450,7 +445,6 @@ - My shares Comparticions @@ -458,7 +452,7 @@ - + Network Xarxa @@ -466,7 +460,7 @@ - + Mounted partitions and discs Particions i discs muntats @@ -474,7 +468,7 @@ - + Partitions Particions @@ -482,7 +476,7 @@ - + Quick access Accés ràpid @@ -490,7 +484,7 @@ - + Tag Etiqueta @@ -498,7 +492,7 @@ - + Added tags Etiquetes afegides @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Continua mostrant els recursos compartits de Samba muntats. @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Interromp - + Shortcut Drecera - + This system wallpaper is locked. Please contact your admin. Aquest fons de pantalla del sistema està blocat. Poseu-vos en contacte amb l'administrador. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (còpia) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copia %1) @@ -909,33 +901,26 @@ Bit - Access denied Accés denegat - Confirm button Confirmeu-ho - - - The device has been safely removed - El dispositiu s'ha extret amb seguretat. - - - + + - - - + + + Open in new window Obre en una finestra nova @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Obre en una pestanya nova @@ -968,8 +953,8 @@ - - + + Properties Propietats @@ -1005,7 +990,7 @@ Fitxer nou - + Create symlink Crea un enllaç simbòlic @@ -1092,70 +1077,70 @@ Afegeix al disc - + Are you sure you want to erase all data on the disc? Segur que voleu esborrar totes les dades del disc? - + Erase button Esborra - + This action cannot be undone Aquesta acció no es pot desfer - + How do you want to use this disc? Com voleu usar aquest disc? - + Burn image button Grava la imatge - + Burn files button Grava els fitxers - + %1 is a duplicate file. %1 és un fitxer duplicat. - + Insufficient disc space. No hi ha prou espai de disc. - + Lost connection to drive. S'ha perdut la connexió amb la unitat. - + The CD/DVD drive is not ready. Try another disc. La unitat de CD / DVD no està a punt. Proveu-ho amb un altre disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. La unitat de CD / DVD està ocupada. Sortiu del programa usant la unitat i torneu-la a inserir. - + Invalid volume name Nom del volum no vàlid - + Unknown error Error desconegut @@ -1194,42 +1179,42 @@ Elements: %1 - + Orange Taronja - + Red Vermell - + Purple Porpra - + Navy-blue Blau marí - + Azure Atzur - + Green Verd - + Yellow Groc - + Gray Gris @@ -1305,76 +1290,76 @@ No s'hi pot accedir. - + User directory Directori de l'usuari - + Local disk Disc local - + Removable disk Disc extraïble - + DVD DVD - + Network shared directory Directori compartit per xarxa - - + + Android mobile device Dispositiu mòbil d'Android - + Apple mobile device Dispositiu mòbil d'Apple - + Unknown device Dispositiu desconegut - + Remove button Elimina - + Do you want to remove this item? Voleu eliminar aquest element? - + Do yout want to remove %1 items? Voleu eliminar %1 elements? - + It does not delete the original files No s'eliminen els fitxers originals. - + Clear recent history Neteja l'historial recent - - - + + + Source path Camí font @@ -1419,12 +1404,12 @@ No es poden obrir els elements de la paperera. Si us plau, restaureu-los primer. - + Empty Trash Buida la paperera - + Location Ubicació @@ -1524,7 +1509,7 @@ Cercant... - + My Vault La meva cambra cuirassada @@ -1719,7 +1704,7 @@ Ha fallat - + Sidebar Barra lateral @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Sense autorització - - + + + In trial period + En període de prova + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + Sense autorització + + + + In trial period En període de prova @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Col·lecció nova @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organitza l'escriptori - + Desktop options Opcions de l'escriptori - + Organize by Organitza'l per - + Custom collection Col·lecció personalitzada - + Type Tipus - + Time accessed Hora d'accés - + Time modified Hora de modificació - + Time created Hora de creació - + Create a collection Crea una col·lecció - - - Display Size - Mida de visualització - - - - Smaller - Més petita - - - - Normal - Normal - - - - Larger - Més grossa - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opcions de l'escriptori - + Auto arrange icons Arranjament automàtic de les icones @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Mida de visualització - - - + Icon size Mida de la icona @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? El Gestor de fitxers s'actualitzarà a una versió nova. Durant l'actualització s'acabaran les tasques en curs. Voleu actualitzar-lo ara? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Els serveis d'escriptori s'actualitzaran a una versió nova. Durant l'actualització s'acabaran les tasques en curs. Voleu actualitzar-los ara? - + Update button Actualitza - + Cancel button Cancel·la @@ -2385,7 +2360,7 @@ - + %1 item selected %1 element seleccionat @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button D'acord - + Operation failed! Ha fallat l'operació! @@ -2554,191 +2529,191 @@ La carpeta de destinació és dins de la carpeta d'origen! - + The passphrase is needed to access encrypted data on %1. Cal contrasenya per accedir a les dades encriptades a %1. - - - - - - - - + + + + + + + + Cancel button Cancel·la - + Format button Formatació - + To access the device, you must format the disk first. Are you sure you want to format it now? Per accedir al dispositiu, primer heu de formatar el disc. Segur que el voleu formatar ara? - + Do you want to run %1 or display its content? Voleu executar %1 o veure'n el contingut? - + It is an executable text file. És un fitxer de text executable. - - - + + + Run button Executa - - + + Run in terminal button Executa al terminal - + Display button Mostra - + Do you want to run %1? Voleu executar %1? - + It is an executable file. És un fitxer executable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? No es poden moure els %1 elements seleccionats a la paperera. Voleu eliminar-los permanentment? - + Permanently delete %1 items? Voleu eliminar permanentment %1 elements? - + Cannot move "%1" to the trash. Do you want to permanently delete it? No es pot moure %1 a la paperera. Voleu eliminar-ho permanentment? - - - + + + Delete button Elimina - + Permanently delete %1? Voleu eliminar permanentment %1? - - + + This action cannot be undone Aquesta acció no es pot desfer - + Are you sure you want to empty %1 item? Segur que voleu eliminar %1 element? - + Are you sure you want to empty %1 items? Segur que voleu eliminar %1 elements? - + Empty Buit - + Do you want to delete %1? Voleu eliminar %1? - + Do you want to delete the selected %1 items? Voleu eliminar els %1 elements seleccionats? - + Failed to restore %1 file, the target folder is read-only No s'ha pogut restaurar %1 fitxer, la carpeta de destinació és de només lectura. - + Failed to restore %1 files, the target folder is read-only No s'han pogut restaurar %1 fitxers, la carpeta de destinació és de només lectura. - + "%1" already exists, please use another name. "%1" ja existeix; si us plau, trieu un altre nom. - + Device or resource busy Dispositiu o recurs ocupat - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Aquest fitxer serà ocult si el nom comença amb un punt. Voleu amagar-lo? - + Hide Amaga - + Cancel Cancel·la - + Unable to access %1 No es pot accedir a %1. - + %1 that this shortcut refers to has been changed or moved %1: la referència d'aquesta drecera ha canviat o s'ha desplaçat. - + Do you want to delete this shortcut? Voleu eliminar aquesta drecera? - + This file is not executable, do you want to add the execute permission and run? Aquest fitxer no és executable. Voleu afegir-hi el permís d'execució i executar-lo? - + The selected files contain system file/directory, and it cannot be deleted Els fitxers seleccionats contenen fitxers / directoris del sistema i no es poden eliminar. @@ -2866,278 +2841,276 @@ Introduïu la contrasenya per desxifrar el disc + + dfmbase::RightValueWidget + + + Copy complete info + Copia la informació completa + + dfmbase::SettingBackend - + Always open folder in new window Obre sempre la carpeta en una finestra nova - + Open file: Obre el fitxer: - + Click Clic - + Double click Clic doble - + New window and tab Finestra i pestanya noves - + Open from default window: Obre des de la finestra per defecte: - - + + Computer Ordinador - - + + Home Carpeta de l'usuari - - + + Desktop Escriptori - - + + Videos Vídeos - - + + Music Música - - + + Pictures Imatges - - + + Documents Documents - - + + Downloads Baixades - + Open in new tab: Obre en una pestanya nova: - + Current Directory Directori actual - + Files and folders Fitxers i carpetes - + Show hidden files Mostra els fitxers ocults. - + Show file extensions Mostra les extensions dels fitxers. - + Mix sorting of files and folders Barreja l'ordenació de fitxers i carpetes. - + Workspace Espai de treball - + View Visualització - + Default size: Mida per defecte: - + Extra small Molt petita - + Small Petita - + Medium Mitjana - + Large Grossa - + Extra large Molt grossa - + + Tree + Arbre + + + Default view: Visualització per defecte: - + Icon Icona - + List Llista - + + Restore default view mode for all directories + Restaura el mode de visualització predeterminat per a tots els directoris + + + + Restore default view mode + Restaura el mode de visualització predeterminat + + + Thumbnail preview Visualització prèvia en miniatures - + Compressed file preview Visualització prèvia del fitxer comprimit - + Text preview Visualització prèvia del text - + Document preview Visualització prèvia del document - + Image preview Visualització prèvia de la imatge - + Video preview Visualització prèvia del vídeo - + Music preview Visualització prèvia de la música - + The remote environment shows thumbnail previews L'entorn remot mostra visualitzacions prèvies de miniatures. - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Si s'activa la vista prèvia de les miniatures, pot ser que el directori remot es carregui lentament o que l'operació es bloqui. - + Advanced Avançat - - Search - Cerca - - - - Auto index internal disk - Indexa automàticament el disc intern. - - - - Index external storage device after connected to computer - Indexa el dispositiu d'emmagatzematge extern després de connectar-lo a l'ordinador. - - - - Full-Text search - Cerca de text complet - - - + Mount Munta - + Auto mount Muntatge automàtic - + Open after auto mount Obre després de muntar-ho automàticament. - - Show item counts and sizes in the path of mounted MTP devices - Mostra el recompte i les mides d’elements al camí dels dispositius MTP muntats. - - - + Merge the entries of Samba shared folders Combina les entrades de les carpetes compartides de Samba. - + Switching the entry display may lead to failed mounting Canviar la pantalla d'entrada pot provocar un error de muntatge. - + Use the file chooser dialog of File Manager Usa el diàleg de tria de fitxers del Gestor de fitxers. - + Ask for my confirmation when deleting files Demana'm la confirmació quan s'eliminin fitxers. @@ -3301,51 +3274,56 @@ + Switch to tree view + Canvia a la vista en arbre + + + Others Altres - + Close Tanca - + Close current tab Tanca la pestanya actual - + Back Enrere - + Forward Endavant - + Switch to next tab Canvia a la pestanya següent - + Switch to previous tab Canvia a la pestanya anterior - + Next file Fitxer següent - + Previous file Fitxer anterior - + Switch tab by specified number between 1 to 8 Canvia de pestanya especificant un número d'entre l'1 al 8 @@ -3416,42 +3394,43 @@ Crear el fitxer de destinació %1 Info ha fallat en mostrar la funció d'informació del conflicte! - + Time modified: %1 Hora de modificació: %1 - + Original folder Carpeta original - + Contains: %1 Contingut: %1 - + Original file Fitxer original - + Size: %1 Mida: %1 - + Target folder Carpeta de destinació - + + In data statistics ... A les estadístiques de dades... - + Target file Fitxer de destinació @@ -3466,37 +3445,37 @@ Espereu, si us plau... - + Keep both button Mantén-los ambdós - + Skip button Omet - - + + Replace button Reemplaça - + Do not ask again No ho tornis a preguntar. - + Retry button Torna-ho a provar - + Merge button Fusiona @@ -3510,7 +3489,7 @@ Introduïu una contrasenya per protegir les carpetes compartides. - + Set a password on the shared folder for non-anonymous access Establiu una contrasenya a la carpeta compartida per a l'accés no anònim. @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Perdoneu, no es pot trobar el directori d'accés ràpid. Voleu eliminar-lo? - + Cancel button Cancel·la - + Remove button Elimina @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Ordinador - + Computer display items Elements de visualització de l'ordinador - + Hide built-in disks on the Computer page Amaga els discs integrats a la pàgina Ordinador. - + Hide loop partitions on the Computer page Amaga les particions de bucle a la pàgina d'Ordinador. - + Show file system on disk icon Mostra el sistema de fitxers a la icona del disc. - + Hide My Directories on the Computer page Amaga els meus directoris a la pàgina d'Ordinador. - + Hide 3rd party entries on the Computer page Amaga les entrades de tercers a la pàgina d'Ordinador. @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Ha fallat desblocar el dispositiu. - + Wrong password Contrasenya incorrecta - + Rename failed Ha fallat canviar-ne el nom. - + The device is busy and cannot be renamed now El dispositiu està ocupat i no se'n pot canviar el nom ara. - + Format failed Ha fallat la formatació. - + The device is busy and cannot be formatted now El dispositiu està ocupat i no es pot formatar ara. - + Mount error Error de muntatge - + Cannot access %1 No es pot accedir a %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Ordinador - + %1 is read-only. Do you want to enable read and write permissions for it? %1 és només de lectura. Voleu habilitar-hi els permisos de lectura i escriptura? - + Once enabled, read/write permission will be granted permanently Un cop habilitat, el permís de lectura i escriptura es concedirà permanentment. - + Cancel Cancel·la - + Enable Now Habilita'l ara @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Directoris de l'usuari - + Disks Discs @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Informació bàsica - + Device type Tipus de dispositiu - + Total space Espai total - + File system Sistema de fitxers - + Contains Contingut - + Free space Espai lliure - + %1 items %1 elements - + %1 item %1 element @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 a %2 @@ -3990,27 +3968,27 @@ Mida - + Dimension Dimensió - + Duration Durada - + Type Tipus - + Accessed Accedit - + Modified Modificat @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - + No s'ha pogut moure el fitxer %1 a la paperera. @@ -4357,7 +4335,7 @@ Copy or Cut File failed! - + Ha fallat copiar o enganxar! @@ -4387,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + No s'ha pogut moure el fitxer %1 a la paperera, causa: %2 @@ -4406,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Ha fallat copiar o tallar el fitxer. Causa: %1 @@ -4439,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Error de canvi de nom del fitxer - + Failed to create the directory Ha fallat crear el directori. - + Failed to create the file Ha fallat crear el fitxer - + link file error error del fitxer d'enllaç - - + + Failed to modify file permissions - + No s'han pogut modificar els permisos dels fitxers. @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Enganxa + &Paste + En&ganxa - Cut - Retalla + Cu&t + Re&talla - Copy - Copia + &Copy + &Copia dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Obre + &Open + &Obre - Rename - Canvia'n el nom + Rena&me + Canvia'n el no&m - Delete - Elimina + &Delete + &Elimina @@ -4579,6 +4557,11 @@ Open in terminal Obre al terminal + + + Reverse select + Selecció inversa + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Envia a... - + + Bluetooth + Bluetooth + + + Create link Crea'n un enllaç - + Send to desktop Envia a l'escriptori @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Compartició - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Obre + + &Open + &Obre - + Open in new window Obre en una finestra nova - + Open in new tab Obre en una pestanya nova - + Cancel sharing Cancel·la la compartició - - Properties - Propietats + + P&roperties + P&ropietats dfmplugin_myshares::MyShares - + My Shares Comparticions @@ -4700,7 +4683,7 @@ No hi ha fitxers per gravar. - + Unable to burn. Not enough free space on the target disk. No es pot fer la gravació. No hi ha prou espai lliure al disc de destinació. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Informació bàsica - + Size Mida - + Contains Contingut - + Type Tipus - + Location Ubicació - + Time created Hora de creació - + Time accessed Hora d'accés - + Time modified Hora de modificació - + Hide this file Amaga aquest fitxer - - + + %1 item %1 element - + %1 items %1 elements @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Per la seguretat de secrets - + For Government Per al govern - + For Enterprise Per a l'empresa - + Bit Bit - + Available Disponible @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Ordinador - + Basic Info Informació bàsica - + Computer name Nom de l'ordinador - + Version Versió - + Edition Edició - + OS build Compilació del SO - + Type Tipus - + Processor Processador - + Memory Memòria @@ -4891,6 +4874,14 @@ %1 fitxer/s, %2 carpeta/es + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + No es permeten %1 + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propietats + P&roperties + P&ropietats dfmplugin_recent::Recent - - + Recent Recent @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Camí - + Last access Últim accés - + Recent Recent @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Cerca: - + File Type: Tipus de fitxer: - + File Size: Mida del fitxer: - + Time Modified: Hora de modificació: - + Time Accessed: Hora d'accés: - + Time Created: Hora de creació: - + Reset Restableix - + All subdirectories Tots els subdirectoris - + Current directory Directori actual - + Application Aplicació - + Video Vídeo - + Audio Àudio - + Image Imatge - + Archive Arxiu - + Text Text - + Executable Executable - + Backup file Fitxer de còpia de seguretat - + Today Avui - + Yesterday Ahir - + This week Aquesta setmana - + Last week La setmana passada - + This month Aquest mes - + Last month El mes passat - + This year Aquest any - + Last year L'any passat @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Cerca + + + Auto index internal disk + Indexa automàticament el disc intern + + + + Index external storage device after connected to computer + Indexa el dispositiu d'emmagatzematge extern després de connectar-lo a l'ordinador. + + + + Full-Text search + Cerca de text complet + dfmplugin_search::SearchHelper - + Path Camí @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Obre la ubicació del fitxer - + Select all Selecciona-ho tot - + Path Camí @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Accés ràpid - + Partitions Particions - + Network Xarxa - + Tag Etiqueta - - Bookmark - Marcador - - - + Other Altres - + Unknown Group Grup desconegut - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Ordinadors a la xarxa d'àrea local - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Obre + &Open + &Obre @@ -5191,8 +5184,8 @@ - Properties - Propietats + P&roperties + P&ropietats @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Obre la ubicació del fitxer @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Connecta amb el servidor - - - + + + Clear History Neteja l'historial - + Unfavorite No favorit - + + Error + Error + + + + Unable to favorite illegitimate url! + No es pot fer preferit un URL il·legítim! + + + Cancel button Cancel·la - + Connect button Connecta - + Charset Encoding Codificació del joc de caràcters - + Default Per defecte - + My Favorites Favorits: - + No favorites yet Encara no hi ha cap favorit. - + Favorite Favorit @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Camí font - + Time deleted Hora d'eliminació @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaura - + Restore all Restaura-ho tot - + Empty trash Buida la paperera - + Source path Camí font - + Time deleted Hora d'eliminació @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Paperera @@ -5527,17 +5530,17 @@ Paperera - + item element - + items elements - + Contains %1 %2 Conté %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Informació bàsica - + Size Mida - + Contains Contingut - + Type Tipus - + Location Ubicació - + Time created Hora de creació - + Time accessed Hora d'accés - + Time locked Temps de bloqueig @@ -5985,7 +5988,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Encripta la cambra cuirassada de fitxers @@ -6006,19 +6009,19 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des - - - + + + Encrypt Encripta - + Failed to create file vault: %1 Ha fallat crear la cambra cuirassada: %1 - + OK D'acord @@ -6069,7 +6072,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Establiu la contrasenya de la cambra cuirassada. @@ -6095,7 +6098,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caràcters, conté A-Z, a-z, 0-9 i símbols @@ -6130,8 +6133,8 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des Següent - - + + Passwords do not match Les contrasenyes no coincideixen. @@ -6139,7 +6142,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultActiveStartView - + File Vault Cambra cuirassada de fitxers @@ -6189,7 +6192,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultHelper - + Vault Cambra cuirassada @@ -6199,7 +6202,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des La cambra cuirassada no està disponible perquè cryfs no s'ha instal·lat! - + A task is in progress, so it cannot perform your operation Hi ha una tasca en curs. No pot fer la vostra operació. @@ -6207,99 +6210,122 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultPropertyDialog - + My Vault La meva cambra cuirassada + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Cancel·la + + + + Delete + Elimina + + + + Delete File Vault + Elimina la cambra cuirassada + + + + Failed to delete file vault + Ha fallat eliminar la cambra cuirassada. + + + + OK + D'acord + + + + Once deleted, the files in it will be permanently deleted + Un cop eliminada, els fitxers que hi havia s'hauran esborrat permanentment. + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + Un cop eliminada, els fitxers que hi havia s'hauran esborrat permanentment. + + + Password Contrasenya - + Password hint: %1 Suggeriment de la contrasenya: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Introduïu la clau de recuperació de 32 dígits. + + Cancel + Cancel·la - - - dfmplugin_vault::VaultRemovePages - + + Delete + Elimina + + + Delete File Vault Elimina la cambra cuirassada - - Once deleted, the files in it will be permanently deleted - Un cop eliminada, els fitxers que hi havia s'hauran esborrat permanentment. + + Wrong password + Contrasenya incorrecta - - Cancel - button - Cancel·la + + Failed to delete file vault + Ha fallat eliminar la cambra cuirassada. - - Use Key - button - Usa la clau + + OK + D'acord + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Elimina + + Input the 32-digit recovery key + Introduïu la clau de recuperació de 32 dígits. + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... S'elimina... - - + OK - button D'acord - - Wrong password - Contrasenya incorrecta - - - - Wrong recovery key - Clau de recuperació incorrecta - - - - Failed to delete file vault - Ha fallat eliminar la cambra cuirassada. + + Delete File Vault + Elimina la cambra cuirassada - + Deleted successfully S'ha eliminat correctament. - - - Failed to delete - Ha fallat l'eliminació. - dfmplugin_vault::VaultVisibleManager @@ -6309,16 +6335,10 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des La meva cambra cuirassada - + File Vault Cambra cuirassada de fitxers - - - - Vault - Cambra cuirassada - dfmplugin_workspace::FileOperatorHelper @@ -6331,22 +6351,22 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_workspace::FileViewModel - + Name Nom - + Time modified Hora de modificació - + Size Mida - + Type Tipus @@ -6362,7 +6382,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_workspace::IconItemEditor - + %1 are not allowed No es permeten %1 @@ -6378,45 +6398,50 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Classifica per... - + Display as Mostra com a... - + Name Nom - + Time modified Hora de modificació - + Size Mida - + Type Tipus - + Icon Icona - + List Llista + + + Tree + Arbre + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des filedialog_core::FileDialog - + Save button Desa @@ -6438,13 +6463,13 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des filedialog_core::FileDialogStatusBar - + Save button Desa - + Open button Obre @@ -6482,112 +6507,112 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des plugin_filepreview::DDciIconPreview - + Available sizes: Mides disponibles: - + Custom Size Mida personalitzada - + Device Pixel Ratio: Relació de píxels del dispositiu: - + Theme: Tema: - + Light Clar - + Dark Fosc - + Mode: Mode: - + Normal Normal - + Disabled Inhabilitat - + Hovered Passar-hi - + Pressed Prémer - + Palette Paleta - + Current mode icon does not support the palette La icona del mode actual no admet la paleta. - + Foreground: Primer pla: - + Background: Fons: - + Highlight: Ressaltat: - + HighlightForeground: Ressaltar el primer pla: - + Background Color: Color de fons: - + White Blanc - + Black Negre - + Transparent Transparent - + Custom Personalitzat @@ -6619,24 +6644,24 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des plugin_filepreview::MusicMessageView - + Artist: Artista: - + Album: Àlbum: - + unknown artist artista desconegut - + unknown album àlbum desconegut - + \ No newline at end of file diff --git a/translations/dde-file-manager_cs.ts b/translations/dde-file-manager_cs.ts index 67cf8cf5b9..61b783a49f 100644 --- a/translations/dde-file-manager_cs.ts +++ b/translations/dde-file-manager_cs.ts @@ -15,99 +15,104 @@ Application - + File Manager Správce souborů - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Správce souborů je mocný, přesto snadno se používající nástroj pro správu souborů. Má funkce jako je vyhledávání, kopírování, mazání, komprimace-zabalení/rozbalování archivů, zobrazování vlastností souborů a další užitečné funkce. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - %1 do %2 + + Desktop + Plocha - DeepinStorage + DeviceList - - - %1 Volume - %1 svazek + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Plocha + + Disk + Disk - - - DiskControlWidget - - Disks - Disky + + Open + Otevřít - - The device was not safely removed - Zařízení nebylo bezpečně odebráno + + Eject all + Vysunout vše + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Příště klepněte na „Bezpečně odebrat“, a až pak odpojte + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disk je zaneprázdněn, nyní ho proto nelze odpojit + + eject + - - The device is busy, cannot eject now - Zařízení je něčím využíváno, proto ho nyní není možné vysunout + + unmount + - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Otevřít + + Operation failed + - - Eject all - Vysunout vše + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files Veškeré soubory + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Neznámý @@ -123,88 +128,89 @@ QObject - + need authorization to access K přístupu je vyžadováno ověření - + Can't verify the identity of %1. Nelze ověřit totožnost %1. - + This happens when you log in to a computer the first time. Toto se stává, když se k počítači přihlašujete poprvé. - + The identity sent by the remote computer is Totožnost poslaná vzdáleným počítačem je - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Pokud si chcete být zcela jistí, zda je bezpečné pokračovat, obraťte se na správce systému. - - - + + + System Disk Systémový disk - + Data Disk Datový disk - + Blank %1 Disc Prázdný %1 disk - - - + + + Unknown Neznámý - + %1 Drive %1 mechanika - + %1 Encrypted %1 zašifrováno - + + %1 Volume %1 svazek - - + Scanning the device, stop it? Prohledává se zařízení. Zastavit? - + Unmount failed Odpojení se nezdařilo - + Cannot stop scanning device Nelze ukončit kontrolu zařízení - + + %1 on %2 %1 do %2 @@ -213,7 +219,6 @@ - Home Domovská složka @@ -223,7 +228,6 @@ - Desktop Plocha @@ -233,7 +237,6 @@ - Videos Obrazy @@ -243,7 +246,6 @@ - Music Hudba @@ -253,7 +255,6 @@ - Pictures Obrázky @@ -263,7 +264,6 @@ - Documents Dokumenty @@ -273,7 +273,6 @@ - Downloads Stažené @@ -282,7 +281,6 @@ - Trash Koš @@ -293,12 +291,11 @@ - Recent Nedávné - + @@ -306,7 +303,7 @@ Připojit automaticky - + @@ -319,47 +316,46 @@ %1 probíhajících úloh - + %1 item %1 položka - + %1 items %1 položek - + Unable to find the original file Nelze najít původní soubor - - + + File has been moved or deleted Soubor byl přesunut nebo smazán - - - + + You do not have permission to access this folder Nemáte oprávnění pro přistupování k této složce - - + + You do not have permission to traverse files in it Nemáte oprávnění pro procházení souborů v ní - - + + Folder is empty Složka je prázdná - + Loading... Načítání… @@ -408,7 +404,7 @@ - + Built-in disks Integrovaná úložiště @@ -416,7 +412,6 @@ - Computer Počítač @@ -424,9 +419,8 @@ - - - + + Computers in LAN Počítače v místní síti (LAN) @@ -434,7 +428,7 @@ - + Loop partitions Oddíly smyčky @@ -442,7 +436,8 @@ - + + Mounted sharing folders Připojené složky pro sdílení @@ -450,7 +445,6 @@ - My shares Mé sdílení @@ -458,7 +452,7 @@ - + Network Síť @@ -466,7 +460,7 @@ - + Mounted partitions and discs Připojené oddíly a disky @@ -474,7 +468,7 @@ - + Partitions Oddíly @@ -482,7 +476,7 @@ - + Quick access Rychlý přístup @@ -490,7 +484,7 @@ - + Tag Štítek @@ -498,7 +492,7 @@ - + Added tags Přidané štítky @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Pořád zobrazovat připojená Samba sdílení @@ -557,7 +551,7 @@ Show crumb bar clickable area - Zobrazit klikatelnou oblast navigace + Zobrazit klepnutelnou oblast navigace @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Zastavit - + Shortcut -odkaz_na - + This system wallpaper is locked. Please contact your admin. Toto systémové pozadí je uzamčeno. Obraťte se prosím na správce. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopírovat) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopírovat %1) @@ -909,33 +901,26 @@ Bit - Access denied Přístup odepřen - Confirm button Potvrdit - - - The device has been safely removed - Zařízení je možné bezpečně odebrat - - - + + - - - + + + Open in new window Otevřít v novém okně @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Otevřít v nové kartě @@ -968,8 +953,8 @@ - - + + Properties Vlastnosti @@ -1005,7 +990,7 @@ Nový soubor - + Create symlink Vytvořit symbolický odkaz @@ -1092,70 +1077,70 @@ Přidat na disk - + Are you sure you want to erase all data on the disc? Opravdu chcete smazat všechna data na disku? - + Erase button Vymazat - + This action cannot be undone Tuto akci není možné vzít zpět - + How do you want to use this disc? Jak chcete tento disk použít? - + Burn image button Vypálit obraz - + Burn files button Vypálit soubory - + %1 is a duplicate file. %1 je kopie souboru. - + Insufficient disc space. Nedostatek místa na disku. - + Lost connection to drive. Spojení s mechanikou ztraceno. - + The CD/DVD drive is not ready. Try another disc. Mechanika CD/DVD není připravena. Zkuste jiný disk. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Mechanika optických disků je zaneprázdněna. Ukončete program používající mechaniku a disk vložte znovu. - + Invalid volume name Neplatný název - + Unknown error Neznámá chyba @@ -1194,42 +1179,42 @@ Položek: %1 - + Orange Oranžová - + Red Červená - + Purple Purpurová - + Navy-blue Námořní modrá - + Azure Azurová - + Green Zelená - + Yellow Žlutá - + Gray Šedá @@ -1305,76 +1290,76 @@ Přístup zamítnut - + User directory Adresář uživatele - + Local disk Pevný disk - + Removable disk Vyměnitelný disk - + DVD DVD - + Network shared directory Síťová sdílená složka - - + + Android mobile device Android mobilní zařízení - + Apple mobile device Apple mobilní zařízení - + Unknown device Neznámé zařízení - + Remove button Odstranit - + Do you want to remove this item? Chcete tuto položku odebrat? - + Do yout want to remove %1 items? Chcete odebrat %1 položek? - + It does not delete the original files Nesmaže původní soubory - + Clear recent history Smazat nedávnou historii - - - + + + Source path Zdrojový popis umístění @@ -1419,12 +1404,12 @@ Nedaří se otevřít položky v koši, prosím nejprve ho obnovte - + Empty Trash Vyprázdnit koš - + Location Umístění @@ -1524,7 +1509,7 @@ Hledání… - + My Vault Můj trezor @@ -1701,27 +1686,27 @@ Device disconnected - + Zařízení odpojeno ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 Success - + Podařilo se Failed - + Nepodařilo se - + Sidebar - + Postranní panel @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nepověřeno - - + + + In trial period + Ve zkušebním období + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + Nepověřeno + + + + In trial period Ve zkušebním období @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nová sbírka @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Uspořádat pracovní plochu - + Desktop options Nastavení pracovní plochy - + Organize by Uspořádat podle - + Custom collection Vlastní sbírka - + Type Typ - + Time accessed Čas přístupu - + Time modified Změněno - + Time created Čas vytvoření - + Create a collection Vytvořit sbírku - - - Display Size - Velikost zobrazení - - - - Smaller - Menší - - - - Normal - Běžné - - - - Larger - Větší - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Nastavení pracovní plochy - + Auto arrange icons Automaticky uspořádat ikony @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Velikost zobrazení - - - + Icon size Velikost ikon @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Správce souborů bude aktualizován na novou verzi, při čemž budou ukončeny probíhající úlohy. Chcete provést aktualizaci nyní? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Služby pracovní plochy budou aktualizovány na novou verzi, při čemž budou ukončeny probíhající úlohy. Chcete provést aktualizaci nyní? - + Update button Aktualizovat - + Cancel button Zrušit @@ -2385,7 +2360,7 @@ - + %1 item selected Vybrána %1 položka @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operace se nezdařila! @@ -2554,191 +2529,191 @@ Cílová složka je uvnitř zdrojové složky (nelze samo do sebe)! - + The passphrase is needed to access encrypted data on %1. Pro přístup k zašifrovaným datům na %1 je třeba zadat přístupovou frázi. - - - - - - - - + + + + + + + + Cancel button Zrušit - + Format button Formát - + To access the device, you must format the disk first. Are you sure you want to format it now? Aby bylo možné k zařízení přistupovat, je třeba ho nejprve naformátovat. Chcete to provést nyní? - + Do you want to run %1 or display its content? Chcete %1 spustit nebo zobrazit jeho obsah? - + It is an executable text file. Je spustitelným textovým souborem. - - - + + + Run button Spustit - - + + Run in terminal button Spustit v terminálu - + Display button Zobrazení - + Do you want to run %1? Chcete %1 spustit? - + It is an executable file. Je spustitelným textovým souborem. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Vybrané položky %1 nelze přesunout do koše. Chcete je trvale odstranit? - + Permanently delete %1 items? Nadobro smazat %1 položek? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Nelze přesunout „%1“ do koše. Chcete jej trvale odstranit? - - - + + + Delete button Smazat - + Permanently delete %1? Nadobro smazat %1? - - + + This action cannot be undone Tuto akci není možné vzít zpět - + Are you sure you want to empty %1 item? Chcete smazat %1 položku? - + Are you sure you want to empty %1 items? Chcete smazat %1 položek? - + Empty Vyprázdnit - + Do you want to delete %1? Opravdu chcete %1 smazat? - + Do you want to delete the selected %1 items? Opravdu chcete označených %1 položek smazat? - + Failed to restore %1 file, the target folder is read-only Nepodařilo se obnovit %1 soubor, cílová složka je jen pro čtení - + Failed to restore %1 files, the target folder is read-only Nepodařilo se obnovit %1 souborů, cílová složka je jen pro čtení - + "%1" already exists, please use another name. „%1“ už existuje. Použijte jiný název. - + Device or resource busy Zařízení nebo prostředek je zaneprázdněn - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Pokud název souboru bude začínat na tečku, bude skrytý. Opravdu to chcete? - + Hide Skrýt - + Cancel Zrušit - + Unable to access %1 Nedaří se přistupovat k %1 - + %1 that this shortcut refers to has been changed or moved %1 odkazující na tuto zkratku byl změněn nebo přesunut - + Do you want to delete this shortcut? Chcete smazat tuto klávesovou zkratku? - + This file is not executable, do you want to add the execute permission and run? Tento soubor není spustitelný. Chcete přidat oprávnění pro spouštění a spustit ho? - + The selected files contain system file/directory, and it cannot be deleted Vybrané soubory obsahují systémový soubor/složku, a nelze je proto smazat @@ -2866,280 +2841,278 @@ Zadejte heslo pro rozšifrování disku + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Složku vždy otevřít v novém okně - + Open file: - + Otevřít soubor: - + Click - + Klepnutím - + Double click - + Dvojklepnutím - + New window and tab - + Nové okno a karta - + Open from default window: - + Otevřít z výchozího okna: - - + + Computer - + Počítač - - + + Home - + Domovská složka - - + + Desktop - + Plocha - - + + Videos - + Videa - - + + Music - + Hudba - - + + Pictures - + Obrázky - - + + Documents - + Dokumenty - - + + Downloads - + Stažené - + Open in new tab: - + V nové kartě otevřít: - + Current Directory - + Stávající složka - + Files and folders - + Soubory a složky - + Show hidden files - + Zobrazit skryté soubory - + Show file extensions - + Zobrazit přípony souborů - + Mix sorting of files and folders - + Smíšené třídění souborů a složek - + Workspace - + Pracovní prostor - + View - + Pohled - + Default size: - + Výchozí velikost: - + Extra small - + Velice malá - + Small - + Malá - + Medium - + Střední - + Large - + Velké - + Extra large + Opravdu velká + + + + Tree - + Default view: - + Výchozí pohled: - + Icon - + Ikony - + List + Seznam + + + + Restore default view mode for all directories - - Thumbnail preview + + Restore default view mode - + + Thumbnail preview + Náhled + + + Compressed file preview - + Náhled komprimovaného souboru - + Text preview - + Náhled textu - + Document preview - + Náhled dokumentu - + Image preview - + Náhled obrázku - + Video preview - + Náhled videa - + Music preview - + Náhled hudby - + The remote environment shows thumbnail previews - + Vzdálené prostředí zobrazuje náhledy miniatur - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Zapnutí náhledu miniatur může způsobit pomalé načítání vzdáleného adresáře nebo zamrznutí operace. - + Advanced - - - - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - + Pokročilé - + Mount - + Připojit - + Auto mount - + Připojit automaticky - + Open after auto mount - - - - - Show item counts and sizes in the path of mounted MTP devices - + Po automatickém připojení otevřít - + Merge the entries of Samba shared folders - + Sloučení záznamů sdílených složek Samba - + Switching the entry display may lead to failed mounting - + Přepínání vstupního zobrazení může vést k neúspěšnému připojení - + Use the file chooser dialog of File Manager - + Použít dialog pro výběr souboru správce souborů - + Ask for my confirmation when deleting files - + Při mazání souborů vyžadovat potvrzení @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Ostatní - + Close Zavřít - + Close current tab Zavřít stávající kartu - + Back Zpět - + Forward Vpřed - + Switch to next tab Přepnout na další kartu - + Switch to previous tab Přepnout na předchozí kartu - + Next file Následující soubor - + Previous file Předchozí soubor - + Switch tab by specified number between 1 to 8 Přepnout kartu pomocí zadaného čísla z rozmezí 1 až 8 @@ -3416,42 +3394,43 @@ Nepodařilo se vytvořit cílový soubor %1 ve funkci zobrazit konfliktní informace! - + Time modified: %1 Změněno: %1 - + Original folder Původní složka - + Contains: %1 Obsahuje: %1 - + Original file Původní soubor - + Size: %1 Velikost: %1 - + Target folder Cílová složka - + + In data statistics ... - + V datových statistikách… - + Target file Cílový soubor @@ -3466,37 +3445,37 @@ Počkejte, prosím - + Keep both button Ponechat oba - + Skip button Přeskočit - - + + Replace button Nahradit - + Do not ask again Znovu se neptat - + Retry button Zkusit znovu - + Merge button Sloučit @@ -3510,7 +3489,7 @@ Zadejte heslo pro ochranu sdílených složek - + Set a password on the shared folder for non-anonymous access Nastavit heslo ve sdílené složce pro neanonymní přístup @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Je nám líto, ale nepodařilo se najít složku s vašimi záložkami. Odstranit? - + Cancel button Zrušit - + Remove button Odstranit @@ -3805,81 +3784,80 @@ dfmplugin_computer::Computer - - + Computer Počítač - + Computer display items - + Položky zobrazení počítače - + Hide built-in disks on the Computer page - + Skrýt integrované úložiště na stránce Počítač - + Hide loop partitions on the Computer page - + Skrýt oddíly na stránce Počítač - + Show file system on disk icon - + Zobrazovat typ souborového systému na ikoně disku - + Hide My Directories on the Computer page - + Skrýt mé oddíly na stránce Počítač - + Hide 3rd party entries on the Computer page - + Skrýt položky třetích stran na stránce Počítač dfmplugin_computer::ComputerController - + Unlock device failed Odemknutí zařízení se nezdařilo - + Wrong password Chybné heslo - + Rename failed Přejmenování se nezdařilo - + The device is busy and cannot be renamed now Zařízení je právě používáno a nemůže být přejmenováno - + Format failed Fortmátování s nezdařilo - + The device is busy and cannot be formatted now Zařízení je právě používáno a nemůže být naformátováno - + Mount error Připojení se nezdařilo - + Cannot access %1 Nelze přistupovat k %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Počítač - + %1 is read-only. Do you want to enable read and write permissions for it? %1 je pouze pro čtení. Chcete upravit práva tak, aby bylo možné i zapisovat? - + Once enabled, read/write permission will be granted permanently Jakmile zapnuto, budou práva pro čtení/zápis udělena natrvalo - + Cancel Zrušit - + Enable Now Zapnout nyní @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje složky - + Disks Disky @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Základní informace - + Device type Typ zařízení - + Total space Celkový prostor - + File system Souborový systém - + Contains Obsahuje - + Free space Volné místo - + %1 items %1 položek - + %1 item %1 položka @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 do %2 @@ -3990,27 +3968,27 @@ Velikost - + Dimension Rozměr - + Duration Doba trvání - + Type Typ - + Accessed Dostupné - + Modified Upraveno @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - + Nepodařilo se přesunout soubor %1 do Koše @@ -4357,7 +4335,7 @@ Copy or Cut File failed! - + Zkopírování či vyjmutí souboru se nezdařilo! @@ -4387,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + Nepodařilo se přemístit soubor %1 do koše, příčina: %2 @@ -4406,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Zkopírování či vyjmutí souboru se nezdařilo, příčina: %1 @@ -4439,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Chyba při přejmenování souboru - + Failed to create the directory Adresář se nepodařilo vytvořit - + Failed to create the file Soubor se nepodařilo vytvořit - + link file error Chyba v odkazu na soubor - - + + Failed to modify file permissions - + Nepodařilo se změnit práva @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Vložit + &Paste + - Cut - Vyjmout + Cu&t + - Copy - Kopírovat + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Otevřít + &Open + - Rename - Přejmenovat + Rena&me + - Delete - Smazat + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Otevřít v terminálu + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Odeslat na - + + Bluetooth + + + + Create link Vytvořit odkaz - + Send to desktop Odeslat na pracovní plochu @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Sdílet - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Otevřít + + &Open + - + Open in new window Otevřít v novém okně - + Open in new tab Otevřít v nové kartě - + Cancel sharing Zrušit sdílení - - Properties - Vlastnosti + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Má sdílení @@ -4700,7 +4683,7 @@ Žádné soubory pro vypálení - + Unable to burn. Not enough free space on the target disk. Není možné zapsat. Nedostatek volného prostoru na cílovém disku. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Základní informace - + Size Velikost - + Contains Obsahuje - + Type Typ - + Location Umístění - + Time created Čas vytvoření - + Time accessed Čas přístupu - + Time modified Změněno - + Hide this file Skrýt tento soubor - - + + %1 item %1 položka - + %1 items %1 položek @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Pro bezpečnost tajemství - + For Government Pro vládní instituce - + For Enterprise Pro společnosti - + Bit Bit - + Available K dispozici @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Počítač - + Basic Info Základní informace - + Computer name Název počítače - + Version Verze - + Edition Vydání - + OS build Verze sestavení OS - + Type Typ - + Processor Procesor - + Memory Paměť @@ -4891,6 +4874,14 @@ %1 soubor(ů), %2 složka(y) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Vlastnosti + P&roperties + dfmplugin_recent::Recent - - + Recent Nedávné @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Popis umístění - + Last access Poslední přístup - + Recent Nedávné @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Hledat: - + File Type: Typ souboru: - + File Size: Velikost souboru: - + Time Modified: Změněno: - + Time Accessed: Okamžik přístupu: - + Time Created: Okamžik vytvoření: - + Reset Vynulovat - + All subdirectories Všechny podsložky - + Current directory Stávající složka - + Application Aplikace - + Video Obraz - + Audio Zvuk - + Image Obrázek - + Archive Archiv - + Text Text - + Executable Spustitelný - + Backup file Záložní soubor - + Today Dnes - + Yesterday Včera - + This week Tento týden - + Last week Poslední týden - + This month Tento měsíc - + Last month Poslední měsíc - + This year Tento rok - + Last year Poslední rok @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Hledat + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Popis umístění @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otevřít umístění souboru - + Select all Vybrat vše - + Path Cesta @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Rychlý přístup - + Partitions Oddíly - + Network Síť - + Tag Štítek - - Bookmark - Záložka - - - + Other Jiný - + Unknown Group Neznámá skupina - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Počítače v místní síti (LAN) - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Otevřít + &Open + @@ -5191,8 +5184,8 @@ - Properties - Vlastnosti + P&roperties + @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Štítek @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otevřít umístění souboru @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Připojit se k serveru - - - + + + Clear History Smazat historii - + Unfavorite Neoblíbené - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Zrušit - + Connect button Připojit - + Charset Encoding Kódování znakové sady - + Default Výchozí - + My Favorites Moje oblíbené - + No favorites yet Zatím žádné oblíbené - + Favorite Oblíbené @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Zdrojový popis umístění - + Time deleted Smazáno @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Obnovit - + Restore all Obnovit vše - + Empty trash Prázdný koš - + Source path Zdrojový popis umístění - + Time deleted Smazáno @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Koš @@ -5527,17 +5530,17 @@ Koš - + item položku - + items položek - + Contains %1 %2 Obsahuje %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Základní informace - + Size Velikost - + Contains Obsahuje - + Type Typ - + Location Umístění - + Time created Čas vytvoření - + Time accessed Čas přístupu - + Time locked Čas uzamčen @@ -5985,7 +5988,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Zašifrovat trezor na soubory @@ -6006,19 +6009,19 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. - - - + + + Encrypt Šifrovat - + Failed to create file vault: %1 Nepodařilo se vytvořit trezor na soubory: %1 - + OK OK @@ -6069,7 +6072,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Nastavit heslo k trezoru @@ -6095,7 +6098,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols alespoň 8 znaků, obsahující A-Z, a-z, 0-9 a symboly @@ -6130,8 +6133,8 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.Další - - + + Passwords do not match Zadání hesla se neshodují @@ -6139,7 +6142,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultActiveStartView - + File Vault Trezor pro soubory @@ -6189,7 +6192,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.dfmplugin_vault::VaultHelper - + Vault Trezor @@ -6199,7 +6202,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.Trezor není k dispozici, protože cryfs není nainstalován! - + A task is in progress, so it cannot perform your operation Úloha probíhá, takže nelze provést vaši operaci. @@ -6207,99 +6210,122 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultPropertyDialog - + My Vault Můj trezor - dfmplugin_vault::VaultRemoveByPasswordView - - - Password - Heslo - + dfmplugin_vault::VaultRemoveByNoneWidget - - Password hint: %1 - Nápověda pro heslo: %1 + + Cancel + Zrušit - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Zadejte obnovovací klíč (32 číslic) + + Delete + Smazat - - - dfmplugin_vault::VaultRemovePages - + Delete File Vault Smazat trezor na soubory - + + Failed to delete file vault + Nepodařilo se smazat trezor na soubory + + + + OK + OK + + + Once deleted, the files in it will be permanently deleted Po jeho smazání budou soubory v něm natrvalo smazány + + + dfmplugin_vault::VaultRemoveByPasswordView - - Cancel - button - Zrušit + + Once deleted, the files in it will be permanently deleted + Po jeho smazání budou soubory v něm natrvalo smazány - - Use Key - button - Použít klíč + + Password + Heslo + + + + Password hint: %1 + Nápověda pro heslo: %1 + + + + Cancel + Zrušit - + Delete - button Smazat - - Removing... - Odebírání… + + Delete File Vault + Smazat trezor na soubory + + + + Wrong password + Nesprávné heslo + + + + Failed to delete file vault + Nepodařilo se smazat trezor na soubory - - + OK - button OK + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Nesprávné heslo + + Input the 32-digit recovery key + Zadejte obnovovací klíč (32 číslic) + + + + dfmplugin_vault::VaultRemoveProgressView + + + Removing... + Odebírá se… - - Wrong recovery key - Nesprávný obnovovací klíč + + OK + OK - - Failed to delete file vault - Nepodařilo se smazat trezor na soubory + + Delete File Vault + Smazat trezor na soubory - + Deleted successfully Úspěšně smazáno - - - Failed to delete - Nepodařilo se smazat - dfmplugin_vault::VaultVisibleManager @@ -6309,16 +6335,10 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.Můj trezor - + File Vault Trezor pro soubory - - - - Vault - Trezor - dfmplugin_workspace::FileOperatorHelper @@ -6331,22 +6351,22 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_workspace::FileViewModel - + Name Název - + Time modified Změněno - + Size Velikost - + Type Typ @@ -6362,7 +6382,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 nejsou dovolené @@ -6378,45 +6398,50 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Seřadit podle - + Display as Zobrazit jako - + Name Název - + Time modified Změněno - + Size Velikost - + Type Typ - + Icon Ikony - + List Seznam + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. filedialog_core::FileDialog - + Save button Uložit @@ -6438,13 +6463,13 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. filedialog_core::FileDialogStatusBar - + Save button Uložit - + Open button Otevřít @@ -6482,112 +6507,112 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. plugin_filepreview::DDciIconPreview - + Available sizes: Dostupné velikosti: - + Custom Size Vlastní velikost - + Device Pixel Ratio: Poměr pixelů zařízení: - + Theme: Motiv: - + Light Světlý - + Dark Tmavý - + Mode: Režim: - + Normal Běžný - + Disabled Vypnuto - + Hovered Zvednuté - + Pressed Stlačené - + Palette Paleta - + Current mode icon does not support the palette Aktuální ikona režimu nepodporuje paletu - + Foreground: V popředí: - + Background: V pozadí: - + Highlight: Zvýraznění: - + HighlightForeground: Zvýraznění v popředí: - + Background Color: Barva pozadí: - + White Bílá - + Black Černá - + Transparent Préhledná - + Custom Vlastní @@ -6619,22 +6644,22 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. plugin_filepreview::MusicMessageView - + Artist: Umělec: - + Album: Album: - + unknown artist Neznámý umělec - + unknown album Neznámé album diff --git a/translations/dde-file-manager_da.ts b/translations/dde-file-manager_da.ts index aa949e6f6c..8393794012 100644 --- a/translations/dde-file-manager_da.ts +++ b/translations/dde-file-manager_da.ts @@ -15,99 +15,104 @@ Application - + File Manager Filhåndtering - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Filhåndtering er et kraftfuldt filhåndteringsværktøj som er let at bruge, med søgning, kopiering, papirkurv, komprimering/udpakning, filegenskab og andre nyttige funktioner. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Skrivebord - DeepinStorage + DeviceList - - - %1 Volume - %1-diskområde + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Skrivebord + + Disk + Disk - - - DiskControlWidget - - Disks - Diske + + Open + Åbn - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - Disken er i brug. Kan ikke afmontere nu + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Åbn + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Ukendt @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Systemdisk - + Data Disk Datadisk - + Blank %1 Disc Slet %1-disk - - - + + + Unknown Ukendt - + %1 Drive %1-drev - + %1 Encrypted %1-krypteret - + + %1 Volume %1-diskområde - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Hjem @@ -223,7 +228,6 @@ - Desktop Skrivebord @@ -233,7 +237,6 @@ - Videos Videoer @@ -243,7 +246,6 @@ - Music Musik @@ -253,7 +255,6 @@ - Pictures Billeder @@ -263,7 +264,6 @@ - Documents Dokumenter @@ -273,7 +273,6 @@ - Downloads Downloads @@ -282,7 +281,6 @@ - Trash Papirkurv @@ -293,12 +291,11 @@ - Recent Seneste - + @@ -306,7 +303,7 @@ Montér automatisk - + @@ -319,47 +316,46 @@ %1 igangværende opgaver - + %1 item %1 element - + %1 items %1 elementer - + Unable to find the original file - - + + File has been moved or deleted Filen er blevet flyttet eller slettet - - - + + You do not have permission to access this folder Du kan ikke de nødvendige tilladelser til at tilgå denne mappe - - + + You do not have permission to traverse files in it - - + + Folder is empty Mappen er tom - + Loading... Indlæser... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN Computere på LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Mærkat @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Genvej - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Adgang nægtet - Confirm button Bekræft - - - The device has been safely removed - - - - + + - - - + + + Open in new window Åbn i nyt vindue @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Åbn i nyt faneblad @@ -968,8 +953,8 @@ - - + + Properties Egenskaber @@ -1005,7 +990,7 @@ Ny fil - + Create symlink Opret symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? Er du sikker på, at du vil rydde al data på disken? - + Erase button Ryd - + This action cannot be undone Handlingen kan ikke fortrydes - + How do you want to use this disc? Hvordan vil du bruge disken? - + Burn image button Brænd aftryk - + Burn files button Brænd filer - + %1 is a duplicate file. %1 er en duplikeret fil. - + Insufficient disc space. Utilstrækkelig diskplads. - + Lost connection to drive. Mistede forbindelsen til drevet. - + The CD/DVD drive is not ready. Try another disc. CD/DVD-drevet er ikke klart. Prøv en anden disk. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD-/DVD-drevet er optaget. Afslut programmet som bruger drevet og indsæt drevet igen. - + Invalid volume name - + Unknown error Ukendt fejl @@ -1194,42 +1179,42 @@ Elementer: %1 - + Orange Orange - + Red Rød - + Purple Lilla - + Navy-blue Marineblå - + Azure Azur - + Green Grøn - + Yellow Gul - + Gray Grå @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Lokal disk - + Removable disk Flytbar disk - + DVD DVD - + Network shared directory Netværksdelingsmappe - - + + Android mobile device Android-mobilenhed - + Apple mobile device Apple-mobilenhed - + Unknown device Ukendt enhed - + Remove button Fjern - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Ryd seneste historik - - - + + + Source path Kildesti @@ -1419,12 +1404,12 @@ - + Empty Trash Tøm papirkurv - + Location Placering @@ -1524,7 +1509,7 @@ Søger... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Type - + Time accessed Adgangstidspunkt - + Time modified Ændringstidspunkt - + Time created Oprettelsestidspunkt - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Ikonstørrelse @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 element valgt @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Handling fejlede! @@ -2554,191 +2529,191 @@ Målmappe er inde i kildemappe! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Annuller - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Vil du køre %1 eller vise dens indhold? - + It is an executable text file. Det er en eksekverbar tekstfil. - - - + + + Run button Kør - - + + Run in terminal button Kør i terminal - + Display button Visning - + Do you want to run %1? Vil du køre %1? - + It is an executable file. Det er en eksekverbar fil. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Slet %1 elementer permanent? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Slet - + Permanently delete %1? Slet %1 permanent? - - + + This action cannot be undone Handlingen kan ikke fortrydes - + Are you sure you want to empty %1 item? Er du sikker på, at du vil tømme %1 element? - + Are you sure you want to empty %1 items? Er du sikker på, at du vil tømme %1 elementer? - + Empty Tøm - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Kunne ikke gendanne %1 fil, målmappen er skrivebeskyttet - + Failed to restore %1 files, the target folder is read-only Kunne ikke gendanne %1 filer, målmappen er skrivebeskyttet - + "%1" already exists, please use another name. "%1" findes allerede. Vælg venligst et andet navn. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Annuller - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 som denne genvej referer til er blevet ændret eller flyttet - + Do you want to delete this shortcut? Vil du slette denne genvej? - + This file is not executable, do you want to add the execute permission and run? Filen er ikke eksekverbar, vil du tilføje eksekverbar-tilladelsen og køre? - + The selected files contain system file/directory, and it cannot be deleted De valgte filer indeholder systemfil/-mappe og kan ikke slettes @@ -2866,278 +2841,276 @@ Indtast adgangskode for at dekryptere disken + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Andre - + Close Luk - + Close current tab Luk nuværende faneblad - + Back Tilbage - + Forward Fremad - + Switch to next tab Skift til næste faneblad - + Switch to previous tab Skift til forrige faneblad - + Next file Næste fil - + Previous file Forrige fil - + Switch tab by specified number between 1 to 8 Skifte faneblad med angivet nummer mellem 1 og 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Ændringstidspunkt: %1 - + Original folder Original mappe - + Contains: %1 Indeholder: %1 - + Original file Original fil - + Size: %1 Størrelse: %1 - + Target folder Målmappe - + + In data statistics ... - + Target file Målfil @@ -3466,37 +3445,37 @@ - + Keep both button Behold begge - + Skip button Spring over - - + + Replace button Erstat - + Do not ask again Spørg ikke igen - + Retry button Prøv igen - + Merge button Sammenføj @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Annuller - + Remove button Fjern @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mine mapper - + Disks Diske @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Enhedstype - + Total space Samlet plads - + File system Filsystem - + Contains Indeholder - + Free space Ledig plads - + %1 items %1 elementer - + %1 item %1 element @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Størrelse - + Dimension Dimension - + Duration Varighed - + Type Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Indsæt + &Paste + - Cut - Klip + Cu&t + - Copy - Kopiér + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Åbn + &Open + - Rename - Omdøb + Rena&me + - Delete - Slet + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Åbn i terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Send til - + + Bluetooth + + + + Create link Opret link - + Send to desktop Send til skrivebord @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Åbn + + &Open + - + Open in new window Åbn i nyt vindue - + Open in new tab Åbn i nyt faneblad - + Cancel sharing Annuller deling - - Properties - Egenskaber + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Mine shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Størrelse - + Contains Indeholder - + Type Type - + Location Placering - + Time created Oprettelsestidspunkt - + Time accessed Adgangstidspunkt - + Time modified Ændringstidspunkt - + Hide this file Skjul filen - - + + %1 item %1 element - + %1 items %1 elementer @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Grundlæggende info - + Computer name - + Version Version - + Edition - + OS build - + Type Type - + Processor Processor - + Memory Hukommelse @@ -4890,6 +4873,14 @@ %1 fil(er), %2 mappe(r) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Egenskaber + P&roperties + dfmplugin_recent::Recent - - + Recent Seneste @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Sti - + Last access Sidste adgang - + Recent Seneste @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Søg: - + File Type: Filtype: - + File Size: Filstørrelse: - + Time Modified: Ændringstidspunkt: - + Time Accessed: - + Time Created: - + Reset Nulstil - + All subdirectories Alle undermapper - + Current directory Nuværende mappe - + Application Program - + Video Video - + Audio Lyd - + Image Billede - + Archive Arkiv - + Text Tekst - + Executable Eksekverbar - + Backup file Sikkerhedskopifil - + Today I dag - + Yesterday I går - + This week Denne uge - + Last week Sidste uge - + This month Denne måned - + Last month Sidste måned - + This year I år - + Last year Sidste år @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Søg + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Sti @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Åbn fil placering - + Select all Vælg alle - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Mærkat - - Bookmark - - - - + Other Andre - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Computere på LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Åbn + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Mærkat @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Åbn fil placering @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Opret forbindelse til server - - - + + + Clear History Ryd historik - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Annuller - + Connect button Opret forbindelse - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Kildesti - + Time deleted Sletningstidspunkt @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Gendan - + Restore all Gendan alle - + Empty trash - + Source path Kildesti - + Time deleted Sletningstidspunkt @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papirkurv @@ -5526,17 +5529,17 @@ Papirkurv - + item element - + items elementer - + Contains %1 %2 Indeholder %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Størrelse - + Contains Indeholder - + Type Type - + Location Placering - + Time created Oprettelsestidspunkt - + Time accessed Adgangstidspunkt - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Næste - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Filboks @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Adgangskode + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Adgangskode + + + + Password hint: %1 - + Cancel - button - Annuller + - - Use Key - button + + Delete - - Delete - button - Slet + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault Filboks - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortér efter - + Display as Vis som - + Name Navn - + Time modified Ændringstidspunkt - + Size Størrelse - + Type Type - + Icon Ikon - + List Liste + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Gem @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Gem - + Open button Åbn @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_de.ts b/translations/dde-file-manager_de.ts index 65198755cb..6afc636dd9 100644 --- a/translations/dde-file-manager_de.ts +++ b/translations/dde-file-manager_de.ts @@ -15,99 +15,104 @@ Application - + File Manager Dateimanager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Dateimanager ist ein leistungsstarkes und einfach zu bedienendes Dateiverwaltungswerkzeug, das mit Suchen, Kopieren, Papierkorb, Komprimieren/Dekomprimieren, Dateieigenschaften und anderen nützlichen Funktionen ausgestattet ist. - - DAttachedProtocolDevice - - - %1 on %2 - %1 auf %2 - - - - DeepinStorage - - - - %1 Volume - %1 Laufwerk - - DesktopMain - + Desktop Desktop - DiskControlWidget + DeviceList - + Disks Laufwerke - - - The device was not safely removed - Das Gerät wurde nicht sicher entfernt - - - - Click "Safely Remove" and then disconnect it next time - Klicke auf „Sicher entfernen“ und trenne die Verbindung dann beim nächsten Mal - - - - Disk is busy, cannot unmount now - Laufwerk wird verwendet, es kann jetzt nicht ausgehängt werden - - - - The device is busy, cannot eject now - Das Gerät ist beschäftigt, kann jetzt nicht ausgeworfen werden - DiskMountPlugin - + Disk Laufwerk - + Open Öffnen - + Eject all Alle auswerfen + + DockItemDataManager + + + The device has been safely removed + Das Gerät wurde sicher entfernt + + + + eject + auswerfen + + + + unmount + aushängen + + + + + remove + entfernen + + + + Operation failed + Operation fehlgeschlagen + + + + Device (%1) is busy, cannot %2 now. + + + FileDialogHandle - + All Files Alle Dateien + + FileOperateBaseWorker + + + The file name or the path is too long! + Der Dateiname oder der Pfad ist zu lang! + + MimeTypeDisplayManager - + Unknown Unbekannt @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Dies geschieht, wenn Sie sich das erste Mal an einem Computer anmelden. - + The identity sent by the remote computer is Die vom Remote-Computer gesendete Identität ist - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Wenn Sie absolut sicher sein wollen, dass es sicher ist, fortzufahren, wenden Sie sich an den Systemadministrator. - - - + + + System Disk Systemlaufwerk - + Data Disk Datenlaufwerk - + Blank %1 Disc Leere %1 Disc - - - + + + Unknown Unbekannt - + %1 Drive %1 Laufwerk - + %1 Encrypted %1 verschlüsselt - + + %1 Volume %1 Laufwerk - - + Scanning the device, stop it? - + Unmount failed Aushängen fehlgeschlagen - + Cannot stop scanning device - + + %1 on %2 %1 auf %2 @@ -213,7 +219,6 @@ - Home Home @@ -223,7 +228,6 @@ - Desktop Desktop @@ -233,7 +237,6 @@ - Videos Videos @@ -243,7 +246,6 @@ - Music Musik @@ -253,7 +255,6 @@ - Pictures Bilder @@ -263,7 +264,6 @@ - Documents Dokumente @@ -273,7 +273,6 @@ - Downloads Downloads @@ -282,7 +281,6 @@ - Trash Papierkorb @@ -293,12 +291,11 @@ - Recent Zuletzt - + @@ -306,12 +303,12 @@ Automatisches Einhängen - + Open after auto mount - Nach automatischem Einbinden öffnen + Nach automatischem Einhängen öffnen @@ -319,47 +316,46 @@ %1 Aufgaben in Bearbeitung - + %1 item %1 Element - + %1 items %1 Elemente - + Unable to find the original file Die Originaldatei kann nicht gefunden werden - - + + File has been moved or deleted Datei wurde verschoben oder gelöscht - - - + + You do not have permission to access this folder Sie haben keine Berechtigung, um auf diesen Ordner zuzugreifen - - + + You do not have permission to traverse files in it Sie haben nicht die Berechtigung zum Durchqueren der enthaltenen Dateien - - + + Folder is empty Ordner ist leer - + Loading... Wird geladen ... @@ -408,7 +404,7 @@ - + Built-in disks Eingebaute Laufwerke @@ -416,7 +412,6 @@ - Computer Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN Computer im LAN @@ -434,15 +428,16 @@ - + Loop partitions - + Loop-Partitionen - + + Mounted sharing folders Eingehängte Freigabeordner @@ -450,7 +445,6 @@ - My shares Meine Freigaben @@ -458,7 +452,7 @@ - + Network Netzwerk @@ -466,7 +460,7 @@ - + Mounted partitions and discs Eingehängte Partitionen und Datenträger @@ -474,7 +468,7 @@ - + Partitions Partitionen @@ -482,7 +476,7 @@ - + Quick access Schnellzugriff @@ -490,7 +484,7 @@ - + Tag Schlagwort @@ -498,7 +492,7 @@ - + Added tags Hinzugefügte Schlagwörter @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Eingehängte Samba-Freigaben weiterhin anzeigen @@ -557,7 +551,7 @@ Show crumb bar clickable area - + Anklickbaren Bereich der Krümelleiste anzeigen @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Stopp - + Shortcut Verknüpfung - + This system wallpaper is locked. Please contact your admin. Dieses Hintergrundbild des Systems ist gesperrt. Bitte kontaktieren Sie Ihren Administrator. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Kopie) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Kopie %1) @@ -909,33 +901,26 @@ Bit - Access denied Zugriff verweigert - Confirm button Bestätigen - - - The device has been safely removed - Das Gerät wurde sicher entfernt - - - + + - - - + + + Open in new window In neuem Fenster öffnen @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab In neuem Tab öffnen @@ -968,8 +953,8 @@ - - + + Properties Eigenschaften @@ -1005,7 +990,7 @@ Neue Datei - + Create symlink Symbolische Verknüpfung erstellen @@ -1092,70 +1077,70 @@ Zur Disc hinzufügen - + Are you sure you want to erase all data on the disc? Sind Sie sicher, dass Sie alle Daten auf der Disc löschen möchten? - + Erase button Löschen - + This action cannot be undone Diese Aktion kann nicht rückgängig gemacht werden - + How do you want to use this disc? Wie möchten Sie diese Disc verwenden? - + Burn image button Abbild brennen - + Burn files button Dateien brennen - + %1 is a duplicate file. %1 ist eine doppelte Datei. - + Insufficient disc space. Zu wenig Festplattenspeicher. - + Lost connection to drive. Verbindung zum Laufwerk verloren. - + The CD/DVD drive is not ready. Try another disc. Das CD/DVD-Laufwerk ist nicht bereit. Versuchen Sie eine andere CD. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Das CD/DVD-Laufwerk ist beschäftigt. Beenden Sie das Programm und schließen Sie das Laufwerk erneut an. - + Invalid volume name Ungültiger Volumenname - + Unknown error Unbekannter Fehler @@ -1194,42 +1179,42 @@ Elemente: %1 - + Orange Orange - + Red Rot - + Purple Lila - + Navy-blue Dunkelblau - + Azure Blau - + Green Grün - + Yellow Gelb - + Gray Grau @@ -1305,76 +1290,76 @@ - + User directory Benutzerverzeichnis - + Local disk Lokales Laufwerk - + Removable disk Wechseldatenträger - + DVD DVD - + Network shared directory Freigegebenes Netzwerkverzeichnis - - + + Android mobile device Android-Mobilgerät - + Apple mobile device Apple-Mobilgerät - + Unknown device Unbekanntes Gerät - + Remove button Entfernen - + Do you want to remove this item? Möchten Sie dieses Element entfernen? - + Do yout want to remove %1 items? Möchten Sie %1 Elemente entfernen? - + It does not delete the original files Die Originaldateien werden dabei nicht gelöscht. - + Clear recent history Kürzlichen Verlauf löschen - - - + + + Source path Quellpfad @@ -1419,12 +1404,12 @@ Elemente im Papierkorb können nicht geöffnet werden, bitte stellen Sie die Elemente zuerst wieder her - + Empty Trash Papierkorb leeren - + Location Speicherort @@ -1524,7 +1509,7 @@ Wird gesucht ... - + My Vault Mein Tresor @@ -1701,7 +1686,7 @@ Device disconnected - + Gerät getrennt @@ -1711,17 +1696,17 @@ Success - + Erfolg Failed - + Fehlgeschlagen - + Sidebar - + Seitenleiste @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + Nicht autorisiert + + + + + In trial period + In der Testphase + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized Nicht autorisiert - - + + In trial period In der Testphase @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Neue Sammlung @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Schreibtisch organisieren - + Desktop options Schreibtischoptionen - + Organize by Organisieren nach - + Custom collection Benutzerdefinierte Sammlung - + Type Typ - + Time accessed Zugriffszeit - + Time modified Änderungszeit - + Time created Erstellungszeit - + Create a collection Eine Sammlung erstellen - - - Display Size - Anzeigegröße - - - - Smaller - Kleiner - - - - Normal - Normal - - - - Larger - Größer - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Schreibtischoptionen - + Auto arrange icons Symbole automatisch anordnen @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Anzeigegröße - - - + Icon size Symbolgröße @@ -2323,7 +2298,7 @@ When login - Bei der Anmeldung + Beim Anmelden @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Der Dateimanager wird auf eine neue Version aktualisiert, bei der die laufenden Aufgaben beendet werden. Möchten Sie jetzt aktualisieren? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Die Schreibtischdienste werden auf eine neue Version aktualisiert, wobei die laufenden Aufgaben beendet werden. Möchten Sie jetzt aktualisieren? - + Update button Aktualisieren - + Cancel button Abbrechen @@ -2385,7 +2360,7 @@ - + %1 item selected %1 Element ausgewählt @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operation fehlgeschlagen! @@ -2554,191 +2529,191 @@ Zielordner befindet sich im Quellordner! - + The passphrase is needed to access encrypted data on %1. Die Passphrase wird für den Zugriff auf verschlüsselte Daten auf %1 benötigt. - - - - - - - - + + + + + + + + Cancel button Abbrechen - + Format button Formatieren - + To access the device, you must format the disk first. Are you sure you want to format it now? Um auf das Gerät zugreifen zu können, müssen Sie das Laufwerk zuerst formatieren. Sind Sie sicher, dass Sie es jetzt formatieren wollen? - + Do you want to run %1 or display its content? Möchten Sie %1 ausführen oder den Inhalt anzeigen? - + It is an executable text file. Es ist eine ausführbare Textdatei. - - - + + + Run button Ausführen - - + + Run in terminal button Im Terminal ausführen - + Display button Anzeige - + Do you want to run %1? Möchten Sie %1 ausführen? - + It is an executable file. Es ist eine ausführbare Datei. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 Elemente endgültig löschen? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Löschen - + Permanently delete %1? %1 endgültig löschen? - - + + This action cannot be undone Diese Aktion kann nicht rückgängig gemacht werden - + Are you sure you want to empty %1 item? Sind Sie sicher, dass Sie %1 Element löschen möchten? - + Are you sure you want to empty %1 items? Sind Sie sicher, dass Sie %1 Elemente löschen möchten? - + Empty Leeren - + Do you want to delete %1? Möchten Sie %1 löschen? - + Do you want to delete the selected %1 items? Möchten Sie die ausgewählten %1 Elemente löschen? - + Failed to restore %1 file, the target folder is read-only %1 Datei konnte nicht wiederhergestellt werden. Der Zielordner ist schreibgeschützt - + Failed to restore %1 files, the target folder is read-only %1 Dateien konnten nicht wiederhergestellt werden. Der Zielordner ist schreibgeschützt - + "%1" already exists, please use another name. "%1" existiert bereits, bitte verwenden Sie einen anderen Namen. - + Device or resource busy Gerät oder Ressource belegt - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Diese Datei wird versteckt, wenn der Dateiname mit '.' beginnt. Möchten Sie sie verstecken? - + Hide Ausblenden - + Cancel Abbrechen - + Unable to access %1 Zugriff auf %1 nicht möglich - + %1 that this shortcut refers to has been changed or moved %1 worauf sich diese Verknüpfung bezieht wurde verschoben oder entfernt. - + Do you want to delete this shortcut? Möchten Sie diese Verknüpfung löschen? - + This file is not executable, do you want to add the execute permission and run? Diese Datei ist nicht ausführbar, möchten Sie die entsprechenden Berechtigungen hinzufügen und die Datei dann ausführen? - + The selected files contain system file/directory, and it cannot be deleted Die ausgewählten Dateien enthalten Systemdateien/Ordner und können nicht gelöscht werden @@ -2866,280 +2841,278 @@ Passwort eingeben, um das Laufwerk zu entschlüsseln + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Datei öffnen: - + Click - + Klick - + Double click - + Doppelklick - + New window and tab - + Neues Fenster und Tab - + Open from default window: - + Vom Standardfenster aus öffnen: - - + + Computer - + Computer - - + + Home - - + + Desktop - - + + Videos - + Videos - - + + Music - + Musik - - + + Pictures - + Bilder - - + + Documents - + Dokumente - - + + Downloads - + Downloads - + Open in new tab: - + In neuem Tab öffnen - + Current Directory - + Aktuelles Verzeichnis - + Files and folders - + Dateien und Ordner - + Show hidden files - + Versteckte Dateien anzeigen - + Show file extensions - + Dateierweiterungen anzeigen - + Mix sorting of files and folders - + Gemischte Sortierung von Dateien und Ordnern - + Workspace - + Arbeitsfläche - + View - + Ansicht - + Default size: - + Standardgröße: - + Extra small - + Extra klein - + Small - + Klein - + Medium - + Mittel - + Large - + Groß - + Extra large - + Extra groß + + + + Tree + Baum - + Default view: - + Standardansicht: - + Icon - + Symbol - + List - + Liste + + + + Restore default view mode for all directories + Standard-Ansichtsmodus für alle Verzeichnisse wiederherstellen - + + Restore default view mode + Standard-Ansichtsmodus wiederherstellen + + + Thumbnail preview - + Miniaturansichtsvorschau - + Compressed file preview - + Vorschau der komprimierten Datei - + Text preview - + Textvorschau - + Document preview - + Dokumentvorschau - + Image preview - + Bildvorschau - + Video preview - + Videovorschau - + Music preview - + Musikvorschau - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - - - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - + Erweitert - + Mount - + Einhängen - + Auto mount - + Automatisch einhängen - + Open after auto mount - - - - - Show item counts and sizes in the path of mounted MTP devices - + Nach dem automatischen Einhängen öffnen - + Merge the entries of Samba shared folders - + Einträge von gemeinsamen Samba-Ordnern zusammenführen - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Dateiauswahldialog des Dateimanagers verwenden - + Ask for my confirmation when deleting files - + Beim Löschen von Dateien nach meiner Bestätigung fragen @@ -3301,51 +3274,56 @@ + Switch to tree view + Zur Baumansicht wechseln + + + Others Andere - + Close Schließen - + Close current tab Aktuellen Tab schließen - + Back Zurück - + Forward Weiterleiten - + Switch to next tab Zu nächstem Tab wechseln - + Switch to previous tab Zu vorherigem Tab wechseln - + Next file Nächste Datei - + Previous file Vorherige Datei - + Switch tab by specified number between 1 to 8 Tab unter Verwendung der Tasten 1 bis 8 wechseln @@ -3416,42 +3394,43 @@ - + Time modified: %1 Änderungszeit: %1 - + Original folder Ursprungsordner - + Contains: %1 Enthält: %1 - + Original file Ursprungsdatei - + Size: %1 Größe: %1 - + Target folder Zielordner - + + In data statistics ... - + In der Datenstatistik ... - + Target file Zieldatei @@ -3466,37 +3445,37 @@ Bitte warten - + Keep both button Beide behalten - + Skip button Überspringen - - + + Replace button Ersetzen - + Do not ask again Nicht erneut nachfragen - + Retry button Wiederholen - + Merge button Zusammenführen @@ -3510,7 +3489,7 @@ Geben Sie ein Passwort ein, um freigegebene Ordner zu schützen - + Set a password on the shared folder for non-anonymous access Legen Sie ein Passwort für den freigegebenen Ordner für nicht anonymen Zugriff fest @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Abbrechen - + Remove button Entfernen @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Computer - + Computer display items - + Hide built-in disks on the Computer page - + Eingebaute Laufwerke auf der Seite Computer ausblenden - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Dateisystem auf Laufwerkssymbol anzeigen - + Hide My Directories on the Computer page - + Meine Verzeichnisse auf der Seite Computer ausblenden - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password Falsches Passwort - + Rename failed Umbenennen fehlgeschlagen - + The device is busy and cannot be renamed now Das Gerät ist beschäftigt und kann jetzt nicht umbenannt werden - + Format failed Formatieren fehlgeschlagen - + The device is busy and cannot be formatted now Das Gerät ist beschäftigt und kann jetzt nicht formatiert werden - + Mount error Fehler beim Einhängen - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel Abbrechen - + Enable Now Jetzt aktivieren @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Meine Verzeichnisse - + Disks Laufwerke @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Gerätetyp - + Total space Gesamter Speicher - + File system Dateisystem - + Contains Enthält - + Free space Freier Speicher - + %1 items %1 Elemente - + %1 item %1 Element @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 auf %2 @@ -3990,27 +3968,27 @@ Größe - + Dimension Abmessungen - + Duration Dauer - + Type Typ - + Accessed Zugegriffen - + Modified Geändert @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Fehler beim Umbenennen einer Datei - + Failed to create the directory Fehler beim Erstellen des Verzeichnisses - + Failed to create the file Fehler beim Erstellen der Datei - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Einfügen + &Paste + &Einfügen - Cut - Ausschneiden + Cu&t + &Ausschneiden - Copy - Kopieren + &Copy + &Kopieren dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Öffnen + &Open + &Öffnen - Rename - Umbenennen + Rena&me + &Umbenennen - Delete - Löschen + &Delete + &Löschen @@ -4579,6 +4557,11 @@ Open in terminal Im Terminal öffnen + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Senden an - + + Bluetooth + Bluetooth + + + Create link Verknüpfung erstellen - + Send to desktop An Desktop senden @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Teilen - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Öffnen + + &Open + &Öffnen - + Open in new window In neuem Fenster öffnen - + Open in new tab In neuem Tab öffnen - + Cancel sharing Freigabe abbrechen - - Properties - Eigenschaften + + P&roperties + &Eigenschaften dfmplugin_myshares::MyShares - + My Shares Meine Freigaben @@ -4700,7 +4683,7 @@ Keine zu brennenden Dateien - + Unable to burn. Not enough free space on the target disk. Das Brennen ist nicht möglich. Nicht genügend freier Speicherplatz auf dem Zieldatenträger. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Größe - + Contains Enthält - + Type Typ - + Location Speicherort - + Time created Erstellungszeit - + Time accessed Zugriffszeit - + Time modified Änderungszeit - + Hide this file Diese Datei verstecken - - + + %1 item %1 Element - + %1 items %1 Elemente @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Für die Sicherheit von Geheimnissen - + For Government Für Regierung - + For Enterprise Für Unternehmen - + Bit Bit - + Available Verfügbar @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Grundlegende Informationen - + Computer name Computername - + Version Version - + Edition Edition - + OS build - + Type Typ - + Processor Prozessor - + Memory Arbeitsspeicher @@ -4891,6 +4874,14 @@ %1 Datei(en), %2 Ordner + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + %1 sind nicht erlaubt + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Eigenschaften + P&roperties + &Eigenschaften dfmplugin_recent::Recent - - + Recent Zuletzt @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Pfad - + Last access Letzter Zugriff - + Recent Zuletzt @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Suchen: - + File Type: Dateityp: - + File Size: Dateigröße: - + Time Modified: Änderungszeit: - + Time Accessed: Zugriffszeit: - + Time Created: Erstellungszeit: - + Reset Zurücksetzen - + All subdirectories Alle Unterverzeichnisse - + Current directory Aktuelles Verzeichnis - + Application Anwendung - + Video Video - + Audio Audio - + Image Bild - + Archive Archiv - + Text Text - + Executable Ausführbare Datei - + Backup file Sicherungsdatei - + Today Heute - + Yesterday Gestern - + This week Diese Woche - + Last week Letzte Woche - + This month Diesen Monat - + Last month Letzten Monat - + This year Dieses Jahr - + Last year Letztes Jahr @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Suchen + + + Auto index internal disk + Interne Festplatte automatisch indexieren + + + + Index external storage device after connected to computer + + + + + Full-Text search + Volltextsuche + dfmplugin_search::SearchHelper - + Path Pfad @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Dateiort öffnen - + Select all Alles auswählen - + Path Pfad @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Schnellzugriff - + Partitions Partitionen - + Network Netzwerk - + Tag Schlagwort - - Bookmark - Lesezeichen - - - + Other Andere - + Unknown Group Unbekannte Gruppe - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Computer im LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Öffnen + &Open + &Öffnen @@ -5191,8 +5184,8 @@ - Properties - Eigenschaften + P&roperties + &Eigenschaften @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Schlagwort @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Dateiort öffnen @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Mit Server verbinden - - - + + + Clear History Verlauf löschen - + Unfavorite Entfavorisieren - + + Error + Fehler + + + + Unable to favorite illegitimate url! + + + + Cancel button Abbrechen - + Connect button Verbinden - + Charset Encoding Zeichensatzkodierung - + Default - + Standard - + My Favorites Meine Favoriten - + No favorites yet Noch keine Favoriten - + Favorite Favorit @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Quellpfad - + Time deleted Löschzeit @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Wiederherstellen - + Restore all Alle wiederherstellen - + Empty trash Papierkorb leeren - + Source path Quellpfad - + Time deleted Löschzeit @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papierkorb @@ -5527,17 +5530,17 @@ Papierkorb - + item Element - + items Elemente - + Contains %1 %2 Enthält %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Größe - + Contains Enthält - + Type Typ - + Location Speicherort - + Time created Erstellungszeit - + Time accessed Zugriffszeit - + Time locked Sperrzeit @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Dateitresor verschlüsseln @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Verschlüsseln - + Failed to create file vault: %1 Fehler beim Erstellen des Dateitresors: %1 - + OK OK @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Tresor-Passwort festlegen @@ -6094,7 +6097,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 Zeichen, enthält A-Z, a-z, 0-9 und Symbole @@ -6129,8 +6132,8 @@ Weiter - - + + Passwords do not match Passwörter stimmen nicht überein @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Dateitresor @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault Tresor @@ -6198,7 +6201,7 @@ Tresor nicht verfügbar, weil cryfs nicht installiert ist! - + A task is in progress, so it cannot perform your operation Eine Aufgabe ist in Bearbeitung, sodass Ihre Operation nicht ausgeführt werden kann @@ -6206,99 +6209,122 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mein Tresor + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Abbrechen + + + + Delete + Löschen + + + + Delete File Vault + Dateitresor löschen + + + + Failed to delete file vault + + + + + OK + OK + + + + Once deleted, the files in it will be permanently deleted + + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + + + + Password Passwort - + Password hint: %1 Passworthinweis: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Geben Sie den 32-stelligen Wiederherstellungsschlüssel ein + + Cancel + Abbrechen + + + + Delete + Löschen - - - dfmplugin_vault::VaultRemovePages - + Delete File Vault Dateitresor löschen - - Once deleted, the files in it will be permanently deleted - Einmal gelöscht, werden die darin enthaltenen Dateien endgültig gelöscht + + Wrong password + Falsches Passwort - - Cancel - button - Abbrechen + + Failed to delete file vault + - - Use Key - button - Schlüssel verwenden + + OK + OK + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Löschen + + Input the 32-digit recovery key + Geben Sie den 32-stelligen Wiederherstellungsschlüssel ein + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... Wird entfernt ... - - + OK - button OK - - Wrong password - Falsches Passwort - - - - Wrong recovery key - Falscher Wiederherstellungsschlüssel - - - - Failed to delete file vault - Fehler beim Löschen des Dateitresors + + Delete File Vault + Dateitresor löschen - + Deleted successfully Erfolgreich gelöscht - - - Failed to delete - Fehler beim Löschen - dfmplugin_vault::VaultVisibleManager @@ -6308,16 +6334,10 @@ Mein Tresor - + File Vault Dateitresor - - - - Vault - Tresor - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name Name - + Time modified Änderungszeit - + Size Größe - + Type Typ @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 sind nicht erlaubt @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortieren nach - + Display as Anzeigen als - + Name Name - + Time modified Änderungszeit - + Size Größe - + Type Typ - + Icon Symbol - + List Liste + + + Tree + Baum + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Speichern @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Speichern - + Open button Öffnen @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Verfügbare Größen: - + Custom Size Benutzerdefinierte Größe - + Device Pixel Ratio: Geräte-Pixel-Verhältnis: - + Theme: Thema: - + Light Hell - + Dark Dunkel - + Mode: Modus - + Normal Normal - + Disabled Deaktiviert - + Hovered - + Schwebend - + Pressed Gedrückt - + Palette Palette - + Current mode icon does not support the palette Das Symbol für den aktuellen Modus unterstützt die Palette nicht - + Foreground: Vordergrund - + Background: Hintergrund - + Highlight: Hervorheben - + HighlightForeground: Vordergrund hervorheben: - + Background Color: Hintergrundfarbe: - + White Weiß - + Black Schwarz - + Transparent Transparent - + Custom Benutzerdefiniert @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: Interpret - + Album: Album: - + unknown artist unbekannter Interpret - + unknown album unbekanntes Album diff --git a/translations/dde-file-manager_el.ts b/translations/dde-file-manager_el.ts index f74f2285ed..f6104cfb74 100644 --- a/translations/dde-file-manager_el.ts +++ b/translations/dde-file-manager_el.ts @@ -15,99 +15,104 @@ Application - + File Manager Διαχειριστής αρχείων - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Επιφάνεια Εργασίας - DeepinStorage + DeviceList - - - %1 Volume - %1 Ένταση + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Επιφάνεια Εργασίας + + Disk + Δίσκος - - - DiskControlWidget - - Disks - Δίσκοι + + Open + Άνοιγμα - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - Ο δίσκος είναι απασχολημένος, δεν μπορεί να αποσυνδεθεί τώρα + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Δίσκος + + + remove + - - Open - Άνοιγμα + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Άγνωστο @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Δίσκος Συστήματος - + Data Disk Δίσκος Δεδομένων - + Blank %1 Disc - - - + + + Unknown Άγνωστο - + %1 Drive - + %1 Encrypted - + + %1 Volume %1 Ένταση - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Αρχική @@ -223,7 +228,6 @@ - Desktop Επιφάνεια Εργασίας @@ -233,7 +237,6 @@ - Videos Βίντεο @@ -243,7 +246,6 @@ - Music Μουσική @@ -253,7 +255,6 @@ - Pictures Εικόνες @@ -263,7 +264,6 @@ - Documents Έγγραφα @@ -273,7 +273,6 @@ - Downloads Λήψεις @@ -282,7 +281,6 @@ - Trash Κάδος @@ -293,12 +291,11 @@ - Recent Πρόσφατα - + @@ -306,7 +303,7 @@ Αυτόματη σύνδεση - + @@ -319,47 +316,46 @@ %1 εργασίες σε εξέλιξη - + %1 item %1 αντικείμενο - + %1 items %1 αντικείμενα - + Unable to find the original file - - + + File has been moved or deleted Το αρχείο έχει μετακινηθεί ή διεγράφη - - - + + You do not have permission to access this folder Δεν έχετε άδεια πρόσβασης σε αυτό το φάκελλο - - + + You do not have permission to traverse files in it - - + + Folder is empty Ο φάκελλος είναι άδειος - + Loading... Φόρτωση... @@ -408,7 +404,7 @@ - + Built-in disks Ενσωματωμένοι δίσκοι @@ -416,7 +412,6 @@ - Computer Υπολογιστής @@ -424,9 +419,8 @@ - - - + + Computers in LAN Υπολογιστές στο LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network Δίκτυο @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Συντόμευση - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Απαγορεύεται η πρόσβαση - Confirm button Επαλήθευση - - - The device has been safely removed - - - - + + - - - + + + Open in new window Άνοιγμα σε νέο παράθυρο @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Άνοιγμα σε νέα καρτέλα @@ -968,8 +953,8 @@ - - + + Properties Ιδιότητες @@ -1005,7 +990,7 @@ Νέο Αρχείο - + Create symlink Δημιουργία συμβολικού συνδέσμου @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Διαγραφή - + This action cannot be undone Αυτή η ενέργεια δεν μπορεί να αναιρεθεί - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Άγνωστο σφάλμα @@ -1194,42 +1179,42 @@ Αντικείμενα: %1 - + Orange Πορτοκαλί - + Red Κόκκινο - + Purple Μωβ - + Navy-blue Navy-blue - + Azure Azure - + Green Πράσινο - + Yellow Κίτρινο - + Gray Γκρι @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Τοπικός δίσκος - + Removable disk Αφαιρούμενος δίσκος - + DVD DVD - + Network shared directory Φάκελλος δικτυακά κοινοποιημένος - - + + Android mobile device Φορητή συσκευή Android - + Apple mobile device Φορητή συσκευή Apple - + Unknown device Άγνωστη συσκευή - + Remove button Αφαίρεση - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Εκκαθάριση πρόσφατου ιστορικού - - - + + + Source path Μονοπάτι πηγής @@ -1419,12 +1404,12 @@ - + Empty Trash Άδειασμα κάδου - + Location Τοποθεσία @@ -1524,7 +1509,7 @@ Αναζήτηση - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Τύπος - + Time accessed - + Time modified Χρόνος τροποποίησης - + Time created Χρόνος δημιουργίας - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Μέγεθος εικονιδίων @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 επιλεγμένο αντικείμενο @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Η λειτουργία απέτυχε! @@ -2554,191 +2529,191 @@ Ο φάκελος προορισμού είναι μέσα στον αρχικό φάκελο - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Άκυρο - + Format button Διαμόρφωση - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Θέλετε να εκτελέσετε το %1 ή να εμφανιστούν τα περιεχόμενά του; - + It is an executable text file. Είναι ένα εκτελέσιμο αρχείο κειμένου, - - - + + + Run button Εκτέλεση - - + + Run in terminal button Εκτέλεση στο terminal - + Display button Εμφάνιση - + Do you want to run %1? Θέλετε να εκτελέσετε το %1; - + It is an executable file. Είναι ένα εκτελέσιμο αρχείο. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Οριστική διαγραφή %1 αντικειμένων; - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Διαγραφή - + Permanently delete %1? Οριστική διαγραφή του %1; - - + + This action cannot be undone Αυτή η ενέργεια δεν μπορεί να αναιρεθεί - + Are you sure you want to empty %1 item? Είστε βέβαιος, ότι θέλετε να αδειάσετε %1 αντικείμενο; - + Are you sure you want to empty %1 items? Είστε βέβαιος, ότι θέλετε να αδειάσετε %1 αντικείμενα; - + Empty Άδειασμα - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. Το "%1" υπάρχει ήδη, παρακαλούμε χρησιμοποιήστε άλλο όνομα. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Άκυρο - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 το ότι αυτή η συντόμευση αναφέρεται στο ότι έχει αλλάξει ή μετακινηθεί - + Do you want to delete this shortcut? Θέλετε να διαγραφεί αυτή η συντόμευση; - + This file is not executable, do you want to add the execute permission and run? Αυτό το αρχείο δεν είναι εκτελέσιμο, θέλετε να προσθέσετε άδεια εκτέλεσης και να το τρέξετε; - + The selected files contain system file/directory, and it cannot be deleted Τα επιλεγμένα αρχεία, περιέχουν, αρχείο/φάκελο συστήματος και δεν μπορεί να διαγραφεί @@ -2866,278 +2841,276 @@ Εισαγωγή κωδικού ασφαλείας για αποκρυπτογράφηση δίσκου + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Άλλα - + Close Κλείσιμο - + Close current tab Κλείσιμο τρέχουσας καρτέλας - + Back Πίσω - + Forward Εμπρός - + Switch to next tab Αλλαγή στην επόμενη καρτέλα - + Switch to previous tab Αλλαγή στην προηγούμενη καρτέλα - + Next file Επόμενο αρχείο - + Previous file Προηγούμενο αρχείο - + Switch tab by specified number between 1 to 8 Αλλάξτε την καρτέλα με τον καθορισμένο αριθμό μεταξύ 1 και 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Αρχικός φάκελλος - + Contains: %1 - + Original file Αρχικό αρχείο - + Size: %1 Μέγεθος: %1 - + Target folder Φάκελλος προορισμού - + + In data statistics ... - + Target file Αρχείο προορισμού @@ -3466,37 +3445,37 @@ - + Keep both button Διατήρηση και των δύο - + Skip button Παράλειψη - - + + Replace button Αντικατάσταση - + Do not ask again Να μην ερωτηθείτε ξανά - + Retry button Επανάληψη - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Άκυρο - + Remove button Αφαίρεση @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Υπολογιστής - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Υπολογιστής - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Οι Φάκελοί μου - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Τύπος συσκευής - + Total space Συνολικός χώρος - + File system - + Contains Περιέχει - + Free space Ελεύθερος χώρος - + %1 items %1 αντικείμενα - + %1 item %1 αντικείμενο @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Μέγεθος - + Dimension - + Duration - + Type Τύπος - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Επικόλληση + &Paste + - Cut - Αποκοπή + Cu&t + - Copy - Αντιγραφή + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Άνοιγμα + &Open + - Rename - Μετονομασία + Rena&me + - Delete - Διαγραφή + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Άνοιγμα στο terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Αποστολή σε - + + Bluetooth + + + + Create link Δημιουργία συνδέσμου - + Send to desktop Αποστολή στην επιφάνεια εργασίας @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Άνοιγμα + + &Open + - + Open in new window Άνοιγμα σε νέο παράθυρο - + Open in new tab Άνοιγμα σε νέα καρτέλα - + Cancel sharing Ακύρωση κοινοποίησης - - Properties - Ιδιότητες + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Οι κοινοποιήσεις μου @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Μέγεθος - + Contains Περιέχει - + Type Τύπος - + Location Τοποθεσία - + Time created Χρόνος δημιουργίας - + Time accessed - + Time modified Χρόνος τροποποίησης - + Hide this file - - + + %1 item %1 αντικείμενο - + %1 items %1 αντικείμενα @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Υπολογιστής - + Basic Info Βασικές Πληροφορίες - + Computer name - + Version Έκδοση - + Edition - + OS build - + Type Τύπος - + Processor Επεξεργαστής - + Memory Μνήμη @@ -4890,6 +4873,14 @@ %1 αρχείο(α), %2 αρχείο(α) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Ιδιότητες + P&roperties + dfmplugin_recent::Recent - - + Recent Πρόσφατα @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Μονοπάτι - + Last access Τελευταία πρόσβαση - + Recent Πρόσφατα @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Εύρεση: - + File Type: Τύπος Αρχείου: - + File Size: Μέγεθος Αρχείου: - + Time Modified: Ώρα Μορφοποίησης: - + Time Accessed: - + Time Created: - + Reset Επαναφορά - + All subdirectories Όλοι οι υποφάκελλοι - + Current directory Τρέχων Φάκελος - + Application Εφαρμογές - + Video Βίντεο - + Audio Ήχοι - + Image Εικόνες - + Archive Αρχείο - + Text Κείμενο - + Executable Εκτελέσιμο - + Backup file Αρχείο εφεδρικού αντιγράφου ασφαλείας - + Today Σήμερα - + Yesterday Χτες - + This week Αυτήν τη εβδομάδα - + Last week Τελευταία εβδομάδα - + This month Αυτόν το μήνα - + Last month Τελευταίο μήνα - + This year Αυτό τον χρόνο - + Last year Τελευταίος χρόνος @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Εύρεση + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Μονοπάτι @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Άνοιγμα τοποθεσίας αρχείου - + Select all Επιλογή όλων - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other Άλλο - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Υπολογιστές στο LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Άνοιγμα + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Άνοιγμα τοποθεσίας αρχείου @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Άκυρο - + Connect button Σύνδεση - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Μονοπάτι πηγής - + Time deleted Ο χρόνος διαγράφηκε @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Ανάκτηση - + Restore all Ανάκτηση όλων - + Empty trash - + Source path Μονοπάτι πηγής - + Time deleted Ο χρόνος διαγράφηκε @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Κάδος @@ -5526,17 +5529,17 @@ Κάδος - + item αντικείμενο - + items αντικείμενα - + Contains %1 %2 Περιέχει:%1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Μέγεθος - + Contains Περιέχει - + Type Τύπος - + Location Τοποθεσία - + Time created Χρόνος δημιουργίας - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Κωδικός + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Κωδικός + + + + Password hint: %1 - + Cancel - button - Άκυρο + - - Use Key - button + + Delete - - Delete - button - Διαγραφή + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ταξινόμηση κατά - + Display as Εμφάνιση ως - + Name Όνομα - + Time modified Χρόνος τροποποίησης - + Size Μέγεθος - + Type Τύπος - + Icon Εικονίδιο - + List Λίστα + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Αποθήκευση @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Αποθήκευση - + Open button Άνοιγμα @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_en_AU.ts b/translations/dde-file-manager_en_AU.ts index 58ad3f5b7b..f5e7a623cd 100644 --- a/translations/dde-file-manager_en_AU.ts +++ b/translations/dde-file-manager_en_AU.ts @@ -15,99 +15,104 @@ Application - + File Manager File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - Desktop + + Disk + - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Computer @@ -425,9 +420,8 @@ - - - + + Computers in LAN @@ -435,7 +429,7 @@ - + Loop partitions @@ -443,7 +437,8 @@ - + + Mounted sharing folders @@ -451,7 +446,6 @@ - My shares @@ -459,7 +453,7 @@ - + Network @@ -467,7 +461,7 @@ - + Mounted partitions and discs @@ -475,7 +469,7 @@ - + Partitions @@ -483,7 +477,7 @@ - + Quick access @@ -491,7 +485,7 @@ - + Tag @@ -499,7 +493,7 @@ - + Added tags @@ -514,7 +508,7 @@ - + Keep showing the mounted Samba shares @@ -848,16 +842,15 @@ - - - + + - + Cancel button @@ -865,29 +858,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -910,33 +902,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -945,12 +930,12 @@ - - + + - - - + + + Open in new tab @@ -969,8 +954,8 @@ - - + + Properties Properties @@ -1006,7 +991,7 @@ - + Create symlink @@ -1093,70 +1078,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1195,42 +1180,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1306,76 +1291,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1420,12 +1405,12 @@ - + Empty Trash - + Location @@ -1525,7 +1510,7 @@ - + My Vault @@ -1720,7 +1705,7 @@ - + Sidebar @@ -1903,14 +1888,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1974,7 +1974,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1982,70 +1982,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2066,12 +2046,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2176,12 +2156,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Icon size @@ -2351,23 +2326,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2387,7 +2362,7 @@ - + %1 item selected @@ -2426,10 +2401,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2538,15 +2513,15 @@ - - + + OK button - + Operation failed! @@ -2556,191 +2531,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2868,278 +2843,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3303,51 +3276,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3418,42 +3396,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3468,37 +3447,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3512,7 +3491,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3538,18 +3517,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3807,39 +3786,38 @@ dfmplugin_computer::Computer - - + Computer Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3847,42 +3825,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3890,28 +3868,28 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3919,12 +3897,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3932,42 +3910,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3975,7 +3953,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3994,27 +3972,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4410,7 +4388,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4443,28 +4421,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4481,17 +4459,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4499,17 +4477,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4583,6 +4561,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4600,17 +4583,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4618,48 +4606,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - Properties + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4703,7 +4686,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4711,58 +4694,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4783,27 +4766,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4811,48 +4794,48 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4895,6 +4878,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4914,15 +4905,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Properties + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4930,17 +4920,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4971,127 +4961,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5099,15 +5089,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5115,17 +5121,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5133,54 +5139,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5195,7 +5188,7 @@ - Properties + P&roperties @@ -5230,7 +5223,7 @@ dfmplugin_tag::Tag - + Tag @@ -5238,7 +5231,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5288,56 +5281,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5477,12 +5480,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5490,27 +5493,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5518,7 +5521,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5531,17 +5534,17 @@ - + item - + items - + Contains %1 %2 @@ -5723,42 +5726,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5988,7 +5991,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6009,19 +6012,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6072,7 +6075,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6098,7 +6101,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6133,8 +6136,8 @@ - - + + Passwords do not match @@ -6142,7 +6145,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6192,7 +6195,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6202,7 +6205,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6210,97 +6213,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6312,16 +6338,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6334,22 +6354,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6365,7 +6385,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6381,45 +6401,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6432,7 +6457,7 @@ filedialog_core::FileDialog - + Save button @@ -6441,13 +6466,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6485,112 +6510,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6622,22 +6647,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_en_GB.ts b/translations/dde-file-manager_en_GB.ts index d9f88212b9..2ea6af32f7 100644 --- a/translations/dde-file-manager_en_GB.ts +++ b/translations/dde-file-manager_en_GB.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_eo.ts b/translations/dde-file-manager_eo.ts index 63459e7593..81bf36e747 100644 --- a/translations/dde-file-manager_eo.ts +++ b/translations/dde-file-manager_eo.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - + + Disk + Disko - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Disko + + + remove + - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Domo @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash Korbeto @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Nuligi - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Forigi - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Malpleni - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Nuligi - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Nuligi - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,18 +4473,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete - Forigi + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Nuligi - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Korbeto @@ -5526,17 +5529,17 @@ Korbeto - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button - Nuligi + + Password hint: %1 + - - Use Key - button + + Cancel - + Delete - button - Forigi + - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name Nomo - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_es.ts b/translations/dde-file-manager_es.ts index 8b80ef55c5..5918209584 100644 --- a/translations/dde-file-manager_es.ts +++ b/translations/dde-file-manager_es.ts @@ -15,99 +15,104 @@ Application - + File Manager Administrador de archivos - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Administrador de archivos de Deepin es una herramienta de gestión de archivos potente y fácil de usar, incluye funciones de búsqueda, copia, papelera, compresión, descompresión, mostrar propiedades y otras características muy útiles. - - DAttachedProtocolDevice - - - %1 on %2 - %1 en %2 - - - - DeepinStorage - - - - %1 Volume - Volumen %1 - - DesktopMain - + Desktop Escritorio - DiskControlWidget + DeviceList - + Disks Discos - - - The device was not safely removed - El dispositivo no fue retirado de forma segura - - - - Click "Safely Remove" and then disconnect it next time - Clic en «Extraer del equipo» y luego desconéctelo - - - - Disk is busy, cannot unmount now - El disco está en uso, no se puede desmontar ahora - - - - The device is busy, cannot eject now - El dispositivo, no se puede expulsar ahora - DiskMountPlugin - + Disk Disco - + Open Abrir - + Eject all Expulsar todo + + DockItemDataManager + + + The device has been safely removed + El dispositivo ha sido retirado de forma segura + + + + eject + Expulsar + + + + unmount + Desmontar + + + + + remove + Remover + + + + Operation failed + La operación fallo + + + + Device (%1) is busy, cannot %2 now. + El dispositivo (%1) está ocupado, no puede %2 ahora. + + FileDialogHandle - + All Files Todos los archivos + + FileOperateBaseWorker + + + The file name or the path is too long! + ¡El nombre del archivo o la ruta son demasiado largos! + + MimeTypeDisplayManager - + Unknown Desconocido @@ -123,88 +128,89 @@ QObject - + need authorization to access Necesita autorización para acceder - + Can't verify the identity of %1. No se puede verificar la identidad de %1. - + This happens when you log in to a computer the first time. Esto sucede cuando inicia sesión en un equipo por primera vez. - + The identity sent by the remote computer is La identidad enviada por el equipo remoto es - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Si quiere verificar que es seguro continuar, comuníquese con el administrador del sistema. - - - + + + System Disk Disco del sistema - + Data Disk Disco de datos - + Blank %1 Disc Disco %1 en blanco - - - + + + Unknown Desconocido - + %1 Drive %1 unidad - + %1 Encrypted %1 Cifrado - + + %1 Volume Volumen %1 - - + Scanning the device, stop it? Disco bajo escaneo, ¿desea detenerlo? - + Unmount failed Error al desmontar - + Cannot stop scanning device No se puede detener el dispositivo de escaneo - + + %1 on %2 %1 en %2 @@ -213,7 +219,6 @@ - Home Carpeta personal @@ -223,7 +228,6 @@ - Desktop Escritorio @@ -233,7 +237,6 @@ - Videos Vídeos @@ -243,7 +246,6 @@ - Music Música @@ -253,7 +255,6 @@ - Pictures Imágenes @@ -263,7 +264,6 @@ - Documents Documentos @@ -273,7 +273,6 @@ - Downloads Descargas @@ -282,7 +281,6 @@ - Trash Papelera @@ -293,12 +291,11 @@ - Recent Reciente - + @@ -306,7 +303,7 @@ Montar unidades automáticamente - + @@ -319,47 +316,46 @@ %1 tareas en progreso - + %1 item %1 elemento - + %1 items %1 elementos - + Unable to find the original file No se puede encontrar el archivo original - - + + File has been moved or deleted El archivo ha sido movido o borrado - - - + + You do not have permission to access this folder No tienes permiso para acceder a esta carpeta - - + + You do not have permission to traverse files in it No tiene permiso para recorrer los archivos en él - - + + Folder is empty La carpeta está vacía - + Loading... Cargando... @@ -408,7 +404,7 @@ - + Built-in disks Discos integrados @@ -416,7 +412,6 @@ - Computer Equipo @@ -424,9 +419,8 @@ - - - + + Computers in LAN Equipos en LAN @@ -434,7 +428,7 @@ - + Loop partitions Partición virtual @@ -442,7 +436,8 @@ - + + Mounted sharing folders Carpetas compartidas montadas @@ -450,7 +445,6 @@ - My shares Uso compartido @@ -458,7 +452,7 @@ - + Network Red @@ -466,7 +460,7 @@ - + Mounted partitions and discs Particiones y discos montados @@ -474,7 +468,7 @@ - + Partitions Particiones @@ -482,7 +476,7 @@ - + Quick access Acceso rápido @@ -490,7 +484,7 @@ - + Tag Etiqueta @@ -498,7 +492,7 @@ - + Added tags Etiquetas añadidas @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Seguir mostrando recursos compartidos Samba montados @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Detener - + Shortcut Enlace - + This system wallpaper is locked. Please contact your admin. Este fondo de pantalla del sistema está bloqueado. Póngase en contacto con su administrador - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Copiar) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Copiar %1) @@ -909,33 +901,26 @@ bits - Access denied Acceso denegado - Confirm button Confirmar - - - The device has been safely removed - El dispositivo ha sido retirado de forma segura - - - + + - - - + + + Open in new window Abrir en una ventana nueva @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Abrir en una nueva pestaña @@ -968,8 +953,8 @@ - - + + Properties Propiedades @@ -1005,7 +990,7 @@ Nuevo archivo - + Create symlink Crear enlace simbólico @@ -1092,70 +1077,70 @@ Añadir al disco - + Are you sure you want to erase all data on the disc? ¿Está seguro de que desea borrar todos los datos del disco? - + Erase button Borrar - + This action cannot be undone Esta acción no se puede deshacer - + How do you want to use this disc? ¿Cómo quiere usar este disco? - + Burn image button Grabar una imagen - + Burn files button Grabar archivos - + %1 is a duplicate file. %1 es un archivo duplicado. - + Insufficient disc space. Espacio en disco insuficiente. - + Lost connection to drive. Se perdió la conexión con la unidad. - + The CD/DVD drive is not ready. Try another disc. La unidad de CD / DVD no está lista. Probar con otro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. La unidad de CD / DVD está en uso. Cierre el programa que esta usando la unidad e inténtelo de nuevo. - + Invalid volume name Nombre de volumen inválido - + Unknown error Error desconocido @@ -1194,42 +1179,42 @@ Elementos: %1 - + Orange Naranja - + Red Rojo - + Purple Púrpura - + Navy-blue Azul - + Azure Cian - + Green Verde - + Yellow Amarillo - + Gray Gris @@ -1305,76 +1290,76 @@ No puede acceder - + User directory Carpeta de usuario - + Local disk Disco local - + Removable disk Disco extraíble - + DVD DVD - + Network shared directory Carpeta compartida de red - - + + Android mobile device Dispositivo móvil Android - + Apple mobile device Dispositivo móvil Apple - + Unknown device Dispositivo desconocido - + Remove button Quitar - + Do you want to remove this item? ¿Desea eliminar este elemento? - + Do yout want to remove %1 items? ¿Desea eliminar %1 elementos? - + It does not delete the original files No borrar archivos originales - + Clear recent history Borrar historial reciente - - - + + + Source path Ruta de origen @@ -1419,12 +1404,12 @@ No se pueden abrir elementos en la papelera, primero restáurelos - + Empty Trash Vaciar papelera - + Location Ubicación @@ -1524,7 +1509,7 @@ Buscando... - + My Vault Mi bóveda @@ -1701,27 +1686,27 @@ Device disconnected - + Dispositivo desconectado ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - + ID=%1, Fecha y hora=%2, Grabadora=%3, Tipo de disco=%4, Resultado=%5, Usuario=%6, Nombre de archivo=%7, Tamaño de archivo=%8, Tipo de archivo=%9 Success - + Exitoso Failed - + Fallido - + Sidebar - + Panel lateral @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + No autorizado + + + + + In trial period + En periodo de prueba + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized No autorizado - - + + In trial period En periodo de prueba @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nueva colección @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizar escritorio - + Desktop options Opciones de escritorio - + Organize by Organizar por - + Custom collection Colección personalizada - + Type Tipo - + Time accessed Fecha de acceso - + Time modified Fecha de modificación - + Time created Fecha de creación - + Create a collection Crear una colección - - - Display Size - Tamaño de pantalla - - - - Smaller - Pequeña - - - - Normal - Normal - - - - Larger - Grande - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opciones de escritorio - + Auto arrange icons Organizar iconos automáticamente @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Tamaño de pantalla - - - + Icon size Tamaño de icono @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? El Gestor de Archivos se actualizará a una nueva versión, durante la cual se finalizarán las tareas en curso. ¿Desea actualizar ahora? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Los servicios de escritorio se actualizarán a una nueva versión, durante la cual se finalizarán las tareas en curso. ¿Desea actualizar ahora? - + Update button Actualizar - + Cancel button Cancelar @@ -2385,7 +2360,7 @@ - + %1 item selected %1 elemento seleccionado @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Aceptar - + Operation failed! ¡La operación falló! @@ -2554,191 +2529,191 @@ ¡La carpeta de destino está dentro de la carpeta de origen! - + The passphrase is needed to access encrypted data on %1. La frase de contraseña es necesaria para acceder a los datos encriptados en %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formatear - + To access the device, you must format the disk first. Are you sure you want to format it now? Para acceder al dispositivo, primero debe formatear el disco. ¿Está seguro de que quiere formatearlo ahora? - + Do you want to run %1 or display its content? ¿Desea ejecutar %1 o mostrar su contenido? - + It is an executable text file. Es un archivo de texto ejecutable. - - - + + + Run button Ejecutar - - + + Run in terminal button Ejecutar en terminal - + Display button Mostrar - + Do you want to run %1? ¿Desea ejecutar %1? - + It is an executable file. Es un archivo ejecutable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? No se pueden mover los %1 elementos seleccionados a la papelera. ¿Quieres eliminarlos permanentemente? - + Permanently delete %1 items? ¿Borrar permanentemente %1 elementos? - + Cannot move "%1" to the trash. Do you want to permanently delete it? No se pueden mover los %1 elementos seleccionados a la papelera. ¿Quieres eliminarlos permanentemente? - - - + + + Delete button Borrar - + Permanently delete %1? ¿Borrar permanentemente %1? - - + + This action cannot be undone Esta acción no se puede deshacer - + Are you sure you want to empty %1 item? ¿Seguro desea vaciar %1 elemento de la papelera? - + Are you sure you want to empty %1 items? ¿Seguro desea vaciar %1 elementos de la papelera? - + Empty Vaciar - + Do you want to delete %1? ¿Desea borrar %1? - + Do you want to delete the selected %1 items? ¿Desea borrar los %1 elementos seleccionados? - + Failed to restore %1 file, the target folder is read-only No se pudo restaurar el archivo %1, la carpeta de destino es de solo lectura. - + Failed to restore %1 files, the target folder is read-only Fallo al restaurar %1 archivos, la carpeta de destino es de solo lectura - + "%1" already exists, please use another name. «%1» ya existe, por favor use otro nombre. - + Device or resource busy Dispositivo o recurso ocupado - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este archivo será ocultado si el nombre del archivo comienza con «.». ¿Quiere ocultarlo? - + Hide Ocultar - + Cancel Cancelar - + Unable to access %1 No se puede acceder a %1 - + %1 that this shortcut refers to has been changed or moved Este enlace hace referencia a «%1» pero no se pudo encontrar - + Do you want to delete this shortcut? ¿Quiere borrar este enlace? - + This file is not executable, do you want to add the execute permission and run? Este archivo no es ejecutable, ¿desea añadir el permiso de ejecución y ejecutar? - + The selected files contain system file/directory, and it cannot be deleted Los archivos seleccionados contienen archivos/carpetas del sistema, y no pueden ser borrados @@ -2866,280 +2841,278 @@ Introduzca la contraseña para descifrar el disco + + dfmbase::RightValueWidget + + + Copy complete info + Copiar toda la información + + dfmbase::SettingBackend - + Always open folder in new window - + Abrir siempre la carpeta en una nueva ventana - + Open file: - + Abrir archivo: - + Click - + Clic - + Double click - + Doble clic - + New window and tab - + Nueva ventana y pestaña - + Open from default window: - + Abrir en la ventana predeterminada: - - + + Computer - + Equipo - - + + Home - + Carpeta personal - - + + Desktop - + Escritorio - - + + Videos - + Vídeos - - + + Music - + Música - - + + Pictures - + Imágenes - - + + Documents - + Documentos - - + + Downloads - + Descargas - + Open in new tab: - + Abrir en una nueva pestaña: - + Current Directory - + Carpeta actual - + Files and folders - + Archivos y carpetas - + Show hidden files - + Mostrar archivos ocultos - + Show file extensions - + Mostrar extensión - + Mix sorting of files and folders - + Mezclar orden de archivos y carpetas - + Workspace - + Espacio de trabajo - + View - + Ver - + Default size: - + Tamaño por defecto: - + Extra small - + Muy pequeño - + Small - + Pequeño - + Medium - + Mediano - + Large - + Grande - + Extra large - + Muy grande - + + Tree + Árbol + + + Default view: - + Vista predeterminada: - + Icon - + Icono - + List - + Lista + + + + Restore default view mode for all directories + Restaurar el modo de vista predeterminado para todos los directorios + + + + Restore default view mode + Restaurar el modo de vista predeterminado - + Thumbnail preview - + Miniaturas - + Compressed file preview - + Previsualización de archivos comprimidos - + Text preview - + Previsualización del texto - + Document preview - + Previsualización del documento - + Image preview - + Previsualización de la imagen - + Video preview - + Previsualización del vídeo - + Music preview - + Previsualización de la música - + The remote environment shows thumbnail previews - + Mostrar miniaturas en el entorno remoto. - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Activar la vista previa de miniaturas puede hacer que el directorio remoto se cargue lentamente o que la operación se congele - + Advanced - - - - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - + Avanzado - + Mount - + Montar - + Auto mount - + Montar unidades automáticamente - + Open after auto mount - - - - - Show item counts and sizes in the path of mounted MTP devices - + Abrir después de montar automáticamente - + Merge the entries of Samba shared folders - + Combinar entradas de las carpetas compartidas Samba - + Switching the entry display may lead to failed mounting - + El cambio de la pantalla de entrada puede provocar un montaje fallido - + Use the file chooser dialog of File Manager - + Usar el diálogo del selector de archivos del administrador de archivos - + Ask for my confirmation when deleting files - + Solicitar mi confirmación al borrar archivos @@ -3301,51 +3274,56 @@ + Switch to tree view + Cambiar a vista de árbol + + + Others Otros - + Close Cerrar - + Close current tab Cerrar pestaña actual - + Back Volver - + Forward Adelante - + Switch to next tab Cambiar a siguiente pestaña - + Switch to previous tab Cambiar a pestaña anterior - + Next file Próximo archivo - + Previous file Archivo previo - + Switch tab by specified number between 1 to 8 Cambiar la pestaña por el número especificado entre 1 y 8 @@ -3416,47 +3394,43 @@ Crear archivo de destino %1 Error de información al mostrar conflicto ¡Función de información! - + Time modified: %1 Fecha de modificación: %1 - - In data statistics - En estadísticas de datos - - - + Original folder Carpeta original - + Contains: %1 Contiene: %1 - + Original file Archivo original - + Size: %1 Tamaño: %1 - + Target folder Carpeta de destino - + + In data statistics ... - + En estadísticas de datos - + Target file Archivo de destino @@ -3471,37 +3445,37 @@ Espere por favor - + Keep both button Mantener ambos - + Skip button Omitir - - + + Replace button Reemplazar - + Do not ask again No volver a preguntar - + Retry button Reintentar - + Merge button Combinar @@ -3515,7 +3489,7 @@ Introduzca una contraseña para proteger las carpetas compartidas - + Set a password on the shared folder for non-anonymous access Establecer una contraseña en la carpeta compartida para el acceso no anónimo @@ -3541,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? No se pudo localizar el directorio de acceso rápido, ¿eliminarlo? - + Cancel button Cancelar - + Remove button Quitar @@ -3810,81 +3784,80 @@ dfmplugin_computer::Computer - - + Computer Equipo - + Computer display items - + Mostrar elementos del equipo - + Hide built-in disks on the Computer page - + Ocultar discos integrados - + Hide loop partitions on the Computer page - + Ocultar particiones de bucle - + Show file system on disk icon - + Mostrar etiquetas del tipo de partición - + Hide My Directories on the Computer page - + Ocultar mis directorios - + Hide 3rd party entries on the Computer page - + Ocultar entradas de terceros dfmplugin_computer::ComputerController - + Unlock device failed Error al desbloquear dispositivo - + Wrong password Contraseña incorrecta - + Rename failed Error al renombrar - + The device is busy and cannot be renamed now El dispositivo está ocupado y no se puede renombrar ahora - + Format failed Error al formatear - + The device is busy and cannot be formatted now El dispositivo está ocupado y no se puede formatear ahora - + Mount error Error de montaje - + Cannot access %1 No puede acceder %1 @@ -3892,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Equipo - + %1 is read-only. Do you want to enable read and write permissions for it? %1 es de solo lectura. ¿Desea habilitar los permisos de lectura y escritura para él? - + Once enabled, read/write permission will be granted permanently Una vez habilitado, el permiso de lectura/escritura se otorgará de forma permanente - + Cancel Cancelar - + Enable Now Activar ahora @@ -3920,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mis carpetas - + Disks Discos @@ -3933,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Información básica - + Device type Tipo de dispositivo - + Total space Espacio total - + File system Sistema de archivos - + Contains Contiene - + Free space Espacio libre - + %1 items %1 elementos - + %1 item %1 elemento @@ -3976,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 en %2 @@ -3995,27 +3968,27 @@ Tamaño - + Dimension Dimensiones - + Duration Duración - + Type Tipo - + Accessed Accedido - + Modified Modificado @@ -4285,7 +4258,7 @@ Failed to move the file %1 to trash - + Error al mover el archivo %1 a la papelera @@ -4362,7 +4335,7 @@ Copy or Cut File failed! - + ¡Error al copiar o cortar el archivo! @@ -4392,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + Error al mover el archivo %1 a la papelera, causa: %2 @@ -4411,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Error al copiar o cortar el archivo, causa: %1 @@ -4444,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Error al renombrar el archivo - + Failed to create the directory Error al crear la capeta - + Failed to create the file Error al crear el archivo - + link file error Fallo el enlace del archivo - - + + Failed to modify file permissions - + Error al modificar los permisos del archivo @@ -4482,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Pegar + &Paste + &Pegar - Cut - Cortar + Cu&t + Co&tar - Copy - Copiar + &Copy + &Copiar dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Abrir + &Open + &Abrir - Rename - Renombrar + Rena&me + Reno&mbrar - Delete - Borrar + &Delete + &Borrar @@ -4584,6 +4557,11 @@ Open in terminal Abrir en la terminal + + + Reverse select + Selección inversa + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4601,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar a - + + Bluetooth + Bluetooth + + + Create link Crear enlace - + Send to desktop Enviar al escritorio @@ -4619,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Compartir - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Abrir + + &Open + &Abrir - + Open in new window Abrir en una ventana nueva - + Open in new tab Abrir en una nueva pestaña - + Cancel sharing Dejar de compartir - - Properties - Propiedades + + P&roperties + P&ropiedades dfmplugin_myshares::MyShares - + My Shares Uso compartido @@ -4705,7 +4683,7 @@ No hay archivos para grabar - + Unable to burn. Not enough free space on the target disk. No se puede grabar. No hay suficiente espacio libre en el disco de destino. @@ -4713,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Información básica - + Size Tamaño - + Contains Contiene - + Type Tipo - + Location Ubicación - + Time created Fecha de creación - + Time accessed Fecha de acceso - + Time modified Fecha de modificación - + Hide this file Ocultar - - + + %1 item %1 elemento - + %1 items %1 elementos @@ -4785,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Para la seguridad secreta - + For Government Para el gobierno - + For Enterprise Para empresas - + Bit bits - + Available Disponible @@ -4813,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Equipo - + Basic Info Información básica - + Computer name Nombre del equipo - + Version Versión - + Edition Edición - + OS build Compilación del OS - + Type Tipo - + Processor Procesador - + Memory Memoria @@ -4896,6 +4874,14 @@ %1 archivo(s), %2 carpeta(s) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + %1 no están permitidos + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4915,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propiedades + P&roperties + P&ropiedades dfmplugin_recent::Recent - - + Recent Reciente @@ -4931,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Ruta - + Last access Ultimo acceso - + Recent Reciente @@ -4972,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Buscar - + File Type: Tipo de archivo: - + File Size: Tamaño del archivo: - + Time Modified: Fecha de modificación: - + Time Accessed: Fecha de acceso: - + Time Created: Fecha de creación: - + Reset Reiniciar - + All subdirectories Subcarpetas - + Current directory Carpeta actual - + Application Aplicación - + Video Vídeo - + Audio Audio - + Image Imagen - + Archive Archivo - + Text Texto - + Executable Ejecutable - + Backup file Archivo de respaldo - + Today Hoy - + Yesterday Ayer - + This week Esta semana - + Last week La semana pasada - + This month Este mes - + Last month El mes pasado - + This year Este año - + Last year El año pasado @@ -5100,15 +5085,31 @@ dfmplugin_search::Search - + + Search Buscar + + + Auto index internal disk + Autoindexar disco interno + + + + Index external storage device after connected to computer + Indexar unidades externas después de conectar al equipo + + + + Full-Text search + Buscar texto completo + dfmplugin_search::SearchHelper - + Path Ruta @@ -5116,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir ubicación del archivo - + Select all Seleccionar todo - + Path Ruta @@ -5134,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Acceso rápido - + Partitions Particiones - + Network Red - + Tag Etiqueta - - Bookmark - Marcadores - - - + Other Otros - + Unknown Group Grupo desconocido - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Equipos en LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Abrir + &Open + &Abrir @@ -5196,8 +5184,8 @@ - Properties - Propiedades + P&roperties + P&ropiedades @@ -5231,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5239,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir ubicación del archivo @@ -5289,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Conectarse al servidor - - - + + + Clear History Borrar historial - + Unfavorite Quitar favorito - + + Error + Error + + + + Unable to favorite illegitimate url! + ¡No se puede marcar la URL invalida como favorita! + + + Cancel button Cancelar - + Connect button Conectar - + Charset Encoding Codificación de caracteres - + Default Por defecto - + My Favorites Mis favoritos: - + No favorites yet Aun no hay favoritos - + Favorite Agregar favorito @@ -5478,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Ruta de origen - + Time deleted Fecha de borrado @@ -5491,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar todo - + Empty trash Vaciar papelera - + Source path Ruta de origen - + Time deleted Fecha de borrado @@ -5519,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papelera @@ -5532,17 +5530,17 @@ Papelera - + item elemento - + items elementos - + Contains %1 %2 Contiene %1 %2 @@ -5724,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Información básica - + Size Tamaño - + Contains Contiene - + Type Tipo - + Location Ubicación - + Time created Fecha de creación - + Time accessed Fecha de acceso - + Time locked Fecha de bloqueo @@ -5990,7 +5988,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Cifrar la bóveda de archivos @@ -6011,19 +6009,19 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue - - - + + + Encrypt Cifrar - + Failed to create file vault: %1 Error al crear la bóveda de archivos: %1 - + OK Aceptar @@ -6074,7 +6072,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Establecer la contraseña de la bóveda @@ -6100,7 +6098,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols 8 o más caracteres, contener A-Z, a-z, 0-9, y símbolos @@ -6135,8 +6133,8 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue Siguiente - - + + Passwords do not match Las contraseñas no coinciden @@ -6144,7 +6142,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultActiveStartView - + File Vault Bóveda de archivos @@ -6194,7 +6192,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultHelper - + Vault Bóveda @@ -6204,7 +6202,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue ¡La bóveda no está disponible porque cryfs no está instalado! - + A task is in progress, so it cannot perform your operation Tarea en progreso, no se puede realizar su operación @@ -6212,99 +6210,122 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultPropertyDialog - + My Vault Mi bóveda + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Cancelar + + + + Delete + Borrar + + + + Delete File Vault + Borrar bóveda de archivos + + + + Failed to delete file vault + Error al borrar la bóveda de archivos + + + + OK + Aceptar + + + + Once deleted, the files in it will be permanently deleted + Una vez borrados, estos archivos no pueden ser recuperados + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + Una vez borrados, estos archivos no pueden ser recuperados + + + Password Contraseña - + Password hint: %1 Indicio de contraseña: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Introduzca la clave de recuperación de 32 dígitos + + Cancel + Cancelar - - - dfmplugin_vault::VaultRemovePages - + + Delete + Borrar + + + Delete File Vault Borrar bóveda de archivos - - Once deleted, the files in it will be permanently deleted - Una vez borrados, estos archivos no pueden ser recuperados + + Wrong password + Contraseña incorrecta - - Cancel - button - Cancelar + + Failed to delete file vault + Error al borrar la bóveda de archivos - - Use Key - button - Usar clave + + OK + Aceptar + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Borrar + + Input the 32-digit recovery key + Introduzca la clave de recuperación de 32 dígitos + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... Quitando... - - + OK - button Aceptar - - Wrong password - Contraseña incorrecta - - - - Wrong recovery key - Clave de recuperación incorrecta - - - - Failed to delete file vault - Error al borrar la bóveda de archivos + + Delete File Vault + Borrar bóveda de archivos - + Deleted successfully Borrado correctamente - - - Failed to delete - Error al borrar - dfmplugin_vault::VaultVisibleManager @@ -6314,16 +6335,10 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue Mi bóveda - + File Vault Bóveda de archivos - - - - Vault - Bóveda - dfmplugin_workspace::FileOperatorHelper @@ -6336,22 +6351,22 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_workspace::FileViewModel - + Name Nombre - + Time modified Fecha de modificación - + Size Tamaño - + Type Tipo @@ -6367,7 +6382,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 no están permitidos @@ -6383,45 +6398,50 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Mostrar como - + Name Nombre - + Time modified Fecha de modificación - + Size Tamaño - + Type Tipo - + Icon Icono - + List Lista + + + Tree + Árbol + dfmplugin_workspace::WorkspaceMenuScene @@ -6434,7 +6454,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue filedialog_core::FileDialog - + Save button Guardar @@ -6443,13 +6463,13 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue filedialog_core::FileDialogStatusBar - + Save button Guardar - + Open button Abrir @@ -6487,112 +6507,112 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue plugin_filepreview::DDciIconPreview - + Available sizes: Tamaños disponibles: - + Custom Size Tamaño personalizado - + Device Pixel Ratio: Proporción de píxeles del dispositivo: - + Theme: Tema: - + Light Claro - + Dark Oscuro - + Mode: Modo: - + Normal Normal - + Disabled Deshabilitado - + Hovered Al pasar por encima - + Pressed Al pulsar - + Palette Paleta - + Current mode icon does not support the palette El modo del icono actual no es compatible con la paleta - + Foreground: Primer plano: - + Background: Segundo plano: - + Highlight: Destacado: - + HighlightForeground: Destacar en primer plano: - + Background Color: Color de fondo: - + White Blanco - + Black Negro - + Transparent Transparente - + Custom Personalizado @@ -6624,24 +6644,24 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue plugin_filepreview::MusicMessageView - + Artist: Artista: - + Album: Álbum: - + unknown artist Artista desconocido - + unknown album Álbum desconocido - + \ No newline at end of file diff --git a/translations/dde-file-manager_et.ts b/translations/dde-file-manager_et.ts index 1b1bd79a2f..8e9968e496 100644 --- a/translations/dde-file-manager_et.ts +++ b/translations/dde-file-manager_et.ts @@ -15,99 +15,104 @@ Application - + File Manager Failihaldur - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Töölaud - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - Töölaud + + Disk + Ketas - - - DiskControlWidget - - Disks - Kettad + + Open + Ava - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Ketas + + + remove + - - Open - Ava + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Tundmatu @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Süsteemiketas - + Data Disk Andmeketas - + Blank %1 Disc - - - + + + Unknown Tundmatu - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Kodu @@ -223,7 +228,6 @@ - Desktop Töölaud @@ -233,7 +237,6 @@ - Videos Videod @@ -243,7 +246,6 @@ - Music Muusika @@ -253,7 +255,6 @@ - Pictures Pildid @@ -263,7 +264,6 @@ - Documents Dokumendid @@ -273,7 +273,6 @@ - Downloads Allalaadimised @@ -282,7 +281,6 @@ - Trash Prügikast @@ -293,12 +291,11 @@ - Recent Hiljutine - + @@ -306,7 +303,7 @@ Automaatne ühendamine - + @@ -319,47 +316,46 @@ %1 ülesannet on töös - + %1 item %1 kirje - + %1 items %1 kirjet - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty Kaust on tühi - + Loading... Laadimine... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Arvuti @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Silt @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Otsetee - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bitt - Access denied - Confirm button Kinnita - - - The device has been safely removed - - - - + + - - - + + + Open in new window Ava uues aknas @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Ava uues aknas @@ -968,8 +953,8 @@ - - + + Properties Omadused @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Kustuta - + This action cannot be undone Seda tegevust ei saa tühistada - + How do you want to use this disc? - + Burn image button Kirjuta pilt - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Tundmatu tõrge @@ -1194,42 +1179,42 @@ Kirjeid: %1 - + Orange Oraanž - + Red Punane - + Purple Violetne - + Navy-blue - + Azure Azure - + Green Roheline - + Yellow Kollane - + Gray Hall @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Kohalik ketas - + Removable disk Eemaldatav ketas - + DVD DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device Apple mobiilne seade - + Unknown device Tundmatu seade - + Remove button Eemalda - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash Tühjenda prügikast - + Location Asukoht @@ -1524,7 +1509,7 @@ Otsimine... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Liik - + Time accessed - + Time modified Muutmise aeg - + Time created Loomise kellaaeg - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Ikooni suurus @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 kirjet valitud @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Tegevus ebaõnnestus! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Loobu - + Format button Vorming - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button Käivita - - + + Run in terminal button Käivita terminalis - + Display button Vaade - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Kustuta - + Permanently delete %1? Kas kustutada jäädavalt %1? - - + + This action cannot be undone Seda tegevust ei saa tühistada - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Tühi - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Loobu - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? Kas sa soovid seda otseteed kustutada? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Muud - + Close Sulge - + Close current tab - + Back Tagasi - + Forward Edasi - + Switch to next tab - + Switch to previous tab - + Next file Järgmine fail - + Previous file Eelmine fail - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Algne kaust - + Contains: %1 Sisaldab: %1 - + Original file Algne fail - + Size: %1 Suurus: %1 - + Target folder Sihtkaust - + + In data statistics ... - + Target file Sihtfail @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button Jätka - - + + Replace button Asenda - + Do not ask again Ära küsi uuesti - + Retry button Proovi uuesti - + Merge button Liida @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Loobu - + Remove button Eemalda @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Arvuti - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Arvuti - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Minu kaustad - + Disks Kettad @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space Kogumaht - + File system Failisüsteem - + Contains Sisaldab - + Free space Vaba ruumi - + %1 items %1 kirjet - + %1 item %1 kirje @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Suurus - + Dimension Mõõdud - + Duration Kestus - + Type Liik - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Aseta + &Paste + - Cut - Lõika + Cu&t + - Copy - Kopeerimine + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Ava + &Open + - Rename - Nimeta ümber + Rena&me + - Delete - Kustuta + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Ava terminalis + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Saada - + + Bluetooth + + + + Create link Loo link - + Send to desktop Saada töölauale @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Ava + + &Open + - + Open in new window Ava uues aknas - + Open in new tab Ava uues aknas - + Cancel sharing Tühista jagamine - - Properties - Omadused + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Minu jagamised @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Suurus - + Contains Sisaldab - + Type Liik - + Location Asukoht - + Time created Loomise kellaaeg - + Time accessed - + Time modified Muutmise aeg - + Hide this file Peida see fail - - + + %1 item %1 kirje - + %1 items %1 kirjet @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bitt - + Available Saadaval @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Arvuti - + Basic Info Põhiinfo - + Computer name - + Version Versioon - + Edition - + OS build - + Type Liik - + Processor Protsessor - + Memory Mälu @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Omadused + P&roperties + dfmplugin_recent::Recent - - + Recent Hiljutine @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Asukoht - + Last access Viimane ligipääs - + Recent Hiljutine @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Otsi: - + File Type: Faili liik: - + File Size: Faili suurus: - + Time Modified: Muutmise aeg: - + Time Accessed: - + Time Created: - + Reset Taasta - + All subdirectories Kõik alamkaustad - + Current directory Praegune kaust - + Application Rakendus - + Video Video - + Audio Heli - + Image Pilt - + Archive Arhiiv - + Text Tekst - + Executable Käivitatav - + Backup file Varukoopia fail - + Today Täna - + Yesterday Eile - + This week See nädal - + Last week Viimane nädal - + This month See kuu - + Last month Eelmine kuu - + This year See aasta - + Last year Viimane aasta @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Otsi + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Asukoht @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Ava faili asukoht - + Select all Vali kõik - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Silt - - Bookmark - - - - + Other Muu - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Ava + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Silt @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Ava faili asukoht @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Loobu - + Connect button Ühenda - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted Kustutamise aeg @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Taasta - + Restore all Taasta kõik - + Empty trash - + Source path - + Time deleted Kustutamise aeg @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Prügikast @@ -5526,17 +5529,17 @@ Prügikast - + item kirje - + items kirjet - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Suurus - + Contains Sisaldab - + Type Liik - + Location Asukoht - + Time created Loomise kellaaeg - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Järgmine - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Parool + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Parool + + + + Password hint: %1 - + Cancel - button - Loobu + - - Use Key - button + + Delete - - Delete - button - Kustuta + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sorteeri - + Display as Näita kui - + Name Nimi - + Time modified Muutmise aeg - + Size Suurus - + Type Liik - + Icon Ikoon - + List Nimekiri + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Salvesta @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Salvesta - + Open button Ava @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_fa.ts b/translations/dde-file-manager_fa.ts index ce3f17379a..834fe22772 100644 --- a/translations/dde-file-manager_fa.ts +++ b/translations/dde-file-manager_fa.ts @@ -15,99 +15,104 @@ Application - + File Manager فایل منیجر - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. مدیر فایل یک برنامه قدرتمند برای مدیریت فایلها، با قابلیت جستجو، کپی کردن، دارای زباله دان، فشرده سازی و استخراج فایل، نمایش مشخصات فایلها و دیگر قابلیت‌های سودمند است. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + دسکتاپ - DeepinStorage + DeviceList - - - %1 Volume - %1 حجم + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - دسکتاپ + + Disk + دیسک - - - DiskControlWidget - - Disks - دیسک ها + + Open + باز کردن - - The device was not safely removed - دستگاه به شکل ایمن جدا نشد + + Eject all + خارج کردن همه + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - دفعه دیگر، روی «جدا کردن امن» کلیک کنید و سپس آن را جدا کنید. + + The device has been safely removed + - - Disk is busy, cannot unmount now - دیسک مشغول است ، اکنون نمی توانید آن را جدا کنید + + eject + - - The device is busy, cannot eject now - دستگاه مشغول است، امکان خارج کردن آن وجود ندارد + + unmount + - - - DiskMountPlugin - - Disk - دیسک + + + remove + - - Open - باز کردن + + Operation failed + - - Eject all - خارج کردن همه + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown ناشناخته @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk دیسک سیستم - + Data Disk دیسک داده - + Blank %1 Disc خالی %1 دیسک - - - + + + Unknown ناشناخته - + %1 Drive %1 درایو - + %1 Encrypted %1 رمزگذاری شده - + + %1 Volume %1 حجم - - + Scanning the device, stop it? در حال جستجوی دستگاه، متوقف شود؟ - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home خانه @@ -223,7 +228,6 @@ - Desktop دسکتاپ @@ -233,7 +237,6 @@ - Videos ویدئو ها @@ -243,7 +246,6 @@ - Music موسیقی @@ -253,7 +255,6 @@ - Pictures تصاویر @@ -263,7 +264,6 @@ - Documents اسناد @@ -273,7 +273,6 @@ - Downloads دانلودها @@ -282,7 +281,6 @@ - Trash زباله دان @@ -293,12 +291,11 @@ - Recent اخیر - + @@ -306,7 +303,7 @@ سوار کردن خودکار - + @@ -319,47 +316,46 @@ %1 کار در حال انجام است - + %1 item %1 مورد - + %1 items %1 مورد - + Unable to find the original file - - + + File has been moved or deleted فایل منتقل شده یا حذف شده است - - - + + You do not have permission to access this folder شما اجازه دسترسی به این پوشه را ندارید - - + + You do not have permission to traverse files in it - - + + Folder is empty پوشه خالی است - + Loading... در حال بارگذاری... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer رایانه @@ -424,9 +419,8 @@ - - - + + Computers in LAN رایانه های در LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag برچسب @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button توقف - + Shortcut میانبر - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ بیت - Access denied دسترسی رد شد - Confirm button تایید - - - The device has been safely removed - دستگاه به شکل ایمن جدا شد - - - + + - - - + + + Open in new window باز کردن درپنجره جدید @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab باز کردن در زبانه جدید @@ -968,8 +953,8 @@ - - + + Properties خصوصیات @@ -1005,7 +990,7 @@ - + Create symlink ایجاد symlink @@ -1092,70 +1077,70 @@ افزودن به دیسک - + Are you sure you want to erase all data on the disc? آیا مطمئن هستید که می خواهید تمام داده های موجود در دیسک را پاک کنید؟ - + Erase button پاک کردن - + This action cannot be undone این عملکرد قابل برگشت نیست - + How do you want to use this disc? چگونه می خواهید از این دیسک استفاده کنید؟ - + Burn image button رایت کردن ایمیج - + Burn files button رایت کردن فایل - + %1 is a duplicate file. %1 یک فایل تکراری است . - + Insufficient disc space. فضای دیسک کافی نیست. - + Lost connection to drive. اتصال به درایو از بین رفته است. - + The CD/DVD drive is not ready. Try another disc. درایو CD / DVD آماده نیست. دیسک دیگری را امتحان کنید. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. درایو CD / DVD مشغول است. از برنامه ایی که در حال استفاده از درایو است خارج شده و درایو را دو باره قرار دهید. - + Invalid volume name - + Unknown error خطای ناشناخته @@ -1194,42 +1179,42 @@ موارد:%1 - + Orange نارنجی - + Red قرمز - + Purple بنفش - + Navy-blue آبی-دریا - + Azure لاجوردی - + Green سبز - + Yellow زرد - + Gray خاکستری @@ -1305,76 +1290,76 @@ - + User directory - + Local disk دیسک محلی - + Removable disk دیسک قابل جابجایی - + DVD DVD - + Network shared directory دایرکتوری مشترک شبکه - - + + Android mobile device دستگاه تلفن همراه اندروید - + Apple mobile device دستگاه موبایل اپل - + Unknown device دستگاه ناشناخته - + Remove button برچیدن - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history پاک کردن تاریخ اخیر - - - + + + Source path مسیر منبع @@ -1419,12 +1404,12 @@ - + Empty Trash خالی کردن زباله دان - + Location مکان @@ -1524,7 +1509,7 @@ در حال جستجو... - + My Vault کیف من @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized مجاز نیست - - + + In trial period در بازه آزمایشی + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type نوع - + Time accessed زمان دسترسی - + Time modified زمان تغییر یافتن - + Time created زمان ایجاد شدن - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size اندازه آیکون @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 مورد انتخاب شده @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button باشه - + Operation failed! عملیاتی انجام نشد! @@ -2554,191 +2529,191 @@ پوشه هدف درون پوشه منبع قرار دارد! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button لغو - + Format button فرمت - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? آیا می خواهید %1 را اجرا کنید یا محتوای آن را نمایش دهید؟ - + It is an executable text file. این یک فایل متنی قابل اجرا است. - - - + + + Run button اجرا - - + + Run in terminal button اجرا در ترمینال - + Display button نمایش - + Do you want to run %1? آیا می خواهید %1 را اجرا کنید ؟ - + It is an executable file. این یک فایل قابل اجرا است. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? به صورت دائمی %1 را حذف می کنید؟ - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button حذف - + Permanently delete %1? به صورت دائمی %1 را حذف می کنید؟ - - + + This action cannot be undone این عملکرد قابل برگشت نیست - + Are you sure you want to empty %1 item? آیا مطمئن هستید که می خواهید %1 مورد را خالی کنید؟ - + Are you sure you want to empty %1 items? Are you sure you want to empty %1 items? - + Empty خالی - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only بازیابی %1 فایل انجام نشد ، پوشه هدف فقط خواندنی است - + Failed to restore %1 files, the target folder is read-only بازیابی %1 فایل انجام نشد ، پوشه هدف فقط خواندنی است - + "%1" already exists, please use another name. "%1" در حال حاضر وجود دارد ، لطفاً از نام دیگری استفاده کنید. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel لغو - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 که این میانبر به آن اشاره دارد تغییر یافته یا جابجا شده است - + Do you want to delete this shortcut? آیا می خواهید این میانبر را حذف کنید؟ - + This file is not executable, do you want to add the execute permission and run? این فایل قابل اجرا نیست ، آیا می خواهید مجوز اجرای را اضافه کنید و آن را اجرا کنید؟ - + The selected files contain system file/directory, and it cannot be deleted فایل های انتخاب شده حاوی فایل / فهرست سیستم هستند و نمی توان آن را حذف کرد @@ -2866,278 +2841,276 @@ برای رمزگشایی دیسک ، رمز ورود را وارد کنید + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others سایرین - + Close بستن - + Close current tab بستن زبانه جاری - + Back بازگشت - + Forward جلو - + Switch to next tab رفتن به زبانه بعدی - + Switch to previous tab رفتن به زبانه قبلی - + Next file فایل بعدی - + Previous file فایل قبلی - + Switch tab by specified number between 1 to 8 زبانه را با شماره مشخص شده بین 1 تا 8 تغییر دهید @@ -3416,42 +3394,43 @@ - + Time modified: %1 زمان ویرایش: %1 - + Original folder پوشه اصلی - + Contains: %1 شامل: %1 - + Original file فایل اصلی - + Size: %1 اندازه: %1 - + Target folder پوشه هدف - + + In data statistics ... - + Target file فایل هدف @@ -3466,37 +3445,37 @@ - + Keep both button هر دو را نگه دار - + Skip button پرش - - + + Replace button جایگزین - + Do not ask again دوباره نپرس - + Retry button دوباره امتحان کنید - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button لغو - + Remove button برچیدن @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer رایانه - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer رایانه - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories دایرکتوری های من - + Disks دیسک ها @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type نوع دستگاه - + Total space فضای کل - + File system فایل سیستم - + Contains شامل - + Free space فضای خالی - + %1 items %1 مورد - + %1 item %1 مورد @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ حجم - + Dimension ابعاد - + Duration مدت - + Type نوع - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - چسباندن + &Paste + - Cut - برش + Cu&t + - Copy - کپی + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - باز کردن + &Open + - Rename - تغییرنام + Rena&me + - Delete - حذف + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal باز کردن در ترمینال + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to ارسال به - + + Bluetooth + + + + Create link ایجاد لینک - + Send to desktop ارسال به دسکتاپ @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - باز کردن + + &Open + - + Open in new window باز کردن درپنجره جدید - + Open in new tab باز کردن در زبانه جدید - + Cancel sharing لغو اشتراک گذاری - - Properties - خصوصیات + + P&roperties + dfmplugin_myshares::MyShares - + My Shares اشتراک گذاری ها من @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. امکان رایت دیسک نیست. فضای کافی روی دیسک وجود ندارد. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size حجم - + Contains شامل - + Type نوع - + Location مکان - + Time created زمان ایجاد شدن - + Time accessed زمان دسترسی - + Time modified زمان تغییر یافتن - + Hide this file مخفی کردن این فایل - - + + %1 item %1 مورد - + %1 items %1 مورد @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit بیت - + Available در دسترس @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer رایانه - + Basic Info اطلاعات پایه - + Computer name - + Version نسخه - + Edition - + OS build - + Type نوع - + Processor پردازنده - + Memory حافظه @@ -4890,6 +4873,14 @@ %1 فایل ، %2 پوشه + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - خصوصیات + P&roperties + dfmplugin_recent::Recent - - + Recent اخیر @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path مسیر - + Last access آخرین دسترسی - + Recent اخیر @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: جستجو: - + File Type: نوع فایل: - + File Size: حجم فایل: - + Time Modified: زمان تغییر یافتن: - + Time Accessed: - + Time Created: - + Reset باز نشاندن - + All subdirectories کلیه زیرشاخه ها - + Current directory دایرکتوری کنونی - + Application برنامه - + Video ویدئو - + Audio صوت - + Image تصویر - + Archive بایگانی - + Text متن - + Executable قابل اجرا - + Backup file فایل پشتیبان - + Today امروز - + Yesterday دیروز - + This week این هفته - + Last week هفته گذشته - + This month این ماه - + Last month ماه گذشته - + This year امسال - + Last year سال گذشته @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search جستجو + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path مسیر @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location باز کردن مکان فایل - + Select all انتخاب همه - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag برچسب - - Bookmark - - - - + Other سایر - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - رایانه های در LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - باز کردن + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag برچسب @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location باز کردن مکان فایل @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server اتصال به سرور - - - + + + Clear History پاک کردن تاریخچه - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button لغو - + Connect button اتصال - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path مسیر منبع - + Time deleted زمان حذف شد @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore بازیابی - + Restore all بازگرداندن همه - + Empty trash - + Source path مسیر منبع - + Time deleted زمان حذف شد @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash زباله دان @@ -5526,17 +5529,17 @@ زباله دان - + item مورد - + items موارد - + Contains %1 %2 شامل %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size حجم - + Contains شامل - + Type نوع - + Location مکان - + Time created زمان ایجاد شدن - + Time accessed زمان دسترسی - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK باشه @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ بعدی - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault فایل والت @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault کیف من - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - کلمه عبور + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + کلمه عبور + + + + Password hint: %1 - + Cancel - button - لغو + - - Use Key - button + + Delete - - Delete - button - حذف + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - باشه + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - کلید بازیابی نادرست است + + Removing... + - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ کیف من - + File Vault فایل والت - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by مرتب سازی بر اساس - + Display as نمایش به عنوان - + Name اسم - + Time modified زمان تغییر یافتن - + Size حجم - + Type نوع - + Icon آیکون - + List لیست + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button ذخیره @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button ذخیره - + Open button باز کردن @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_fi.ts b/translations/dde-file-manager_fi.ts index 58f9085a95..1384957e68 100644 --- a/translations/dde-file-manager_fi.ts +++ b/translations/dde-file-manager_fi.ts @@ -15,99 +15,104 @@ Application - + File Manager Tiedostohallinta - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Tiedostohallinta on tehokas ja helppokäyttöinen tiedostojen hallintatyökalu, joka sisältää etsinnän, kopioinnin, roskakorin, pakkaamisen/purkamisen, tiedosto-ominaisuudet ja muut hyödylliset toiminnot. - - DAttachedProtocolDevice - - - %1 on %2 - %1 / %2 - - - - DeepinStorage - - - - %1 Volume - %1 Levy - - DesktopMain - + Desktop Työpöytä - DiskControlWidget + DeviceList - + Disks Levyt - - - The device was not safely removed - Laitetta ei poistettu turvallisesti - - - - Click "Safely Remove" and then disconnect it next time - Napsauta ensin "Poista turvallisesti" ja irrota se sitten - - - - Disk is busy, cannot unmount now - Levy on varattu, ei voi irrottaa - - - - The device is busy, cannot eject now - Laite on varattu, eikä sitä voi avata - DiskMountPlugin - + Disk Levy - + Open Avaa - + Eject all Irroita kaikki + + DockItemDataManager + + + The device has been safely removed + Laite on poistettu turvallisesti + + + + eject + poista + + + + unmount + irrota + + + + + remove + poista + + + + Operation failed + Toimenpide epäonnistui + + + + Device (%1) is busy, cannot %2 now. + Laite (%1) on varattu, %2 ei onnistu juuri nyt. + + FileDialogHandle - + All Files Kaikki tiedostot + + FileOperateBaseWorker + + + The file name or the path is too long! + Tiedostonimi tai polku on liian pitkä! + + MimeTypeDisplayManager - + Unknown Tuntematon @@ -123,88 +128,89 @@ QObject - + need authorization to access pääsyyn tarvitaan lupa - + Can't verify the identity of %1. Henkilöllisyyttä %1 ei voida vahvistaa. - + This happens when you log in to a computer the first time. Näin tapahtuu, kun kirjaudut tietokoneeseen ensimmäisen kerran. - + The identity sent by the remote computer is Etätietokoneen lähettämät tunnistetiedot ovat - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jos haluat olla täysin varma, että on turvallista jatkaa, ota yhteyttä järjestelmänvalvojaan. - - - + + + System Disk Järjestelmä - + Data Disk Kiintolevy - + Blank %1 Disc Tyhjä %1 levy - - - + + + Unknown Tuntematon - + %1 Drive %1 asema - + %1 Encrypted %1 salattu - + + %1 Volume %1 Levy - - + Scanning the device, stop it? Skannaa laitetta, pysäytä se? - + Unmount failed Irrotus epäonnistui - + Cannot stop scanning device Laitteen skannausta ei voi pysäyttää - + + %1 on %2 %1 / %2 @@ -213,7 +219,6 @@ - Home Koti @@ -223,7 +228,6 @@ - Desktop Työpöytä @@ -233,7 +237,6 @@ - Videos Videot @@ -243,7 +246,6 @@ - Music Musiikki @@ -253,7 +255,6 @@ - Pictures Kuvat @@ -263,7 +264,6 @@ - Documents Asiakirjat @@ -273,7 +273,6 @@ - Downloads Lataukset @@ -282,7 +281,6 @@ - Trash Roskakori @@ -293,12 +291,11 @@ - Recent Historia - + @@ -306,7 +303,7 @@ Liitä automaattisesti - + @@ -319,47 +316,46 @@ %1 käynnissä olevaa tehtävää - + %1 item %1 kohde - + %1 items %1 kohdetta - + Unable to find the original file Alkuperäistä tiedostoa ei löydy - - + + File has been moved or deleted Tiedosto on siirretty tai poistettu - - - + + You do not have permission to access this folder Sinulla ei ole oikeutta käyttää tätä kansiota - - + + You do not have permission to traverse files in it Sinulla ei ole käyttöoikeutta tiedostoihin - - + + Folder is empty Kansio on tyhjä - + Loading... Lataa... @@ -408,7 +404,7 @@ - + Built-in disks Kiinteät levyt @@ -416,7 +412,6 @@ - Computer Tietokone @@ -424,9 +419,8 @@ - - - + + Computers in LAN Lähiverkossa @@ -434,7 +428,7 @@ - + Loop partitions Silmukkaosiot @@ -442,7 +436,8 @@ - + + Mounted sharing folders Asetetut jakokansiot @@ -450,7 +445,6 @@ - My shares Jaetut kansiot @@ -458,7 +452,7 @@ - + Network Verkko @@ -466,7 +460,7 @@ - + Mounted partitions and discs Kiinnitetyt osiot ja levyt @@ -474,7 +468,7 @@ - + Partitions Osiot @@ -482,7 +476,7 @@ - + Quick access Nopea pääsy @@ -490,7 +484,7 @@ - + Tag Tunniste @@ -498,7 +492,7 @@ - + Added tags Lisätyt tunnisteet @@ -507,13 +501,13 @@ Vault - Tietovarasto + Holvi - + Keep showing the mounted Samba shares Näytä käyttöönotetut Samba-jaetut kansiot @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Seis - + Shortcut Pikakuvake - + This system wallpaper is locked. Please contact your admin. Järjestelmän taustakuva on lukittu. Ota yhteyttä järjestelmänvalvojaasi. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopio) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopio %1) @@ -909,33 +901,26 @@ Bitti - Access denied Pääsy evätty - Confirm button Vahvista - - - The device has been safely removed - Laite on poistettu turvallisesti - - - + + - - - + + + Open in new window Avaa uudessa ikkunassa @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Avaa uudessa välilehdessä @@ -968,8 +953,8 @@ - - + + Properties Ominaisuudet @@ -1005,7 +990,7 @@ Uusi tiedosto - + Create symlink Luo symlinkki @@ -1092,70 +1077,70 @@ Lisää levylle - + Are you sure you want to erase all data on the disc? Haluatko varmasti poistaa kaikki levyllä olevat tiedot? - + Erase button Tyhjennä - + This action cannot be undone Tätä toimintoa ei voi peruuttaa - + How do you want to use this disc? Miten haluat käyttää tätä levyä? - + Burn image button Kirjoita levykuva - + Burn files button Kirjoita tiedostot - + %1 is a duplicate file. %1 on tiedoston kaksoiskappale. - + Insufficient disc space. Levytila ei riitä. - + Lost connection to drive. Asemaan kadonnut yhteys. - + The CD/DVD drive is not ready. Try another disc. CD/DVD-asema ei ole valmis. Kokeile toista levyä. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD-asema on varattu. Poistu ohjelmasta aseman avulla ja kytke asema uudelleen. - + Invalid volume name Virheellinen taltion nimi - + Unknown error Tuntematon virhe @@ -1194,42 +1179,42 @@ Kohdetta: %1 - + Orange Oranssi - + Red Punainen - + Purple Violetti - + Navy-blue Sininen - + Azure Taivaansininen - + Green Vihreä - + Yellow Keltainen - + Gray Harmaa @@ -1305,76 +1290,76 @@ Ei oikeuksia - + User directory Käyttäjän hakemisto - + Local disk Paikallinen levy - + Removable disk Irroitettava levy - + DVD DVD - + Network shared directory Lähiverkon jaettu hakemisto - - + + Android mobile device Android mobiililaite - + Apple mobile device Apple mobiililaite - + Unknown device Tuntematon laite - + Remove button Poista - + Do you want to remove this item? Haluatko poistaa tämän kohteen? - + Do yout want to remove %1 items? Haluatko poistaa %1 kohdetta? - + It does not delete the original files Se ei poista alkuperäisiä tiedostoja - + Clear recent history Tyhjennä historia - - - + + + Source path Lähteen polku @@ -1419,12 +1404,12 @@ Roskakorin kohteita ei voi avata, palauta se ensin - + Empty Trash Tyhjennä roskakori - + Location Sijainti @@ -1524,14 +1509,14 @@ Etsitään... - + My Vault - Minun tietovarasto + Minun holvi Create Vault - Luo tietovarasto + Luo holvi @@ -1571,7 +1556,7 @@ Delete File Vault - Poista tietovarasto + Poista tiedostoholvi @@ -1701,27 +1686,27 @@ Device disconnected - + Laite irrotettu ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - + ID=%1, Päivämäärä=%2, Poltin=%3, Levytyyppi=%4, Tulos=%5, Käyttäjä=%6, Tiedosto=%7, Koko=%8, Tyyppi=%9 Success - + Onnistui Failed - + Epäonnistui - + Sidebar - + Sivupalkki @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + Ei hyväksytty + + + + + In trial period + Koeaika + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized Ei hyväksytty - - + + In trial period Koeaika @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Uusi kokoelma @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Järjestä työpöytä - + Desktop options Työpöydän asetukset - + Organize by Järjestä - + Custom collection Mukautettu kokoelma - + Type Tyyppi - + Time accessed Käytetty - + Time modified Muokattu - + Time created Luotu - + Create a collection Luo kokoelma - - - Display Size - Näytön koko - - - - Smaller - Pienempi - - - - Normal - Normaali - - - - Larger - Suurempi - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Työpöydän asetukset - + Auto arrange icons Järjestä kuvakkeet automaattisesti @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Näytön koko - - - + Icon size Kuvakkeen koko @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Tiedostonhallinta päivitetään uuteen versioon, jonka aikana käynnissä olevat tehtävät lopetetaan. Haluatko päivittää nyt? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Työpöydän palvelut päivitetään uuteen versioon, jonka aikana käynnissä olevat tehtävät lopetetaan. Haluatko päivittää nyt? - + Update button Päivitä - + Cancel button Peruuta @@ -2385,7 +2360,7 @@ - + %1 item selected %1 kohde valittuna @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Toimenpide epäonnistui! @@ -2554,191 +2529,191 @@ Kohdekansio on lähdekansion sisällä! - + The passphrase is needed to access encrypted data on %1. Salasanaa tarvitaan salattujen tietojen käyttämiseen kohteessa %1. - - - - - - - - + + + + + + + + Cancel button Peruuta - + Format button Alusta - + To access the device, you must format the disk first. Are you sure you want to format it now? Laitteen käyttämiseksi sinun on ensin alustettava levy. Haluatko varmasti alustaa sen nyt? - + Do you want to run %1 or display its content? Haluatko suorittaa %1 :n tai näyttää sen sisällön? - + It is an executable text file. On suoritettava tekstitiedosto. - - - + + + Run button Suorita - - + + Run in terminal button Suorita päätteessä - + Display button Näyttö - + Do you want to run %1? Haluatko suorittaa %1? - + It is an executable file. On suoritettava tiedosto. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Valittua %1 ei voi siirtää roskakoriin. Haluatko poistaa ne pysyvästi? - + Permanently delete %1 items? Poista kohteet %1 pysyvästi? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Valittua "%1" ei voi siirtää roskakoriin. Haluatko poistaa pysyvästi? - - - + + + Delete button Poista - + Permanently delete %1? Poista %1 pysyvästi? - - + + This action cannot be undone Tätä toimintoa ei voi peruuttaa - + Are you sure you want to empty %1 item? Haluatko varmasti tyhjentää %1 kohteen? - + Are you sure you want to empty %1 items? Haluatko varmasti tyhjentää %1 kohdetta? - + Empty Tyhjennä - + Do you want to delete %1? Haluatko poistaa kohteen %1? - + Do you want to delete the selected %1 items? Haluatko poistaa valitut %1 kohdetta? - + Failed to restore %1 file, the target folder is read-only Tiedoston %1 palauttaminen epäonnistui, kohdekansio on vain luku -tilassa - + Failed to restore %1 files, the target folder is read-only Tiedostojen %1 palauttaminen epäonnistui, kohdekansio on vain luku -tilassa - + "%1" already exists, please use another name. "%1" on jo olemassa, käytä toista nimeä. - + Device or resource busy Laite tai resurssi varattu - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Tämä tiedosto piilotetaan, jos tiedoston nimen alussa on '.'. Haluatko piilottaa sen? - + Hide Piilota - + Cancel Peruuta - + Unable to access %1 Ei oikeuksia %1 - + %1 that this shortcut refers to has been changed or moved %1 pikakuvakkeen kohde on muutettu tai siirretty - + Do you want to delete this shortcut? Haluatko poistaa tämän pikakuvakkeen? - + This file is not executable, do you want to add the execute permission and run? Tätä tiedostoa ei voi suorittaa, haluatko lisätä suoritusluvan ja suorittaa? - + The selected files contain system file/directory, and it cannot be deleted Valitut tiedostot sisältävät järjestelmätiedoston / hakemiston, ei voi poistaa @@ -2866,280 +2841,278 @@ Syötä salasana levyn salaamiseksi + + dfmbase::RightValueWidget + + + Copy complete info + Kopioi täydelliset tiedot + + dfmbase::SettingBackend - + Always open folder in new window - + Avaa kansio aina uudessa ikkunassa - + Open file: - + Avaa tiedosto: - + Click - + Paina - + Double click - + Paina kahdesti - + New window and tab - + Uusi ikkuna ja välilehti - + Open from default window: - + Avaa oletuksena ikkunassa: - - + + Computer - + Tietokone - - + + Home - + Koti - - + + Desktop - + Työpöytä - - + + Videos - + Video - - + + Music - + Musiikki - - + + Pictures - + Kuvat - - + + Documents - + Asiakirjat - - + + Downloads - + Lataukset - + Open in new tab: - + Avaa uudessa välilehdessä: - + Current Directory - + Nykyinen kansio - + Files and folders - + Tiedostot ja kansiot - + Show hidden files - + Näytä piilotiedostot - + Show file extensions - + Näytä tiedostopäätteet - + Mix sorting of files and folders - + Sekoita tiedostojen ja kansioiden lajittelu - + Workspace - + Työtila - + View - + Näytä - + Default size: - + Oletuskoko: - + Extra small - + Pienin - + Small - + Pieni - + Medium - + Keskikoko - + Large - + Suuri - + Extra large - + Suurin + + + + Tree + Puu - + Default view: - + Oletusnäkymä: - + Icon - + Kuvake - + List - + Lista + + + + Restore default view mode for all directories + Palauta oletusnäkymät kaikille hakemistoille - + + Restore default view mode + Palauta oletusnäkymä + + + Thumbnail preview - + Pikkukuvan esikatselu - + Compressed file preview - + Pakatun tiedoston esikatselu - + Text preview - + Tekstin esikatselu - + Document preview - + Asiakirjan esikatselu - + Image preview - + Kuvan esikatselu - + Video preview - + Videon esikatselu - + Music preview - + Musiikin esikuuntelu - + The remote environment shows thumbnail previews - + Lähiverkossa olevien pikkukuvien esikatselu - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Pikkukuvien esikatselun käyttäminen lähiverkossa voi aiheuttaa hidasta latautumista tai jumittumista verkon nopeudesta riippuen. - + Advanced - - - - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - + Lisäasetukset - + Mount - + Liitä - + Auto mount - + Liitä automaattisesti - + Open after auto mount - - - - - Show item counts and sizes in the path of mounted MTP devices - + Avaa liittämisen jälkeen - + Merge the entries of Samba shared folders - + Yhdistä Samba jaossa kansioiden tiedot - + Switching the entry display may lead to failed mounting - + Näytön liitännän vaihtaminen voi johtaa epäonnistumiseen - + Use the file chooser dialog of File Manager - + Käytä tiedostonhallinnan valintaikkunaa - + Ask for my confirmation when deleting files - + Pyydä vahvistukseni tiedostoja poistettaessa @@ -3301,51 +3274,56 @@ + Switch to tree view + Vaihda puunäkymään + + + Others Muut - + Close Sulje - + Close current tab Sulje nykyinen välilehti - + Back Takaisin - + Forward Eteenpäin - + Switch to next tab Siirry seuraavaan välilehteen - + Switch to previous tab Vaihda edelliseen välilehteen - + Next file Seuraava tiedosto - + Previous file Edellinen tiedosto - + Switch tab by specified number between 1 to 8 Vaihda välilehteä määrätyllä numerolla 1 ja 8 väliltä @@ -3416,42 +3394,43 @@ kohdetiedoston luonti %1. Info epäonnistui, näytä ristiriidan info-toiminto! - + Time modified: %1 Muokattu: %1 - + Original folder Alkuperäinen kansio - + Contains: %1 Sisältää: %1 - + Original file Alkuperäinen tiedosto - + Size: %1 Koko: %1 - + Target folder Kohde kansio - + + In data statistics ... - + Datan tilastossa ... - + Target file Kohde tiedosto @@ -3466,37 +3445,37 @@ Odota - + Keep both button Pidä molemmat - + Skip button Ohita - - + + Replace button Korvaa - + Do not ask again Älä kysy uudestaan - + Retry button Uudelleen - + Merge button Liitä @@ -3510,7 +3489,7 @@ Kirjoita salasana jaettujen kansioiden suojaamiseksi - + Set a password on the shared folder for non-anonymous access Aseta salasana jaetulle kansiolle ei-anonyymiä käyttöä varten @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Valitettavasti pikahakemistoa ei löydy, poistetaanko se? - + Cancel button Peruuta - + Remove button Poista @@ -3805,81 +3784,80 @@ dfmplugin_computer::Computer - - + Computer Tietokone - + Computer display items - + Tietokoneen näytön kohteet - + Hide built-in disks on the Computer page - + Tietokone näkymässä piilota kiintolevyt - + Hide loop partitions on the Computer page - + Tietokone näkymässä piilota osiot - + Show file system on disk icon - + Näytä kuvake järjestelmän asemasta - + Hide My Directories on the Computer page - + Tietokone näkymässä piilota kotikansiot - + Hide 3rd party entries on the Computer page - + Tietokone näkymässä piilota 3:nen osapuolen kohteet dfmplugin_computer::ComputerController - + Unlock device failed Lukituksen avaaminen epäonnistui - + Wrong password Väärä salasana - + Rename failed Nimeäminen epäonnistui - + The device is busy and cannot be renamed now Laite on varattu, eikä sitä voi nyt nimetä uudelleen - + Format failed Alustaminen epäonnistui - + The device is busy and cannot be formatted now Laite on varattu, eikä sitä voi nyt alustaa - + Mount error Liitoksen virhe - + Cannot access %1 Ei oikeuksia %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Tietokone - + %1 is read-only. Do you want to enable read and write permissions for it? %1 on vain luettavissa. Haluatko antaa sille luku-/kirjoitusoikeudet? - + Once enabled, read/write permission will be granted permanently Kun tämä on käytössä, luku-/kirjoitusoikeus myönnetään pysyvästi - + Cancel Peruuta - + Enable Now Ota käyttöön @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Omat hakemistot - + Disks Levyt @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Perustiedot - + Device type Laitetyyppi - + Total space Kokonaistila - + File system Tiedostojärjestelmä - + Contains Sisältää - + Free space Vapaa tila - + %1 items %1 kohdetta - + %1 item %1 kohde @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 / %2 @@ -3990,27 +3968,27 @@ Koko - + Dimension Mitat - + Duration Kesto - + Type Tyyppi - + Accessed Käytetty - + Modified Muokattu @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - + Tiedoston %1 siirto roskakoriin epäonnistui @@ -4357,7 +4335,7 @@ Copy or Cut File failed! - + Tiedoston kopio tai leikkaus epäonnistui! @@ -4387,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + Tiedoston %1 siirto roskakoriin epäonnistui, syy: %2 @@ -4406,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Kopio tai leikkaus epäonnistui, syy %1 @@ -4439,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Tiedoston nimeämisen virhe - + Failed to create the directory Kansion luominen epäonnistui - + Failed to create the file Tiedoston luominen epäonnistui - + link file error linkkitiedoston virhe - - + + Failed to modify file permissions - + Tiedoston käyttöoikeuksien muutos epäonnistui @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Liitä + &Paste + &Liitä - Cut - Leikkaa + Cu&t + Lei&kkaa - Copy - Kopioi + &Copy + &Kopioi dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Avaa + &Open + &Avaa - Rename - Nimeä uudelleen + Rena&me + Ni&meä - Delete - Poista + &Delete + &Poista @@ -4579,6 +4557,11 @@ Open in terminal Avaa päätteessä + + + Reverse select + Käänteinen valinta + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Lähetä - + + Bluetooth + Bluetooth + + + Create link Luo linkki - + Send to desktop Lähetä työpöydälle @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Jaa - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Avaa + + &Open + &Avaa - + Open in new window Avaa uudessa ikkunassa - + Open in new tab Avaa uudessa välilehdessä - + Cancel sharing Peruuta jakaminen - - Properties - Ominaisuudet + + P&roperties + Lisäas&etukset dfmplugin_myshares::MyShares - + My Shares Jaetut kansiot @@ -4700,7 +4683,7 @@ Ei tallennettavia tiedostoja - + Unable to burn. Not enough free space on the target disk. Polttaminen ei onnistu. Kohdelevyllä ei ole riittävästi vapaata tilaa. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Perustiedot - + Size Koko - + Contains Sisältää - + Type Tyyppi - + Location Sijainti - + Time created Luotu - + Time accessed Käytetty - + Time modified Muokattu - + Hide this file Piilota tämä tiedosto - - + + %1 item %1 kohde - + %1 items %1 kohdetta @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Salauksen turvallisuus - + For Government Valtioille - + For Enterprise Yrityksille - + Bit Bitti - + Available Saatavilla @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Tietokone - + Basic Info Perustiedot - + Computer name Tietokoneen nimi - + Version Versio - + Edition Versio - + OS build OS versio - + Type Tyyppi - + Processor Suoritin - + Memory Muisti @@ -4891,6 +4874,14 @@ %1 tiedostoa, %2 kansiota + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + %1 eivät ole sallittuja + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Ominaisuudet + P&roperties + Lisäas&etukset dfmplugin_recent::Recent - - + Recent Historia @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Polku - + Last access Viimeisin käyttö - + Recent Historia @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Etsi: - + File Type: Tiedoston tyyppi: - + File Size: Tiedoston koko: - + Time Modified: Muokattu: - + Time Accessed: Käytetty: - + Time Created: Luotu: - + Reset Nollaa - + All subdirectories Kaikki alihakemistot - + Current directory Nykyinen hakemisto - + Application Sovellus - + Video Video - + Audio Ääni - + Image Kuva - + Archive Arkisto - + Text Teksti - + Executable Suoritettava - + Backup file Varmuuskopio - + Today Tänään - + Yesterday Eilen - + This week Tämä viikko - + Last week Viime viikko - + This month Tässä kuussa - + Last month Viime kuussa - + This year Tämä vuosi - + Last year Viime vuosi @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Haku + + + Auto index internal disk + Indeksoi kiintolevy automaattisesti + + + + Index external storage device after connected to computer + Indeksoi ulkoinen tallennusväline kytkettäessä tietokoneeseen + + + + Full-Text search + Täysi tekstihaku + dfmplugin_search::SearchHelper - + Path Polku @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Avaa tiedoston sijainti - + Select all Valitse kaikki - + Path Polku @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Nopea pääsy - + Partitions Osiot - + Network Verkko - + Tag Tunniste - - Bookmark - Kirjamerkki - - - + Other Muut - + Unknown Group Tuntematon ryhmä - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Lähiverkossa - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Avaa + &Open + &Avaa @@ -5191,8 +5184,8 @@ - Properties - Ominaisuudet + P&roperties + Lisäas&etukset @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Tunniste @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Avaa tiedoston sijainti @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Yhdistä palvelimeen - - - + + + Clear History Tyhjennä historia - + Unfavorite Suosikkin poisto - + + Error + Virhe + + + + Unable to favorite illegitimate url! + URL-osoitetta ei voi lisätä suosikkeihin! + + + Cancel button Peruuta - + Connect button Yhdistä - + Charset Encoding Merkistökoodaus - + Default Oletus - + My Favorites Suosikkini - + No favorites yet Ei vielä suosikkeja - + Favorite Suosikki @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Lähteen polku - + Time deleted Aika poistettu @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Palauta - + Restore all Palauta kaikki - + Empty trash Tyhjennä roskakori - + Source path Lähteen polku - + Time deleted Aika poistettu @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Roskakori @@ -5527,17 +5530,17 @@ Roskakori - + item kohde - + items kohdetta - + Contains %1 %2 Sisältää %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Perustiedot - + Size Koko - + Contains Sisältää - + Type Tyyppi - + Location Sijainti - + Time created Luotu - + Time accessed Käytetty - + Time locked Lukittu aika @@ -5837,7 +5840,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Failed to unlock file vault - Varaston lukituksen poistaminen epäonnistui + Tiedostoholvin lukituksen poisto epäonnistui @@ -5926,7 +5929,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Unlock File Vault - Avaa tiedostovaraston lukitus + Avaa tiedostoholvin lukitus @@ -5979,15 +5982,15 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Failed to unlock file vault - Varaston lukituksen poistaminen epäonnistui + Tiedostoholvin lukituksen poisto epäonnistui dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault - Salaa tiedostovarasto + Salaa tiedostoholvi @@ -6006,19 +6009,19 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. - - - + + + Encrypt Salaa - + Failed to create file vault: %1 Varaston luominen epäonnistui: %1 - + OK OK @@ -6069,9 +6072,9 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password - Aseta tietovaraston salasana + Aseta holvin salasana @@ -6081,7 +6084,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Key encryption - Salakirjoitus avaimella + Salaus avaimella @@ -6095,7 +6098,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 merkkiä, sisältäen A-Z-, a-z-, 0-9 ja erikoismerkit @@ -6130,8 +6133,8 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Seuraava - - + + Passwords do not match Salasanat eivät täsmää @@ -6139,7 +6142,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultActiveStartView - + File Vault Tiedostoholvi @@ -6169,7 +6172,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. My Vault - Minun tietovarasto + Minun holvi @@ -6177,7 +6180,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Vault - Tietovarasto + Holvi @@ -6189,9 +6192,9 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultHelper - + Vault - Tietovarasto + Holvi @@ -6199,7 +6202,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Tietovarasto ei ole käytettävissä, koska cryfs ei ole asennettu! - + A task is in progress, so it cannot perform your operation Tehtävä on käynnissä, joten se ei voi suorittaa toimintaa @@ -6207,98 +6210,121 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultPropertyDialog - + My Vault - Minun tietovarasto + Minun holvi - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Salasana + + Cancel + Peruuta - - Password hint: %1 - Salasanavihje: %1 + + Delete + Poista - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Anna 32-numeroinen palautusavain + + Delete File Vault + Poista tiedostoholvi + + + + Failed to delete file vault + Tiedostoholvin poisto epäonnistui + + + + OK + OK + + + + Once deleted, the files in it will be permanently deleted + Kun poistettu, siinä olevat tiedostot poistetaan pysyvästi - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Poista tietovarasto + + Once deleted, the files in it will be permanently deleted + Kun poistettu, siinä olevat tiedostot poistetaan pysyvästi - - Once deleted, the files in it will be permanently deleted - Tiedostot poistetaan pysyvästi + + Password + Salasana - - Cancel - button - Peruuta + + Password hint: %1 + Salasanavihje: %1 - - Use Key - button - Käytä avainta + + Cancel + Peruuta - + Delete - button Poista - - Removing... - Poistetaan... + + Delete File Vault + Poista tiedostoholvi + + + + Wrong password + Väärä salasana + + + + Failed to delete file vault + Tiedostoholvin poisto epäonnistui - - + OK - button OK + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Väärä salasana + + Input the 32-digit recovery key + Anna 32-numeroinen palautusavain + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Väärä palautusavain + + Removing... + Poistetaan... - - Failed to delete file vault - Varaston poistaminen epäonnistui + + OK + OK - - Deleted successfully - Poistettu onnistuneesti + + Delete File Vault + Poista tiedostoholvi - - Failed to delete - Poistaminen epäonnistui + + Deleted successfully + Poistettu onnistuneesti @@ -6306,19 +6332,13 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. My Vault - Minun tietovarasto + Minun holvi - + File Vault Tiedostoholvi - - - - Vault - Tietovarasto - dfmplugin_workspace::FileOperatorHelper @@ -6331,22 +6351,22 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_workspace::FileViewModel - + Name Nimi - + Time modified Muokattu - + Size Koko - + Type Tyyppi @@ -6362,7 +6382,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 eivät ole sallittuja @@ -6378,45 +6398,50 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Järjestä - + Display as Näytä - + Name Nimi - + Time modified Muokattu - + Size Koko - + Type Tyyppi - + Icon Kuvake - + List Lista + + + Tree + Puu + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. filedialog_core::FileDialog - + Save button Tallenna @@ -6438,13 +6463,13 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. filedialog_core::FileDialogStatusBar - + Save button Tallenna - + Open button Avaa @@ -6482,112 +6507,112 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. plugin_filepreview::DDciIconPreview - + Available sizes: Saatavilla olevat koot: - + Custom Size Mukautettu koko - + Device Pixel Ratio: Laitteen pikselisuhde: - + Theme: Teema: - + Light Vaalea - + Dark Tumma - + Mode: Moodi: - + Normal Normaali - + Disabled Poistettu - + Hovered Leijuva - + Pressed Painettu - + Palette Paletti - + Current mode icon does not support the palette Nykyisen tilan kuvake ei tue palettia - + Foreground: Etuala: - + Background: Tausta: - + Highlight: Korostus: - + HighlightForeground: Korosta etualalla: - + Background Color: Taustan väri: - + White Valkoinen - + Black Musta - + Transparent Läpikuultava - + Custom Mukautettu @@ -6619,22 +6644,22 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. plugin_filepreview::MusicMessageView - + Artist: Artisti: - + Album: Albumi: - + unknown artist tuntematon artisti - + unknown album tuntematon albumi diff --git a/translations/dde-file-manager_fil.ts b/translations/dde-file-manager_fil.ts index 0a8b0ee154..a662934747 100644 --- a/translations/dde-file-manager_fil.ts +++ b/translations/dde-file-manager_fil.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_fr.ts b/translations/dde-file-manager_fr.ts index 0aa96ef88f..ecedda270f 100644 --- a/translations/dde-file-manager_fr.ts +++ b/translations/dde-file-manager_fr.ts @@ -15,99 +15,104 @@ Application - + File Manager Gestionnaire de fichiers - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Le gestionnaire de fichiers est un outil de gestion de fichiers puissant et facile à utiliser, doté de fonctions de recherche, copie, suppression, compression/décompression, propriétés de fichier et autres fonctions utiles. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Bureau - DeepinStorage + DeviceList - - - %1 Volume - %1 Volume + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Bureau + + Disk + Disque - - - DiskControlWidget - - Disks - Disques + + Open + Ouvrir - - The device was not safely removed - Le périphérique n'a pas été retiré en toute sécurité + + Eject all + Tout éjecter + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Cliquez sur "Supprimer en toute sécurité" et ensuite déconnectez-le + + The device has been safely removed + - - Disk is busy, cannot unmount now - Le disque est occupé, et ne peut donc pas être démonté maintenant + + eject + - - The device is busy, cannot eject now - L'appareil est occupé et ne peut pas être éjecté maintenant + + unmount + - - - DiskMountPlugin - - Disk - Disque + + + remove + - - Open - Ouvrir + + Operation failed + - - Eject all - Tout éjecter + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Inconnu @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Cela se produit lorsque vous vous connectez à un ordinateur pour la première fois. - + The identity sent by the remote computer is L'identité envoyée par l'ordinateur distant est - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Si vous voulez être absolument sûr de pouvoir continuer en toute sécurité, contactez l'administrateur système. - - - + + + System Disk Disque système - + Data Disk Disque de données - + Blank %1 Disc Disque %1 vierge - - - + + + Unknown Inconnu - + %1 Drive %1 Drive - + %1 Encrypted %1 Chiffré - + + %1 Volume %1 Volume - - + Scanning the device, stop it? Scanner l'appareil, l'arrêter ? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Accueil @@ -223,7 +228,6 @@ - Desktop Bureau @@ -233,7 +237,6 @@ - Videos Vidéos @@ -243,7 +246,6 @@ - Music Musique @@ -253,7 +255,6 @@ - Pictures Images @@ -263,7 +264,6 @@ - Documents Documents @@ -273,7 +273,6 @@ - Downloads Téléchargements @@ -282,7 +281,6 @@ - Trash Corbeille @@ -293,12 +291,11 @@ - Recent Récent - + @@ -306,7 +303,7 @@ Montage automatique - + @@ -319,47 +316,46 @@ %1 tâches en cours - + %1 item %1 élément - + %1 items %1 éléments - + Unable to find the original file Impossible de trouver le fichier d'origine - - + + File has been moved or deleted Le fichier a été déplacé ou supprimé - - - + + You do not have permission to access this folder Vous n'êtes pas autorisé à accéder à ce dossier - - + + You do not have permission to traverse files in it Vous n'êtes pas autorisé à parcourir les fichiers qu'il contient - - + + Folder is empty Le dossier est vide - + Loading... Chargement... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Ordinateur @@ -424,9 +419,8 @@ - - - + + Computers in LAN Ordinateurs dans le réseau local @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Continuer à afficher les partages Samba montés @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Arrêter - + Shortcut Raccourci - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Accès refusé - Confirm button Confirmer - - - The device has been safely removed - L'appareil a été retiré en toute sécurité - - - + + - - - + + + Open in new window Ouvrir dans une nouvelle fenêtre @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Ouvrir dans un nouvel onglet @@ -968,8 +953,8 @@ - - + + Properties Propriétés @@ -1005,7 +990,7 @@ Nouveau fichier - + Create symlink Créer un lien symbolique @@ -1092,70 +1077,70 @@ Ajouter au disque - + Are you sure you want to erase all data on the disc? Voulez-vous vraiment effacer toutes les données du disque ? - + Erase button Effacer - + This action cannot be undone Cette action ne peut pas être annulée - + How do you want to use this disc? Comment voulez-vous utiliser ce disque ? - + Burn image button Graver l'image - + Burn files button Graver les fichiers - + %1 is a duplicate file. %1 est un fichier en double. - + Insufficient disc space. Espace disque insuffisant. - + Lost connection to drive. Perte de connexion du lecteur. - + The CD/DVD drive is not ready. Try another disc. Le lecteur de CD / DVD n'est pas prêt. Essayer un autre disque. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Le lecteur de CD/DVD est occupé. Quitter le programme à l'aide du lecteur et réinsérer le lecteur. - + Invalid volume name - + Unknown error Erreur inconnue @@ -1194,42 +1179,42 @@ Éléments : %1 - + Orange Orange - + Red Rouge - + Purple Violet - + Navy-blue Bleu marine - + Azure Azure - + Green Vert - + Yellow Jaune - + Gray Gris @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Disque local - + Removable disk Disque amovible - + DVD DVD - + Network shared directory Répertoire partagé du réseau - - + + Android mobile device Appareil mobile Android - + Apple mobile device Appareil mobile Apple - + Unknown device Appareil inconnu - + Remove button Supprimer - + Do you want to remove this item? Voulez-vous supprimer cet élément  ? - + Do yout want to remove %1 items? Voulez-vous supprimer %1 éléments  ? - + It does not delete the original files Il ne supprime pas les fichiers originaux - + Clear recent history Effacer l'historique récent - - - + + + Source path Source @@ -1419,12 +1404,12 @@ Impossible d'ouvrir des éléments de la corbeille, veuillez d'abord les restaurer - + Empty Trash Vider la corbeille - + Location Emplacement @@ -1524,7 +1509,7 @@ Recherche en cours... - + My Vault Mon coffre-fort @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Non autorisé - - + + In trial period En période d'essai + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Type - + Time accessed Temps d'accès - + Time modified Heure de modification - + Time created Heure de création - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Taille des icônes @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 élément sélectionné @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! L'opération a échoué ! @@ -2554,191 +2529,191 @@ Le dossier cible se trouve dans le dossier source ! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Annuler - + Format button Formater - + To access the device, you must format the disk first. Are you sure you want to format it now? Pour accéder au périphérique, vous devez d'abord formater le disque. Voulez-vous vraiment le formater maintenant ? - + Do you want to run %1 or display its content? Voulez-vous exécuter %1 ou afficher son contenu ? - + It is an executable text file. Il s'agit d'un fichier texte exécutable. - - - + + + Run button Exécuter - - + + Run in terminal button Exécuter dans le terminal - + Display button Afficher - + Do you want to run %1? Voulez-vous exécuter %1 ? - + It is an executable file. Il s'agit d'un fichier exécutable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Supprimer définitivement %1 éléments ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Supprimer - + Permanently delete %1? Supprimer définitivement %1 ? - - + + This action cannot be undone Cette action ne peut pas être annulée - + Are you sure you want to empty %1 item? Voulez-vous vraiment vider %1 élément ? - + Are you sure you want to empty %1 items? Voulez-vous vraiment vider %1 éléments ? - + Empty Vide - + Do you want to delete %1? Voulez-vous supprimer %1 ? - + Do you want to delete the selected %1 items? Voulez-vous supprimer les %1 éléments sélectionnés ? - + Failed to restore %1 file, the target folder is read-only Impossible de restaurer le fichier %1, le dossier cible est en lecture seule - + Failed to restore %1 files, the target folder is read-only Impossible de restaurer les fichiers %1, le dossier cible est en lecture seule - + "%1" already exists, please use another name. "%1" existe déjà, veuillez utiliser un autre nom. - + Device or resource busy Périphérique ou ressource occupé - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Ce fichier sera masqué si le nom du fichier commence par ".". Voulez-vous le cacher ? - + Hide - + Cancel Annuler - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 auquel ce raccourci fait référence a été modifié ou déplacé - + Do you want to delete this shortcut? Voulez-vous supprimer ce raccourci ? - + This file is not executable, do you want to add the execute permission and run? Ce fichier n'est pas exécutable, voulez-vous ajouter l'autorisation d'exécution et exécuter ? - + The selected files contain system file/directory, and it cannot be deleted Les fichiers sélectionnés contiennent un fichier/répertoire système et ne peuvent pas être supprimés @@ -2866,278 +2841,276 @@ Saisir le mot de passe pour décrypter le disque + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Autres - + Close Fermer - + Close current tab Fermer l'onglet actuel - + Back Retour - + Forward Transférer - + Switch to next tab Passer à l'onglet suivant - + Switch to previous tab Passer à l'onglet précédent - + Next file Fichier suivant - + Previous file Fichier précédent - + Switch tab by specified number between 1 to 8 Basculer l'onglet par numéro spécifié entre 1 et 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Heure de modification : %1 - + Original folder Dossier d'origine - + Contains: %1 Contient : %1 - + Original file Fichier d'origine - + Size: %1 Taille : %1 - + Target folder Dossier cible - + + In data statistics ... - + Target file Fichier cible @@ -3466,37 +3445,37 @@ Veuillez attendre, s'il vous plaît - + Keep both button Conserver les deux - + Skip button Ignorer - - + + Replace button Remplacer - + Do not ask again Ne plus demander - + Retry button Réessayer - + Merge button Fusionner @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Annuler - + Remove button Supprimer @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Ordinateur - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Ordinateur - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Dossiers - + Disks Disques @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Type d'appareil - + Total space Espace total - + File system Système de fichiers - + Contains Contient - + Free space Espace libre - + %1 items %1 éléments - + %1 item %1 élément @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Taille - + Dimension Dimension - + Duration Durée - + Type Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Coller + &Paste + - Cut - Couper + Cu&t + - Copy - Copier + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Ouvrir + &Open + - Rename - Renommer + Rena&me + - Delete - Supprimer + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Ouvrir dans le terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Envoyer à - + + Bluetooth + + + + Create link Créer un lien - + Send to desktop Envoyer sur le bureau @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Ouvrir + + &Open + - + Open in new window Ouvrir dans une nouvelle fenêtre - + Open in new tab Ouvrir dans un nouvel onglet - + Cancel sharing Annuler le partage - - Properties - Propriétés + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Mes partages @@ -4700,7 +4683,7 @@ Aucun fichier à graver - + Unable to burn. Not enough free space on the target disk. Impossible de graver. Espace libre insuffisant sur le disque cible. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Taille - + Contains Contient - + Type Type - + Location Emplacement - + Time created Heure de création - + Time accessed Temps d'accès - + Time modified Heure de modification - + Hide this file Masquer ce fichier - - + + %1 item %1 élément - + %1 items %1 éléments @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Disponible @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Ordinateur - + Basic Info Info de base - + Computer name Nom de l'ordinateur - + Version Version - + Edition Édition - + OS build Version du système d'exploitation - + Type Type - + Processor Processeur - + Memory Mémoire @@ -4891,6 +4874,14 @@ %1 fichier(s), %2 dossier(s) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propriétés + P&roperties + dfmplugin_recent::Recent - - + Recent Récent @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Chemin - + Last access Dernier accès - + Recent Récent @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Rechercher : - + File Type: Type de fichier : - + File Size: Taille du fichier : - + Time Modified: Heure de modification : - + Time Accessed: Temps d'accès : - + Time Created: Heure de création : - + Reset Réinitialiser - + All subdirectories Tous les sous-répertoires - + Current directory Répertoire actuel - + Application Application - + Video Vidéo - + Audio Audio - + Image Image - + Archive Archive - + Text Texte - + Executable Exécutable - + Backup file Fichier de sauvegarde - + Today Aujourd'hui - + Yesterday Hier - + This week Cette semaine - + Last week La semaine dernière - + This month Ce mois-ci - + Last month Le mois dernier - + This year Cette année - + Last year L'année dernière @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Rechercher + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Chemin @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Ouvrir l'emplacement du fichier - + Select all Tout sélectionner - + Path @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Tag - - Bookmark - - - - + Other Autre - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Ordinateurs dans le réseau local - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Ouvrir + &Open + @@ -5191,7 +5184,7 @@ - Properties + P&roperties @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Tag @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Ouvrir l'emplacement du fichier @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Se connecter au serveur - - - + + + Clear History Effacer l'historique - + Unfavorite Défavorisé - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Annuler - + Connect button Se connecter - + Charset Encoding - + Default - + My Favorites Mes favoris - + No favorites yet Pas encore de favoris - + Favorite Favori @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Chemin source - + Time deleted Heure de suppression @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurer - + Restore all Tout restaurer - + Empty trash - + Source path Source - + Time deleted Heure de suppression @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Corbeille @@ -5527,17 +5530,17 @@ Corbeille - + item élément - + items éléments - + Contains %1 %2 Contient %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Taille - + Contains Contient - + Type Type - + Location Emplacement - + Time created Heure de création - + Time accessed Temps d'accès - + Time locked Temps verrouillé @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Crypter le coffre-fort des fichiers @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Crypter - + Failed to create file vault: %1 Échec de la création du coffre-fort de fichiers : %1 - + OK OK @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Définir le mot de passe du coffre-fort @@ -6094,7 +6097,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caractères, contient A-Z, a-z, 0-9 et symboles @@ -6129,8 +6132,8 @@ Suivant - - + + Passwords do not match Les mots de passe ne correspondent pas @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Coffre-fort @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6198,7 +6201,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6206,98 +6209,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mon coffre-fort - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Mot de passe + + Cancel + - - Password hint: %1 - Question secrète de mot de passe : %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Saisir la clé de récupération à 32 chiffres + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Supprimer le coffre-fort + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Une fois supprimés, les fichiers qu'il contient seront définitivement effacés + + Password + Mot de passe - - Cancel - button - Annuler + + Password hint: %1 + Question secrète de mot de passe : %1 - - Use Key - button - Utiliser la clé + + Cancel + - + Delete - button - Supprimer + - - Removing... - Suppression... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Mauvais mot de passe + + Input the 32-digit recovery key + Saisir la clé de récupération à 32 chiffres + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Clé de récupération incorrecte + + Removing... + - - Failed to delete file vault - Échec de la suppression du coffre-fort de fichiers + + OK + - - Deleted successfully - Supprimé avec succès + + Delete File Vault + - - Failed to delete - Échec de la suppression + + Deleted successfully + @@ -6308,16 +6334,10 @@ Mon coffre-fort - + File Vault Coffre-fort - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 ne sont pas autorisés @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Trier par - + Display as Afficher en tant que - + Name Nom - + Time modified Heure de modification - + Size Taille - + Type Type - + Icon Icône - + List Liste + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Enregistrer @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Enregistrer - + Open button Ouvrir @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_gl_ES.ts b/translations/dde-file-manager_gl_ES.ts index 5af44234dd..8185788b41 100644 --- a/translations/dde-file-manager_gl_ES.ts +++ b/translations/dde-file-manager_gl_ES.ts @@ -15,99 +15,104 @@ Application - + File Manager Xestor do ficheiro - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Xestor de ficheiros é unha ferramenta de xestión de ficheiros poderosa e fácil de usar, que inclúe busca, copia, lixo, compresión / descompresión, propiedade de ficheiros e outras funcións útiles. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Escritorio - DeepinStorage + DeviceList - - - %1 Volume - %1 Volume + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Escritorio + + Disk + Disco - - - DiskControlWidget - - Disks - Discos + + Open + Abrir - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - O disco está ocupado e non se pode desmontar agora + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Disco + + + remove + - - Open - Abrir + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Descoñecido @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Disco do sistema - + Data Disk Disco de datos - + Blank %1 Disc %1 Disco en branco - - - + + + Unknown Descoñecido - + %1 Drive %1 Drive - + %1 Encrypted %1 encriptado - + + %1 Volume %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Inicio @@ -223,7 +228,6 @@ - Desktop Escritorio @@ -233,7 +237,6 @@ - Videos Vídeos @@ -243,7 +246,6 @@ - Music Música @@ -253,7 +255,6 @@ - Pictures Imaxes @@ -263,7 +264,6 @@ - Documents Documentos @@ -273,7 +273,6 @@ - Downloads Descargas @@ -282,7 +281,6 @@ - Trash Papeleira @@ -293,12 +291,11 @@ - Recent Recente - + @@ -306,7 +303,7 @@ Montar automaticamente - + @@ -319,47 +316,46 @@ %1 tarefas en progreso - + %1 item %1 elemento - + %1 items %1 elementos - + Unable to find the original file - - + + File has been moved or deleted O ficheiro foi movido ou eliminado - - - + + You do not have permission to access this folder Non tes permiso para acceder a este cartafol - - + + You do not have permission to traverse files in it - - + + Folder is empty Cartafol baleiro - + Loading... Cargando... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Computador @@ -424,9 +419,8 @@ - - - + + Computers in LAN Computadores na rede local @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Etiqueta @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Atallo - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Acceso denegado - Confirm button Confirmar - - - The device has been safely removed - - - - + + - - - + + + Open in new window Abrir nunha xanela nova @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Abrir nunha lapela nova @@ -968,8 +953,8 @@ - - + + Properties Propiedades @@ -1005,7 +990,7 @@ Novo ficheiro - + Create symlink Crear ligazón simbólica @@ -1092,70 +1077,70 @@ Engadir ao disco - + Are you sure you want to erase all data on the disc? Está seguro de que quere borrar todos os datos do disco? - + Erase button Borrar - + This action cannot be undone Esta acción non se pode desfacer - + How do you want to use this disc? Como quere usar este disco? - + Burn image button Imaxe gravada - + Burn files button Ficheiros gravados - + %1 is a duplicate file. %1 é un ficheiro duplicado. - + Insufficient disc space. Espazo do disco insuficiente. - + Lost connection to drive. Perdeu a conexión para dirixir. - + The CD/DVD drive is not ready. Try another disc. A unidade de CD / DVD non está lista. Proba con outro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. A unidade de CD / DVD está ocupada. Saia do programa usando a unidade e volva a introducir a unidade. - + Invalid volume name - + Unknown error Erro descoñecido @@ -1194,42 +1179,42 @@ Elemento: %1 - + Orange Laranxa - + Red Vermello - + Purple Morado - + Navy-blue Azul marino - + Azure Azul - + Green Verde - + Yellow Amarelo - + Gray Gris @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Disco local - + Removable disk Disco extraíbel - + DVD DVD - + Network shared directory Cartafol compartido - - + + Android mobile device Móbil Android - + Apple mobile device Dispositivo móbil de Apple - + Unknown device Dispositivo descoñecido - + Remove button Eliminar - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Limpar o historial recente - - - + + + Source path Ruta orixe @@ -1419,12 +1404,12 @@ - + Empty Trash Baleirar o lixo - + Location Localización @@ -1524,7 +1509,7 @@ Buscando... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tipo - + Time accessed Tempo accedido - + Time modified Hora de modificación - + Time created Hora de creación - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Tamaño da icona @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 elemento seleccionado @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Aceptar - + Operation failed! Faiou a operación! @@ -2554,191 +2529,191 @@ O cartafol destino está no cartafol orixe! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formato - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Queres executar %1 ou amosar o seu contido? - + It is an executable text file. É un ficheiro de texto executable. - - - + + + Run button Executar - - + + Run in terminal button Executar no terminal - + Display button Amosar - + Do you want to run %1? Tes a certeza de querer executar %1? - + It is an executable file. É un ficheiro executable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Eliminar permanentemente %1 elementos? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Eliminar - + Permanently delete %1? Eliminar permanentemente %1? - - + + This action cannot be undone Esta acción non se pode desfacer - + Are you sure you want to empty %1 item? Está seguro de que quere vaciar %1 elemento? - + Are you sure you want to empty %1 items? Está seguro de que quere vaciar %1 elementos? - + Empty Vacía - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Erro ao restaurar o ficheiro% 1, o cartafol de destino é de só lectura - + Failed to restore %1 files, the target folder is read-only Erro ao restaurar os ficheiros% 1, o cartafol de destino é de só lectura - + "%1" already exists, please use another name. "%1" xa existe, por favor emprega outro nome. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este ficheiro estará oculto se o nome do ficheiro comeza con '.' .Queres ocultalo? - + Hide - + Cancel Cancelar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 que este atallo cambiouse ou foi movido - + Do you want to delete this shortcut? Queres eliminar este atallo? - + This file is not executable, do you want to add the execute permission and run? Este ficheiro non é executable, quere engadir o permiso de execución e executalo? - + The selected files contain system file/directory, and it cannot be deleted Os ficheiros seleccionados conteñen ficheiros/cartafoles do sistema, e non poden ser eliminados @@ -2866,278 +2841,276 @@ Contraseña de entrada para descifrar o disco + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Outros - + Close Pechar - + Close current tab Pechar a lapela actual - + Back Atrás - + Forward Avanzar - + Switch to next tab Cambiar á nova lapela - + Switch to previous tab Cambiar á lapela previa - + Next file Seguinte ficheiro - + Previous file Ficheiro anterior - + Switch tab by specified number between 1 to 8 Ir á lapela especificado cun número entre 1 e 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Tempo modificado: %1 - + Original folder Cartafol orixinal - + Contains: %1 Contén: %1 - + Original file Ficheiro orixinal - + Size: %1 Tamaño: %1 - + Target folder Cartafol de destino - + + In data statistics ... - + Target file Ficheiro de destino @@ -3466,37 +3445,37 @@ - + Keep both button Manter ambos - + Skip button Saltar - - + + Replace button Substituír - + Do not ask again Non preguntar de novo - + Retry button Volver a intentar - + Merge button Fusionar @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Cancelar - + Remove button Eliminar @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Computador - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Os meus directorios - + Disks Discos @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tipo de dispositivo - + Total space Espazo total - + File system Sistema de ficheiros - + Contains Contén - + Free space Espazo libre - + %1 items %1 elementos - + %1 item %1 elemento @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Tamaño - + Dimension Dimensión - + Duration Duración - + Type Tipo - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Pegar + &Paste + - Cut - Cortar + Cu&t + - Copy - Copiar + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Abrir + &Open + - Rename - Renomear + Rena&me + - Delete - Eliminar + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Abrir no termial + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar a - + + Bluetooth + + + + Create link Crear ligazón - + Send to desktop Enviar ao escritorio @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Abrir + + &Open + - + Open in new window Abrir nunha xanela nova - + Open in new tab Abrir nunha lapela nova - + Cancel sharing Cancelar compartición - - Properties - Propiedades + + P&roperties + dfmplugin_myshares::MyShares - + My Shares As miñas comparticións @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. Non se pode gravar. Non hai espazo libre no disco de destino. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Tamaño - + Contains Contén - + Type Tipo - + Location Localización - + Time created Hora de creación - + Time accessed Tempo accedido - + Time modified Hora de modificación - + Hide this file Agochar este ficheiro - - + + %1 item %1 elemento - + %1 items %1 elementos @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Dispoñible @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computador - + Basic Info Info. básica - + Computer name - + Version Versión - + Edition - + OS build - + Type Tipo - + Processor Procesador - + Memory Memoria @@ -4890,6 +4873,14 @@ % 1 ficheiro (s),% 2 cartafol (s) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propiedades + P&roperties + dfmplugin_recent::Recent - - + Recent Recente @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Ruta - + Last access Último acceso - + Recent Recente @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Buscar: - + File Type: Tipo de ficheiro: - + File Size: Tamaño do ficheiro: - + Time Modified: Tempo modificado: - + Time Accessed: - + Time Created: - + Reset Restablecer - + All subdirectories Todos os subdirectorios - + Current directory Directorio actual - + Application Aplicativo - + Video Vídeo - + Audio Audio - + Image Imaxe - + Archive Arquivo - + Text Texto - + Executable Executable - + Backup file Ficheiro de copia de seguranza - + Today Hoxe - + Yesterday Onte - + This week Esta semana - + Last week Última semana - + This month Este mes - + Last month Último mes - + This year Este ano - + Last year Último ano @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Buscar + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Ruta @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir localización do ficheiro - + Select all Seleccionar todo - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etiqueta - - Bookmark - - - - + Other Outros - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Computadores na rede local - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Abrir + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir localización do ficheiro @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Conectar ao servidor - - - + + + Clear History Borrar o historial - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Cancelar - + Connect button Conectar - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Ruta orixe - + Time deleted Data de eliminación @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar todo - + Empty trash - + Source path Ruta orixe - + Time deleted Data de eliminación @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papeleira @@ -5526,17 +5529,17 @@ Papeleira - + item Elemento - + items Elementos - + Contains %1 %2 Contén %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Tamaño - + Contains Contén - + Type Tipo - + Location Localización - + Time created Hora de creación - + Time accessed Tempo accedido - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK Aceptar @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Seguinte - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Bóveda de ficheiros @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Contrasinal + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Contrasinal + + + + Password hint: %1 - + Cancel - button - Cancelar + - - Use Key - button + + Delete - - Delete - button - Eliminar + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - Aceptar + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault Bóveda de ficheiros - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Amosar como - + Name Nome - + Time modified Hora de modificación - + Size Tamaño - + Type Tipo - + Icon Icona - + List Listaxe + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Gardar @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Gardar - + Open button Abrir @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_he.ts b/translations/dde-file-manager_he.ts index d4ed3d3391..81d6466a5d 100644 --- a/translations/dde-file-manager_he.ts +++ b/translations/dde-file-manager_he.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ %1 משימות בתהליך - + %1 item - + %1 items קובצי %1 - + Unable to find the original file - - + + File has been moved or deleted הקובץ שונה או הוסר - - - + + You do not have permission to access this folder אין לך הרשאה לגשת לתיקייה זו - - + + You do not have permission to traverse files in it - - + + Folder is empty התיקייה ריקה - + Loading... טוען... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut קיצור־דרך - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window פתח בחלון חדש @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab פתח בכרטיסייה חדשה @@ -968,8 +953,8 @@ - - + + Properties מאפיינים @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ פריטים: %1 - + Orange - + Red אדום - + Purple סגול - + Navy-blue - + Azure תכלת - + Green ירוק - + Yellow צהוב - + Gray אפור @@ -1305,76 +1290,76 @@ - + User directory - + Local disk דיסק מקומי - + Removable disk דיסק נשלף - + DVD - + Network shared directory - - + + Android mobile device מכשיר אנדרואיד נייד - + Apple mobile device מכשיר אפל נייד - + Unknown device מכשיר לא מזוהה - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash רוקן את סל המחזור - + Location מיקום @@ -1524,7 +1509,7 @@ מחפש... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_hi_IN.ts b/translations/dde-file-manager_hi_IN.ts index 51cb690c9b..005597cdee 100644 --- a/translations/dde-file-manager_hi_IN.ts +++ b/translations/dde-file-manager_hi_IN.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + डेस्कटॉप - DeepinStorage + DeviceList - - - %1 Volume - %1 वॉल्यूम + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - डेस्कटॉप + + Disk + डिस्क - - - DiskControlWidget - - Disks - + + Open + खोलें - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - डिस्क + + + remove + - - Open - खोलें + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume %1 वॉल्यूम - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop डेस्कटॉप @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer कंप्यूटर @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ बिट - Access denied - Confirm button पुष्टि करें - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties विशेषताएँ @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type प्रकार - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size आइकन का आकार @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button रद्द करें - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button डिस्प्ले - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel रद्द करें - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button रद्द करें - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer कंप्यूटर - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer कंप्यूटर - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type प्रकार - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open - खोलें + &Open + - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - खोलें + + &Open + - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - विशेषताएँ + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type प्रकार - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit बिट - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer कंप्यूटर - + Basic Info - + Computer name - + Version संस्करण - + Edition - + OS build - + Type प्रकार - + Processor प्रोसेसर - + Memory मेमोरी @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - विशेषताएँ + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - खोलें + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button रद्द करें - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type प्रकार - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button - रद्द करें + + Password hint: %1 + - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type प्रकार - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button खोलें @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_hr.ts b/translations/dde-file-manager_hr.ts index 2e542982bd..da615272fb 100644 --- a/translations/dde-file-manager_hr.ts +++ b/translations/dde-file-manager_hr.ts @@ -15,99 +15,104 @@ Application - + File Manager Upravitelj datotekama - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Upravitelj datotekama je alat za upravljanje datotekama, sa pretragom kopiranjem, smećem, kompresijom/dekompresijom, svojstvima datoteke i ostalim funkcijama upravljanja datotekama. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Radna površina - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - Radna površina + + Disk + Disk - - - DiskControlWidget - - Disks - Diskovi + + Open + Otvori - - The device was not safely removed - Uređaj nije sigurno uklonjen + + Eject all + Izbaci sve + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Klikni "Sigurno ukloni" i odspoji ga slijedeći put + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disk je zauzet, ne mogu sada odmontirati + + eject + - - The device is busy, cannot eject now - Uređaj je zauzet, ne mogu sada izbaciti + + unmount + - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Otvori + + Operation failed + - - Eject all - Izbaci sve + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + Sve datoteke + + + + FileOperateBaseWorker + + + The file name or the path is too long! MimeTypeDisplayManager - + Unknown Nepoznato @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Disk sustava - + Data Disk Podatkovni disk - + Blank %1 Disc - + Prazan %1 Diski - - - + + + Unknown Nepoznato - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? Skeniram uređaj, prestati? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Dom @@ -223,7 +228,6 @@ - Desktop Radna površina @@ -233,7 +237,6 @@ - Videos Video zapisi @@ -243,7 +246,6 @@ - Music Glazba @@ -253,7 +255,6 @@ - Pictures Slike @@ -263,7 +264,6 @@ - Documents Dokumenti @@ -273,7 +273,6 @@ - Downloads Preuzimanja @@ -282,7 +281,6 @@ - Trash Smeće @@ -293,12 +291,11 @@ - Recent Nedavno - + @@ -306,7 +303,7 @@ Samomontiranje - + @@ -319,47 +316,46 @@ %1 zadataka u tijeku - + %1 item %1 stavka - + %1 items %1 stavki - + Unable to find the original file - - + + File has been moved or deleted Datoteka je premještena ili obrisana - - - + + You do not have permission to access this folder Nemate dozvole za pristup ovoj mapi - - + + You do not have permission to traverse files in it - - + + Folder is empty Mapa je prazna - + Loading... Učitavam... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Računalo @@ -424,9 +419,8 @@ - - - + + Computers in LAN Računala u LAN-u @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,15 +452,15 @@ - + Network - + Mreža - + Mounted partitions and discs @@ -474,23 +468,23 @@ - + Partitions - + Particije - + Quick access - + Brzi pristup - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Zaustavi - + Shortcut Prečac - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Pristup odbijen - Confirm button Potvrdi - - - The device has been safely removed - Uređaj je sigurno uklonjen - - - + + - - - + + + Open in new window Otvori u novom prozoru @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Otvori u novoj kartici @@ -968,8 +953,8 @@ - - + + Properties Svojstva @@ -982,7 +967,7 @@ New Text - + Novi tekst @@ -1005,7 +990,7 @@ Nova datoteka - + Create symlink Stvori simboličku vezu @@ -1092,72 +1077,72 @@ Dodaj na disk - + Are you sure you want to erase all data on the disc? Jeste li sigurni da želite izbrisati sve podatke na disku? - + Erase button Izbriši - + This action cannot be undone - + How do you want to use this disc? Kako želite koristiti ovaj disk? - + Burn image button Snimi sliku - + Burn files button Snimi datoteke - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error - + Nepoznata greška @@ -1194,42 +1179,42 @@ Stavke: %1 - + Orange Narančasto - + Red Crveno - + Purple - + Navy-blue - + Azure - + Green Zeleno - + Yellow Žuto - + Gray Sivo @@ -1255,7 +1240,7 @@ Hide button - + Sakrij @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Lokalni disk - + Removable disk Uklonjivi disk - + DVD DVD - + Network shared directory Mrežni dijeljeni direktorij - - + + Android mobile device Android mobilni uređaj - + Apple mobile device Apple mobilni uređaj - + Unknown device Nepoznati uređaj - + Remove button Ukloni - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Očisti nedavnu povijest - - - + + + Source path Izvorna putanja @@ -1419,12 +1404,12 @@ - + Empty Trash Isprazni smeće - + Location Lokacija @@ -1524,7 +1509,7 @@ Pretražujem... - + My Vault @@ -1556,17 +1541,17 @@ 5 minutes - + 5 minuta 10 minutes - + 10 minuta 20 minutes - + 20 minuta @@ -1576,27 +1561,27 @@ File not found - + Datoteka nije pronađena File already exists - + Datoteka već postoji File is a directory - + Datoteka je direktorij File is not a directory - + Datoteka nije direktorij File is a directory that isn't empty - + Datoteka je direktorij koji nije prazan @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1749,7 +1734,7 @@ Refresh - + Osvježi @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + In trial period U probnom periodu + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tip - + Time accessed - + Time modified Vrijeme promjene - + Time created Vrijeme stvaranja - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Veličina ikone @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 stavka odabrana @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button U redu - + Operation failed! Operacija nije uspjela! @@ -2554,191 +2529,191 @@ Ciljana mapa je unutar izvorne mape! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Otkaži - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Želiš li pokrenuti %1 ili prikazati sadržaj? - + It is an executable text file. To je izvršna tekstualna datoteka. - - - + + + Run button Pokreni - - + + Run in terminal button Pokreni u terminalu - + Display button Prikaži - + Do you want to run %1? - + It is an executable file. To je izvršna tekstualna datoteka. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Trajno obriši %1 stavki? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Obriši - + Permanently delete %1? Trajno obriši %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Isprazni - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" već postoji, molim koristi drugo ime. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Otkaži - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 na što se ovaj prečac odnosi je promjenjeno ili premješteno - + Do you want to delete this shortcut? Želite li izbrisati ovaj prečac? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted Odabrane datoteke sadrže mapu/direktorij sustava, i ne može biti izbrisan @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - + Računalo - - + + Home - + Osobna mapa - - + + Desktop - + Radna površina - - + + Videos - - + + Music - + Glazba - - + + Pictures - + Slike - - + + Documents - + Dokumenti - - + + Downloads - + Preuzimanja - + Open in new tab: - + Otvori u novoj kartici: - + Current Directory - + Trenutni direktorij - + Files and folders - + Datoteke i mape - + Show hidden files - + Pokaži skrivene datoteke - + Show file extensions - + Mix sorting of files and folders - + Workspace - + Radni prostor - + View - + Pogled - + Default size: - + Zadana veličina: - + Extra small - + Izuzetno malo - + Small - + Malo - + Medium - + Srednje - + Large - + Veliko - + Extra large + Izuzetno veliko + + + + Tree - + Default view: - + Zadana veličina: - + Icon - + Ikona - + List + Popis + + + + Restore default view mode for all directories + + + + + Restore default view mode - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - - - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - + Napredno - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Ostali - + Close Zatvori - + Close current tab Zatvori trenutnu karticu - + Back Natrag - + Forward Naprijed - + Switch to next tab Prebaci na slijedeću karticu - + Switch to previous tab Prebaci na prethodnu karticu - + Next file Slijedeća datoteka - + Previous file Prethodna datoteka - + Switch tab by specified number between 1 to 8 Prebacuj između kartica pomoću određenih brojeva između 1 do 8 @@ -3400,7 +3378,7 @@ Recent - + Nedavno @@ -3416,42 +3394,43 @@ - + Time modified: %1 Vrijeme izmjene:%1 - + Original folder Izvorna mapa - + Contains: %1 Sadrži:%1 - + Original file Izvorna datoteka - + Size: %1 Veličina: %1 - + Target folder Ciljana mapa - + + In data statistics ... - + Target file Ciljana datoteka @@ -3466,37 +3445,37 @@ Molim pričekajte - + Keep both button Zadrži oboje - + Skip button Preskoči - - + + Replace button Zamijeni - + Do not ask again Ne pitaj ponovno - + Retry button Pokušajte ponovno - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Otkaži - + Remove button Ukloni @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Računalo - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Pogrešna lozinka - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Računalo - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Otkaži - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moji direktoriji - + Disks Diskovi @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tip uređaja - + Total space Ukupan prostor - + File system Datotečni sustav - + Contains Sadrži - + Free space Slobodan prostor - + %1 items %1 stavki - + %1 item %1 stavka @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Veličina - + Dimension Dimenzija - + Duration Trajanje - + Type Tip - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Zalijepi + &Paste + - Cut - Izreži + Cu&t + - Copy - Kopiraj + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Otvori + &Open + - Rename - Preimenuj + Rena&me + - Delete - Obriši + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Otvori u terminalu + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Pošalji za - + + Bluetooth + + + + Create link Stvori vezu - + Send to desktop Pošalji na radnu površinu @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Otvori + + &Open + - + Open in new window Otvori u novom prozoru - + Open in new tab Otvori u novoj kartici - + Cancel sharing Otkaži djeljenje - - Properties - Svojstva + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Moja djeljenja @@ -4699,7 +4682,7 @@ Nema datoteka za snimanje - + Unable to burn. Not enough free space on the target disk. Snimanje nije moguće. Nema dovoljno mjesta na ciljanom disku. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Veličina - + Contains Sadrži - + Type Tip - + Location Lokacija - + Time created Vrijeme stvaranja - + Time accessed - + Time modified Vrijeme promjene - + Hide this file Sakrij ovu datoteku - - + + %1 item %1 stavka - + %1 items %1 stavki @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Dostupno @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Računalo - + Basic Info Osnovne informacije - + Computer name Ime računala - + Version Inačica - + Edition Izdanje - + OS build - + Type Tip - + Processor Procesor - + Memory Memorija @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Svojstva + P&roperties + dfmplugin_recent::Recent - - + Recent Nedavno @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Putanja - + Last access Zadnji pristup - + Recent Nedavno @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Traži: - + File Type: Vrsta datoteke: - + File Size: Veličina datoteke: - + Time Modified: Vrijeme izmjene: - + Time Accessed: Vrijeme pristupanja: - + Time Created: Vrijeme stvaranja: - + Reset - + All subdirectories Svi poddirektoriji - + Current directory Trenutni direktorij - + Application - + Video Video - + Audio Audio - + Image Slika - + Archive Arhiva - + Text Tekst - + Executable Izvršna - + Backup file - + Today Danas - + Yesterday Jučer - + This week Ovaj tjedan - + Last week Prošli tjedan - + This month Ovaj mjesec - + Last month Prošli mjesec - + This year Ove godine - + Last year Prošle godine @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Traži + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Putanja @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otvori lokaciju datoteke - + Select all Odaberi sve - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other Ostalo - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Računala u LAN-u - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Otvori + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otvori lokaciju datoteke @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Spoji na poslužitelj - - - + + + Clear History Obriši povijest - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Otkaži - + Connect button Spoji se - + Charset Encoding - + Default - + My Favorites Moji favoriti - + No favorites yet Još nema favorita - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Izvorna putanja - + Time deleted Vrijeme brisanja @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Vrati - + Restore all Vrati sve - + Empty trash - + Source path Izvorna putanja - + Time deleted Vrijeme brisanja @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Smeće @@ -5526,17 +5529,17 @@ Smeće - + item Stavka - + items stavke - + Contains %1 %2 Sadrži %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Veličina - + Contains Sadrži - + Type Tip - + Location Lokacija - + Time created Vrijeme stvaranja - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK U redu @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Slijedeće - - + + Passwords do not match Lozinke se ne podudaraju @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Lozinka + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Lozinka + + + + Password hint: %1 - + Cancel - button - Otkaži + - - Use Key - button + + Delete - - Delete - button - Obriši + + Delete File Vault + - - Removing... - Uklanjam... + + Wrong password + + + + + Failed to delete file vault + - - + OK - button - U redu + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Pogrešna lozinka + + Input the 32-digit recovery key + + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortiraj po - + Display as Prikaži kao - + Name Ime - + Time modified Vrijeme promjene - + Size Veličina - + Type Tip - + Icon Ikona - + List Popis + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Spremi @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Spremi - + Open button Otvori @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_hu.ts b/translations/dde-file-manager_hu.ts index 0e5942082e..6b8558aae4 100644 --- a/translations/dde-file-manager_hu.ts +++ b/translations/dde-file-manager_hu.ts @@ -15,99 +15,104 @@ Application - + File Manager Fájlkezelő - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. A Fájlkezelő egy hatékony és könnyen használható fájlkezelő eszköz, amely kereséssel, másolással, kukával, tömörítéssel / kicsomagolással, fájl tulajdonságokkal és egyéb hasznos funkciókkal rendelkezik. - - DAttachedProtocolDevice - - - %1 on %2 - %1 itt: %2 - - - - DeepinStorage - - - - %1 Volume - %1 kötet - - DesktopMain - + Desktop Asztal - DiskControlWidget + DeviceList - + Disks Lemezek - - - The device was not safely removed - Az eszközt nem sikerült biztonságosan eltávolítani - - - - Click "Safely Remove" and then disconnect it next time - Kattintson a "Biztonságos eltávolítás" gombra, majd csatlakoztassa le később - - - - Disk is busy, cannot unmount now - A lemez használatban van, jelenleg nem választható le - - - - The device is busy, cannot eject now - Az eszköz használatban van, jelenleg nem választható le - DiskMountPlugin - + Disk Lemez - + Open Megnyitás - + Eject all Az összes kiadása + + DockItemDataManager + + + The device has been safely removed + Az eszköz biztonságosan eltávolítva + + + + eject + Kiadás + + + + unmount + Leválasztás + + + + + remove + Eltávolítás + + + + Operation failed + A művelet sikertelen + + + + Device (%1) is busy, cannot %2 now. + + + FileDialogHandle - + All Files Összes Fájl + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Ismeretlen @@ -123,88 +128,89 @@ QObject - + need authorization to access A hozzáféréshez engedélyre van szükség - + Can't verify the identity of %1. Nem sikerült ellenőrizni a %1 azonosságát. - + This happens when you log in to a computer the first time. Ez akkor történik, amikor először jelentkezik be a számítógépre. - + The identity sent by the remote computer is A távoli számítógép által küldött azonosság - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Ha teljesen biztos akar lenni abban, hogy biztonságos a folytatás, vegye fel a kapcsolatot a rendszergazdával. - - - + + + System Disk Rendszerlemez - + Data Disk Adatlemez - + Blank %1 Disc Üres %1 lemez - - - + + + Unknown Ismeretlen - + %1 Drive %1 meghajtó - + %1 Encrypted %1 titkosítva - + + %1 Volume %1 kötet - - + Scanning the device, stop it? Az eszköz ellenőrzése, biztos benne hogy leállítja? - + Unmount failed A leválasztás sikertelen - + Cannot stop scanning device Az ellenőrzést nem lehet leállítani - + + %1 on %2 %1 itt: %2 @@ -213,7 +219,6 @@ - Home Saját mappa @@ -223,7 +228,6 @@ - Desktop Asztal @@ -233,7 +237,6 @@ - Videos Videók @@ -243,7 +246,6 @@ - Music Zene @@ -253,7 +255,6 @@ - Pictures Képek @@ -263,7 +264,6 @@ - Documents Dokumentumok @@ -273,7 +273,6 @@ - Downloads Letöltések @@ -282,7 +281,6 @@ - Trash Kuka @@ -293,12 +291,11 @@ - Recent Legutóbbi - + @@ -306,7 +303,7 @@ Automatikus csatolás - + @@ -319,47 +316,46 @@ %1 feladat folyamatban - + %1 item %1 elem - + %1 items %1 elem - + Unable to find the original file Nem található az eredeti fájl - - + + File has been moved or deleted A fájl törölve lett vagy át lett helyezve - - - + + You do not have permission to access this folder Nincs jogosultsága a mappához való hozzáféréséhez - - + + You do not have permission to traverse files in it Nincs jogosultsága a belső fájlok bejárására - - + + Folder is empty A mappa üres - + Loading... Betöltés... @@ -408,7 +404,7 @@ - + Built-in disks A beépített lemezek elrejtése @@ -416,7 +412,6 @@ - Computer Számítógép @@ -424,9 +419,8 @@ - - - + + Computers in LAN Számítógépek a vezetékes hálózatban @@ -434,7 +428,7 @@ - + Loop partitions Hurok partíciók @@ -442,7 +436,8 @@ - + + Mounted sharing folders Csatolt megosztási mappák @@ -450,7 +445,6 @@ - My shares Megosztásaim @@ -458,7 +452,7 @@ - + Network Hálózat @@ -466,7 +460,7 @@ - + Mounted partitions and discs Csatolt partíciók és lemezek @@ -474,7 +468,7 @@ - + Partitions Partíciók @@ -482,7 +476,7 @@ - + Quick access Gyors hozzáférés @@ -490,7 +484,7 @@ - + Tag Címke @@ -498,7 +492,7 @@ - + Added tags Hozzáadott címkék @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Mutassa folyamatosan a Samba megosztásokat @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Leállítás - + Shortcut Parancsikon - + This system wallpaper is locked. Please contact your admin. Ez a rendszer háttérkép zárolva van. Kérjük forduljon a rendszergazdához. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (másolás) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese ( %1 másolása) @@ -909,33 +901,26 @@ Bit - Access denied Hozzáférés megtagadva - Confirm button Megerősítés - - - The device has been safely removed - Az eszköz biztonságosan eltávolítva - - - + + - - - + + + Open in new window Megnyitás új ablakban @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Megnyitás új fülön @@ -968,8 +953,8 @@ - - + + Properties Tulajdonságok @@ -1005,7 +990,7 @@ Új fájl - + Create symlink Szimbolikus hivatkozás létrehozása @@ -1092,70 +1077,70 @@ Lemezre írás - + Are you sure you want to erase all data on the disc? Biztosan törölni kíván minden adatot a lemezről? - + Erase button Törlés - + This action cannot be undone Ez a művelet nem vonható vissza - + How do you want to use this disc? Milyen módon kívánja használni ezt a lemezt? - + Burn image button Kép írása - + Burn files button Fájlok írása - + %1 is a duplicate file. %1 egy duplikált fájl. - + Insufficient disc space. Nem elegendő lemezterület. - + Lost connection to drive. Megszűnt a kapcsolat a meghajtóval. - + The CD/DVD drive is not ready. Try another disc. CD/DVD meghajtó nem áll készen. Próbáljon meg egy másik lemezt. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD meghajtó használatban van. Lépjen ki a meghajtót használó programból és próbálja újra. - + Invalid volume name Érvénytelen kötetnév - + Unknown error Ismeretlen hiba @@ -1194,42 +1179,42 @@ Elem: %1 - + Orange Narancs - + Red Piros - + Purple Lila - + Navy-blue Sötétkék - + Azure Égszínkék - + Green Zöld - + Yellow Sárga - + Gray Szürke @@ -1305,76 +1290,76 @@ Nem lehet elérni - + User directory Felhasználói mappa - + Local disk Helyi lemez - + Removable disk Eltávolítható lemez - + DVD DVD - + Network shared directory Hálózaton megosztott mappa - - + + Android mobile device Android mobil eszköz - + Apple mobile device Apple® mobil eszköz - + Unknown device Ismeretlen eszköz - + Remove button Eltávolítás - + Do you want to remove this item? Biztosan el szeretné távolítani ezt az elemet? - + Do yout want to remove %1 items? Biztosan el szeretne távolítani %1 elemet? - + It does not delete the original files Nem törli az eredeti fájlokat - + Clear recent history Előzmények törlése - - - + + + Source path Forrás útvonal @@ -1419,12 +1404,12 @@ Nem sikerült megnyitni a kukában lévő elemeket, először állítsa vissza - + Empty Trash Kuka ürítése - + Location Hely @@ -1524,7 +1509,7 @@ Keresés... - + My Vault Saját tároló @@ -1719,7 +1704,7 @@ Sikertelen - + Sidebar Oldalsáv @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nem engedélyezett - - + + + In trial period + A próbaidőszakban + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + Nem engedélyezett + + + + In trial period A próbaidőszakban @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Új gyűjtemény @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Asztal rendezése - + Desktop options Asztal beállítások - + Organize by Rendezés e szerint - + Custom collection Egyéni gyűjtemény - + Type Típus - + Time accessed Hozzáférés ideje - + Time modified Módosítási idő - + Time created Létrehozási idő - + Create a collection Hozzon létre egy gyűjteményt - - - Display Size - Megjelenítési méret - - - - Smaller - Kisebb - - - - Normal - Normál - - - - Larger - bb - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Asztal beállítások - + Auto arrange icons Ikonok automatikus elrendezése @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Megjelenítési méret - - - + Icon size Ikon méret @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? A Fájlkezelő új verzióra frissül, amely során a folyamatban lévő feladatok megszakadnak. Szeretné most frissíteni? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Az asztali szolgáltatások új verzióra frissülnek, melynek során a folyamatban lévő feladatok megszakadnak. Szeretné most frissíteni? - + Update button Frissítés - + Cancel button Mégsem @@ -2385,7 +2360,7 @@ - + %1 item selected %1 elem kiválasztva @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Hibás művelet! @@ -2554,191 +2529,191 @@ A cél mappa a forrás mappán belül található - + The passphrase is needed to access encrypted data on %1. A jelszó a titkosított adatok eléréséhez szükséges a(z) %1 helyen. - - - - - - - - + + + + + + + + Cancel button Mégsem - + Format button Formázás - + To access the device, you must format the disk first. Are you sure you want to format it now? Az eszköz eléréséhez először meg kell formáznia a lemezt. Biztosan formázni szeretné most? - + Do you want to run %1 or display its content? Futtatja a %1 -et, vagy megjeleníti annak tartalmát? - + It is an executable text file. Ez egy futtatható szöveges fájl. - - - + + + Run button Futtatás - - + + Run in terminal button Futtatás terminálban - + Display button Megjelenítés - + Do you want to run %1? Futtatni szeretné a %1? - + It is an executable file. Ez egy futtatható fájl. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? A kijelölt %1 elem nem helyezhető át a kukába. Szeretné véglegesen törölni őket? - + Permanently delete %1 items? Véglegesen törli a %1 elemet? - + Cannot move "%1" to the trash. Do you want to permanently delete it? A "%1" elem nem helyezhető át a kukába. Szeretné véglegesen törölni? - - - + + + Delete button Törlés - + Permanently delete %1? Véglegesen törli a %1-et? - - + + This action cannot be undone Ez a művelet nem vonható vissza - + Are you sure you want to empty %1 item? Biztosan ki akarja üríteni a %1 elemet? - + Are you sure you want to empty %1 items? Biztosan ki akarja üríteni a %1 elemet? - + Empty Üres - + Do you want to delete %1? Biztosan törölni szeretné a %1 fájlt? - + Do you want to delete the selected %1 items? Biztosan törölni szeretné a kijelölt %1 elemet? - + Failed to restore %1 file, the target folder is read-only Nem sikerült visszaállítani a %1 fájlt, a célmappa csak olvasható - + Failed to restore %1 files, the target folder is read-only Nem sikerült visszaállítani a %1 fájlokat, a célmappa csak olvasható - + "%1" already exists, please use another name. A "%1" már használatban van, kérjük válasszon egy másik nevet. - + Device or resource busy Az eszköz vagy az erőforrás foglalt - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Ez a fájl el lesz rejtve, ha a fájl neve ponttal "." karakterrel kezdődik. El akarja rejteni? - + Hide Elrejtés - + Cancel Mégsem - + Unable to access %1 Nem sikerült elérni a %1 fájlt - + %1 that this shortcut refers to has been changed or moved A %1 -re mutató parancsikon meg lett változtatva vagy át lett helyezve - + Do you want to delete this shortcut? Biztosan törölni szeretné ezt a parancsikont? - + This file is not executable, do you want to add the execute permission and run? Ez a fájl nem futtatható, hozzá akarja adni a végrehajtási engedélyt és utána futtni? - + The selected files contain system file/directory, and it cannot be deleted A kiválasztott fájlok rendszerfájlokat/mappákat tartalmaznak és nem lehet őket törölni @@ -2866,278 +2841,276 @@ Adja meg a jelszavát a lemez titkosításának feloldásához + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window Mindig új ablakban nyissa meg - + Open file: Fájl megnyitása: - + Click Kattintás - + Double click Dupla kattintás - + New window and tab Új ablak és fül - + Open from default window: Megnyitás alapértelmezett ablakban: - - + + Computer Számítógép - - + + Home Saját mappa - - + + Desktop Asztal - - + + Videos Videók - - + + Music Zenék - - + + Pictures Képek - - + + Documents Dokumentumok - - + + Downloads Letöltések - + Open in new tab: Megnyitás új fülön: - + Current Directory Jelenlegi mappa - + Files and folders Fájlok és mappák - + Show hidden files Rejtett fájlok megjelenítése - + Show file extensions Fájlkiterjesztések megjelenítése - + Mix sorting of files and folders Fájlok és mappák rendezése vegyesen - + Workspace Munkaterület - + View Nézet - + Default size: Alapértelmezett méret: - + Extra small Nagyon kicsi - + Small Kicsi - + Medium Közepes - + Large Nagy - + Extra large Nagyon nagy - + + Tree + + + + Default view: Alapértelmezett nézet: - + Icon Ikon - + List Lista - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview Miniatűr előnézete - + Compressed file preview Tömörített fájl előnézete - + Text preview Szöveg előnézete - + Document preview Dokumentum előnézete - + Image preview Kép előnézete - + Video preview Videó előnézete - + Music preview Zenei előnézete - + The remote environment shows thumbnail previews A távoli környezet miniatűr előnézeteket jelenít meg - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Az miniatűr előnézetek bekapcsolása a távoli könyvtár lassú betöltését vagy a művelet lefagyását okozhatja - + Advanced Haladó - - Search - Keresés - - - - Auto index internal disk - Belső lemez automatikus indexelése - - - - Index external storage device after connected to computer - Külső tároló eszközök indexelése a számítógéphez való csatlakoztatás után - - - - Full-Text search - Teljes szöveg keresése - - - + Mount Csatolás - + Auto mount Automatikus csatolás - + Open after auto mount Megnyitás automatikus csatolás után - - Show item counts and sizes in the path of mounted MTP devices - Elemszámok és méretek megjelenítése a csatlakoztatott MTP -eszközök elérési útvonalában - - - + Merge the entries of Samba shared folders Egyesítse a Samba megosztott mappáinak bejegyzéseit - + Switching the entry display may lead to failed mounting A belépési képernyő megváltoztatása sikertelen csatoláshoz vezethet - + Use the file chooser dialog of File Manager Használja a Fájlkezelő fájlválasztó párbeszédpanelét - + Ask for my confirmation when deleting files Kérjen megerősítést a fájlok törlésekor @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Egyebek - + Close Bezárás - + Close current tab Jelenlegi lap bezárása - + Back Vissza - + Forward Előre - + Switch to next tab Váltás a következő lapra - + Switch to previous tab Váltás az előző lapra - + Next file Következő fájl - + Previous file Előző fájl - + Switch tab by specified number between 1 to 8 Váltás a lapok között, megadott számmal, 1 és 8 között @@ -3416,42 +3394,43 @@ A %1 célfájl létrehozása sikertelen. Ütközés az információs funkcióban! - + Time modified: %1 Módosítási idő: %1 - + Original folder Eredeti mappa - + Contains: %1 Tartalmazza: %1 - + Original file Eredeti fájl - + Size: %1 Méret: %1 - + Target folder Cél mappa - + + In data statistics ... Adatstatisztika - + Target file Cél fájl @@ -3466,37 +3445,37 @@ Kérjük várjon - + Keep both button Mindkettő megtartása - + Skip button Kihagyás - - + + Replace button Csere - + Do not ask again Ne kérdezze újra - + Retry button Újra - + Merge button Egyesítés @@ -3510,7 +3489,7 @@ Adjon meg egy jelszót a megosztott mappák védelméhez - + Set a password on the shared folder for non-anonymous access Állítson be egy jelszót a megosztási mappában, a nem névtelen hozzáférésekhez @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Sajnáljuk, a gyors hozzáférés mappa nem található, eltávolítsuk? - + Cancel button Mégsem - + Remove button Eltávolítás @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Számítógép - + Computer display items Számítógépes megjelenítő elemek - + Hide built-in disks on the Computer page A beépített lemezek elrejtése a Számítógép oldalon - + Hide loop partitions on the Computer page A hurok partíciók elrejtése a Számítógép oldalon - + Show file system on disk icon Fájlrendszer megjelenítése a lemezen ikonokon - + Hide My Directories on the Computer page Saját könyvtárak elrejtése a Számítógép oldalon - + Hide 3rd party entries on the Computer page Harmadik fél bejegyzéseinek elrejtése a Számítógép oldalon @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Az eszköz feloldása sikertelen - + Wrong password Helytelen jelszó - + Rename failed Az átnevezés sikertelen - + The device is busy and cannot be renamed now Az eszköz használatban van, jelenleg nem nevezhető át - + Format failed A formázás sikertelen - + The device is busy and cannot be formatted now Az eszköz használatban van, jelenleg nem formázható - + Mount error Csatolási hiba - + Cannot access %1 Nem lehet elérni a %1 fájlt @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Számítógép - + %1 is read-only. Do you want to enable read and write permissions for it? - A %1 csak olvasható. Szeretné engedélyezni az olvasási és írási jogosultságokat? + A %1 csak olvasható. Szeretné engedélyezni az olvasási és írási jogosultságokat?  - + Once enabled, read/write permission will be granted permanently Ha egyszer engedélyezi az olvasási/írási jogosultságokat, akkor azokat véglegesen megkapja - + Cancel Mégsem - + Enable Now Engedélyezés most @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Saját könyvtáram - + Disks Lemezek @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Alapvető információk - + Device type Eszköztípus - + Total space Teljes tárhely - + File system Fájlrendszer - + Contains Tartalmak - + Free space Szabad tárhely - + %1 items %1 elem - + %1 item %1 elem @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 itt: %2 @@ -3990,27 +3968,27 @@ Méret - + Dimension Méret - + Duration Időtartam - + Type Típus - + Accessed Elérve - + Modified Módosítva @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - A(z) %1 fájlt a kukába helyezése sikertelen + A(z) %1 fájl kukába helyezése sikertelen @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 A fájl másolása vagy kivágása sikertelen, oka: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Fájl átnevezési hiba - + Failed to create the directory A mappa létrehozása sikertelen - + Failed to create the file A fájl létrehozása sikertelen - + link file error Link fájl hiba - - + + Failed to modify file permissions A fájlengedélyeket módosítása sikertelen @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Beillesztés + &Paste + - Cut - Kivágás + Cu&t + - Copy - Másolás + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Megnyitás + &Open + - Rename - Átnevezés + Rena&me + - Delete - Törlés + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Megnyitás terminálban + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Küldés a - + + Bluetooth + + + + Create link Hivatkozás létrehozása - + Send to desktop Küldés az asztalra @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Megosztás - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Megnyitás + + &Open + - + Open in new window Megnyitás új ablakban - + Open in new tab Megnyitás új fülön - + Cancel sharing Megosztás törlése - - Properties - Tulajdonságok + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Megosztásaim @@ -4700,7 +4683,7 @@ Nincsenek írható fájlok - + Unable to burn. Not enough free space on the target disk. Nem sikerült megírni. Nincs elég szabad hely a céllemezen. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Alapvető információk - + Size Méret - + Contains Tartalmak - + Type Típus - + Location Hely - + Time created Létrehozási idő - + Time accessed Hozzáférés ideje - + Time modified Módosítási idő - + Hide this file Fájl elrejtése - - + + %1 item %1 elem - + %1 items %1 elem @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security A titkok biztonságáért - + For Government A kormány számára - + For Enterprise Vállalatok számára - + Bit Bit - + Available Elérhető @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Számítógép - + Basic Info Alapvető információk - + Computer name Számítógép neve - + Version Verzió: - + Edition Kiadás - + OS build Operációs rendszer verziója - + Type Típus - + Processor Processzor - + Memory Memória @@ -4891,6 +4874,14 @@ %1 fájl, %2 mappa + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Tulajdonságok + P&roperties + dfmplugin_recent::Recent - - + Recent Legutóbbi @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Elérési útvonal - + Last access Utolsó hozzáférés - + Recent Legutóbbi @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Keresés: - + File Type: Fájltípus: - + File Size: Fájlméret: - + Time Modified: Módosítás időpontja: - + Time Accessed: Hozzáférési idő: - + Time Created: Létrehozás ideje: - + Reset Visszaállítás - + All subdirectories Minden alkönyvtár - + Current directory Jelenlegi mappa - + Application Alkalmazás - + Video Videó - + Audio Audió - + Image Kép - + Archive Tömörített - + Text Szöveg - + Executable Futtatható - + Backup file Biztonsági mentési fájl - + Today Ma - + Yesterday Tegnap - + This week Ezen a héten - + Last week Múlthéten - + This month Ebben a hónapban - + Last month Múlt hónapban - + This year Ebben az évben - + Last year Múlt évben @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Keresés + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Elérési útvonal @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Fájl helyének megnyitása - + Select all Összes kijelölése - + Path Elérési útvonal @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Gyors hozzáférés - + Partitions Partíciók - + Network Hálózat - + Tag Címke - - Bookmark - Könyvjelzők - - - + Other Egyéb - + Unknown Group Ismeretlen csoport - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Számítógépek a vezetékes hálózatban - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Megnyitás + &Open + @@ -5191,8 +5184,8 @@ - Properties - Tulajdonságok + P&roperties + @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Címke @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Fájl helyének megnyitása @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Csatlakozás kiszolgálóhoz - - - + + + Clear History Előzmények törlése - + Unfavorite Kedvencek visszavonása - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Mégsem - + Connect button Csatlakozás - + Charset Encoding Karakterkészlet kódolás - + Default Alapértelmezett - + My Favorites Kedvenceim - + No favorites yet Még nincsenek kedvencek - + Favorite Kedvencek @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Forrás elérési útvonal - + Time deleted Törlési idő @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Visszaállítás - + Restore all Összes visszaállítása - + Empty trash Kuka ürítése - + Source path Forrás elérési útvonal - + Time deleted Törlési idő @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Kuka @@ -5527,17 +5530,17 @@ Kuka - + item elem - + items elem - + Contains %1 %2 Tartalmazza %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Alapvető információk - + Size Méret - + Contains Tartalmak - + Type Típus - + Location Hely - + Time created Létrehozási idő - + Time accessed Hozzáférés ideje - + Time locked Az idő zárolva @@ -5771,7 +5774,7 @@ The %1 directory is occupied, please clear the files in this directory and try to unlock the safe again. A % 1 könyvtár foglalt, -kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra feloldani a széf zárolását. +kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra feloldani a széf zárolását.  @@ -5985,7 +5988,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Fájl tároló titkosítása @@ -6006,19 +6009,19 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f - - - + + + Encrypt Titkosítás - + Failed to create file vault: %1 Nem sikerült létrehozni a % 1 fájltárolót - + OK OK @@ -6069,7 +6072,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Tároló jelszó beállítása @@ -6095,7 +6098,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 karakter, tartalmazhatja A-Z, a-z, 0-9 és szimbólumokat @@ -6130,8 +6133,8 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f Következő - - + + Passwords do not match A jelszavak nem egyeznek @@ -6139,7 +6142,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultActiveStartView - + File Vault Fájl tároló @@ -6189,7 +6192,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultHelper - + Vault Tároló @@ -6199,7 +6202,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f A Tároló nem érhető el, mert a cryf nincs telepítve! - + A task is in progress, so it cannot perform your operation Egy feladat folyamatban van, ezért nem tudja végrehajtani a műveletet @@ -6207,99 +6210,122 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultPropertyDialog - + My Vault Saját tároló + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Mégsem + + + + Delete + Törlés + + + + Delete File Vault + Fájl tároló törlése + + + + Failed to delete file vault + A fájl tároló törlése sikertelen + + + + OK + OK + + + + Once deleted, the files in it will be permanently deleted + A törlés után a benne lévő fájlok véglegesen törlődnek + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + A törlés után a benne lévő fájlok véglegesen törlődnek + + + Password Jelszó - + Password hint: %1 Jelszó emlékeztető: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Írja be a 32 jegyű helyreállítási kulcsot + + Cancel + Mégsem + + + + Delete + Törlés - - - dfmplugin_vault::VaultRemovePages - + Delete File Vault Fájl tároló törlése - - Once deleted, the files in it will be permanently deleted - A törlés után a benne lévő fájlok véglegesen törlődnek + + Wrong password + Helytelen jelszó - - Cancel - button - Mégsem + + Failed to delete file vault + A fájl tároló törlése sikertelen - - Use Key - button - Kulcs használata + + OK + OK + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Törlés + + Input the 32-digit recovery key + Írja be a 32 jegyű helyreállítási kulcsot + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... Eltávolítás... - - + OK - button OK - - Wrong password - Helytelen jelszó - - - - Wrong recovery key - Helytelen helyreállítási kulcs - - - - Failed to delete file vault - A fájl tároló törlése sikertelen + + Delete File Vault + Fájl tároló törlése - + Deleted successfully Sikeresen törölve - - - Failed to delete - A törlés sikertelen - dfmplugin_vault::VaultVisibleManager @@ -6309,16 +6335,10 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f Saját tároló - + File Vault Fájl tároló - - - - Vault - Tároló - dfmplugin_workspace::FileOperatorHelper @@ -6331,22 +6351,22 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_workspace::FileViewModel - + Name Név - + Time modified Módosítási idő - + Size Méret - + Type Típus @@ -6362,7 +6382,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_workspace::IconItemEditor - + %1 are not allowed A %1 nem engedélyezett @@ -6378,45 +6398,50 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Rendezés - + Display as Megtekintés mint - + Name Név - + Time modified Módosítási idő - + Size Méret - + Type Típus - + Icon Ikon - + List Lista + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f filedialog_core::FileDialog - + Save button Mentés @@ -6438,13 +6463,13 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f filedialog_core::FileDialogStatusBar - + Save button Mentés - + Open button Megnyitás @@ -6482,112 +6507,112 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f plugin_filepreview::DDciIconPreview - + Available sizes: Elérhető méretek: - + Custom Size Egyéni méret - + Device Pixel Ratio: Eszköz pixelaránya: - + Theme: Téma: - + Light Világos - + Dark Sötét - + Mode: Mód: - + Normal Normál - + Disabled Letiltva - + Hovered Lebegő - + Pressed Megnyomott - + Palette Paletta - + Current mode icon does not support the palette A jelenlegi mód ikonja nem támogatja a palettát - + Foreground: Előtér: - + Background: Háttér: - + Highlight: Kiemelés: - + HighlightForeground: Előtér kiemelése: - + Background Color: Háttér színe: - + White Fehér - + Black Fekete - + Transparent Áttetsző - + Custom Egyéni @@ -6619,24 +6644,24 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f plugin_filepreview::MusicMessageView - + Artist: Előadó: - + Album: Album: - + unknown artist Ismeretlen előadó - + unknown album Ismeretlen album - + \ No newline at end of file diff --git a/translations/dde-file-manager_hy.ts b/translations/dde-file-manager_hy.ts index 32b7a70a90..4234e0372c 100644 --- a/translations/dde-file-manager_hy.ts +++ b/translations/dde-file-manager_hy.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_id.ts b/translations/dde-file-manager_id.ts index 7ffa30c48e..2e99f2f72f 100644 --- a/translations/dde-file-manager_id.ts +++ b/translations/dde-file-manager_id.ts @@ -15,99 +15,104 @@ Application - + File Manager Manajer Berkas - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Manajer Berkas adalah alat pengelolaan berkas yang kuat dan mudah digunakan, dilengkapi dengan fitur pencarian, penyalinan, tempat sampah, kompresi/dekompresi, properti berkas, dan fungsi-fungsi lain yang berguna. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Desktop - DeepinStorage + DeviceList - - - %1 Volume - 1% Volume + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Desktop + + Disk + Disk - - - DiskControlWidget - - Disks - Disk + + Open + Buka - - The device was not safely removed - Perangkat tidak dilepas dengan aman. + + Eject all + Keluarkan Semua + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Klik "Lepaskan dengan Aman" dan kemudian putuskan koneksi perangkat tersebut lain kali. + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disk sedang sibuk, tidak dapat dicabut sekarang. + + eject + - - The device is busy, cannot eject now - Perangkat sedang sibuk, tidak dapat dikeluarkan sekarang. + + unmount + - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Buka + + Operation failed + - - Eject all - Keluarkan Semua + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Tidak diketahui @@ -123,88 +128,89 @@ QObject - + need authorization to access Perlu otorisasi untuk mengakses - + Can't verify the identity of %1. Tidak dapat memverifikasi identitas %1. - + This happens when you log in to a computer the first time. Ini terjadi ketika kamu masuk ke komputer untuk pertama kalinya. - + The identity sent by the remote computer is Identitas yang dikirim oleh komputer remote adalah - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jika kamu ingin benar-benar yakin bahwa aman untuk melanjutkan, hubungi administrator sistem. - - - + + + System Disk Diska Sistem - + Data Disk Diska Data - + Blank %1 Disc - - - + + + Unknown Tidak diketahui - + %1 Drive - + %1 Encrypted - + + %1 Volume 1% Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Rumah @@ -223,7 +228,6 @@ - Desktop Desktop @@ -233,7 +237,6 @@ - Videos Video @@ -243,7 +246,6 @@ - Music Musik @@ -253,7 +255,6 @@ - Pictures Gambar @@ -263,7 +264,6 @@ - Documents Dokumen @@ -273,7 +273,6 @@ - Downloads Unduhan @@ -282,7 +281,6 @@ - Trash Tong sampah @@ -293,12 +291,11 @@ - Recent Baru ini - + @@ -306,7 +303,7 @@ Kaitkan otomatis - + @@ -319,47 +316,46 @@ %1 tugas-tugas sedang berlangsung - + %1 item %1 item - + %1 items %1 item - + Unable to find the original file - - + + File has been moved or deleted Berkas telah dipindahkan atau dihapus - - - + + You do not have permission to access this folder Anda tidak punya hak akses untuk mengakses folder ini - - + + You do not have permission to traverse files in it - - + + Folder is empty Folder kosong - + Loading... Memuat... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Komputer @@ -424,9 +419,8 @@ - - - + + Computers in LAN Komputer dalam LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Pintasan - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Akses ditolak - Confirm button Pastikan - - - The device has been safely removed - - - - + + - - - + + + Open in new window Bukan di jendela baru @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Buka di tab baru @@ -968,8 +953,8 @@ - - + + Properties Properti @@ -1005,7 +990,7 @@ Berkas Baru - + Create symlink Buat symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Hapus - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ Butir: %1 - + Orange Jingga - + Red Merah - + Purple Ungu - + Navy-blue Biru angkatan laut - + Azure Biru langit - + Green Hijau - + Yellow Kuning - + Gray Abu-abu @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Diska lokal - + Removable disk Diska yang bisa dilepas - + DVD DVD - + Network shared directory Direktori berbagi jaringan - - + + Android mobile device Perangkat mobil Android - + Apple mobile device Perangkat mobil Apple - + Unknown device Perangkat tidak diketahui - + Remove button Hapus - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Bersihkan riwayat saat ini - - - + + + Source path Jalur sumber @@ -1419,12 +1404,12 @@ - + Empty Trash Kosongkan Tong sampah - + Location Lokasi @@ -1524,7 +1509,7 @@ Mencari... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tipe - + Time accessed - + Time modified Waktu dimodifikasi - + Time created Tanggal dibuat - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Ukuran ikon @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 item dipilih @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operasi gagal! @@ -2554,191 +2529,191 @@ Folder target berada di dalam folder sumber! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Batal - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Apakah Anda ingin menjalankan %1 atau menampilkan kontennya? - + It is an executable text file. Ini merupakan berkas teks bisa dieksekusi. - - - + + + Run button Jalankan - - + + Run in terminal button Jalankan di terminal - + Display button Tampilkan - + Do you want to run %1? Apakah Anda ingin menjalankan %1? - + It is an executable file. Ini merupakan berkas yang bisa dieksekusi. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Menghapus permanen %1 item? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Hapus - + Permanently delete %1? Menghapus permanen %1 item? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Kosong - + Do you want to delete %1? Apakah Anda ingin menghapus %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" sudah ada, silakan gunakan nama lain. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Batal - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 bahwa pintasan ini mengacu telah berubah atau dipindahkan - + Do you want to delete this shortcut? Apakah Anda yakin untuk menghapus jalan pintas ini? - + This file is not executable, do you want to add the execute permission and run? Berkas ini bukan eksekusi, apakah anda ingin tambah ijin eksekusi dan jalan? - + The selected files contain system file/directory, and it cannot be deleted Berkas yang terpilih merupakan berkas/direktori sistem, tidak dapat menyalin @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Lainnya - + Close Tutup - + Close current tab Tutup tab saat ini - + Back Kembali - + Forward Teruskan - + Switch to next tab Alih ke tab selanjutnya - + Switch to previous tab Alih ke tab sebelumnya - + Next file Berkas sleanjutnya - + Previous file Berkas sbeelumnya - + Switch tab by specified number between 1 to 8 Beralih tab dengan nomor tertentu di antara 1 sampai dengan 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Folder asli - + Contains: %1 - + Original file Berkas asli - + Size: %1 Ukuran: %1 - + Target folder Folder tujuan - + + In data statistics ... - + Target file Berkas tujuan @@ -3466,37 +3445,37 @@ Mohon tunggu - + Keep both button Simpan keduanya - + Skip button Lewati - - + + Replace button Ganti - + Do not ask again Jangan tanya lagi - + Retry button Coba lagi - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Batal - + Remove button Hapus @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Komputer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Komputer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Direktori Saya - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tipe perangkat - + Total space Total ruang - + File system - + Contains Mengandung - + Free space Ruang kosong - + %1 items %1 item - + %1 item %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Ukuran - + Dimension Dimensi - + Duration Durasi - + Type Tipe - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Tempel + &Paste + - Cut - Potong + Cu&t + - Copy - Salin + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Buka + &Open + - Rename - Ganti nama + Rena&me + - Delete - Hapus + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Buka di terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Kirim ke - + + Bluetooth + + + + Create link Buat tautan - + Send to desktop Kirim ke desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Buka + + &Open + - + Open in new window Bukan di jendela baru - + Open in new tab Buka di tab baru - + Cancel sharing Batalkan berbagi - - Properties - Properti + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Berbagiku @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Ukuran - + Contains Mengandung - + Type Tipe - + Location Lokasi - + Time created Tanggal dibuat - + Time accessed - + Time modified Waktu dimodifikasi - + Hide this file - - + + %1 item %1 item - + %1 items %1 item @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Tersedia @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Komputer - + Basic Info Info Dasar - + Computer name - + Version Versi - + Edition Edisi - + OS build - + Type Tipe - + Processor Prosesor - + Memory Memori @@ -4890,6 +4873,14 @@ %1 berkas, %2 folder + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Properti + P&roperties + dfmplugin_recent::Recent - - + Recent Baru ini @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Jejak - + Last access Akses terakhir - + Recent Baru ini @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Cari: - + File Type: Tipe Berkas: - + File Size: Ukuran Berkas: - + Time Modified: Waktu Modifikasi: - + Time Accessed: - + Time Created: - + Reset Setel Ulang - + All subdirectories Semua subdirektori - + Current directory Direktori saat ini - + Application Aplikasi - + Video Video - + Audio Audio - + Image Gambar - + Archive Arsip - + Text teks - + Executable Dapat dijalankan - + Backup file - + Today Sekarang - + Yesterday Kemarin - + This week Minggu ini - + Last week Minggu kemarin - + This month Bulan ini - + Last month Bulan lalu - + This year Tahun ini - + Last year Tahun lalu @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Cari + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Jejak @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Buka lokasi berkas - + Select all Pilih semua - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other Lainnya - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Komputer dalam LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Buka + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Buka lokasi berkas @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History Bersihkan Riwayat - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Batal - + Connect button Sambung - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Jejak Sumber - + Time deleted Waktu dihapus @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Kembalikan - + Restore all Kembalikan semua - + Empty trash - + Source path Jalur sumber - + Time deleted Waktu dihapus @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Tong sampah @@ -5526,17 +5529,17 @@ Tong sampah - + item item - + items item - + Contains %1 %2 Mengandung %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Ukuran - + Contains Mengandung - + Type Tipe - + Location Lokasi - + Time created Tanggal dibuat - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Selanjutnya - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,98 +6208,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Sandi lewat + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Sandi lewat + + + + Password hint: %1 - + Cancel - button - Batal + - - Use Key - button + + Delete - - Delete - button - Hapus + + Delete File Vault + - - Removing... - Menghapus... + + Wrong password + + + + + Failed to delete file vault + - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Kata sandi salah + + Input the 32-digit recovery key + + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete - Gagal untuk menghapus + + Deleted successfully + @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Urutkan berdasar - + Display as Tampilkan sebagai - + Name Nama - + Time modified Waktu dimodifikasi - + Size Ukuran - + Type Tipe - + Icon Ikon - + List Daftar + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Simpan @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Simpan - + Open button Buka @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_it.ts b/translations/dde-file-manager_it.ts index d3ee01e90a..fb55f3337e 100644 --- a/translations/dde-file-manager_it.ts +++ b/translations/dde-file-manager_it.ts @@ -15,100 +15,105 @@ Application - + File Manager Gestore File - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Gestore File di Deepin è uno strumento di gestione file con funzionalità di ricerca, copia, compressione/decompressione, dettagli dei file ed altre funzionalità. Localizzazione italiana a cura di Massimo A. Carofano. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - %1 su %2 + + Desktop + Desktop - DeepinStorage + DeviceList - - - %1 Volume - Volume %1 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Desktop + + Disk + Disco - - - DiskControlWidget - - Disks - Dischi + + Open + Apri - - The device was not safely removed - Il dispositivo non è stato rimosso in sicurezza + + Eject all + Espelli tutto + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Clicca su "Rimozione sicura" e rimuovilo solo successivamente + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disco occupato, impossibile smontare + + eject + - - The device is busy, cannot eject now - Disco occupato, impossibile espellerlo ora + + unmount + - - - DiskMountPlugin - - Disk - Disco + + + remove + - - Open - Apri + + Operation failed + - - Eject all - Espelli tutto + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files Tutti i file + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Sconosciuto @@ -124,88 +129,89 @@ Localizzazione italiana a cura di Massimo A. Carofano. QObject - + need authorization to access need authorization to access - + Can't verify the identity of %1. Impossibile verificare l'identità di %1. - + This happens when you log in to a computer the first time. Questo accade quando effettui l'accesso ad un computer per la prima volta. - + The identity sent by the remote computer is L'identità inviata dal computer remoto è - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Se desideri essere sicuro, contatta l'admin di sistema. - - - + + + System Disk Disco di sistema - + Data Disk Disco dati - + Blank %1 Disc Cancella disco %1 - - - + + + Unknown Sconosciuto - + %1 Drive Dispositivo %1 - + %1 Encrypted %1 Crittografato - + + %1 Volume Volume %1 - - + Scanning the device, stop it? Scansione del dispositivo in corso, interromperla? - + Unmount failed Smontaggio fallito - + Cannot stop scanning device Impossibile interrompere la scansione del dispositivo - + + %1 on %2 %1 su %2 @@ -214,7 +220,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Home Home @@ -224,7 +229,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Desktop Desktop @@ -234,7 +238,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Videos Video @@ -244,7 +247,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Music Musica @@ -254,7 +256,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Pictures Immagini @@ -264,7 +265,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Documents Documenti @@ -274,7 +274,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Downloads Download @@ -283,7 +282,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Trash Cestino @@ -294,12 +292,11 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Recent File Recenti - + @@ -307,7 +304,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Monta automaticamente - + @@ -320,47 +317,46 @@ Localizzazione italiana a cura di Massimo A. Carofano. 1% operazioni in corso - + %1 item %1 oggetto - + %1 items %1 oggetti - + Unable to find the original file Impossibile trovare il file di origine - - + + File has been moved or deleted Il file è stato spostato o eliminato - - - + + You do not have permission to access this folder Non hai i permessi per accedere a questa cartella - - + + You do not have permission to traverse files in it Non hai i permessi per modificare i file contenuti - - + + Folder is empty Cartella vuota - + Loading... Caricamento... @@ -409,7 +405,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Built-in disks Dischi interni @@ -417,7 +413,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Computer Computer @@ -425,9 +420,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - - + + Computers in LAN Computer in LAN @@ -435,7 +429,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Loop partitions Partizioni loop @@ -443,7 +437,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + + Mounted sharing folders Cartelle condivise montate @@ -451,7 +446,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. - My shares Le mie condivisioni @@ -459,7 +453,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Network Network @@ -467,7 +461,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Mounted partitions and discs Partizioni e dischi montati @@ -475,7 +469,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Partitions Partizioni @@ -483,7 +477,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Quick access Accesso rapido @@ -491,7 +485,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Tag Tag @@ -499,7 +493,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Added tags Tag aggiunti @@ -514,7 +508,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Keep showing the mounted Samba shares Continua a mostrare le condivisioni Samba montate @@ -848,16 +842,15 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - - + + - + Cancel button @@ -865,29 +858,28 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Stop button Stop - + Shortcut Scorciatoia - + This system wallpaper is locked. Please contact your admin. Lo sfondo di sistema è bloccato, contatta il tuo Admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copia) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copia %1) @@ -910,33 +902,26 @@ Localizzazione italiana a cura di Massimo A. Carofano. Bit - Access denied Accesso negato - Confirm button Conferma - - - The device has been safely removed - Il dispositivo è stato rimosso in sicurezza - - - + + - - - + + + Open in new window Apri in una nuova finestra @@ -945,12 +930,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + - - - + + + Open in new tab Apri in una nuova scheda @@ -969,8 +954,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + Properties Proprietà @@ -1006,7 +991,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Nuovo file - + Create symlink Crea symlink @@ -1093,70 +1078,70 @@ Localizzazione italiana a cura di Massimo A. Carofano. Aggiungi al disco - + Are you sure you want to erase all data on the disc? Sicuro di voler eliminare tutti i dati presenti sul disco? - + Erase button Elimina - + This action cannot be undone Questa azione non può esser annullata - + How do you want to use this disc? Come vuoi utilizzare questo disco? - + Burn image button Scrivi immagine - + Burn files button Scrivi file - + %1 is a duplicate file. %1 è un file duplicato. - + Insufficient disc space. Spazio insufficiente su disco - + Lost connection to drive. Connessione al disco persa. - + The CD/DVD drive is not ready. Try another disc. Il CD/DVD non è pronto. Prova con un altro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Il CD/DVD è occupato. Esci dal programma che sta utilizzando il lettore, inserendo nuovamente il disco. - + Invalid volume name Nome volume non valido - + Unknown error Errore sconosciuto @@ -1195,42 +1180,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. Elementi: %1 - + Orange Arancione - + Red Rosso - + Purple Viola - + Navy-blue Blu Navy - + Azure Azzurro - + Green Verde - + Yellow Giallo - + Gray Grigio @@ -1306,76 +1291,76 @@ Localizzazione italiana a cura di Massimo A. Carofano. Accesso non consentito - + User directory Cartella Utente - + Local disk Disco locale - + Removable disk Disco rimovibile - + DVD DVD - + Network shared directory Directory condivisa di rete - - + + Android mobile device Dispositivo Mobile Android - + Apple mobile device Dispositivo Mobile Apple - + Unknown device Dispositivo sconosciuto - + Remove button Rimuovi - + Do you want to remove this item? Desideri eliminare questo elemento? - + Do yout want to remove %1 items? Vuoi rimuovere %1 elementi? - + It does not delete the original files Non cancellare i file originali - + Clear recent history Pulisci cronologia - - - + + + Source path Percorso @@ -1420,12 +1405,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. Impossibile aprire i file nel cestino, ripristinali prima di procedere - + Empty Trash Svuota cestino - + Location Percorso @@ -1525,7 +1510,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Ricerca... - + My Vault Il mio Vault @@ -1720,7 +1705,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Fallito - + Sidebar Barra laterale @@ -1903,14 +1888,29 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nessuna autorizzazione - - + + + In trial period + Periodo di prova + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + Nessuna autorizzazione + + + + In trial period Periodo di prova @@ -1974,7 +1974,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::CustomMode - + New Collection Nuova collezione @@ -1982,70 +1982,50 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizza il desktop - + Desktop options Opzioni desktop - + Organize by Organizzato da - + Custom collection Collezione personalizzata - + Type Tipo - + Time accessed Ultimo accesso - + Time modified Ultima modifica - + Time created Data creazione - + Create a collection Crea una collezione - - - Display Size - Dimensioni display - - - - Smaller - Piccolo - - - - Normal - Normale - - - - Larger - Grande - ddplugin_organizer::ItemEditor @@ -2066,12 +2046,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::OptionsWindow - + Desktop options Opzioni desktop - + Auto arrange icons Disponi automaticamente le icone @@ -2176,12 +2156,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::SizeSlider - - Display size - Dimensioni schermo - - - + Icon size Dimensione icone @@ -2350,23 +2325,23 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? File Manager verrà aggiornato a una nuova versione, durante la quale le attività in corso verranno terminate. Vuoi aggiornare adesso? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? I servizi desktop verranno aggiornati a una nuova versione, durante la quale le attività in corso verranno terminate. Vuoi aggiornare adesso? - + Update button Aggiorna - + Cancel button Annulla @@ -2386,7 +2361,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + %1 item selected %1 oggetto selezionato @@ -2425,10 +2400,10 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmbase::DialogManager - - - - + + + + Confirm button @@ -2537,15 +2512,15 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + OK button OK - + Operation failed! Operazione fallita! @@ -2555,191 +2530,191 @@ Localizzazione italiana a cura di Massimo A. Carofano. La cartella di destinazione è all'interno di quella originaria! - + The passphrase is needed to access encrypted data on %1. La passphrase è necessaria per accedere ai dati crittografati su %1. - - - - - - - - + + + + + + + + Cancel button Annulla - + Format button Formatta - + To access the device, you must format the disk first. Are you sure you want to format it now? Per accedere al dispositivo dovresti prima formattare il disco. Sicuro di volerlo formattare? - + Do you want to run %1 or display its content? Vuoi eseguire %1 o visualizzarne il contenuto? - + It is an executable text file. E' un file eseguibile di testo. - - - + + + Run button Esegui - - + + Run in terminal button Esegui nel Terminale - + Display button Visualizza - + Do you want to run %1? Desideri eseguire %1? - + It is an executable file. È un file eseguibile. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Impossibile spostare gli elementi %1 selezionati nel cestino. Vuoi eliminarli definitivamente? - + Permanently delete %1 items? Elimina definitivamente %1? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Impossibile spostare "%1" nel cestino. Vuoi eliminarlo definitivamente? - - - + + + Delete button Elimina - + Permanently delete %1? Elimina definitivamente %1? - - + + This action cannot be undone Questa azione non può esser annullata - + Are you sure you want to empty %1 item? Sicuro di voler eliminare %1 oggetto? - + Are you sure you want to empty %1 items? Sicuro di eliminare %1 oggetti? - + Empty Vuoto - + Do you want to delete %1? Desideri cancellare %1? - + Do you want to delete the selected %1 items? Desideri eliminare i %1 elementi selezionati? - + Failed to restore %1 file, the target folder is read-only Ripristino di %1 file fallito, la destinazione è di tipo sola lettura - + Failed to restore %1 files, the target folder is read-only Ripristino di %1 file fallito, la destinazione è di tipo sola lettura - + "%1" already exists, please use another name. "%1" esiste già, usa un altro nome. - + Device or resource busy Risorse occupate - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Il file sarà nascosto se il suo nome inizierà per punto '.', desideri confermarlo? - + Hide Nascondi - + Cancel Annulla - + Unable to access %1 Impossibile accedere a %1 - + %1 that this shortcut refers to has been changed or moved %1 questa scorciatoia è stata modificata o spostata - + Do you want to delete this shortcut? Desideri eliminare questa scorciatoia? - + This file is not executable, do you want to add the execute permission and run? Il file non è eseguibile, desideri impostare i relativi permessi ed eseguire? - + The selected files contain system file/directory, and it cannot be deleted La selezione contiene files e cartelle di sistema, quindi non possono esser eliminati. @@ -2867,278 +2842,276 @@ Localizzazione italiana a cura di Massimo A. Carofano. Inserisci la password per decifrare il Disco + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window Apri sempre le cartelle in una nuova finestra - + Open file: Apri file: - + Click Click - + Double click Doppio Click - + New window and tab Nuova finestra e scheda - + Open from default window: Apri dalla finestra di default: - - + + Computer Computer - - + + Home Home - - + + Desktop Desktop - - + + Videos Video - - + + Music Musica - - + + Pictures Immagini - - + + Documents Documenti - - + + Downloads Download - + Open in new tab: Apri in una nuova scheda - + Current Directory Directory attuale - + Files and folders File e cartelle - + Show hidden files Mostra file nascosti - + Show file extensions Mostra le estensioni - + Mix sorting of files and folders Ordina assieme file e cartelle - + Workspace Spazio di lavoro - + View Visualizza - + Default size: Dimensioni di default: - + Extra small Molto piccola - + Small Piccola - + Medium Media - + Large Grande - + Extra large Molto grande - + + Tree + + + + Default view: Vista di default: - + Icon Icona - + List Lista - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview Anteprime in miniatura - + Compressed file preview Anteprima file compressi - + Text preview Anteprima testo - + Document preview Anteprima documenti - + Image preview Anteprima immagini - + Video preview Anteprima video - + Music preview Anteprima musica - + The remote environment shows thumbnail previews L'ambiente remoto mostra le anteprima in miniatura - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Abilitare le anteprime delle immagini potrebbe causare un caricamento lento delle cartelle remote - + Advanced Avanzate - - Search - Ricerca - - - - Auto index internal disk - Indicizza il disco interno - - - - Index external storage device after connected to computer - Indicizza i dispositivi esterni dopo la loro connessione al computer - - - - Full-Text search - Ricerca in tutto il testo - - - + Mount Monta - + Auto mount Monta automaticamente - + Open after auto mount Apri dopo l'auto-mount - - Show item counts and sizes in the path of mounted MTP devices - Mostra il numero e le dimensioni degli elementi nel percorso dei dispositivi MTP montati - - - + Merge the entries of Samba shared folders Unisci le voci delle cartelle condivise Samba - + Switching the entry display may lead to failed mounting La commutazione del display di ingresso potrebbe portare al mancato montaggio - + Use the file chooser dialog of File Manager Usa il form di dialog del File Manager - + Ask for my confirmation when deleting files Chiedi la conferma in caso di eliminazione @@ -3302,51 +3275,56 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Switch to tree view + + + + Others Altro - + Close Chiudi - + Close current tab Chiudi scheda attuale - + Back Indietro - + Forward Avanti - + Switch to next tab Passa alla scheda successiva - + Switch to previous tab Torna alla scheda precedente - + Next file Prossimo file - + Previous file File precedente - + Switch tab by specified number between 1 to 8 Cambia scheda specificando un numero tra 1 e 8 @@ -3417,42 +3395,43 @@ Localizzazione italiana a cura di Massimo A. Carofano. create target file %1 Info failed in show conflict Info function! - + Time modified: %1 Ultima modifica: %1 - + Original folder Cartella di origine - + Contains: %1 Contiene: %1 - + Original file File originario - + Size: %1 Dimensione: %1 - + Target folder Cartella di destinazione - + + In data statistics ... Nelle statistiche dei dati... - + Target file File di destinazione @@ -3467,37 +3446,37 @@ Localizzazione italiana a cura di Massimo A. Carofano. Attendere prego - + Keep both button Mantieni entrambi - + Skip button Salta - - + + Replace button Sostituisci - + Do not ask again Non chiederlo nuovamente - + Retry button Riprova - + Merge button Unisci @@ -3511,7 +3490,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Inserisci una password per proteggere le cartelle - + Set a password on the shared folder for non-anonymous access Impostare una password sulla cartella condivisa per l'accesso non anonimo @@ -3537,18 +3516,18 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Spiacenti, non riesco a individuare la directory di accesso rapido, rimuoverla? - + Cancel button Annulla - + Remove button Rimuovi @@ -3806,38 +3785,37 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::Computer - - + Computer Computer - + Computer display items Mostra elementi - + Hide built-in disks on the Computer page Nascondi i dischi integrati nella pagina Computer - + Hide loop partitions on the Computer page Nascondi le partizioni loop nella pagina Computer - + Show file system on disk icon Mostra il file system nell'icona del Disco - + Hide My Directories on the Computer page Nascondi le mie directory nella pagina Computer - + Hide 3rd party entries on the Computer page Hide 3rd party entries on the Computer page @@ -3845,42 +3823,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ComputerController - + Unlock device failed Unlock device failed - + Wrong password Password errata - + Rename failed Ridenominazione fallita - + The device is busy and cannot be renamed now Impossibile ridenominare dato che il dspositivo è occupato - + Format failed Formattazione fallita - + The device is busy and cannot be formatted now Il dispositivo è occupato e non può essere formattato ora - + Mount error Errore di montaggio - + Cannot access %1 Impossibile accedere a %1 @@ -3888,27 +3866,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? %1 è di sola lettura. Vuoi abilitare le autorizzazioni di lettura e scrittura per questo? - + Once enabled, read/write permission will be granted permanently Una volta abilitati, i permessi di lettura/scrittura diverranno permanenti - + Cancel Annulla - + Enable Now Abilita ora @@ -3916,12 +3894,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ComputerItemWatcher - + My Directories Preferiti - + Disks Dischi @@ -3929,42 +3907,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::DeviceBasicWidget - + Basic info Info di base - + Device type Tipo dispositivo - + Total space Spazio totale - + File system File system - + Contains Contiene - + Free space Spazio libero - + %1 items %1 oggetti - + %1 item %1 oggetto @@ -3972,7 +3950,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 su %2 @@ -3991,27 +3969,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. Dimensione - + Dimension Dimensioni - + Duration Durata - + Type Tipo - + Accessed Accesso effettuato - + Modified Modificato @@ -4281,7 +4259,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Failed to move the file %1 to trash - + Spostamento file %1 fallita @@ -4358,7 +4336,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Copy or Cut File failed! - + Copia o taglio del file fallito! @@ -4388,7 +4366,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Failed to move the file %1 to trash, cause: %2 - + Spostamento nel cestino del file %1 fallito, causa: %2 @@ -4407,8 +4385,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Copia o taglio del file fallito, causa: %1 @@ -4440,30 +4418,30 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Errore ridenominazione file - + Failed to create the directory Creazione Impossibile creare la directory - + Failed to create the file Creazione file fallita - + link file error Errore collegamento file - - + + Failed to modify file permissions - + Modifica permessi file fallita @@ -4478,36 +4456,36 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Incolla + &Paste + - Cut - Taglia + Cu&t + - Copy - Copia + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Apri + &Open + - Rename - Rinomina + Rena&me + - Delete - Elimina + &Delete + @@ -4580,6 +4558,11 @@ Localizzazione italiana a cura di Massimo A. Carofano. Open in terminal Apri nel Terminale + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4597,17 +4580,22 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_menu::SendToMenuScenePrivate - + Send to Invia a - + + Bluetooth + + + + Create link Crea collegamento - + Send to desktop Invia al desktop @@ -4615,48 +4603,43 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_menu::ShareMenuScenePrivate - + Share Condividi - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Apri + + &Open + - + Open in new window Apri in una nuova finestra - + Open in new tab Apri in una nuova scheda - + Cancel sharing Annulla condivisione - - Properties - Proprietà + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Condivisi @@ -4701,7 +4684,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Nessun file da scrivere - + Unable to burn. Not enough free space on the target disk. Scrittura non possibile. Spazio disponibile sul disco di destinazione non sufficiente. @@ -4709,58 +4692,58 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::BasicWidget - + Basic info Info di base - + Size Dimensione - + Contains Contiene - + Type Tipo - + Location Percorso - + Time created Data creazione - + Time accessed Ultimo accesso - + Time modified Ultima modifica - + Hide this file Nascondi questo file - - + + %1 item %1 oggetto - + %1 items %1 oggetti @@ -4781,27 +4764,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Per la sicurezza dei segreti - + For Government Per il governo - + For Enterprise Per Impresa - + Bit Bit - + Available Disponibile @@ -4809,47 +4792,47 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Info base - + Computer name Nome Computer - + Version Versione - + Edition Edizione - + OS build OS - + Type Tipo - + Processor Processore - + Memory Memoria @@ -4892,6 +4875,14 @@ Localizzazione italiana a cura di Massimo A. Carofano. %1 file(s), %2 cartella(e) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4911,15 +4902,14 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Proprietà + P&roperties + dfmplugin_recent::Recent - - + Recent File Recenti @@ -4927,17 +4917,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_recent::RecentManager - + Path Percorso - + Last access Ultimo accesso - + Recent File Recenti @@ -4968,127 +4958,127 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_search::AdvanceSearchBarPrivate - + Search: Cerca: - + File Type: Tipo file: - + File Size: Dimensione file: - + Time Modified: Ultima modifica: - + Time Accessed: Ultimo accesso: - + Time Created: Data creazione: - + Reset Reset - + All subdirectories Tutte le sottocartelle - + Current directory Cartella corrente - + Application Applicazioni - + Video Video - + Audio Audio - + Image Immagini - + Archive Archivio - + Text Testo - + Executable Eseguibile - + Backup file Backup del file - + Today Oggi - + Yesterday Ieri - + This week Questa settimana - + Last week La settimana scorsa - + This month Questo mese - + Last month Il mese scorso - + This year Quest'anno - + Last year L'anno scorso @@ -5096,15 +5086,31 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_search::Search - + + Search Cerca + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Percorso @@ -5112,17 +5118,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_search::SearchMenuScene - + Open file location Apri la cartella del file - + Select all Seleziona tutto - + Path Percorso @@ -5130,55 +5136,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_sidebar::SideBarWidget - + Quick access Accesso rapido - + Partitions Partizioni - + Network Rete - + Tag Tag - - Bookmark - Preferiti - - - + Other Altro - + Unknown Group Gruppo sconosciuto - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Computer in LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Apri + &Open + @@ -5192,8 +5185,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Properties - Proprietà + P&roperties + @@ -5227,7 +5220,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_tag::Tag - + Tag Tag @@ -5235,7 +5228,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_tag::TagDirMenuScene - + Open file location Apri la cartella del file @@ -5285,56 +5278,66 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Connetti al Server - - - + + + Clear History Cancella cronologia - + Unfavorite Togli dai preferiti - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Annulla - + Connect button Connetti - + Charset Encoding Codifica di caratteri - + Default Default - + My Favorites I miei preferiti - + No favorites yet Non ancora preferito - + Favorite Aggiungi ai preferiti @@ -5474,12 +5477,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_trash::TrashHelper - + Source Path Percorso fonte - + Time deleted Data eliminazione @@ -5487,27 +5490,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_trash::TrashMenuScenePrivate - + Restore Ripristina - + Restore all Ripristina tutto - + Empty trash Svuota cestino - + Source path Percorso - + Time deleted Data eliminazione @@ -5515,7 +5518,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_trashcore::TrashCore - + Trash Cestino @@ -5528,17 +5531,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. Cestino - + item Oggetto - + items Oggetti - + Contains %1 %2 Contiene %1 %2 @@ -5720,42 +5723,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_vault::BasicWidget - + Basic info Info di base - + Size Dimensione - + Contains Contiene - + Type Tipo - + Location Percorso - + Time created Data creazione - + Time accessed Ultimo accesso - + Time locked Data blocco @@ -5986,7 +5989,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Encrypt File Vault @@ -6007,19 +6010,19 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. - - - + + + Encrypt Crittografa - + Failed to create file vault: %1 Creazione file vault fallita: %1 - + OK OK @@ -6070,7 +6073,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Imposta la password Vault @@ -6096,7 +6099,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caratteri, che contenga A-Z, a-z, 0-9 e simboli @@ -6131,8 +6134,8 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente.Prosegui - - + + Passwords do not match La password non corrisponde @@ -6140,7 +6143,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. dfmplugin_vault::VaultActiveStartView - + File Vault File di recupero Vault @@ -6191,7 +6194,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_vault::VaultHelper - + Vault Vault @@ -6201,7 +6204,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Vault not available because cryfs not installed! - + A task is in progress, so it cannot perform your operation Un'attività è in corso, quindi non può eseguire l'operazione @@ -6209,99 +6212,122 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_vault::VaultPropertyDialog - + My Vault Il mio Vault + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Annulla + + + + Delete + Elimina + + + + Delete File Vault + Elimina File Vault + + + + Failed to delete file vault + Rimozione file vault fallita + + + + OK + Ok + + + + Once deleted, the files in it will be permanently deleted + Una volta rimosso, i file contenuti saranno eliminati + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + Una volta rimosso, i file contenuti saranno eliminati + + + Password Password - + Password hint: %1 Suggerimento password: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Inserisci la chiave di 32 caratteri + + Cancel + Annulla - - - dfmplugin_vault::VaultRemovePages - + + Delete + Elimina + + + Delete File Vault Elimina File Vault - - Once deleted, the files in it will be permanently deleted - Una volta rimosso, i file contenuti saranno eliminati + + Wrong password + Password errata - - Cancel - button - Annulla + + Failed to delete file vault + Rimozione file vault fallita - - Use Key - button - Usa la chiave + + OK + Ok + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Elimina + + Input the 32-digit recovery key + Inserisci la chiave di 32 caratteri + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... Rimozione... - - + OK - button - OK - - - - Wrong password - Password errata - - - - Wrong recovery key - Password di recupero errata + Ok - - Failed to delete file vault - Rimozione file vault fallita + + Delete File Vault + Elimina File Vault - + Deleted successfully Rimozione riuscita - - - Failed to delete - Eliminazione file fallita - dfmplugin_vault::VaultVisibleManager @@ -6311,16 +6337,10 @@ Localizzazione italiana a cura di Massimo A. Carofano. Il mio Vault - + File Vault File di recupero Vault - - - - Vault - Vault - dfmplugin_workspace::FileOperatorHelper @@ -6333,22 +6353,22 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_workspace::FileViewModel - + Name Nome - + Time modified Ultima modifica - + Size Dimensione - + Type Tipo @@ -6364,7 +6384,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 non ammessi @@ -6380,45 +6400,50 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordina per - + Display as Visualizza come - + Name Nome - + Time modified Ultima modifica - + Size Dimensione - + Type Tipo - + Icon Icona - + List Lista + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6431,7 +6456,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. filedialog_core::FileDialog - + Save button Salva @@ -6440,13 +6465,13 @@ Localizzazione italiana a cura di Massimo A. Carofano. filedialog_core::FileDialogStatusBar - + Save button Salva - + Open button Apri @@ -6484,112 +6509,112 @@ Localizzazione italiana a cura di Massimo A. Carofano. plugin_filepreview::DDciIconPreview - + Available sizes: Dimensioni disponibili: - + Custom Size Dimensione personalizzata - + Device Pixel Ratio: Rapporto del dispositivo - + Theme: Tema: - + Light Chiaro - + Dark Scuro - + Mode: Modalità: - + Normal Normale - + Disabled Disattivato - + Hovered Al passaggio - + Pressed Premendo - + Palette Tavolozza colori - + Current mode icon does not support the palette L'attuale modalità delle icone non supporta la tavolozza colori - + Foreground: Primo piano: - + Background: Sfondo: - + Highlight: Evidenziato: - + HighlightForeground: Evidenze in primo piano: - + Background Color: Colore sfondo: - + White Bianco - + Black Nero - + Transparent Trasparente - + Custom Personalizzato @@ -6621,22 +6646,22 @@ Localizzazione italiana a cura di Massimo A. Carofano. plugin_filepreview::MusicMessageView - + Artist: Artista: - + Album: Album: - + unknown artist artisca sconosciuto - + unknown album album sconosciuto diff --git a/translations/dde-file-manager_ja.ts b/translations/dde-file-manager_ja.ts index a75a435b0a..bc31444f1c 100644 --- a/translations/dde-file-manager_ja.ts +++ b/translations/dde-file-manager_ja.ts @@ -15,99 +15,104 @@ Application - + File Manager ファイル マネージャー - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ファイル マネージャーは、検索やコピー、ゴミ箱、圧縮/伸張、ファイルプロパティ、その他の便利な機能を備えた、強力で使いやすいファイル管理ツールです。 - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + デスクトップ - DeepinStorage + DeviceList - - - %1 Volume - %1 ボリューム + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - デスクトップ + + Disk + ディスク - - - DiskControlWidget - - Disks - ディスク + + Open + 開く - - The device was not safely removed - デバイスが安全に取り外されませんでした + + Eject all + すべて取り出す + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - 次回は "安全に取り出す" をクリックしてから切断してください + + The device has been safely removed + - - Disk is busy, cannot unmount now - ディスクがビジー状態のため、現在マウントを解除できません + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - ディスク + + + remove + - - Open - 開く + + Operation failed + - - Eject all - すべて取り出す + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown 不明 @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. これは、コンピューターに初めてログインしたときに発生します。 - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk システムディスク - + Data Disk データディスク - + Blank %1 Disc - - - + + + Unknown 不明 - + %1 Drive - + %1 Encrypted %1 暗号化済み - + + %1 Volume %1 ボリューム - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home ホーム @@ -223,7 +228,6 @@ - Desktop デスクトップ @@ -233,7 +237,6 @@ - Videos ビデオ @@ -243,7 +246,6 @@ - Music ミュージック @@ -253,7 +255,6 @@ - Pictures ピクチャー @@ -263,7 +264,6 @@ - Documents ドキュメント @@ -273,7 +273,6 @@ - Downloads ダウンロード @@ -282,7 +281,6 @@ - Trash ゴミ箱 @@ -293,12 +291,11 @@ - Recent 最近使ったファイル - + @@ -306,7 +303,7 @@ 自動マウント - + @@ -319,47 +316,46 @@ %1タスクが進行中 - + %1 item %1 項目 - + %1 items %1 項目 - + Unable to find the original file - - + + File has been moved or deleted ファイルは移動または削除されました - - - + + You do not have permission to access this folder このフォルダーにアクセスする権限がありません - - + + You do not have permission to traverse files in it - - + + Folder is empty フォルダーは空です - + Loading... 読み込み中... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer コンピューター @@ -424,9 +419,8 @@ - - - + + Computers in LAN LAN内コンピューター @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut ショートカット - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ ビット - Access denied アクセス拒否 - Confirm button 確定 - - - The device has been safely removed - デバイスが安全に取り出されました - - - + + - - - + + + Open in new window 新規ウィンドウで開く @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab 新規タブで開く @@ -968,8 +953,8 @@ - - + + Properties プロパティ @@ -1005,7 +990,7 @@ 新しいファイル - + Create symlink シンボリックリンクの作成 @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone この操作は取り消せません - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange オレンジ - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow 黄色 - + Gray グレー @@ -1305,76 +1290,76 @@ - + User directory - + Local disk ローカルディスク - + Removable disk リムーバブルディスク - + DVD DVD - + Network shared directory ネットワーク共有ディレクトリ - - + + Android mobile device Android モバイルデバイス - + Apple mobile device Apple モバイルデバイス - + Unknown device 不明なデバイス - + Remove button 削除 - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history 最近の履歴を消去 - - - + + + Source path 元のパス @@ -1419,12 +1404,12 @@ - + Empty Trash ゴミ箱を空にする - + Location 場所 @@ -1524,7 +1509,7 @@ 検索中... - + My Vault FileVault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized 未認証 - - + + In trial period トライアル期間 + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type 種類 - + Time accessed アクセス日時 - + Time modified 更新日時 - + Time created 作成日時 - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size アイコンサイズ @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 項目を選択中 @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! 操作に失敗しました。 @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button キャンセル - + Format button フォーマット - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? %1 を実行またはコンテンツ表示してよろしいですか? - + It is an executable text file. これは実行可能なテキストファイルです。 - - - + + + Run button 実行 - - + + Run in terminal button ターミナルで実行 - + Display button 表示 - + Do you want to run %1? %1を実行しますか? - + It is an executable file. これは実行可能なファイルです。 - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? 本当に %1 項目を削除してよろしいですか? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Delete - + Permanently delete %1? 本当に %1 を削除してよろしいですか? - - + + This action cannot be undone この操作は取り消せません - + Are you sure you want to empty %1 item? %1 項目を完全に削除してもよろしいですか? - + Are you sure you want to empty %1 items? %1 項目を完全に削除してもよろしいですか? - + Empty 完全に削除 - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only %1ファイルの復元に失敗しました。対象のフォルダーは読み取り専用です - + Failed to restore %1 files, the target folder is read-only %1ファイルの復元に失敗しました。対象のフォルダーは読み取り専用です - + "%1" already exists, please use another name. "%1" はすでに使われてます。他の名前を入力してください。 - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel キャンセル - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? このショートカットを削除しますか? - + This file is not executable, do you want to add the execute permission and run? このファイルは実行できません。実行権限を追加して実行しますか? - + The selected files contain system file/directory, and it cannot be deleted 選択中のファイルはシステムファイル/ディレクトリを含んでいるため削除できません。 @@ -2866,278 +2841,276 @@ ファイルを復号化するためのパスワードを入力してください + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others その他 - + Close 閉じる - + Close current tab 現在のタブを閉じる - + Back 戻る - + Forward 進む - + Switch to next tab 次のタブへ切り替え - + Switch to previous tab 前のタブへ切り替え - + Next file 次のファイルへ - + Previous file 前のファイルへ - + Switch tab by specified number between 1 to 8 1〜8番目の特定のタブに切り替える @@ -3416,42 +3394,43 @@ - + Time modified: %1 更新日時: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 サイズ: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button どちらも保持 - + Skip button スキップ - - + + Replace button 置き換え - + Do not ask again 再度確認しない - + Retry button 再試行 - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button キャンセル - + Remove button 削除 @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer コンピューター - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer コンピューター - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories マイディレクトリ - + Disks ディスク @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type デバイスの種類 - + Total space すべての容量 - + File system - + Contains ファイル数 - + Free space 空き容量 - + %1 items %1 項目 - + %1 item %1 項目 @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ サイズ - + Dimension - + Duration - + Type 種類 - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - 貼り付け + &Paste + - Cut - 切り取り + Cu&t + - Copy - コピー + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - 開く + &Open + - Rename - 名前を変更 + Rena&me + - Delete - Delete + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal ターミナルで開く + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to 送る - + + Bluetooth + + + + Create link リンクの作成 - + Send to desktop デスクトップへ送る @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - 開く + + &Open + - + Open in new window 新規ウィンドウで開く - + Open in new tab 新規タブで開く - + Cancel sharing 共有をやめる - - Properties - プロパティ + + P&roperties + dfmplugin_myshares::MyShares - + My Shares 共有 @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size サイズ - + Contains ファイル数 - + Type 種類 - + Location 場所 - + Time created 作成日時 - + Time accessed アクセス日時 - + Time modified 更新日時 - + Hide this file - - + + %1 item %1 項目 - + %1 items %1 項目 @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit ビット - + Available 利用可能 @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer コンピューター - + Basic Info 基本情報 - + Computer name - + Version バージョン - + Edition エディション - + OS build - + Type 種類 - + Processor プロセッサ - + Memory メモリ @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - プロパティ + P&roperties + dfmplugin_recent::Recent - - + Recent 最近使ったファイル @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path パス - + Last access 最後のアクセス - + Recent 最近使ったファイル @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: 検索: - + File Type: ファイルの種類: - + File Size: ファイルサイズ: - + Time Modified: 更新日時: - + Time Accessed: アクセス日時: - + Time Created: 作成日時: - + Reset リセット - + All subdirectories すべてのサブディレクトリ - + Current directory カレントディレクトリ - + Application アプリケーション - + Video ビデオ - + Audio オーディオ - + Image 画像 - + Archive アーカイブ - + Text テキスト - + Executable 実行可能 - + Backup file バックアップファイル - + Today 今日 - + Yesterday 昨日 - + This week 今週 - + Last week 先週 - + This month 今月 - + Last month 先月 - + This year 今年 - + Last year 昨年 @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search 検索 + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path パス @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all すべて選択 - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other その他 - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - LAN内コンピューター - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - 開く + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server サーバーに接続 - - - + + + Clear History 履歴を消去 - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button キャンセル - + Connect button 接続 - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path 元のパス - + Time deleted 削除日時 @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore 元に戻す - + Restore all すべて元に戻す - + Empty trash - + Source path 元のパス - + Time deleted 削除日時 @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash ゴミ箱 @@ -5526,17 +5529,17 @@ ゴミ箱 - + item 項目 - + items 項目 - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size サイズ - + Contains ファイル数 - + Type 種類 - + Location 場所 - + Time created 作成日時 - + Time accessed アクセス日時 - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault FileVaultを暗号化 @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 FileVaultの作成に失敗しました: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password FileVaultのパスワードを設定 @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault FileVault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,98 +6208,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault FileVault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - パスワード + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - FileVaultを削除 + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted + + Password + パスワード + + + + Password hint: %1 - + Cancel - button - キャンセル + - - Use Key - button + + Delete - - Delete - button - Delete + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault - FileVaultの削除に失敗しました + + OK + - - Deleted successfully + + Delete File Vault - - Failed to delete - 削除に失敗しました + + Deleted successfully + @@ -6307,16 +6333,10 @@ FileVault - + File Vault FileVault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 並べ替え - + Display as 表示 - + Name 名前 - + Time modified 更新日時 - + Size サイズ - + Type 種類 - + Icon アイコン - + List リスト + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button 保存 @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button 保存 - + Open button 開く @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ka.ts b/translations/dde-file-manager_ka.ts index 39ea3d7b10..5b0400bebe 100644 --- a/translations/dde-file-manager_ka.ts +++ b/translations/dde-file-manager_ka.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_kab.ts b/translations/dde-file-manager_kab.ts index 60c9bfe2f8..4745037d35 100644 --- a/translations/dde-file-manager_kab.ts +++ b/translations/dde-file-manager_kab.ts @@ -15,99 +15,104 @@ Application - + File Manager Amsefrek n ifuyla - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Amsefrak n yifuyla d afecku n usefrek n yifuyla yelhan i isehlen i useqdec, deg-s unadi, anɣal, iḍumman, askussem/asefruri, taɣara n ufaylu akked tmahilin-nniḍen. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Tanarit - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - Tanarit + + Disk + - - - DiskControlWidget - - Disks - Iḍebsiyen + + Open + - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Arussin @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown Arussin - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Agejdan @@ -223,7 +228,6 @@ - Desktop Tanarit @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash Taqecwalt @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Aselkim @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Ur yettusireg ara - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Teɣzi n tignit @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Aselkim - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Aselkim - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks Iḍebsiyen @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Aselkim - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Taqecwalt @@ -5526,17 +5529,17 @@ Taqecwalt - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_km_KH.ts b/translations/dde-file-manager_km_KH.ts index 1269da72c0..91612ccf84 100644 --- a/translations/dde-file-manager_km_KH.ts +++ b/translations/dde-file-manager_km_KH.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + ផ្ទៃតុ - DeepinStorage + DeviceList - - - %1 Volume - %1 កម្រិតសំឡេង + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - ផ្ទៃតុ + + Disk + ថាស - - - DiskControlWidget - - Disks - + + Open + បើក - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - ថាស + + + remove + - - Open - បើក + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume %1 កម្រិតសំឡេង - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop ផ្ទៃតុ @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash ធុងសំរាម @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer កំុព្យូទ័រ @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab បើកនៅក្នុងផ្ទាំងថ្មី @@ -968,8 +953,8 @@ - - + + Properties Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size ទំហំIcon @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button លុប - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward + Switch to next tab + + + + Switch to previous tab ប្តូរទៅផ្ទាំងមុន - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer កំុព្យូទ័រ - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer កំុព្យូទ័រ - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,18 +4473,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open - បើក + &Open + - Rename + Rena&me - Delete - លុប + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - បើក + + &Open + - + Open in new window - + Open in new tab បើកនៅក្នុងផ្ទាំងថ្មី - + Cancel sharing - - Properties - Properties + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer កំុព្យូទ័រ - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Properties + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - បើក + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path ទីតាំងប្រភព - + Time deleted ពេលលុប @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted ពេលលុប @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash ធុងសំរាម @@ -5526,17 +5529,17 @@ ធុងសំរាម - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - លុប + - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button បើក @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_kn_IN.ts b/translations/dde-file-manager_kn_IN.ts index 07f52a1f3d..bdd2c3c681 100644 --- a/translations/dde-file-manager_kn_IN.ts +++ b/translations/dde-file-manager_kn_IN.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ko.ts b/translations/dde-file-manager_ko.ts index 038df8f750..61e34cd7aa 100644 --- a/translations/dde-file-manager_ko.ts +++ b/translations/dde-file-manager_ko.ts @@ -15,99 +15,104 @@ Application - + File Manager 파일 관리자 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 파일 관리자는 검색, 복사, 휴지통, 압축/압축해제, 파일 속성 및 기타 유용한 기능을 갖춘 강력하고 사용하기 쉬운 파일 관리 도구입니다. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + 바탕화면 - DeepinStorage + DeviceList - - - %1 Volume - %1 볼륨 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - 바탕화면 + + Disk + 디스크 - - - DiskControlWidget - - Disks - 디스크 + + Open + 열기 - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - 디스크가 사용 중이므로, 지금 마운트 해제할 수 없습니다 + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - 디스크 + + + remove + - - Open - 열기 + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown 알 수 없음 @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk 시스템 디스크 - + Data Disk 데이터 디스크 - + Blank %1 Disc 빈 %1 디스크 - - - + + + Unknown 알 수 없음 - + %1 Drive %1 드라이브 - + %1 Encrypted %1 암호화 - + + %1 Volume %1 볼륨 - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop 바탕화면 @@ -233,7 +237,6 @@ - Videos 동영상 @@ -243,7 +246,6 @@ - Music 음악 @@ -253,7 +255,6 @@ - Pictures 사진 @@ -263,7 +264,6 @@ - Documents 문서 @@ -273,7 +273,6 @@ - Downloads 다운로드 @@ -282,7 +281,6 @@ - Trash 휴지통 @@ -293,12 +291,11 @@ - Recent 최근 사용한 파일 - + @@ -306,7 +303,7 @@ 자동 마운트 - + @@ -319,47 +316,46 @@ %1개의 작업이 진행중 - + %1 item %1 항목 - + %1 items %1개의 항목 - + Unable to find the original file - - + + File has been moved or deleted 파일이 이동되었거나 삭제됨 - - - + + You do not have permission to access this folder 이 폴더에 접근할 권한이 없습니다 - - + + You do not have permission to traverse files in it - - + + Folder is empty 폴더가 비어있습니다 - + Loading... 불러오는 중... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer 컴퓨터 @@ -424,9 +419,8 @@ - - - + + Computers in LAN 내부 네트워크 @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag 태그 @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut 바로가기 - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ 비트 - Access denied 접근 거부 - Confirm button 확정 - - - The device has been safely removed - - - - + + - - - + + + Open in new window 새 창에서 열기 @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab 새 탭에서 열기 @@ -968,8 +953,8 @@ - - + + Properties 속성 @@ -1005,7 +990,7 @@ - + Create symlink 심볼릭링크 생성 @@ -1092,70 +1077,70 @@ 디스크에 추가 - + Are you sure you want to erase all data on the disc? 디스크의 모든 데이터를 지우시겠습니까? - + Erase button 지우기 - + This action cannot be undone 이 작업은 취소할 수 없습니다 - + How do you want to use this disc? 이 디스크를 어떻게 사용하시겠습니까? - + Burn image button 이미지 굽기 - + Burn files button 파일 굽기 - + %1 is a duplicate file. %1은(는) 중복 파일입니다. - + Insufficient disc space. 디스크 공간이 부족합니다. - + Lost connection to drive. 드라이브 연결이 끊어졌습니다. - + The CD/DVD drive is not ready. Try another disc. CD/DVD 드라이브가 준비되지 않았습니다. 다른 디스크를 사용해 보십시오. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD 드라이브가 사용 중입니다. 드라이브를 사용하여 프로그램을 종료하고 드라이브를 다시 삽입하십시오. - + Invalid volume name - + Unknown error 알 수 없는 오류 @@ -1194,42 +1179,42 @@ 항목: %1 - + Orange 주황색 - + Red 빨강색 - + Purple 보라색 - + Navy-blue 감청색 - + Azure 하늘색 - + Green 초록색 - + Yellow 노란색 - + Gray 회색 @@ -1305,76 +1290,76 @@ - + User directory - + Local disk 로컬 디스크 - + Removable disk 제거 가능한 디스크 - + DVD DVD - + Network shared directory 네트워크 공유 디렉토리 - - + + Android mobile device 안드로이드 모바일 장치 - + Apple mobile device 애플 모바일 장치 - + Unknown device 알 수 없는 장치 - + Remove button 제거 - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history 최근 기록 지우기 - - - + + + Source path 원본 경로 @@ -1419,12 +1404,12 @@ - + Empty Trash 휴지통 비우기 - + Location 위치 @@ -1524,7 +1509,7 @@ 검색중... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type 종류 - + Time accessed 액세스한 시간 - + Time modified 수정된 시간 - + Time created 생성된 시간 - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size 아이콘 크기 @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 항목 선택됨 @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button 승인 - + Operation failed! 작업이 실패했습니다! @@ -2554,191 +2529,191 @@ 대상 폴더가 원본 폴더 안에 있습니다! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button 취소 - + Format button 포맷 - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? %1을(를) 실행하거나 내용을 표시 하시겠습니까? - + It is an executable text file. 실행 가능한 텍스트 파일입니다. - - - + + + Run button 실행 - - + + Run in terminal button 터미널에서 실행 - + Display button 표시 - + Do you want to run %1? %1을(를) 실행하시겠습니까? - + It is an executable file. 실행 파일입니다. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1개의 항목을 완전히 삭제하시겠습니까? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button 삭제 - + Permanently delete %1? %1을(를) 완전히 삭제하시겠습니까? - - + + This action cannot be undone 이 작업은 취소할 수 없습니다 - + Are you sure you want to empty %1 item? %1 항목을 비우시겠습니까? - + Are you sure you want to empty %1 items? %1개의 항목을 비우시겠습니까? - + Empty 비우기 - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only %1 파일 복원 실패, 대상 폴더가 읽기 전용입니다 - + Failed to restore %1 files, the target folder is read-only %1개의 파일 복원 실패, 대상 폴더가 읽기 전용입니다 - + "%1" already exists, please use another name. "%1"이(가) 이미 존재합니다. 다른 이름을 사용하십시오. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? 파일 이름이 '.'로 시작하면이 파일이 숨겨집니다. 숨기시겠습니까? - + Hide - + Cancel 취소 - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 바로가기가 가리키는 파일이 변경 또는 이동되었습니다. - + Do you want to delete this shortcut? 이 바로가기를 삭제하시겠습니까? - + This file is not executable, do you want to add the execute permission and run? 이 파일은 실행 파일이 아닙니다. 실행 권한을 추가하고 실행 하시겠습니까? - + The selected files contain system file/directory, and it cannot be deleted 선택한 파일에 시스템 파일/디렉토리가 포함되어 있으며, 삭제할 수 없습니다 @@ -2866,278 +2841,276 @@ 디스크를 해독하기 위한 비밀번호 입력 + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others 기타 - + Close 닫기 - + Close current tab 현재 탭 닫기 - + Back 뒤로 - + Forward 정방향 - + Switch to next tab 다음 탭으로 전환 - + Switch to previous tab 이전 탭으로 전환 - + Next file 다음 파일 - + Previous file 이전 파일 - + Switch tab by specified number between 1 to 8 1에서 8 사이의 지정된 번호로 탭 전환 @@ -3416,42 +3394,43 @@ - + Time modified: %1 수정된 시간: %1 - + Original folder 원본 폴더 - + Contains: %1 내용: %1 - + Original file 원본 파일 - + Size: %1 크기: %1 - + Target folder 대상 폴더 - + + In data statistics ... - + Target file 대상 파일 @@ -3466,37 +3445,37 @@ - + Keep both button 둘 다 유지 - + Skip button 건너뛰기 - - + + Replace button 바꾸기 - + Do not ask again 다시 묻지 않기 - + Retry button 재시도 - + Merge button 합치기 @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button 취소 - + Remove button 제거 @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer 컴퓨터 - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer 컴퓨터 - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories 내 디렉토리 - + Disks 디스크 @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type 장치 유형 - + Total space 총 공간 - + File system 파일 시스템 - + Contains 포함 - + Free space 여유 공간 - + %1 items %1개의 항목 - + %1 item %1 항목 @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ 크기 - + Dimension 크기 - + Duration 기간 - + Type 종류 - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - 붙여넣기 + &Paste + - Cut - 잘라내기 + Cu&t + - Copy - 복사 + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - 열기 + &Open + - Rename - 이름 변경 + Rena&me + - Delete - 삭제 + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal 터미널에서 열기 + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to 전송 - + + Bluetooth + + + + Create link 링크 생성 - + Send to desktop 바탕화면으로 전송 @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - 열기 + + &Open + - + Open in new window 새 창에서 열기 - + Open in new tab 새 탭에서 열기 - + Cancel sharing 공유 취소 - - Properties - 속성 + + P&roperties + dfmplugin_myshares::MyShares - + My Shares 내 공유 @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. 굽기를 할 수 없습니다. 대상 디스크에 여유 공간이 부족합니다. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size 크기 - + Contains 포함 - + Type 종류 - + Location 위치 - + Time created 생성된 시간 - + Time accessed 액세스한 시간 - + Time modified 수정된 시간 - + Hide this file 이 파일 숨기기 - - + + %1 item %1 항목 - + %1 items %1개의 항목 @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit 비트 - + Available 사용 가능 @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer 컴퓨터 - + Basic Info 기본 정보 - + Computer name - + Version 버전 - + Edition - + OS build - + Type 종류 - + Processor 프로세서 - + Memory 메모리 @@ -4890,6 +4873,14 @@ 파일(%1개), 폴더(%2개) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - 속성 + P&roperties + dfmplugin_recent::Recent - - + Recent 최근 사용한 파일 @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path 경로 - + Last access 마지막 액세스 - + Recent 최근 사용한 파일 @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: 검색: - + File Type: 파일 형식: - + File Size: 파일 크기: - + Time Modified: 수정된 시간: - + Time Accessed: - + Time Created: - + Reset 재설정 - + All subdirectories 모든 하위 디렉토리 - + Current directory 현재 디렉토리 - + Application 응용프로그램 - + Video 동영상 - + Audio 오디오 - + Image 이미지 - + Archive 압축파일 - + Text 텍스트 - + Executable 실행가능 - + Backup file 백업 파일 - + Today 오늘 - + Yesterday 어제 - + This week 이번 주 - + Last week 지난 주 - + This month 이번 달 - + Last month 지난 달 - + This year 올해 - + Last year 작년 @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search 검색 + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path 경로 @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location 파일 위치 열기 - + Select all 모두 선택 - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag 태그 - - Bookmark - - - - + Other 다른 사용자 - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - 내부 네트워크 - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - 열기 + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag 태그 @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location 파일 위치 열기 @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server 서버에 연결 - - - + + + Clear History 기록 지우기 - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button 취소 - + Connect button 연결 - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path 원본 경로 - + Time deleted 삭제된 시간 @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore 복원 - + Restore all 전부 복원 - + Empty trash - + Source path 원본 경로 - + Time deleted 삭제된 시간 @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash 휴지통 @@ -5526,17 +5529,17 @@ 휴지통 - + item 항목 - + items 항목 - + Contains %1 %2 %1 %2 포함 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size 크기 - + Contains 포함 - + Type 종류 - + Location 위치 - + Time created 생성된 시간 - + Time accessed 액세스한 시간 - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK 승인 @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ 다음 - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault 파일 보관소 @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - 비밀번호 + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + 비밀번호 + + + + Password hint: %1 - + Cancel - button - 취소 + - - Use Key - button + + Delete - - Delete - button - 삭제 + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - 승인 + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault 파일 보관소 - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 정렬 기준: - + Display as 다음으로 표시 - + Name 이름 - + Time modified 수정된 시간 - + Size 크기 - + Type 종류 - + Icon 아이콘 - + List 목록 + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button 저장 @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button 저장 - + Open button 열기 @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ku.ts b/translations/dde-file-manager_ku.ts index 132bc2bf80..b006bf9254 100644 --- a/translations/dde-file-manager_ku.ts +++ b/translations/dde-file-manager_ku.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,24 +6642,24 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album - + \ No newline at end of file diff --git a/translations/dde-file-manager_ku_IQ.ts b/translations/dde-file-manager_ku_IQ.ts index 33361025a5..f6690580a7 100644 --- a/translations/dde-file-manager_ku_IQ.ts +++ b/translations/dde-file-manager_ku_IQ.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ky.ts b/translations/dde-file-manager_ky.ts index fd96eecba5..e4110610eb 100644 --- a/translations/dde-file-manager_ky.ts +++ b/translations/dde-file-manager_ky.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ky@Arab.ts b/translations/dde-file-manager_ky@Arab.ts index 5e0fea14ee..2a5279171d 100644 --- a/translations/dde-file-manager_ky@Arab.ts +++ b/translations/dde-file-manager_ky@Arab.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_lt.ts b/translations/dde-file-manager_lt.ts index 10637faef0..8cf8b6f511 100644 --- a/translations/dde-file-manager_lt.ts +++ b/translations/dde-file-manager_lt.ts @@ -15,99 +15,104 @@ Application - + File Manager Failų tvarkytuvė - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Failų tvarkytuvė yra galingas ir lengvas naudoti failų tvarkymo įrankis, kurio ypatybės yra paieška, kopijavimas, šiukšlinė, glaudinimas/išglaudinimas, failų savybės bei kitos naudingos funkcijos. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Darbalaukis - DeepinStorage + DeviceList - - - %1 Volume - %1 tomas + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Darbalaukis + + Disk + Diskas - - - DiskControlWidget - - Disks - Diskai + + Open + Atverti - - The device was not safely removed - + + Eject all + Išstumti visus + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - Diskas yra užimtas, dabar negalima atjungti + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Diskas + + + remove + - - Open - Atverti + + Operation failed + - - Eject all - Išstumti visus + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Nežinoma @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Sistemos diskas - + Data Disk Duomenų diskas - + Blank %1 Disc Tuščias %1 diskas - - - + + + Unknown Nežinoma - + %1 Drive %1 diskas - + %1 Encrypted Šifruotas %1 - + + %1 Volume %1 tomas - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Namai @@ -223,7 +228,6 @@ - Desktop Darbalaukis @@ -233,7 +237,6 @@ - Videos Vaizdo įrašai @@ -243,7 +246,6 @@ - Music Muzika @@ -253,7 +255,6 @@ - Pictures Paveikslai @@ -263,7 +264,6 @@ - Documents Dokumentai @@ -273,7 +273,6 @@ - Downloads Atsiuntimai @@ -282,7 +281,6 @@ - Trash Šiukšlinė @@ -293,12 +291,11 @@ - Recent Paskiausiai naudoti - + @@ -306,7 +303,7 @@ Automatiškai prijungti - + @@ -319,47 +316,46 @@ %1 užduotys eigoje - + %1 item %1 elementas - + %1 items %1 elementai - + Unable to find the original file - - + + File has been moved or deleted Failas buvo perkeltas arba ištrintas - - - + + You do not have permission to access this folder Jūs neturite leidimų gauti prieigą prie šio aplanko - - + + You do not have permission to traverse files in it - - + + Folder is empty Aplankas tuščias - + Loading... Įkeliama... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Kompiuteris @@ -424,9 +419,8 @@ - - - + + Computers in LAN Kompiuteriai vietiniame (LAN) tinkle @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Žymė @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Šaukinys - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bitų - Access denied Prieiga atmesta - Confirm button Patvirtinti - - - The device has been safely removed - Įrenginys saugiai pašalintas - - - + + - - - + + + Open in new window Atverti naujame lange @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Atverti naujoje kortelėje @@ -968,8 +953,8 @@ - - + + Properties Savybės @@ -1005,7 +990,7 @@ Naujas failas - + Create symlink Sukurti simbolinę nuorodą @@ -1092,70 +1077,70 @@ Pridėti į diską - + Are you sure you want to erase all data on the disc? Ar tikrai norite ištrinti visus diske esančius duomenis? - + Erase button Ištrinti - + This action cannot be undone Šio veiksmo negalima bus atšaukti - + How do you want to use this disc? Kaip norite naudoti diską? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. Trūksta vietos diske. - + Lost connection to drive. Prarastas ryšys su disku. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Nežinoma klaida @@ -1194,42 +1179,42 @@ Elementai: %1 - + Orange Oranžinė - + Red Raudona - + Purple Purpurinė - + Navy-blue Tamsiai mėlyna - + Azure Žydra - + Green Žalia - + Yellow Geltona - + Gray Pilka @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Vietinis diskas - + Removable disk Keičiamasis diskas - + DVD DVD - + Network shared directory Bendrinamas tinklo katalogas - - + + Android mobile device Android mobilusis įrenginys - + Apple mobile device Apple mobilusis įrenginys - + Unknown device Nežinomas įrenginys - + Remove button Šalinti - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Išvalyti paskiausią istoriją - - - + + + Source path Šaltinio kelias @@ -1419,12 +1404,12 @@ - + Empty Trash Išvalyti šiukšlinę - + Location Vieta @@ -1524,7 +1509,7 @@ Ieškoma... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tipas - + Time accessed Prieigos laikas - + Time modified Modifikavimo laikas - + Time created Sukūrimo laikas - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Piktogramų dydis @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected Pažymėtas %1 elementas @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Gerai - + Operation failed! Operacija nepavyko! @@ -2554,191 +2529,191 @@ Paskirties aplankas yra šaltinio aplanko viduje! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Atsisakyti - + Format button Formatuoti - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Jūs norite vykdyti %1 ar rodyti jo turinį? - + It is an executable text file. Tai yra vykdomasis tekstinis failas. - - - + + + Run button Vykdyti - - + + Run in terminal button Vykdyti terminale - + Display button Rodyti - + Do you want to run %1? Ar norite vykdyti %1? - + It is an executable file. Tai yra vykdomasis failas. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Ištrinti %1 elementus visiems laikams? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Ištrinti - + Permanently delete %1? Ištrinti %1 visiems laikams? - - + + This action cannot be undone Šio veiksmo negalima bus atšaukti - + Are you sure you want to empty %1 item? Ar tikrai norite išvalyti %1 elementą? - + Are you sure you want to empty %1 items? Ar tikrai norite išvalyti %1 elementus(-ų)? - + Empty Išvalyti - + Do you want to delete %1? Ar norite ištrinti %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Nepavyko atkurti %1 failo, paskirties aplankas yra tik skaitymui - + Failed to restore %1 files, the target folder is read-only Nepavyko atkurti %1 failų, paskirties aplankas yra tik skaitymui - + "%1" already exists, please use another name. "%1" jau yra, prašome naudoti kitą pavadinimą. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Atsisakyti - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, į kurį nurodo šis šaukinys, buvo pakeistas arba perkeltas - + Do you want to delete this shortcut? Ar norite ištrinti šį šaukinį? - + This file is not executable, do you want to add the execute permission and run? Šis failas nėra vykdomasis, ar norite pridėti vykdymo leidimą ir paleisti šį failą? - + The selected files contain system file/directory, and it cannot be deleted Pažymėtuose failuose yra sisteminiai failai/katalogai ir jie negali būti ištrinti @@ -2866,278 +2841,276 @@ Norėdami iššifruoti diską, įveskite slaptažodį + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Kita - + Close Užverti - + Close current tab Užverti esamą kortelę - + Back Atgal - + Forward Pirmyn - + Switch to next tab Perjungti į kitą kortelę - + Switch to previous tab Perjungti į ankstesnę kortelę - + Next file Kitas failas - + Previous file Ankstesnis failas - + Switch tab by specified number between 1 to 8 Perjungti kortelę pagal nurodytą skaičių tarp 1 ir 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Pradinis aplankas - + Contains: %1 - + Original file Pradinis failas - + Size: %1 Dydis: %1 - + Target folder Paskirties aplankas - + + In data statistics ... - + Target file Paskirties failas @@ -3466,37 +3445,37 @@ Palaukite - + Keep both button Palikti abu - + Skip button Praleisti - - + + Replace button Pakeisti - + Do not ask again Daugiau nebeklausti - + Retry button Bandyti dar kartą - + Merge button Sulieti @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Atsisakyti - + Remove button Šalinti @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Kompiuteris - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Kompiuteris - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mano katalogai - + Disks Diskai @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Įrenginio tipas - + Total space Bendra vieta - + File system Failų sistema - + Contains Turi - + Free space Laisva vieta - + %1 items %1 elementai - + %1 item %1 elementas @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Dydis - + Dimension - + Duration Trukmė - + Type Tipas - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Įdėti + &Paste + - Cut - Iškirpti + Cu&t + - Copy - Kopijuoti + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Atverti + &Open + - Rename - Pervadinti + Rena&me + - Delete - Ištrinti + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Atverti terminale + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Siųsti į - + + Bluetooth + + + + Create link Sukurti nuorodą - + Send to desktop Siųsti į darbalaukį @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Atverti + + &Open + - + Open in new window Atverti naujame lange - + Open in new tab Atverti naujoje kortelėje - + Cancel sharing Nustoti bendrinti - - Properties - Savybės + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Mano viešiniai @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Dydis - + Contains Turi - + Type Tipas - + Location Vieta - + Time created Sukūrimo laikas - + Time accessed Prieigos laikas - + Time modified Modifikavimo laikas - + Hide this file Slėpti šį failą - - + + %1 item %1 elementas - + %1 items %1 elementai @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bitų - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Kompiuteris - + Basic Info Pagrindinė informacija - + Computer name - + Version Versija - + Edition - + OS build - + Type Tipas - + Processor Procesorius - + Memory Atmintis @@ -4890,6 +4873,14 @@ %1 failų(-ai), %2 aplankų(-ai) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Savybės + P&roperties + dfmplugin_recent::Recent - - + Recent Paskiausiai naudoti @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Kelias - + Last access Paskiausia prieiga - + Recent Paskiausiai naudoti @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Ieškoti: - + File Type: Failo tipas: - + File Size: Failo dydis: - + Time Modified: Modifikavimo laikas: - + Time Accessed: - + Time Created: - + Reset Atstatyti - + All subdirectories Visuose pakatalogiuose - + Current directory Dabartiniame kataloge - + Application Programa - + Video Vaizdo įrašas - + Audio Garso įrašas - + Image Paveikslas - + Archive Archyvas - + Text Tekstas - + Executable Vykdomasis - + Backup file Atsarginės kopijos failas - + Today Šiandien - + Yesterday Vakar - + This week Šią savaitę - + Last week Praeitą savaitę - + This month Šį mėnesį - + Last month Praeitą mėnesį - + This year Šiais metais - + Last year Praeitais metais @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Paieška + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Kelias @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Atverti failo vietą - + Select all Žymėti visus - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Žymė - - Bookmark - - - - + Other Kita - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Kompiuteriai vietiniame (LAN) tinkle - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Atverti + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Žymė @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Atverti failo vietą @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Prisijungti prie serverio - - - + + + Clear History Išvalyti istoriją - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Atsisakyti - + Connect button Prisijungti - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Šaltinio kelias - + Time deleted Ištrynimo laikas @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Atkurti - + Restore all Atkurti visus - + Empty trash - + Source path Šaltinio kelias - + Time deleted Ištrynimo laikas @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Šiukšlinė @@ -5526,17 +5529,17 @@ Šiukšlinė - + item elementas - + items elementų - + Contains %1 %2 Turi %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Dydis - + Contains Turi - + Type Tipas - + Location Vieta - + Time created Sukūrimo laikas - + Time accessed Prieigos laikas - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK Gerai @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Kitas - - + + Passwords do not match Slaptažodžiai nesutampa @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Failų slėptuvė @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,98 +6208,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Slaptažodis + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Slaptažodis + + + + Password hint: %1 - + Cancel - button - Atsisakyti + - - Use Key - button - Naudoti raktą + + Delete + - - Delete - button - Ištrinti + + Delete File Vault + - - Removing... - Šalinama... + + Wrong password + + + + + Failed to delete file vault + - - + OK - button - Gerai + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Neteisingas slaptažodis + + Input the 32-digit recovery key + + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete - Nepavyko ištrinti failo + + Deleted successfully + @@ -6307,16 +6333,10 @@ - + File Vault Failų slėptuvė - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Rikiuoti pagal - + Display as Rodyti kaip - + Name Pavadinimas - + Time modified Modifikavimo laikas - + Size Dydis - + Type Tipas - + Icon Piktogramos - + List Sąrašas + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Įrašyti @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Įrašyti - + Open button Atverti @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ml.ts b/translations/dde-file-manager_ml.ts index c47a58bb90..c125d0b5d9 100644 --- a/translations/dde-file-manager_ml.ts +++ b/translations/dde-file-manager_ml.ts @@ -15,99 +15,104 @@ Application - + File Manager ഫയൽ മാനേജർ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + ഡെസ്ക്ടോപ്പ് - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - ഡെസ്ക്ടോപ്പ് + + Disk + ഡിസ്ക് - - - DiskControlWidget - - Disks - + + Open + തുറക്കുക - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - ഡിസ്ക് + + + remove + - - Open - തുറക്കുക + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop ഡെസ്ക്ടോപ്പ് @@ -233,7 +237,6 @@ - Videos ചലച്ചിത്രങ്ങൾ @@ -243,7 +246,6 @@ - Music സംഗീതം @@ -253,7 +255,6 @@ - Pictures ചിത്രങ്ങൾ @@ -263,7 +264,6 @@ - Documents രേഖകൾ @@ -273,7 +273,6 @@ - Downloads ഡൗൺലോഡുകൾ @@ -282,7 +281,6 @@ - Trash ചവറ്റുകൊട്ട @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ %1 പ്രവൃത്തികൾ നിലവിൽ നടന്നുകൊണ്ടിരിക്കുന്നുണ്ട് - + %1 item %1 വസ്തു - + %1 items %1 വസ്തുക്കൾ - + Unable to find the original file - - + + File has been moved or deleted ഫയൽ സ്ഥാനം മാറ്റുകയോ നീക്കം ചെയ്യുകയോ ചെയ്തു - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty ഫോൾഡർ കാലിയാണ് - + Loading... ലഭ്യമാക്കുന്നു... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN ലാനിൽ ഉള്ള കമ്പ്യൂട്ടറുകൾ @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button ഉറപ്പാക്കുക - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties സവിശേഷതകൾ @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD ഡിവിഡി - + Network shared directory - - + + Android mobile device ആൻഡ്രോയിഡ് മൊബൈൽ ഉപകരണം - + Apple mobile device ആപ്പിൾ മൊബൈൽ ഉപകരണം - + Unknown device അപരിചിതമായ ഉപകരണം - + Remove button നീക്കം ചെയ്യുക - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash ചവറ്റുകൊട്ട കാലിയാക്കുക - + Location @@ -1524,7 +1509,7 @@ തിരയുന്നു... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type തരം - + Time accessed - + Time modified പുതുക്കിയ സമയം - + Time created നിർമ്മിച്ച സമയം - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button റദ്ദാക്കുക - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? %1 പ്രവർത്തിപ്പിക്കണോ അതോ അതിന്റെ ഉള്ളടക്കം പ്രദർശിപ്പിക്കണോ? - + It is an executable text file. അത് പ്രവർത്തിപ്പിക്കാൻ സാധിക്കുന്ന ഒരു ടെക്സ്റ്റ് ഫയൽ ആണു് - - - + + + Run button പ്രവർത്തിപ്പിക്കുക - - + + Run in terminal button ടെർമിനലിൽ പ്രവർത്തിപ്പിക്കുക - + Display button പ്രദർശിപ്പിക്കുക - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 വസ്തുക്കൾ സ്ഥിരമായി നീക്കം ചെയ്യണോ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button നീക്കം ചെയ്യുക - + Permanently delete %1? %1 സ്ഥിരമായി നീക്കം ചെയ്യണോ? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty കാലിയാക്കുക - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" മുമ്പേതന്നെ ഉപയോഗത്തിലുണ്ട്, ദയവായി മറ്റൊരു പേരു് തിരഞ്ഞെടുക്കുക - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel റദ്ദാക്കുക - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others മറ്റുള്ളവ - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button രണ്ടും നിലനിർത്തുക - + Skip button ഒഴിവാക്കുക - - + + Replace button മാറ്റിവയ്ക്കുക - + Do not ask again ഇനി ചോദിക്കരുത് - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button റദ്ദാക്കുക - + Remove button നീക്കം ചെയ്യുക @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type ഉപകരണത്തിന്റെ തരം - + Total space മൊത്തം സ്ഥലം - + File system - + Contains ഉൾക്കൊള്ളുന്നത് - + Free space - + %1 items %1 വസ്തുക്കൾ - + %1 item %1 വസ്തു @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ വലിപ്പം - + Dimension - + Duration - + Type തരം - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - ഒട്ടിയ്ക്കുക + &Paste + - Cut - മുറിക്കുക + Cu&t + - Copy - പകർത്തുക + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - തുറക്കുക + &Open + - Rename - പേര് മാറ്റുക + Rena&me + - Delete - നീക്കം ചെയ്യുക + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal ടെർമിനലിൽ തുറക്കുക + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link കണ്ണി ഉണ്ടാക്കുക - + Send to desktop ഡെസ്ക്ടോപ്പിലേക്ക് അയയ്ക്കുക @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - തുറക്കുക + + &Open + - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - സവിശേഷതകൾ + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size വലിപ്പം - + Contains ഉൾക്കൊള്ളുന്നത് - + Type തരം - + Location - + Time created നിർമ്മിച്ച സമയം - + Time accessed - + Time modified പുതുക്കിയ സമയം - + Hide this file - - + + %1 item %1 വസ്തു - + %1 items %1 വസ്തുക്കൾ @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type തരം - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - സവിശേഷതകൾ + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text ടെക്സ്റ്റ് - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all എല്ലാം തിരഞ്ഞെടുക്കുക - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other മറ്റുള്ളവ - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - ലാനിൽ ഉള്ള കമ്പ്യൂട്ടറുകൾ - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - തുറക്കുക + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button റദ്ദാക്കുക - + Connect button ബന്ധിപ്പിക്കുക - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted നീക്കം ചെയ്ത സമയം @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore പുനഃസ്ഥാപിക്കുക - + Restore all എല്ലാം പുനഃസ്ഥാപിക്കുക - + Empty trash - + Source path - + Time deleted നീക്കം ചെയ്ത സമയം @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash ചവറ്റുകൊട്ട @@ -5526,17 +5529,17 @@ ചവറ്റുകൊട്ട - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size വലിപ്പം - + Contains ഉൾക്കൊള്ളുന്നത് - + Type തരം - + Location - + Time created നിർമ്മിച്ച സമയം - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - രഹസ്യവാക്ക് + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + രഹസ്യവാക്ക് + + + + Password hint: %1 - + Cancel - button - റദ്ദാക്കുക + - - Use Key - button + + Delete - - Delete - button - നീക്കം ചെയ്യുക + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name പേര് - + Time modified പുതുക്കിയ സമയം - + Size വലിപ്പം - + Type തരം - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button തുറക്കുക @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_mn.ts b/translations/dde-file-manager_mn.ts index 82993ed0de..6db24137d0 100644 --- a/translations/dde-file-manager_mn.ts +++ b/translations/dde-file-manager_mn.ts @@ -15,99 +15,104 @@ Application - + File Manager Файл менежер - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Ажлын тавцан - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - Ажлын тавцан + + Disk + Диск - - - DiskControlWidget - - Disks - + + Open + Нээх - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Диск + + + remove + - - Open - Нээх + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop Ажлын тавцан @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Компьютер @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Бит - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties Төлөв байдал @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Төрөл - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Таних тэмдэгийн хэмжээ @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Компьютер - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Компьютер - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type Төрөл - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Нээх + &Open + - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Нээх + + &Open + - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - Төлөв байдал + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type Төрөл - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Бит - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Компьютер - + Basic Info Ерөнхий мэдээлэл - + Computer name - + Version Хувилбар - + Edition - + OS build - + Type Төрөл - + Processor Процессор - + Memory Санах ой @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Төлөв байдал + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Хайх: - + File Type: Файлын төрөл: - + File Size: Файлын хэмжээ: - + Time Modified: Өөрчлөгдсөн цаг: - + Time Accessed: - + Time Created: - + Reset Дахин тохируулах - + All subdirectories Бүх дэд хавтаснууд - + Current directory Одоогийн байршил - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Нээх + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type Төрөл - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault - - + + Wrong password + + + + + Failed to delete file vault + + + + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type Төрөл - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button Нээх @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_mr.ts b/translations/dde-file-manager_mr.ts index 989f514773..f8597614de 100644 --- a/translations/dde-file-manager_mr.ts +++ b/translations/dde-file-manager_mr.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ms.ts b/translations/dde-file-manager_ms.ts index c47741ccd9..15a555157f 100644 --- a/translations/dde-file-manager_ms.ts +++ b/translations/dde-file-manager_ms.ts @@ -4,110 +4,115 @@ Invalid args - + Arg tidak sah Invalid invoker - + Penyeru tidak sah Application - + File Manager Pengurus Fail - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Pengurus Fail merupakan alat pengurusan fail yang mudah digunakan dan hebat, difiturkan dengan fungsi menggelintar, menyalin, tong sampah, pemampatan/penyahmampatan, sifat fail dan lain-lain fungsi berguna. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Atas Meja - DeepinStorage + DeviceList - - - %1 Volume - Volum %1 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Atas Meja + + Disk + Cakera - - - DiskControlWidget - - Disks - Cakera-Cakera + + Open + Buka - - The device was not safely removed - Peranti masih tidak selamat ditanggalkan + + Eject all + Lenting semua + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Klik "Tanggal secara Selamat" dan kemudian putuskannya di lain masa + + The device has been safely removed + - - Disk is busy, cannot unmount now - Cakera sibuk, tidak dapat ditanggalkan sekarang + + eject + - - The device is busy, cannot eject now - Peranti masih sibuk, tidak dapat lentingkan sekarang + + unmount + - - - DiskMountPlugin - - Disk - Cakera + + + remove + - - Open - Buka + + Operation failed + - - Eject all - Lenting semua + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + Semua Fail + + + + FileOperateBaseWorker + + + The file name or the path is too long! MimeTypeDisplayManager - + Unknown Tidak diketahui @@ -123,97 +128,97 @@ QObject - + need authorization to access - + perlu keizinan untuk mencapainya - + Can't verify the identity of %1. - + Tidak dapat mengesahkan identiti %1. - + This happens when you log in to a computer the first time. Ia berlaku ketika anda mendaftar masuk komputer kali pertama. - + The identity sent by the remote computer is Identiti dihantar yang dihantar komputer jauh ialah - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jika anda tidak pasti selamat diteruskan, hubungi pentadbir sistem. - - - + + + System Disk Cakera Sistem - + Data Disk Cakera Data - + Blank %1 Disc Cakera %1 Kosong - - - + + + Unknown Tidak diketahui - + %1 Drive Pemacu %1 - + %1 Encrypted %1 Disulitkan - + + %1 Volume Volum %1 - - + Scanning the device, stop it? Mengimbas peranti, hentikannya? - + Unmount failed - + Gagal ditanggalkan - + Cannot stop scanning device - + Tidak dapat berhenti mengimbas peranti - + + %1 on %2 - + %1 pada %2 - Home Rumah @@ -223,7 +228,6 @@ - Desktop Desktop @@ -233,7 +237,6 @@ - Videos Video @@ -243,7 +246,6 @@ - Music Muzik @@ -253,7 +255,6 @@ - Pictures Gambar @@ -263,7 +264,6 @@ - Documents Dokumen @@ -273,7 +273,6 @@ - Downloads Muat Turun @@ -282,7 +281,6 @@ - Trash Tong Sampah @@ -293,12 +291,11 @@ - Recent Baru-Baru Ini - + @@ -306,7 +303,7 @@ Auto lekap - + @@ -319,47 +316,46 @@ %1 tugas sedang diproses - + %1 item %1 item - + %1 items %1 item - + Unable to find the original file Tidak menemui fail asal - - + + File has been moved or deleted Fail telah dialih atau dipadamkan - - - + + You do not have permission to access this folder Anda tidak mempunyai keizinan untuk mencapai folder ini - - + + You do not have permission to traverse files in it Anda tiada keizinan untuk rentas fail di dalamnya - - + + Folder is empty Folder kosong - + Loading... Memuatkan... @@ -408,15 +404,14 @@ - + Built-in disks - + Cakera terbina-dalam - Computer Komputer @@ -424,9 +419,8 @@ - - - + + Computers in LAN Komputer dalam LAN @@ -434,63 +428,63 @@ - + Loop partitions - + Sekatan berulang - + + Mounted sharing folders - + Folder kongsi dilekap - My shares - + Perkongsian Saya - + Network - + Rangkaian - + Mounted partitions and discs - + Sekatan dan cakera dilekap - + Partitions - + Sekatan - + Quick access - + Capaian pantas - + Tag Tag @@ -498,22 +492,22 @@ - + Added tags - + Tag ditambah Vault - + Bilik Kebal - + Keep showing the mounted Samba shares Sentiasa tunjuk perkongsian Samba yang terlekap @@ -536,28 +530,28 @@ Extend filename characters - + Aksara nama fail lanjutan Hide built-in disks on the Computer page - + Sembunyi cakera terbina-dalam dalam halaman Komputer Hide loop partitions on the Computer page - + Sembunyi sekatan berulang dalam halaman Komputer Show crumb bar clickable area - + Show crumb bar clickable area @@ -591,7 +585,7 @@ The remote environment shows thumbnail previews - + Persekitaran jauh menunjukkan pratonton imej kenit @@ -612,7 +606,7 @@ Music preview - + Pratonton muzik @@ -759,7 +753,7 @@ Items on sidebar pane - + Item dalam anak tetingkap palang sisi @@ -837,26 +831,25 @@ Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Menghidupkan pratonton imej kenit boleh menyebabkan direktori jauh lambat dimuatkan atau operasi menjadi kaku Switching the entry display may lead to failed mounting - + Mengubah paparan masukan boleh mengakibatkan kegagalan pelekapan - - - + + - + Cancel button @@ -864,32 +857,31 @@ - Stop button Henti - + Shortcut Pintasan - + This system wallpaper is locked. Please contact your admin. - + Kertas dinding sistem terkunci. Sila hubungi pentadbir sistem anda. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (salinan) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (salinan %1) @@ -909,33 +901,26 @@ Bit - Access denied Capaian dinafikan - Confirm button Sahkan - - - The device has been safely removed - Peranti telah selamat ditanggalkan - - - + + - - - + + + Open in new window Buka dalam tetingkap baharu @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Buka dalam tab baharu @@ -963,13 +948,13 @@ Remove from quick access - + Buang daripada capaian pantas - - + + Properties Sifat @@ -982,7 +967,7 @@ New Text - + Teks Baharu @@ -1005,7 +990,7 @@ Fail Baharu - + Create symlink Cipta pautan simbolik @@ -1092,70 +1077,70 @@ Tambah ke cakera - + Are you sure you want to erase all data on the disc? Anda pasti mahu memadam semua data di dalam cakera? - + Erase button Padam - + This action cannot be undone Tindakan ini tidak boleh dipulihkan - + How do you want to use this disc? Bagaimanakah anda mahu gunakan cakera ini? - + Burn image button Rakam imej - + Burn files button Rakam fail - + %1 is a duplicate file. %1 merupakan fail pendua. - + Insufficient disc space. Ruang cakera tidak mencukupi. - + Lost connection to drive. Sambungan ke pemacu telah terputus. - + The CD/DVD drive is not ready. Try another disc. Pemacu CD/DVD tidak sedia. Cuba cakera yang lain. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Pemacu CD/DVD masih sibuk. Keluar program menggunakan pemacu, dan sisip pemacu sekali lagi. - + Invalid volume name - + Nama volum tidak sah - + Unknown error Ralat tidak diketahui @@ -1194,42 +1179,42 @@ Item: %1 - + Orange Jingga - + Red Merah - + Purple Ungu - + Navy-blue Biru-laut - + Azure Lazuardi - + Green Hijau - + Yellow Kuning - + Gray Kelabu @@ -1302,79 +1287,79 @@ Cannot access - + Tidak dapat capai - + User directory - + Direktori pengguna - + Local disk Cakera setempat - + Removable disk Cakera mudah alih - + DVD DVD - + Network shared directory Direktori terkongsi rangkaian - - + + Android mobile device Peranti mudah alih Android - + Apple mobile device Peranti mudah alih Apple - + Unknown device Peranti tidak diketahui - + Remove button Buang - + Do you want to remove this item? Anda pasti mahu membuang item ini? - + Do yout want to remove %1 items? Anda pasti mahu membuang %1 item? - + It does not delete the original files Ia tidak memadam fail yang asal - + Clear recent history Kosongkan sejarah baru-baru ini - - - + + + Source path Laluan sumber @@ -1419,12 +1404,12 @@ Tidak dapat membuka item dalam tong sampah, sila pulih ia dahulu - + Empty Trash Kosongkan Tong Sampah - + Location Lokasi @@ -1524,14 +1509,14 @@ Menggelintar... - + My Vault Bilik Kebal Saya Create Vault - + Cipta Bilik Kebal @@ -1576,152 +1561,152 @@ File not found - + Fail tidak ditemui File already exists - + Fail sudah wujud File is a directory - + Fail merupakan sebuah direktori File is not a directory - + Fail bukan sebuah direktori File is a directory that isn't empty - + Fail ialah sebuah direktori yang ada isi File is not a regular file - + Fail bukanlah sebuah fail nalar File is not a symbolic link - + Fail bukanlah sebuah fail simbolik File cannot be mounted - + Fail tidak dapat dilekapkan Filename has too many characters - + Nama fail mempunyai terlalu banyak aksara Filename is invalid or contains invalid characters - + Nama fail tidak sah atau mengandungi aksara tidak sah File contains too many symbolic links - + Fail mengandungi terlalu banyak pautan simbolik No space left on drive - + Tiada ruang berbaki di dalam pemacu Invalid argument - + Argumen tidak sah Permission denied - + Keizinan dinafikan Operation (or one of its parameters) not supported - + Operasi (atau salah satu parameternya) tidak disokong File isn't mounted - + Fail tidak dilekapkan File is already mounted - + Fail sudah dilekapkan File was closed - + Fail telah ditutup Operation was cancelled - + Operasi telah dibatalkan Operations are still pending - + Operasi masih berlangsung File is read-only - + Fail adalah baca sahaja Failed to open the file - + Gagal membuka fail Target Trash File Not exist - + Fail Sampah Sasaran Tidak Wujud Operation timed out - + Operasi telah tamat masa File is busy - + Fail masih sibuk Device disconnected - + Peranti terputus ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 Success - + Berjaya Failed - + Gagal - + Sidebar - + Palang Sisi @@ -1881,7 +1866,7 @@ Before file name - + Sebelum nama fail @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Tidak dibenarkan - - + + In trial period Masih dalam percubaan + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1947,17 +1947,17 @@ Collection size - + Saiz koleksi Large area - + Kawasan luas Small area - + Kawasan kecil @@ -1973,77 +1973,57 @@ ddplugin_organizer::CustomMode - + New Collection - + Koleksi Baharu ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Urus atas meja - + Desktop options - + Pilih atas meja - + Organize by - + Diurus oleh - + Custom collection - + Koleksi suai - + Type Jenis - + Time accessed Masa dicapai - + Time modified Masa diubahsuai - + Time created Masa dicipta - + Create a collection - - - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - + Cipta satu koleksi @@ -2065,14 +2045,14 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Pilihan atas meja - + Auto arrange icons - + Auto susun ikon @@ -2080,12 +2060,12 @@ Organize desktop - + Urus atas meja Organize by - + Diurus oleh @@ -2154,7 +2134,7 @@ Before file name - + Sebelum nama fail @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Saiz ikon @@ -2190,7 +2165,7 @@ Apps - + Apl @@ -2215,7 +2190,7 @@ Folders - + Folder @@ -2228,7 +2203,7 @@ Apps - + Apl @@ -2253,7 +2228,7 @@ Folders - + Folder @@ -2271,7 +2246,7 @@ Custom Screensaver - + Penyelamat Skrin Suai @@ -2283,7 +2258,7 @@ This system wallpaper is locked. Please contact your admin. - + Kertas dinding sistem terkunci. Sila hubungi pentadbir sistem anda. @@ -2349,26 +2324,26 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Pengurus Fail akan dikemas kini ke versi baharu, ketika tugasan ini berlangsung akan dihentikan. Anda pasti mahu kemas kini sekarang? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Perkhidmatan atas meja akan dikemas kini ke versi baharu, ketika tugasan ini berlangsung akan dihentikan. Anda pasti mahu kemas kini sekarang? - + Update button - + Kemas Kini - + Cancel button - + Batal @@ -2385,7 +2360,7 @@ - + %1 item selected %1 item terpilih @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2436,87 +2411,87 @@ Operating failed - + Gagal dioperasikan Mount failed - + Gagal dilekapkan Unmount failed - + Gagal ditanggalkan Unmounting device now... - + Kini menanggalkan peranti... Mounting device now... - + Kini melekapkan peranti sekarang... Erasing device now... - + Kini memadam peranti... Making filesystem for device now... - + Kini membuat sistem fail untuk peranti... Locking device now... - + Kini mengunci peranti... Unlocking device now... - + Kini menyahkunci peranti... The device is busy now - + Kini peranti masih sibuk Anonymous mount is not allowed - + Lekapan awanama tidak dibenarkan Wrong password - + Kata laluan salah Cannot create the mountpoint: the file name is too long - + Tidak dapat mencipta titik lekap: nama fail terlalu panjang Permission denied - + Keizinan dinafikan No such file or directory - + Tiada fail atau direktori sebegitu Error occured while mounting device - + Ralat berlaku ketka melekapkan peranti The device has been blocked and you do not have permission to access it. Please configure its connection policy in Security Center or contact your administrator. - + Peranti telah disekat dan anda tiada keizinan untuk mencapainya. Sila konfigur dasar sambungan dalam Pusat Keselamatan atau hubungi pentadbir sistem anda. @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operasi gagal! @@ -2554,191 +2529,191 @@ Folder sasaran di dalam folder sumber! - + The passphrase is needed to access encrypted data on %1. - + Frasa laluan diperlukan untuk mencapai data tersulit dalam %1. - - - - - - - - + + + + + + + + Cancel button Batal - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? Untuk mencapai peranti, anda mesti format cakera dahulu. Anda pasti mahu memformatnya sekarang? - + Do you want to run %1 or display its content? Anda mahu jalankan %1 atau papar kandungannya? - + It is an executable text file. Ia adalah fail teks bolehlaku. - - - + + + Run button Jalan - - + + Run in terminal button Jalankan dalam terminal - + Display button Papar - + Do you want to run %1? Anda mahu jalankan %1? - + It is an executable file. Ia adalah fail bolehlaku. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Tidak dapat mengalih %1 item terpilih ke dalam tong sampah. Anda pasti mahu memadamnya secara kekal? - + Permanently delete %1 items? Padam %1 item secara kekal? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - + Tidak dapat mengalih "%1" ke dalam tong sampah. Anda pasti mahu memadamnya secara kekal? - - - + + + Delete button Padam - + Permanently delete %1? Padam %1 secara kekal? - - + + This action cannot be undone Tindakan ini tidak boleh dipulihkan - + Are you sure you want to empty %1 item? Anda pasti mahu kosongkan %1 item? - + Are you sure you want to empty %1 items? Anda pasti mahu kosongkan %1 item? - + Empty Kosong - + Do you want to delete %1? Anda pasti mahu memadam %1? - + Do you want to delete the selected %1 items? Anda pasti mahu memadam %1 item terpilih? - + Failed to restore %1 file, the target folder is read-only Gagal memulihkan %1 fail, folder sasaran adalah baca-sahaja - + Failed to restore %1 files, the target folder is read-only Gagal memulihkan %1 fail, folder sasaran adalah baca-sahaja - + "%1" already exists, please use another name. "%1" sudah wujud, sila gunakan nama lain. - + Device or resource busy Peranti atau sumber sibuk - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Fail ini akan disembunyikan jika nama fail bermula dengan tanda '.'. Anda pasti mahu menyembunyikannya? - + Hide Sembunyi - + Cancel Batal - + Unable to access %1 - + Gagal mencapai %1 - + %1 that this shortcut refers to has been changed or moved %1 yang mana pintasan rujuk telah berubah atau dialihkan - + Do you want to delete this shortcut? Anda mahu padam pintasan ini? - + This file is not executable, do you want to add the execute permission and run? Fail ini tidak bolehlaku, anda mahu tambah keizinan laku dan jalankan? - + The selected files contain system file/directory, and it cannot be deleted Fail terpilih mengandungi fail/direktori sistem, dan ia tidak boleh dipadamkan @@ -2866,280 +2841,278 @@ Masukkan kata laluan untuk menyahsulit cakera + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Sentiasa buka folder dalam tetingkap baharu - + Open file: - + Buka fail: - + Click - + Klik - + Double click - + Dwi-klik - + New window and tab - + Tetingkap dan tab baharu - + Open from default window: - + Buka melalui tetingkap lalai: - - + + Computer - + Komputer - - + + Home - + Rumah - - + + Desktop - + Atas Meja - - + + Videos - + Video - - + + Music - + Muzik - - + + Pictures - + Gambar - - + + Documents - + Dokumen - - + + Downloads - + Muat Turun - + Open in new tab: - + Buka dalam tab baharu: - + Current Directory - + Direktori Semasa - + Files and folders - + Fail dan folder - + Show hidden files - + Tunjuk fail tersembunyi - + Show file extensions - + Tunjuk sambungan fail - + Mix sorting of files and folders - + Campur pengisihan fail dan folder - + Workspace - + Ruang Kerja - + View - + Pandangan - + Default size: - + Saiz lalai: - + Extra small - + Lebih kecil - + Small - + Kecil - + Medium - + Sederhana - + Large - + Besar - + Extra large + Lebih besar + + + + Tree - + Default view: - + Pandangan lalai: - + Icon - + Ikon - + List + Senarai + + + + Restore default view mode for all directories - - Thumbnail preview + + Restore default view mode - + + Thumbnail preview + Pratonton imej kecil + + + Compressed file preview - + Pratonton fail termampat - + Text preview - + Pratonton teks - + Document preview - + Pratonton dokumen - + Image preview - + Pratonton imej - + Video preview - + Pratonton video - + Music preview - + Pratonton muzik - + The remote environment shows thumbnail previews - + Persekitaran jauh menunjukkan pratonton imej kenit - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Menghidupkan pratonton imej kenit boleh menyebabkan direktori jauh lambat dimuatkan atau operasi menjadi kaku - + Advanced - - - - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - + Lanjutan - + Mount - + Lekap - + Auto mount - + Auto lekap - + Open after auto mount - - - - - Show item counts and sizes in the path of mounted MTP devices - + Buka selepas auto lekap - + Merge the entries of Samba shared folders - + Gabung masukan folder kongsi Samba - + Switching the entry display may lead to failed mounting - + Mengubah paparan masukan boleh mengakibatkan kegagalan pelekapan - + Use the file chooser dialog of File Manager - + Guna dialog pemilih fail bagi Pengurus Fail - + Ask for my confirmation when deleting files - + Tanya pengesahan saya ketika memadam fail @@ -3182,7 +3155,7 @@ Reverse selection - + Pemilihan songsang @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Lain-lain - + Close Tutup - + Close current tab Tutup tab semasa - + Back Undur - + Forward Maju - + Switch to next tab Beralih ke tab berikutnya - + Switch to previous tab Beralih ke tab terdahulu - + Next file Fail berikutnya - + Previous file Fail terdahulu - + Switch tab by specified number between 1 to 8 Tukar tab dengan menyatakan nombor diantara 1 hingga 8 @@ -3400,7 +3378,7 @@ Recent - + Baru-Baru Ini @@ -3408,50 +3386,51 @@ create source file %1 Info failed in show conflict Info function! - + create source file %1 Info failed in show conflict Info function! create target file %1 Info failed in show conflict Info function! - + create target file %1 Info failed in show conflict Info function! - + Time modified: %1 Masa diubah suai: %1 - + Original folder Folder asal - + Contains: %1 Mengandungi: %1 - + Original file Fail asal - + Size: %1 Saiz: %1 - + Target folder Folder sasaran - + + In data statistics ... - + Dalam statistik data ... - + Target file Fail sasaran @@ -3466,37 +3445,37 @@ Tunggu sebentar - + Keep both button Kekal kedua-duanya - + Skip button Langkau - - + + Replace button Ganti - + Do not ask again Jangan tanya lagi - + Retry button Cuba lagi - + Merge button Gabung @@ -3507,12 +3486,12 @@ Enter a password to protect shared folders - + Masukkan satu kata laluan untuk melindungi folder kongsi - + Set a password on the shared folder for non-anonymous access - + Tetapkan satu kata laluan ke atas folder kongsi untuk capaian bukan-awanama @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Maaf, gagal mencari direktori ca[aian pantas anda, buang ia? - + Cancel button Batal - + Remove button Buang @@ -3558,12 +3537,12 @@ Pin to quick access - + Cemat ke capaian pantas Remove from quick access - + Buang daripada capaian pantas @@ -3623,7 +3602,7 @@ The file name or the path is too long. Please shorten the file name or the path and try again. - + Nama fail atau laluan terlalu panjang. Sila pendekkan nama fail atau laluan dan cuba sekali lagi. @@ -3746,7 +3725,7 @@ The file name or the path is too long. Please shorten the file name or the path and try again. - + Nama fail atau laluan terlalu panjang. Sila pendekkan nama fail atau laluan dan cuba sekali lagi. @@ -3805,122 +3784,121 @@ dfmplugin_computer::Computer - - + Computer Komputer - + Computer display items - + Item paparan komputer - + Hide built-in disks on the Computer page - + Sembunyi cakera terbina-dalam dalam halaman Komputer - + Hide loop partitions on the Computer page - + Sembunyi sekatan berulang dalam halaman Komputer - + Show file system on disk icon - + Tunjuk sistem fail dalam ikon cakera - + Hide My Directories on the Computer page - + Sembunyi DIrektori Saya dalam halaman Komputer - + Hide 3rd party entries on the Computer page - + Sembunyi masukan pihak ke3 dalam halaman Komputer dfmplugin_computer::ComputerController - + Unlock device failed - + Gagal menyahkunci peranti - + Wrong password - + Katal laluan salah - + Rename failed - + Gagal menamakan semula - + The device is busy and cannot be renamed now - + Peranti masih sibuk dan tidak dapat dinamakan buat masa ini - + Format failed - + Gagal diformat - + The device is busy and cannot be formatted now - + Peranti masih sibuk, tidak dapat diformat buat masa ini - + Mount error - + Ralat lekap - + Cannot access %1 - + Tidak dapat capai %1 dfmplugin_computer::ComputerEventReceiver - + Computer Komputer - + %1 is read-only. Do you want to enable read and write permissions for it? - + %1 adalah baca-sahaja. Anda pasti mahu dayakan keizinan baca dan tulis untuknya? - + Once enabled, read/write permission will be granted permanently - + Setelah didayakan, keizinan baca/tulis akan diberi secara kekal - + Cancel - + Batal - + Enable Now - + Dayakan Sekarang dfmplugin_computer::ComputerItemWatcher - + My Directories Direktori Saya - + Disks Cakera-Cakera @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Maklumat asas - + Device type Jenis peranti - + Total space Jumlah ruang - + File system Sistem fail - + Contains Mengandungi - + Free space Ruang bebas - + %1 items %1 item - + %1 item %1 item @@ -3971,10 +3949,10 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 - + %1 pada %2 @@ -3990,29 +3968,29 @@ Saiz - + Dimension Dimensi - + Duration Jangka masa - + Type Jenis - + Accessed - + Dicapai - + Modified - + Diubah suai @@ -4175,7 +4153,7 @@ Share folder can't be named after the current username - + Folder dikongsi tidak boleh dinamakan selepas nama pengguna semasa @@ -4198,221 +4176,221 @@ Copying %1 - + Menyalin %1 to %1 - + ke %1 Deleting %1 - + Memadam %1 Moving %1 - + Mengalih %1 Trashing %1 - + Tong Sampahkan %1 Restoring %1 - + Memulihkan %1 Permission error - + Ralat keizinan The action is denied - + Tindakan dinafikan Target file %1 already exists - + Fail sasaran %1 sudah wujud Target directory %1 already exists - + Direktori sasaran %1 sudah wujud Failed to open the file %1 - + Gagal membuka fail %1 Failed to read the file %1 - + Gagal membaca fail %1 Failed to write the file %1 - + Gagal menulis fail %1 Failed to create the directory %1 - + Gagal mencipta direktori %1 Failed to delete the file %1 - + Gagal memadam fail %1 Failed to move the file %1 to trash - + Gagal mengalih fail %1 ke dalam tong sampah Failed to move the file %1 - + Gagal mengalih fail %1 Original file %1 does not exist - + Fail asal %1 tidak wujud Failed, the file size of %1 must be less than 4 GB - + Gagal, saiz fail %1 mesti lebih kecil daripada 4 GB Not enough free space on the target disk - + Ruang bebas dalam cakera sasaran tidak mencukupi File %1 integrity was damaged - + Integriti fail %1 telah rosak The target device is read only - + Peranti sasaran hanya baca sahaja Target folder is inside the source folder - + Folder sasaran di dalam folder sumber The action is not supported - + Tindakan ini tidak disokong You do not have permission to traverse files in %1 - + Anda tiada keizinan untuk rentas fail di dalam %1 Restore failed, original path could not be found - + Gagal dipulihkan, laluan asal tidak ditemui Unknown error - + Ralat tidak diketahui Failed to parse the url of trash - + Gagal menghurai url tong sampah Restore failed: the original file does not exist - + Gagal dipulihkan: fail asal tidak wujud Copy or Cut File failed! - + Gagal Salin atau Potong Fail! Failed to open the file %1, cause: %2 - + Gagal membuka fail %1, sebab: %2 Failed to read the file %1, cause: %2 - + Gagal membaca fail %1, sebab: %2 Failed to write the file %1, cause: %2 - + Gagal menulis fail %1, sebab: %2 Failed to create the directory %1, cause: %2 - + Gagal mencipta direktori %1, sebab: %2 Failed to delete the file %1, cause: %2 - + Gagal memadam fail %1, sebab: %2 Failed to move the file %1 to trash, cause: %2 - + Gagal mengalih fail %1 ke dalam tong sampah, sebab: %2 Failed to move the file %1, cause: %2 - + Gagal mengalih fail %1, sebab: %2 File %1 integrity was damaged, cause: %2 - + Integriti fail %1 telah rosak, sebab: %2 Failed to create symlink, cause: %1 - + Gagal mencipta pautan simbolik, sebab: %1 - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Gagal Salin atau Potong Fail, sebab: %1 %1 already exists in target folder - + %1 sudah wujud dalam folder sasaran @@ -4420,7 +4398,7 @@ Original path %1 - + Laluan asal %1 @@ -4428,41 +4406,41 @@ Target path %1 - + Laluan sasaran %1 Original path %1 Target path %2 - + Laluan asal %1 Laluan sasaran %2 dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Ralat nama semula fail - + Failed to create the directory - + Gagal mencipta direktori - + Failed to create the file - + Gagal mencipta fail - + link file error - + Ralat paut fail - - + + Failed to modify file permissions - + Gagal mengubah suai keizinan fail @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Tampal + &Paste + - Cut - Potong + Cu&t + - Copy - Salin + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Buka + &Open + - Rename - Nama Semula + Rena&me + - Delete - Padam + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Buka dalam terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Hantar ke - + + Bluetooth + + + + Create link Cipta pautan - + Send to desktop Hantar ke desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - - - Bluetooth - Bluetooth + Kongsi dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Buka + + &Open + - + Open in new window Buka dalam tetingkap baharu - + Open in new tab Buka dalam tab baharu - + Cancel sharing Batal perkongsian - - Properties - Sifat + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Perkongsian Saya @@ -4665,7 +4648,7 @@ It does not support burning UDF discs - + Ia tidak menyokong rakaman cakera UDF @@ -4700,7 +4683,7 @@ Tiada fail dirakam - + Unable to burn. Not enough free space on the target disk. Tidak dapat merakam. Ruang bebas dalam cakera sasaran tidak mencukupi. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Maklumat asas - + Size Saiz - + Contains Mengandungi - + Type Jenis - + Location Lokasi - + Time created Masa dicipta - + Time accessed Masa dicapai - + Time modified Masa diubahsuai - + Hide this file Sembunyi fail ini - - + + %1 item %1 item - + %1 items %1 item @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + Untuk Keselamatan Rahsia - + For Government Untuk pihak Kerajaan - + For Enterprise Untuk pihak Perniagaan - + Bit Bit - + Available Tersedia @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Komputer - + Basic Info Maklumat Asas - + Computer name Nama komputer - + Version Versi - + Edition Edisi - + OS build Binaan OS - + Type Jenis - + Processor Pemproses - + Memory Ingatan @@ -4891,6 +4874,14 @@ %1 fail(s), %2 folder(s) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Sifat + P&roperties + dfmplugin_recent::Recent - - + Recent Baru-Baru Ini @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Laluan - + Last access Capaian Terakhir - + Recent Baru-Baru Ini @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Gelintar: - + File Type: Jenis Fail: - + File Size: Saiz Fail: - + Time Modified: Masa Diubahsuai: - + Time Accessed: Masa Dicapai: - + Time Created: Masa Dicipta: - + Reset Tetap Semula - + All subdirectories Semua subdirektori - + Current directory Direktori semasa - + Application Aplikasi - + Video Video - + Audio Audio - + Image Imej - + Archive Arkib - + Text Teks - + Executable Bolehlaku - + Backup file Fail sandar - + Today Hari Ini - + Yesterday Semalam - + This week Minggu ini - + Last week Minggu lepas - + This month Bulan ini - + Last month Bulan lepas - + This year Tahun ini - + Last year Tahun lepas @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Gelintar + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Laluan @@ -5111,73 +5117,60 @@ dfmplugin_search::SearchMenuScene - + Open file location Buka lokasi fail - + Select all Pilih semua - + Path - + Laluan dfmplugin_sidebar::SideBarWidget - + Quick access - + Capaian pantas - + Partitions - + Sekatan - + Network - + Rangkaian - + Tag Tag - - Bookmark - - - - + Other Lain-lain - + Unknown Group - - - - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Komputer dalam LAN + Kumpulan Tidak Diketahui dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Buka + &Open + @@ -5187,11 +5180,11 @@ Open in new tab - + Buka dalam tab baharu - Properties + P&roperties @@ -5210,23 +5203,23 @@ Unmount - + Tanggal Clear saved password and unmount - + Kosongkan kata laluan tersimpan dan tanggalkan Remove - + Buang dfmplugin_tag::Tag - + Tag Tag @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Buka lokasi fail @@ -5257,7 +5250,7 @@ Remove tag "%1" - + Buang tag "%1" @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Sambung dengan Pelayan - - - + + + Clear History Kosongkan Sejarah - + Unfavorite Nyahgemar - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Batal - + Connect button Sambung - + Charset Encoding - + Pengekodan Set Aksara - + Default - + Lalai - + My Favorites Kegemaran Saya - + No favorites yet Belum ada kegemaran - + Favorite Gemar @@ -5385,12 +5388,12 @@ Minimum of 8 characters. At least 3 types: 0-9, a-z, A-Z and symbols. Different from the username. - + Minimum 8 aksara. Sekurang-kurangnya ada 3 jenis: 0-9, a-z, A-Z dan simbol. Berlainan dengan nama pengguna. Password must be no more than %1 characters - + Kata laluan tidak boleh melebihi %1 aksara @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Laluan Sumber - + Time deleted Masa dipadam @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Pulih - + Restore all Pulih semua - + Empty trash - + Kosongkan tong sampah - + Source path Laluan sumber - + Time deleted Masa dipadam @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Tong Sampah @@ -5527,17 +5530,17 @@ Tong Sampah - + item item - + items item - + Contains %1 %2 Mengandungi %1 %2 @@ -5713,48 +5716,48 @@ Sending files now, please try later. - + Menghantar fail sekarang, cuba lagi kemudian. dfmplugin_vault::BasicWidget - + Basic info - + Maklumat asas - + Size Saiz - + Contains Mengandungi - + Type Jenis - + Location Lokasi - + Time created Masa dicipta - + Time accessed Masa dicapai - + Time locked Masa dikunci @@ -5764,13 +5767,14 @@ Unlock failed - + Gagal dinyahkunci The %1 directory is occupied, please clear the files in this directory and try to unlock the safe again. - + DIrektori %1 masih digunakan, +sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. @@ -5984,7 +5988,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Sulit Bilik Kebal Fail @@ -6005,19 +6009,19 @@ - - - + + + Encrypt Sulit - + Failed to create file vault: %1 Gagal mencipta bilik kebal fail: %1 - + OK OK @@ -6068,24 +6072,24 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Tetapkan Kata Laluan Bilik Kebal Encryption method - + Kaedah penyulitan Key encryption - + Penyulitan kunci Transparent encryption - + Penyulitan transparen @@ -6094,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 aksara, terdiri daripada A-Z, a-z, 0-9, dan simbol @@ -6121,7 +6125,7 @@ The file vault will be automatically unlocked when accessed, without verifying the password. Files in it will be inaccessible under other user accounts. - + Bilik kebal fail akan dibuka secara automatik ketika dicapai, tanpa perlu pengesahan kata laluan. Fail-fail yang ada di dalamnya tidak boleh dicapai selain daripada pengguna yang sah. @@ -6129,8 +6133,8 @@ Berikutnya - - + + Passwords do not match Kata laluan tidak sepadan @@ -6138,7 +6142,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Kekubah Fail @@ -6176,128 +6180,151 @@ Vault - + Bilik Kebal Vault not available because cryfs not installed! - + Bilik kebal tidak tersedia kerana cryfs tidak dipasang! dfmplugin_vault::VaultHelper - + Vault - + Bilik Kebal Vault not available because cryfs not installed! - + Vault not available because cryfs not installed! - + A task is in progress, so it cannot perform your operation - + Satu tugasan maslih berlangsung, oleh itu ia tidak dapat menjalankan operasi anda dfmplugin_vault::VaultPropertyDialog - + My Vault Bilik Kebal Saya - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Kata laluan + + Cancel + - - Password hint: %1 - Pembayang kata laluan: %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Masukkan kunci pemulihan 32-digit + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Padam Bilik Kebal Fail + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Setelah dipadamkan, fail di dalamnya akan kekal terpadam + + Password + Kata laluan - - Cancel - button - Batal + + Password hint: %1 + Pembayang kata laluan: %1 - - Use Key - button - Guna Kunci + + Cancel + - + Delete - button - Padam + - - Removing... - Membuang... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault + - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Kata laluan salah + + Input the 32-digit recovery key + Masukkan kunci pemulihan 32-digit + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Kunci pemulihan salah + + Removing... + - - Failed to delete file vault - Gagal memadam bilik kebal fail + + OK + - - Deleted successfully - Pemadaman berjaya + + Delete File Vault + - - Failed to delete - Gagal dipadamkan + + Deleted successfully + @@ -6308,46 +6335,40 @@ Bilik Kebal Saya - + File Vault Kekubah Fail - - - - Vault - - dfmplugin_workspace::FileOperatorHelper Failed to open %1, which may be moved or renamed - + Gagal membuka %1, mungkin telah dialih atau dinamakan semula dfmplugin_workspace::FileViewModel - + Name - + Nama - + Time modified - + Masa diubah suai - + Size - + Saiz - + Type - + Jenis @@ -6361,7 +6382,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 tidak dibenarkan @@ -6377,45 +6398,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Isih mengikut - + Display as Papar sebagai - + Name Nama - + Time modified Masa diubahsuai - + Size Saiz - + Type Jenis - + Icon Ikon - + List Senarai + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6454,7 @@ filedialog_core::FileDialog - + Save button Simpan @@ -6437,13 +6463,13 @@ filedialog_core::FileDialogStatusBar - + Save button Simpan - + Open button Buka @@ -6481,114 +6507,114 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Saiz tersedia: - + Custom Size - + Saiz Suai - + Device Pixel Ratio: - + Nisbah Piksel Peranti: - + Theme: - + Tema: - + Light - + Cerah - + Dark - + Gelap - + Mode: - + Mod: - + Normal - + Biasa - + Disabled - + Dilumpuhkan - + Hovered - + Terapung - + Pressed - + Ditekan - + Palette - + Palet - + Current mode icon does not support the palette - + Ikon mod semasa tidak menyokong palet - + Foreground: - + Latar Hadapan: - + Background: - + Latar Belakang: - + Highlight: - + Sorot: - + HighlightForeground: - + HighlightForeground: - + Background Color: - + Warna Latar Belakang: - + White - + Putih - + Black - + Hitam - + Transparent - + Lutsinar - + Custom - + Suai @@ -6596,7 +6622,7 @@ Encrypted file, please enter the password - + Fail disulitkan, sila masukkan kata laluan @@ -6618,24 +6644,24 @@ plugin_filepreview::MusicMessageView - + Artist: - + Artis: - + Album: - + Album: - + unknown artist - + artis tidak diketahui - + unknown album - + album tidak diketahui \ No newline at end of file diff --git a/translations/dde-file-manager_nb.ts b/translations/dde-file-manager_nb.ts index e93e234335..9d22edcf2b 100644 --- a/translations/dde-file-manager_nb.ts +++ b/translations/dde-file-manager_nb.ts @@ -15,99 +15,104 @@ Application - + File Manager Filutforsker - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Skrivebord - DeepinStorage + DeviceList - - - %1 Volume - %1 Volum + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Skrivebord + + Disk + Disk - - - DiskControlWidget - - Disks - + + Open + Åpne - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Åpne + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Ukjent @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk Data Disk - + Blank %1 Disc - - - + + + Unknown Ukjent - + %1 Drive - + %1 Encrypted - + + %1 Volume %1 Volum - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Hjem @@ -223,7 +228,6 @@ - Desktop Skrivebord @@ -233,7 +237,6 @@ - Videos Video @@ -243,7 +246,6 @@ - Music Musikk @@ -253,7 +255,6 @@ - Pictures Kilder @@ -263,7 +264,6 @@ - Documents Dokumenter @@ -273,7 +273,6 @@ - Downloads Nedlastninger @@ -282,7 +281,6 @@ - Trash Søppel @@ -293,12 +291,11 @@ - Recent Nylig - + @@ -306,7 +303,7 @@ Automonter - + @@ -319,47 +316,46 @@ %1 oppgaver pågående - + %1 item %1 ting - + %1 items %1 ting - + Unable to find the original file - - + + File has been moved or deleted Filen har blitt flyttet eller slettet - - - + + You do not have permission to access this folder Du har ikke tilgang til denne mappen - - + + You do not have permission to traverse files in it - - + + Folder is empty Mappen er tom - + Loading... Laster... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Datamaskin @@ -424,9 +419,8 @@ - - - + + Computers in LAN Datamaskiner i LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Snarvei - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Tilgang nektet - Confirm button Bekrefte - - - The device has been safely removed - - - - + + - - - + + + Open in new window Åpne i et nytt vindu @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Åpne i ny fane @@ -968,8 +953,8 @@ - - + + Properties Innstillinger @@ -1005,7 +990,7 @@ - + Create symlink Opprett symbolsk lenke @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange Oransje - + Red Rød - + Purple Lilla - + Navy-blue Blå - + Azure Azurblå - + Green Grønn - + Yellow Gul - + Gray Grå @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Lokal disk - + Removable disk Fjernbar disk - + DVD DVD - + Network shared directory Delt nettverksmappe - - + + Android mobile device Android mobil enhet - + Apple mobile device Apple mobil enet - + Unknown device Ukjent enhet - + Remove button Fjerne - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Slett nylig historie - - - + + + Source path Kildesti @@ -1419,12 +1404,12 @@ - + Empty Trash Tøm søppel - + Location Sted @@ -1524,7 +1509,7 @@ Søker... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Type - + Time accessed - + Time modified Tid modifisert - + Time created Tid opprettet - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Ikonstørrelse @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 ting valgt @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operasjonen feilet! @@ -2554,191 +2529,191 @@ Målmappen er inni kildemappen! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Avbryt - + Format button Formatter - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Vil du kjøre %1 eller vise dens innhold? - + It is an executable text file. Det er en kjørbart tekstfil - - - + + + Run button Kjør - - + + Run in terminal button Kjør i terminalen - + Display button Vis - + Do you want to run %1? Vil du kjøre %1? - + It is an executable file. Det er en kjørbar fil. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Permanent slette %1 ting? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Slett - + Permanently delete %1? Slette permanent %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Tøm - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" eksisterer allerede, Vennligst bruk et annet navn - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Avbryt - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 som denne snarveien refererer til har blitt endret eller flyttet - + Do you want to delete this shortcut? Vil du slette denne snarveien? - + This file is not executable, do you want to add the execute permission and run? Denne filen er ikke kjørbar. Vil du legge til kjøringstillatelse og kjøre den? - + The selected files contain system file/directory, and it cannot be deleted Den valgte filen inneholder en systemfil eller mappe og kan ikke slettes @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Andre - + Close Lukk - + Close current tab Lukk nåværende fane - + Back Tilbake - + Forward Fremover - + Switch to next tab Bytt til neste fane - + Switch to previous tab Bytt til forrige fane - + Next file Neste fil - + Previous file Forrige fil - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 Størrelse: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button Behold begge to - + Skip button Hopp over - - + + Replace button Erstatt - + Do not ask again Ikke spør igjen - + Retry button Prøv igjen - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Avbryt - + Remove button Fjerne @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Datamaskin - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Datamaskin - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mine mapper - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Enhetstype - + Total space Total plass - + File system - + Contains Inneholder - + Free space Ledig plass - + %1 items %1 ting - + %1 item %1 ting @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Størrelse - + Dimension - + Duration - + Type Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Lim inn + &Paste + - Cut - Klipp ut + Cu&t + - Copy - Kopier + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Åpne + &Open + - Rename - Endre navn + Rena&me + - Delete - Slett + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Åpne i terminalen + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Send til - + + Bluetooth + + + + Create link Opprett lenke - + Send to desktop Send til skrivebordet @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Åpne + + &Open + - + Open in new window Åpne i et nytt vindu - + Open in new tab Åpne i ny fane - + Cancel sharing Avbryt deling - - Properties - Innstillinger + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Mine Delinger @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Størrelse - + Contains Inneholder - + Type Type - + Location Sted - + Time created Tid opprettet - + Time accessed - + Time modified Tid modifisert - + Hide this file - - + + %1 item %1 ting - + %1 items %1 ting @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Datamaskin - + Basic Info Grunnleggende informasjon - + Computer name - + Version Versjon - + Edition - + OS build - + Type Type - + Processor Prosessor - + Memory Minne @@ -4890,6 +4873,14 @@ %1 fil(er), %2 mapper + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Innstillinger + P&roperties + dfmplugin_recent::Recent - - + Recent Nylig @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Sti - + Last access Siste tilgang - + Recent Nylig @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Søk: - + File Type: Filtype: - + File Size: Filstørrelse: - + Time Modified: Sist endret: - + Time Accessed: - + Time Created: - + Reset Nullstill - + All subdirectories Alle undermapper - + Current directory Nåværende mappe - + Application - + Video Video - + Audio Lyd - + Image Bilde - + Archive Arkiv - + Text Tekst - + Executable Kjørbar - + Backup file - + Today I dag - + Yesterday I går - + This week Denne uken - + Last week Forrige uke - + This month Denne måneden - + Last month Forrige måned - + This year I år - + Last year I fjor @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Søk + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Sti @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all Velg alle - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other Andre - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Datamaskiner i LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Åpne + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Avbryt - + Connect button Koble til - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted Tid slettet @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Gjenopprett - + Restore all Gjenopprett alle - + Empty trash - + Source path Kildesti - + Time deleted Tid slettet @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Søppel @@ -5526,17 +5529,17 @@ Søppel - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Størrelse - + Contains Inneholder - + Type Type - + Location Sted - + Time created Tid opprettet - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Passord + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Passord + + + + Password hint: %1 - + Cancel - button - Avbryt + - - Use Key - button + + Delete - - Delete - button - Slett + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sorter etter - + Display as Vis som - + Name Navn - + Time modified Tid modifisert - + Size Størrelse - + Type Type - + Icon Ikon - + List Liste + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Lagre @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Lagre - + Open button Åpne @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ne.ts b/translations/dde-file-manager_ne.ts index e5fb4beace..bac3c77f01 100644 --- a/translations/dde-file-manager_ne.ts +++ b/translations/dde-file-manager_ne.ts @@ -15,99 +15,104 @@ Application - + File Manager फाइल प्रबन्धक - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + डेस्कटप - DeepinStorage + DeviceList - - - %1 Volume - % 1 खण्ड + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - डेस्कटप + + Disk + डिस्क - - - DiskControlWidget - - Disks - डिस्कहरू + + Open + खोल्नुहोस् - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - डिस्क व्यस्त छ, अब अनमाउन्ट गर्न सक्दैन + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - डिस्क + + + remove + - - Open - खोल्नुहोस् + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown अज्ञात @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk प्रणाली डिस्क - + Data Disk डाटा डिस्क - + Blank %1 Disc खाली% 1 डिस्क - - - + + + Unknown अज्ञात - + %1 Drive % 1 ड्राइभ - + %1 Encrypted % 1 ईन्क्रिप्टेड - + + %1 Volume % 1 खण्ड - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home होम @@ -223,7 +228,6 @@ - Desktop डेस्कटप @@ -233,7 +237,6 @@ - Videos भिडियोस @@ -243,7 +246,6 @@ - Music म्युजिक @@ -253,7 +255,6 @@ - Pictures पिक्चारहरु @@ -263,7 +264,6 @@ - Documents डोकुमेन्त्स @@ -273,7 +273,6 @@ - Downloads डाउनलोडहरू @@ -282,7 +281,6 @@ - Trash रद्दी टोकरी @@ -293,12 +291,11 @@ - Recent रिसेन्ट - + @@ -306,7 +303,7 @@ स्वत: माउन्ट - + @@ -319,47 +316,46 @@ % 1 कार्यहरू प्रगतिमा छ - + %1 item % 1 वस्तु - + %1 items % 1 वस्तुहरू - + Unable to find the original file - - + + File has been moved or deleted फाईल सारियो वा हटाईयो - - - + + You do not have permission to access this folder तपाईंसँग यो फोल्डर पहुँच गर्न अनुमति छैन - - + + You do not have permission to traverse files in it - - + + Folder is empty फोल्डर खाली छ - + Loading... लोड हुँदैछ ... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer कम्प्युटर @@ -424,9 +419,8 @@ - - - + + Computers in LAN ल्यानमा कम्प्युटरहरू @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag ट्याग @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut सर्टकट - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ बिट - Access denied प्रवेश अस्वीकृत - Confirm button पुष्टि गर्नुहोस् - - - The device has been safely removed - - - - + + - - - + + + Open in new window नयाँ विन्डोमा खोल्नुहोस् @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab नयाँ ट्याबमा खोल्नुहोस्: @@ -968,8 +953,8 @@ - - + + Properties गुणहरू @@ -1005,7 +990,7 @@ - + Create symlink स्य्म्लिंक सिर्जना गर्नुहोस् @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? के तपाईं निश्चित रूपमा डिस्कमा सबै डाटा मेटाउन चाहानुहुन्छ? - + Erase button मेटाउनु - + This action cannot be undone यो कार्य पूर्ववत गर्न सकिदैन - + How do you want to use this disc? तपाईं यो डिस्क कसरी प्रयोग गर्न चाहनुहुन्छ? - + Burn image button छवि बर्न गर्नुहोस् - + Burn files button फाईलहरू बर्न गर्नुहोस् - + %1 is a duplicate file. % 1 डुप्लिकेट फाईल हो। - + Insufficient disc space. अपर्याप्त डिस्क ठाउँ। - + Lost connection to drive. ड्राइभमा जडान हरायो। - + The CD/DVD drive is not ready. Try another disc. CD / DVD ड्राइव तयार छैन। अर्को डिस्क प्रयोग गर्नुहोस्। - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD / DVD ड्राइभ व्यस्त छ। ड्राइभको प्रयोग गरेर कार्यक्रमबाट बाहिर निस्कनुहोस् र फेरि ड्राइभ घुसाउनुहोस्। - + Invalid volume name - + Unknown error अज्ञात त्रुटि @@ -1194,42 +1179,42 @@ आईटमहरू:% 1 - + Orange सुन्तला रंग - + Red रातो - + Purple बैजनी - + Navy-blue नेभी-निलो - + Azure Azure - + Green हरियो - + Yellow पहेंलो - + Gray खैरो @@ -1305,76 +1290,76 @@ - + User directory - + Local disk स्थानीय डिस्क - + Removable disk हटाउन योग्य डिस्क - + DVD DVD - + Network shared directory नेटवर्क साझा निर्देशिका - - + + Android mobile device एन्ड्रोइड मोबाइल उपकरण - + Apple mobile device एप्पल मोबाइल उपकरण - + Unknown device अज्ञात उपकरण - + Remove button हटाउनुहोस् - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history हालको ईतिहास खाली गर्नुहोस् - - - + + + Source path स्रोत मार्ग @@ -1419,12 +1404,12 @@ - + Empty Trash रद्दी टोकरी खाली गर्नुहोस् - + Location स्थान @@ -1524,7 +1509,7 @@ खोजी गर्दै ... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type प्रकार - + Time accessed समय पहुँच गरियो - + Time modified समय परिमार्जित - + Time created समय सिर्जना गरियो - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected % 1 वस्तु चयन गरियो @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button ठिक छ - + Operation failed! सञ्चालन असफल! @@ -2554,191 +2529,191 @@ लक्ष्य फोल्डर स्रोत फोल्डर भित्र छ! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button रद्द गर्नुहोस् - + Format button फरम्याट गर्नुहोस - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? के तपाइँ% 1 चलाउन चाहानुहुन्छ वा यसको सामग्री प्रदर्शन गर्न चाहानुहुन्छ? - + It is an executable text file. यो एक कार्यान्वयन योग्य पाठ फाइल हो। - - - + + + Run button चलाउनुहोस् - - + + Run in terminal button टर्मिनलमा चलाउनुहोस् - + Display button प्रदर्शन - + Do you want to run %1? के तपाइँ % 1 चलाउन चाहानुहुन्छ? - + It is an executable file. यो एक कार्यान्वयन योग्य फाईल हो। - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? स्थायी रूपमा% 1 आईटमहरू हटाउने हो? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button हटाउनुहोस् - + Permanently delete %1? % 1 लाई स्थायी रूपमा हटाउने हो? - - + + This action cannot be undone यो कार्य पूर्ववत गर्न सकिदैन - + Are you sure you want to empty %1 item? के तपाईं % 1 आईटम खाली गर्न निश्चित हुनुहुन्छ? - + Are you sure you want to empty %1 items? के तपाईं% 1 आईटमहरू खाली गर्न निश्चित हुनुहुन्छ? - + Empty खाली - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only % 1 फाईल पुनर्स्थापित गर्न असफल भयो, लक्ष्य फोल्डर पढ्ने मात्र हो - + Failed to restore %1 files, the target folder is read-only % 1 फाईलहरू पुन: भण्डारण गर्न असफल भयो, लक्ष्य फोल्डर पढ्नको लागि मात्र हो - + "%1" already exists, please use another name. "% 1" पहिले नै अवस्थित छ, कृपया अर्को नाम प्रयोग गर्नुहोस्। - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel रद्द गर्नुहोस् - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved % 1 जुन यो सर्टकटले जनाउँछ परिवर्तन गरिएको छ वा सारियो - + Do you want to delete this shortcut? के तपाइँ यो सर्टकट मेटाउन चाहानुहुन्छ? - + This file is not executable, do you want to add the execute permission and run? यो फाईल कार्यान्वयन योग्य छैन, के तपाईं कार्यान्वयन अनुमति थप्न र चलाउन चाहानुहुन्छ? - + The selected files contain system file/directory, and it cannot be deleted चयनित फाईलहरूले प्रणाली फाइल / निर्देशिका समावेश गर्दछ, र यसलाई मेटाउन सकिदैन @@ -2866,278 +2841,276 @@ डिस्क डिक्रिप्ट गर्न इनपुट पासवर्ड + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others अन्य - + Close बन्द - + Close current tab हालको ट्याब बन्द गर्नुहोस् - + Back पछाडि - + Forward अगाडि - + Switch to next tab अर्को ट्याबमा स्विच गर्नुहोस् - + Switch to previous tab अघिल्लो ट्याबमा स्विच गर्नुहोस् - + Next file अर्को फाईल - + Previous file अघिल्लो फाइल - + Switch tab by specified number between 1 to 8 1 देखि 8 बीचमा निर्दिष्ट संख्याबाट ट्याब स्विच गर्नुहोस् @@ -3416,42 +3394,43 @@ - + Time modified: %1 समय परिमार्जित:% 1 - + Original folder मूल फोल्डर - + Contains: %1 समावेश:% 1 - + Original file मूल फाइल - + Size: %1 आकार:% 1 - + Target folder लक्ष्य फोल्डर - + + In data statistics ... - + Target file लक्ष्य फाईल @@ -3466,37 +3445,37 @@ - + Keep both button दुबै राख्नुहोस् - + Skip button छोड्नुहोस् - - + + Replace button बदल्नुहोस् - + Do not ask again फेरि नसोध्नुहोस् - + Retry button पुनःप्रयास गर्नुहोस् - + Merge button मर्ज गर्नुहोस् @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button रद्द गर्नुहोस् - + Remove button हटाउनुहोस् @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer कम्प्युटर - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer कम्प्युटर - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories मेरो निर्देशिका - + Disks डिस्कहरू @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type उपकरण प्रकार - + Total space कुल ठाउँ - + File system फाइल प्रणाली - + Contains समावेश - + Free space खाली ठाउँ - + %1 items % 1 वस्तुहरू - + %1 item % 1 वस्तु @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ आकार - + Dimension आयाम - + Duration अवधि - + Type प्रकार - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - टाँस्नुहोस् + &Paste + - Cut - काट्नुहोस् + Cu&t + - Copy - प्रतिलिपी + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - खोल्नुहोस् + &Open + - Rename - नाम बदल्नुहोस् + Rena&me + - Delete - हटाउनुहोस् + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal टर्मिनलमा खोल्नुहोस् + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to लाई पठाउनुहोस् - + + Bluetooth + + + + Create link लिंक सिर्जना गर्नुहोस् - + Send to desktop डेस्कटपमा पठाउनुहोस् @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - खोल्नुहोस् + + &Open + - + Open in new window नयाँ विन्डोमा खोल्नुहोस् - + Open in new tab नयाँ ट्याबमा खोल्नुहोस्: - + Cancel sharing साझेदारी रद्द गर्नुहोस् - - Properties - गुणहरू + + P&roperties + dfmplugin_myshares::MyShares - + My Shares मेरो सेयरहरू @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size आकार - + Contains समावेश - + Type प्रकार - + Location स्थान - + Time created समय सिर्जना गरियो - + Time accessed समय पहुँच गरियो - + Time modified समय परिमार्जित - + Hide this file यो फाईल लुकाउनुहोस् - - + + %1 item % 1 वस्तु - + %1 items % 1 वस्तुहरू @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit बिट - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer कम्प्युटर - + Basic Info आधारभूत जानकारी - + Computer name - + Version संस्करण - + Edition - + OS build - + Type प्रकार - + Processor प्रोसेसर - + Memory मेमोरी @@ -4890,6 +4873,14 @@ % 1 फाइल (हरू),% 2 फोल्डर (हरू) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - गुणहरू + P&roperties + dfmplugin_recent::Recent - - + Recent रिसेन्ट @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path पथ - + Last access अन्तिम पहुँच - + Recent रिसेन्ट @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: खोजी गर्नुहोस् - + File Type: फाईलको प्रकार: - + File Size: फाईलको आकार: - + Time Modified: समय परिमार्जित: - + Time Accessed: - + Time Created: - + Reset रिसेट गर्नुहोस् - + All subdirectories सबै उपनिर्देशिकाहरू - + Current directory वर्तमान निर्देशिका - + Application अनुप्रयोग - + Video भिडियो - + Audio अडियो - + Image इमेज - + Archive अर्चिवे - + Text टेक्स्ट - + Executable कार्यान्वयन योग्य - + Backup file ब्याकअप फाइल - + Today आज - + Yesterday हिजो - + This week यो हप्ता - + Last week गएको हप्ता - + This month यो महिना - + Last month अघिल्लो महिना - + This year यो वर्ष - + Last year पछिल्लो वर्ष @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search खोजी गर्नुहोस् + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path पथ @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location फाईल स्थान खोल्नुहोस् - + Select all सबै छान्नु - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag ट्याग - - Bookmark - - - - + Other अन्य - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - ल्यानमा कम्प्युटरहरू - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - खोल्नुहोस् + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag ट्याग @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location फाईल स्थान खोल्नुहोस् @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server सर्भरमा जडान गर्नुहोस् - - - + + + Clear History ईतिहास खाली गर्नुहोस् - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button रद्द गर्नुहोस् - + Connect button जडान गर्नुहोस् - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path स्रोत मार्ग - + Time deleted समय हटाइयो @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore पुनर्स्थापना गर्नुहोस् - + Restore all सबै पुनर्स्थापना गर्नुहोस् - + Empty trash - + Source path स्रोत मार्ग - + Time deleted समय हटाइयो @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash रद्दी टोकरी @@ -5526,17 +5529,17 @@ रद्दी टोकरी - + item आईटम - + items वस्तुहरू - + Contains %1 %2 % 1% 2 समावेश गर्दछ @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size आकार - + Contains समावेश - + Type प्रकार - + Location स्थान - + Time created समय सिर्जना गरियो - + Time accessed समय पहुँच गरियो - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ठिक छ @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ अर्को - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault फाईल भल्ट @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - पासवर्ड + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + पासवर्ड + + + + Password hint: %1 - + Cancel - button - रद्द गर्नुहोस् + - - Use Key - button + + Delete - - Delete - button - हटाउनुहोस् + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - ठिक छ + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault फाईल भल्ट - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by द्वारा क्रमबद्ध गर्नुहोस् - + Display as को रूपमा प्रदर्शन गर्नुहोस् - + Name नाम - + Time modified समय परिमार्जित - + Size आकार - + Type प्रकार - + Icon आइकन - + List सूची + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button बचत गर्नुहोस् @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button बचत गर्नुहोस् - + Open button खोल्नुहोस् @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_nl.ts b/translations/dde-file-manager_nl.ts index b91587c312..99884d2a57 100644 --- a/translations/dde-file-manager_nl.ts +++ b/translations/dde-file-manager_nl.ts @@ -15,99 +15,104 @@ Application - + File Manager Bestandsbeheerder - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Bestandsbeheer is een programma voor het beheren van bestanden en beschikt over vele mogelijkheden, zoals zoeken, kopiëren, verwijderen, (de)compressie en andere handige functies. - - DAttachedProtocolDevice - - - %1 on %2 - %1 op %2 - - - - DeepinStorage - - - - %1 Volume - Volume %1 - - DesktopMain - + Desktop Bureaublad - DiskControlWidget + DeviceList - + Disks Schijven - - - The device was not safely removed - Het apparaat is niet veilig verwijderd - - - - Click "Safely Remove" and then disconnect it next time - Klik voortaan op ‘Veilig verwijderen’ voordat je het apparaat loskoppelt - - - - Disk is busy, cannot unmount now - Schijf is in gebruik; je kunt nu niet afkoppelen - - - - The device is busy, cannot eject now - Schijf is in gebruik; je kunt nu niet uitwerpen - DiskMountPlugin - + Disk Schijf - + Open Openen - + Eject all Alles uitwerpen + + DockItemDataManager + + + The device has been safely removed + Het apparaat is veilig verwijderd + + + + eject + Uitwerpen + + + + unmount + Afkoppelen + + + + + remove + Verwijderen + + + + Operation failed + Operatie mislukt + + + + Device (%1) is busy, cannot %2 now. + %1 is bezig; %2 is daardoor niet mogelijk. + + FileDialogHandle - + All Files Alle bestanden + + FileOperateBaseWorker + + + The file name or the path is too long! + De bestandsnaam of -locatie is te lang! + + MimeTypeDisplayManager - + Unknown Onbekend @@ -123,88 +128,89 @@ QObject - + need authorization to access need authorization to access - + Can't verify the identity of %1. De identiteit van %1 kan niet worden bevestigd. - + This happens when you log in to a computer the first time. Dit gebeurt als je voor de eerste keer inlogt op een computer. - + The identity sent by the remote computer is De door de andere computer verstuurde identiteit is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Als je wilt bevestigen dat het veilig is om door te gaan, neem dan contact op met de systeembeheerder. - - - + + + System Disk Systeemschijf - + Data Disk Gegevensschijf - + Blank %1 Disc Lege %1-schijf - - - + + + Unknown Onbekend - + %1 Drive %1-schijf - + %1 Encrypted %1 versleuteld - + + %1 Volume Volume %1 - - + Scanning the device, stop it? Wil je het doorzoeken van het apparaat afbreken? - + Unmount failed Ontkoppelen mislukt - + Cannot stop scanning device Het scannen kan niet worden afgebroken - + + %1 on %2 %1 op %2 @@ -213,7 +219,6 @@ - Home Home @@ -223,7 +228,6 @@ - Desktop Bureaublad @@ -233,7 +237,6 @@ - Videos Video's @@ -243,7 +246,6 @@ - Music Muziek @@ -253,7 +255,6 @@ - Pictures Afbeeldingen @@ -263,7 +264,6 @@ - Documents Documenten @@ -273,7 +273,6 @@ - Downloads Downloads @@ -282,7 +281,6 @@ - Trash Prullenbak @@ -293,12 +291,11 @@ - Recent Recent - + @@ -306,7 +303,7 @@ Automatisch aankoppelen - + @@ -319,47 +316,46 @@ Er worden 1% taken uitgevoerd - + %1 item %1 item - + %1 items %1 items - + Unable to find the original file Het oorspronkelijke bestand is niet aangetroffen - - + + File has been moved or deleted Bestand is verplaatst of verwijderd - - - + + You do not have permission to access this folder Je bent niet bevoegd om deze map te openen - - + + You do not have permission to traverse files in it Je bent niet bevoegd om deze map te gebruiken - - + + Folder is empty Map is leeg - + Loading... Bezig met laden… @@ -408,7 +404,7 @@ - + Built-in disks Interne schijven @@ -416,7 +412,6 @@ - Computer Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN Computers op LAN-netwerk @@ -434,7 +428,7 @@ - + Loop partitions Loop-partities @@ -442,7 +436,8 @@ - + + Mounted sharing folders Aangekoppelde gedeelde mappen @@ -450,7 +445,6 @@ - My shares Mijn gedeelde items @@ -458,7 +452,7 @@ - + Network Netwerk @@ -466,7 +460,7 @@ - + Mounted partitions and discs Aangekoppelde partities en schijven @@ -474,7 +468,7 @@ - + Partitions Partities @@ -482,7 +476,7 @@ - + Quick access Snelle toegang @@ -490,7 +484,7 @@ - + Tag Label @@ -498,7 +492,7 @@ - + Added tags Labels toekennen @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Aangekoppelde Samba-mappen blijven tonen @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Afbreken - + Shortcut Snelkoppeling - + This system wallpaper is locked. Please contact your admin. Deze systeemachtergrond is vergrendeld - neem contact op met je beheerder. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopiëren) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopie %1) @@ -909,33 +901,26 @@ Bit - Access denied Toegang geweigerd - Confirm button Oké - - - The device has been safely removed - Het apparaat is veilig verwijderd - - - + + - - - + + + Open in new window Openen in nieuw venster @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Openen op nieuw tabblad @@ -968,8 +953,8 @@ - - + + Properties Eigenschappen @@ -1005,7 +990,7 @@ Nieuw Bestand - + Create symlink Snelkoppeling maken @@ -1092,70 +1077,70 @@ Toevoegen aan schijf - + Are you sure you want to erase all data on the disc? Weet je zeker dat je alle gegevens op deze schijf definitief wilt verwijderen? - + Erase button Wissen - + This action cannot be undone Deze actie kan niet ongedaan worden gemaakt - + How do you want to use this disc? Hoe wil je deze schijf gebruiken? - + Burn image button Schijfbestand branden - + Burn files button Bestanden branden - + %1 is a duplicate file. %1 is een duplicaat. - + Insufficient disc space. Onvoldoende schijfruimte. - + Lost connection to drive. Verbinding met schijf verbroken. - + The CD/DVD drive is not ready. Try another disc. De CD/DVD is niet gereed. Probeer een andere. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. De CD-/DVD-schijf is bezig. Sluit het programma af waarin deze wordt gebruikt en voer de schijf opnieuw in. - + Invalid volume name Ongeldige volumenaam - + Unknown error Onbekende fout @@ -1194,42 +1179,42 @@ Items: %1 - + Orange Oranje - + Red Rood - + Purple Paars - + Navy-blue Marineblauw - + Azure Groenblauw - + Green Groen - + Yellow Geel - + Gray Grijs @@ -1305,76 +1290,76 @@ Geen toegang - + User directory Persoonlijke map - + Local disk Lokale schijf - + Removable disk Verwijderbare schijf - + DVD DVD - + Network shared directory Gedeelde netwerkmap - - + + Android mobile device Mobiel Android-apparaat - + Apple mobile device Mobiel Apple-apparaat - + Unknown device Onbekend apparaat - + Remove button Verwijderen - + Do you want to remove this item? Wil je dit item verwijderen? - + Do yout want to remove %1 items? Wil je %1 items verwijderen? - + It does not delete the original files De oorspronkelijke bestanden worden niet verwijderd - + Clear recent history Recente geschiedenis wissen - - - + + + Source path Bronlocatie @@ -1419,12 +1404,12 @@ Items kunnen niet worden geopend vanuit de prullenbak - zet ze eerst terug. - + Empty Trash Prullenbak legen - + Location Locatie @@ -1524,7 +1509,7 @@ Bezig met zoeken… - + My Vault Mijn kluis @@ -1719,7 +1704,7 @@ Mislukt - + Sidebar Zijbalk @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + Niet toegestaan + + + + + In trial period + In proefperiode + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized Niet toegestaan - - + + In trial period In proefperiode @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nieuwe verzameling @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Bureaublad ordenen - + Desktop options Bureaubladopties - + Organize by Ordenen op - + Custom collection Aangepaste verzameling - + Type Type - + Time accessed Benaderd op - + Time modified Gewijzigd - + Time created Aangemaakt op - + Create a collection Verzameling aanmaken - - - Display Size - Weergavegrootte - - - - Smaller - Kleiner - - - - Normal - Normaal - - - - Larger - Groter - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Bureaubladopties - + Auto arrange icons Automatisch schikken @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Weergavegrootte - - - + Icon size Pictogramgrootte @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Bestandsbeheer wordt bijgewerkt naar een nieuwe versie. Tijdens het bijwerken worden de huidige taken afgebroken. Wil je nu bijwerken? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? De bureaubladdiensten worden bijgewerkt naar een nieuwe versie. Tijdens het bijwerken worden de huidige taken afgebroken. Wil je nu bijwerken? - + Update button Bijwerken - + Cancel button Annuleren @@ -2385,7 +2360,7 @@ - + %1 item selected %1 item geselecteerd @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Oké - + Operation failed! Operatie mislukt! @@ -2554,191 +2529,191 @@ De doelmap staat in de hoofdmap! - + The passphrase is needed to access encrypted data on %1. Wachtwoordzin vereist om toegang te krijgen tot gegevens op %1. - - - - - - - - + + + + + + + + Cancel button Annuleren - + Format button Formaat - + To access the device, you must format the disk first. Are you sure you want to format it now? Het apparaat kan pas worden gebruikt als het geformatteerd is. Weet je zeker dat je het nu wilt formatteren? - + Do you want to run %1 or display its content? Wil je %1 uitvoeren of de inhoud ervan tonen? - + It is an executable text file. Dit is een uitvoerbaar tekstbestand. - - - + + + Run button Uitvoeren - - + + Run in terminal button Uitvoeren in terminalvenster - + Display button Tonen - + Do you want to run %1? Weet je zeker dat je %1 wilt uitvoeren? - + It is an executable file. Dit is een uitvoerbaar bestand. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? De %1 geselecteerde items kunnen niet worden verplaatst naar de prullenbak. Wil je ze permanent verwijderen? - + Permanently delete %1 items? %1 items permanent verwijderen? - + Cannot move "%1" to the trash. Do you want to permanently delete it? ‘%1’ kan niet worden verplaatst naar de prullenbak. Wil je het item permanent verwijderen? - - - + + + Delete button Verwijderen - + Permanently delete %1? %1 permanent verwijderen? - - + + This action cannot be undone Deze actie kan niet ongedaan worden gemaakt - + Are you sure you want to empty %1 item? Weet je zeker dat je %1 item wilt verwijderen? - + Are you sure you want to empty %1 items? Weet je zeker dat je %1 items wilt verwijderen? - + Empty Legen - + Do you want to delete %1? Weet je zeker dat je %1 wilt verwijderen? - + Do you want to delete the selected %1 items? Weet je zeker dat je de %1 geselecteerde items wilt verwijderen? - + Failed to restore %1 file, the target folder is read-only Kan %1 bestand niet terugzetten: de doelmap is alleen-lezen - + Failed to restore %1 files, the target folder is read-only Kan %1 bestanden niet terugzetten: de doelmap is alleen-lezen - + "%1" already exists, please use another name. "%1" bestaat al. Kies een andere naam. - + Device or resource busy Het apparaat of de bron is in gebruik - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Dit bestand wordt verborgen als de bestandsnaam begint met '.'. Wilt u het verbergen? - + Hide Verbergen - + Cancel Annuleren - + Unable to access %1 Geen toegang tot %1 - + %1 that this shortcut refers to has been changed or moved %1, dat naar deze snelkoppeling verwijst, is gewijzigd of verplaatst - + Do you want to delete this shortcut? Wil je deze snelkoppeling verwijderen? - + This file is not executable, do you want to add the execute permission and run? Dit bestand is niet uitvoerbaar. Wil je het markeren als uitvoerbaar en uitvoeren? - + The selected files contain system file/directory, and it cannot be deleted De geselecteerde items bevatten systeembestanden of -mappen, en kunnen niet worden verwijderd @@ -2866,278 +2841,276 @@ Voer je wachtwoord in om de schijf te ontgrendelen + + dfmbase::RightValueWidget + + + Copy complete info + Volledige informatie kopiëren + + dfmbase::SettingBackend - + Always open folder in new window Mappen altijd openen in nieuw venster - + Open file: Bestand openen: - + Click Eenmaal klikken - + Double click Dubbelklikken - + New window and tab Nieuw venster en tabblad - + Open from default window: Openen in standaardvenster: - - + + Computer Computer - - + + Home Persoonlijke map - - + + Desktop Bureaublad - - + + Videos Video's - - + + Music Muziek - - + + Pictures Afbeeldingen - - + + Documents Documenten - - + + Downloads Downloads - + Open in new tab: Openen op nieuw tabblad: - + Current Directory Huidige map - + Files and folders Bestanden en mappen - + Show hidden files Verborgen bestanden tonen - + Show file extensions Bestandsextensies tonen - + Mix sorting of files and folders Mappen niet vóór bestanden sorteren - + Workspace Werkruimte - + View Weergave - + Default size: Standaardgrootte: - + Extra small Erg klein - + Small Klein - + Medium Normaal - + Large Groot - + Extra large Erg groot - + + Tree + Boomweergave + + + Default view: Standaardweergave: - + Icon Pictogrammen - + List Lijst - + + Restore default view mode for all directories + Standaardweergave van alle mappen herstellen + + + + Restore default view mode + Standaardweergave herstellen + + + Thumbnail preview Miniatuurvoorbeelden tonen - + Compressed file preview Ingepakte bestanden voorvertonen - + Text preview Tekstbestanden voorvertonen - + Document preview Documenten voorvertonen - + Image preview Afbeeldingen voorvertonen - + Video preview Video's voorvertonen - + Music preview Muziek voorvertonen - + The remote environment shows thumbnail previews De externe omgeving toont miniatuurvoorbeelden - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Let op: miniatuurvoorbeelden kunnen er voor zorgen dat de externe map langzamer laad of de actie bevriest - + Advanced Geavanceerd - - Search - Zoeken - - - - Auto index internal disk - Interne schijf automatisch indexeren - - - - Index external storage device after connected to computer - Externe schijf indexeren na aankoppelen - - - - Full-Text search - Volledige tekst doorzoeken - - - + Mount Aankoppelen - + Auto mount Automatisch aankoppelen - + Open after auto mount Openen na automatisch aankoppelen - - Show item counts and sizes in the path of mounted MTP devices - Aantal items en groottes tonen op locaties van aangekoppelde mtp-apparaten - - - + Merge the entries of Samba shared folders Items van met Samba gedeelde mappen samenvoegen - + Switching the entry display may lead to failed mounting Let op: hierdoor kan het aankoppelen mislukken - + Use the file chooser dialog of File Manager Deepin-bestandskiezer gebruiken - + Ask for my confirmation when deleting files Om bevestiging vragen bij verwijderen van bestanden @@ -3301,51 +3274,56 @@ + Switch to tree view + Overschakelen naar boomweergave + + + Others Overige - + Close Sluiten - + Close current tab Huidig tabblad sluiten - + Back Terug - + Forward Vooruit - + Switch to next tab Overschakelen naar volgend tabblad - + Switch to previous tab Overschakelen naar vorig tabblad - + Next file Volgend bestand - + Previous file Vorig bestand - + Switch tab by specified number between 1 to 8 Schakelen tussen tabbladen met cijfertoetsen 1-8 @@ -3416,42 +3394,43 @@ Het aanmaken van de doelbestandsinformatie van ‘%1’ is mislukt! - + Time modified: %1 Aangepast om: %1 - + Original folder Oorspronkelijke map - + Contains: %1 Bevat: %1 - + Original file Oorspronkelijk bestand - + Size: %1 Grootte: %1 - + Target folder Doelmap - + + In data statistics ... In gegevensstatistieken - + Target file Doelbestand @@ -3466,37 +3445,37 @@ Even geduld… - + Keep both button Beide behouden - + Skip button Overslaan - - + + Replace button Vervangen - + Do not ask again Niet meer vragen - + Retry button Opnieuw - + Merge button Samenvoegen @@ -3510,7 +3489,7 @@ Voer een wachtwoord in om gedeelde mappen te beveiligen - + Set a password on the shared folder for non-anonymous access Stel een wachtwoord in om openbare toegang in te schakelen @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Je snelletoegangsmap is niet aangetroffen. Wil je deze verwijderen? - + Cancel button Annuleren - + Remove button Verwijderen @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Computer - + Computer display items Te tonen items op overzicht - + Hide built-in disks on the Computer page Interne schijven verbergen op overzicht - + Hide loop partitions on the Computer page Loop-partities verbergen op overzicht - + Show file system on disk icon Bestandssyteemlabel tonen op schijfpictogrammen - + Hide My Directories on the Computer page Mijn mappen verbergen op overzicht - + Hide 3rd party entries on the Computer page Externe items verbergen op overzicht @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Het ontgrendelen is mislukt - + Wrong password Onjuist wachtwoord - + Rename failed Naamswijziging mislukt - + The device is busy and cannot be renamed now Schijf is in gebruik; je kunt nu de naam niet wijzigen - + Format failed Formatteren mislukt - + The device is busy and cannot be formatted now Schijf is in gebruik; je kunt nu niet formatteren - + Mount error Aankoppelfout - + Cannot access %1 Geen toegang tot %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? %1 is alleen-lezen. Wil je lees- en schrijfbevoegdheden toekennen? - + Once enabled, read/write permission will be granted permanently Let op: de toekenning is permanent - + Cancel Annuleren - + Enable Now Nu toekennen @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mijn mappen - + Disks Schijven @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Algemene informatie - + Device type Soort apparaat - + Total space Totale ruimte - + File system Bestandssysteem - + Contains Bevat - + Free space Vrije ruimte - + %1 items %1 items - + %1 item %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 op %2 @@ -3990,27 +3968,27 @@ Grootte - + Dimension Afmetingen - + Duration Duur - + Type Type - + Accessed Geopend op/om - + Modified Bewerkt op/om @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - + Verwijderen van bestand ‘%1’ mislukt @@ -4357,7 +4335,7 @@ Copy or Cut File failed! - + Kopiëren of knippen mislukt! @@ -4387,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + Verwijderen van bestand ‘%1’ mislukt. Oorzaak: %2 @@ -4406,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Kopiëren of knippen mislukt. Oorzaak: %1 @@ -4439,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Bestand kan niet van naam worden gewijzigd - + Failed to create the directory Kan map niet aanmaken - + Failed to create the file Aanmaken van bestand mislukt - + link file error Snelkoppelingsfout - - + + Failed to modify file permissions - + Wijzigen van bestandsrechten mislukt @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Plakken + &Paste + &Plakken - Cut - Knippen + Cu&t + K&nippen - Copy - Kopiëren + &Copy + &Kopiëren dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Openen + &Open + &Openen - Rename - Naam wijzigen + Rena&me + Naa&m wijzigen - Delete - Verwijderen + &Delete + Verwij&deren @@ -4579,6 +4557,11 @@ Open in terminal Openen in terminalvenster + + + Reverse select + Selectie omkeren + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Versturen naar - + + Bluetooth + Bluetooth + + + Create link Snelkoppeling maken - + Send to desktop Op bureaublad plaatsen @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Delen - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Openen + + &Open + &Openen - + Open in new window Openen in nieuw venster - + Open in new tab Openen op nieuw tabblad - + Cancel sharing Delen afbreken - - Properties - Eigenschappen + + P&roperties + E&igenschappen dfmplugin_myshares::MyShares - + My Shares Mijn gedeelde items @@ -4700,7 +4683,7 @@ Geen te branden bestanden - + Unable to burn. Not enough free space on the target disk. Kan niet branden: onvoldoende vrije ruimte op de doelschijf. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Algemene informatie - + Size Grootte - + Contains Bevat - + Type Type - + Location Locatie - + Time created Aangemaakt op - + Time accessed Benaderd op - + Time modified Gewijzigd - + Hide this file Dit bestand verbergen - - + + %1 item %1 item - + %1 items %1 items @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Voor inloggegevensbeveiliging - + For Government Voor overheden - + For Enterprise Voor zakelijk gebruik - + Bit Bit - + Available Beschikbaar @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Basisinformatie - + Computer name Computernaam - + Version Versie - + Edition Versie - + OS build Besturingssysteemversie - + Type Type - + Processor Processor - + Memory Geheugen @@ -4891,6 +4874,14 @@ %1 bestand(en), %2 map(pen) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + %1 is niet toegestaan + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Eigenschappen + P&roperties + E&igenschappen dfmplugin_recent::Recent - - + Recent Recent @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Locatie - + Last access Laatst benaderd - + Recent Recent @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Doorzoeken: - + File Type: Bestandssoort: - + File Size: Bestandsgrootte: - + Time Modified: Aangepast om: - + Time Accessed: Benaderd op: - + Time Created: Aangemaakt op: - + Reset Standaardwaarden - + All subdirectories Onderliggende mappen - + Current directory Huidige map - + Application App - + Video Video - + Audio Audio - + Image Afbeelding - + Archive Archief - + Text Tekst - + Executable Uitvoerbaar - + Backup file Backup-bestand - + Today Vandaag - + Yesterday Gisteren - + This week Deze week - + Last week Vorige week - + This month Deze maand - + Last month Vorige maand - + This year Dit jaar - + Last year Vorig jaar @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Zoeken + + + Auto index internal disk + Interne schijf automatisch indexeren + + + + Index external storage device after connected to computer + Externe schijf indexeren na aankoppelen + + + + Full-Text search + Volledige tekst doorzoeken + dfmplugin_search::SearchHelper - + Path Locatie @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Bestandslocatie openen - + Select all Alles selecteren - + Path Locatie @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Snelle toegang - + Partitions Partities - + Network Netwerk - + Tag Label - - Bookmark - Bladwijzer - - - + Other Andere - + Unknown Group Onbekende groep - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Computers op LAN-netwerk - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Openen + &Open + &Openen @@ -5191,8 +5184,8 @@ - Properties - Eigenschappen + P&roperties + E&igenschappen @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Label @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Bestandslocatie openen @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Verbinden met server - - - + + + Clear History Geschiedenis wissen - + Unfavorite Verwijderen uit favorieten - + + Error + Foutmelding + + + + Unable to favorite illegitimate url! + Deze foutieve url kan niet worden toegevoegd! + + + Cancel button Annuleren - + Connect button Verbinden - + Charset Encoding Tekensetcodering - + Default Standaard - + My Favorites Mijn favorieten - + No favorites yet Je hebt nog geen favorieten - + Favorite Toevoegen aan favorieten @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Bronlocatie - + Time deleted Verwijderd om @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Herstellen - + Restore all Alles herstellen - + Empty trash Prullenbak legen - + Source path Bronlocatie - + Time deleted Verwijderd om @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Prullenbak @@ -5527,17 +5530,17 @@ Prullenbak - + item item - + items items - + Contains %1 %2 Bevat %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Algemene informatie - + Size Grootte - + Contains Bevat - + Type Type - + Location Locatie - + Time created Aangemaakt op - + Time accessed Benaderd op - + Time locked Tijd vergrendeld @@ -5985,7 +5988,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Bestandskluis versleutelen @@ -6006,19 +6009,19 @@ - - - + + + Encrypt Versleutelen - + Failed to create file vault: %1 De bestandskluis kan niet worden aangemaakt: %1 - + OK Oké @@ -6069,7 +6072,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Kluiswachtwoord instellen @@ -6095,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols Minimaal 8 tekens: A-Z, a-z, 0-9 of speciale tekens @@ -6130,8 +6133,8 @@ Volgende - - + + Passwords do not match De wachtwoorden komen niet overeen @@ -6139,7 +6142,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Bestandskluis @@ -6189,7 +6192,7 @@ dfmplugin_vault::VaultHelper - + Vault Kluis @@ -6199,7 +6202,7 @@ De kluis is niet beschikbaar omdat cryfs niet geïnstalleerd is. - + A task is in progress, so it cannot perform your operation De actie kan niet worden uitgevoerd omdat er een actieve taak is @@ -6207,98 +6210,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mijn kluis - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Wachtwoord + + Cancel + Annuleren - - Password hint: %1 - Wachtwoordhint: %1 + + Delete + Verwijderen - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Voer de herstelsleutel in + + Delete File Vault + Bestandskluis vernietigen - - - dfmplugin_vault::VaultRemovePages - - Delete File Vault - Standaard bestandskluis + + Failed to delete file vault + De bestandskluis kan niet worden vernietigd - + + OK + Oké + + + Once deleted, the files in it will be permanently deleted Door het vernietigen worden alle kluisbestanden permanent verwijderd. + + + dfmplugin_vault::VaultRemoveByPasswordView - - Cancel - button - Annuleren + + Once deleted, the files in it will be permanently deleted + Door het vernietigen worden alle kluisbestanden permanent verwijderd. - - Use Key - button - Sleutel gebruiken + + Password + Wachtwoord + + + + Password hint: %1 + Wachtwoordhint: %1 - + + Cancel + Annuleren + + + Delete - button Verwijderen - - Removing... - Bezig met verwijderen… + + Delete File Vault + Bestandskluis vernietigen - - + + Wrong password + Onjuist wachtwoord + + + + Failed to delete file vault + De bestandskluis kan niet worden vernietigd + + + OK - button Oké + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Onjuist wachtwoord + + Input the 32-digit recovery key + Voer de herstelsleutel in + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Onjuiste herstelsleutel + + Removing... + Bezig met verwijderen… - - Failed to delete file vault - De bestandskluis kan niet worden vernietigd + + OK + Oké - - Deleted successfully - De kluis is vernietigd + + Delete File Vault + Bestandskluis vernietigen - - Failed to delete - De kluis kan niet worden vernietigd + + Deleted successfully + De kluis is vernietigd @@ -6309,16 +6335,10 @@ Mijn kluis - + File Vault Bestandskluis - - - - Vault - Kluis - dfmplugin_workspace::FileOperatorHelper @@ -6331,22 +6351,22 @@ dfmplugin_workspace::FileViewModel - + Name Naam - + Time modified Gewijzigd - + Size Grootte - + Type Type @@ -6362,7 +6382,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 is niet toegestaan @@ -6378,45 +6398,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sorteren op - + Display as Tonen als - + Name Naam - + Time modified Gewijzigd - + Size Grootte - + Type Type - + Icon Pictogram - + List Lijst + + + Tree + Boomweergave + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ filedialog_core::FileDialog - + Save button Opslaan @@ -6438,13 +6463,13 @@ filedialog_core::FileDialogStatusBar - + Save button Opslaan - + Open button Openen @@ -6482,112 +6507,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Beschikbare omvangen: - + Custom Size Eigen omvang - + Device Pixel Ratio: Pixelverhouding: - + Theme: Thema: - + Light Licht - + Dark Donker - + Mode: Modus: - + Normal Normaal - + Disabled Uitgeschakeld - + Hovered Aangewezen - + Pressed Ingedrukt - + Palette Kleurenschema - + Current mode icon does not support the palette Het huidige moduspictogram wordt niet ondersteund door het kleurenschema - + Foreground: Voorgrond: - + Background: Achtergrond: - + Highlight: Markering: - + HighlightForeground: Voorgrond van markering: - + Background Color: Achtergrondkleur: - + White Wit - + Black Zwart - + Transparent Doorzichtig - + Custom Eigen kleur @@ -6619,24 +6644,24 @@ plugin_filepreview::MusicMessageView - + Artist: Artiest: - + Album: Album: - + unknown artist onbekende artiest - + unknown album onbekend album - + \ No newline at end of file diff --git a/translations/dde-file-manager_pa.ts b/translations/dde-file-manager_pa.ts index 7ca9640ed9..ba5dcf8510 100644 --- a/translations/dde-file-manager_pa.ts +++ b/translations/dde-file-manager_pa.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + ਡੈਸਕਟਾਪ - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop - ਡੈਸਕਟਾਪ + + Disk + ਡਿਸਕ - - - DiskControlWidget - - Disks - + + Open + ਖੋਲ੍ਹੋ - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - ਡਿਸਕ + + + remove + - - Open - ਖੋਲ੍ਹੋ + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk ਸਿਸਟਮ ਡਿਸਕ - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home ਘਰ @@ -223,7 +228,6 @@ - Desktop ਡੈਸਕਟਾਪ @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music ਸੰਗੀਤ @@ -253,7 +255,6 @@ - Pictures ਤਸਵੀਰਾਂ @@ -263,7 +264,6 @@ - Documents ਡੌਕੂਮੈਂਟ @@ -273,7 +273,6 @@ - Downloads ਡਾਊਨਲੋਡ @@ -282,7 +281,6 @@ - Trash ਰੱਦੀ @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item %1 ਚੀਜ਼ - + %1 items %1 ਚੀਜ਼ਾਂ - + Unable to find the original file - - + + File has been moved or deleted ਫਾਇਲ ਨੂੰ ਹਿਲਾਇਆ ਜਾਂ ਹਟਾਇਆ ਗਿਆ ਹੈ - - - + + You do not have permission to access this folder ਤੁਹਾਡੇ ਕੋਲ ਇਸ ਫੋਲਡਰ ਲਈ ਪਹੁੰਚ ਨਹੀਂ ਹੈ - - + + You do not have permission to traverse files in it - - + + Folder is empty ਫੋਲਡਰ ਖਾਲੀ ਹੈ - + Loading... ...ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer ਕੰਪਿਊਟਰ @@ -424,9 +419,8 @@ - - - + + Computers in LAN LAN ਵਿੱਚ ਕੰਪਿਊਟਰ @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ ਬਿੱਟ - Access denied - Confirm button ਤਸਦੀਕ ਕਰੋ - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab ਨਵੀਂ ਟੈਬ ਵਿੱਚ ਖੋਲ੍ਹੋ @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink ਸਿਮ-ਲਿੰਕ ਬਣਾਓ @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk ਲੋਕਲ ਡਿਸਕ - + Removable disk ਹਟਾਉਣਯੋਗ ਡਿਸਕ - + DVD - + Network shared directory ਨੈੱਟਵਰਕ ਸਾਂਝੀ ਕੀਤੀ ਡਾਇਰੈਕਟਰੀ - - + + Android mobile device ਐਂਡਰਾਇਡ ਮੋਬਾਈਲ ਡਿਵਾਈਸ - + Apple mobile device - + Unknown device ਅਣਪਛਾਤਾ ਡਿਵਾਈਸ - + Remove button ਹਟਾਓ - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history ਤਾਜ਼ਾ ਅਤੀਤ ਸਾਫ਼ ਕਰੋ - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash ਰੱਦੀ ਖਾਲੀ ਕਰੋ - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type ਕਿਸਮ - + Time accessed - + Time modified ਸੋਧ ਕਰਨ ਦਾ ਵੇਲਾ - + Time created ਬਣਾਉਣ ਵੇਲਾ - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 ਚੀਜ਼ ਚੁਣੀ @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button ਠੀਕ ਹੈ - + Operation failed! ਕਾਰਵਾਈ ਅਸਫ਼ਲ ਹੈ! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button ਰੱਦ ਕਰੋ - + Format button ਫਾਰਮੈਟ ਕਰੋ - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button ਚਲਾਓ - - + + Run in terminal button ਟਰਮੀਨਲ 'ਚ ਚਲਾਓ - + Display button ਵੇਖਾਓ - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 ਚੀਜ਼ਾਂ ਨੂੰ ਪੱਕੇ ਤੌਰ ਉੱਤੇ ਹਟਾਉਣਾ ਹੈ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button ਹਟਾਓ - + Permanently delete %1? %1 ਨੂੰ ਪੱਕੇ ਤੌਰ ਉੱਤੇ ਹਟਾਉਣਾ ਹੈ? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel ਰੱਦ ਕਰੋ - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted ਚੁਣੀਆਂ ਫਾਇਲਾਂ ਸਿਸਟਮ ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀ ਰੱਖਦੀਆਂ ਹਨ, ਤੇ ਹਟਾਈਆਂ ਨਹੀਂ ਜਾ ਸਕਦੀਆਂ @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others ਹੋਰ - + Close ਬੰਦ ਕਰੋ - + Close current tab ਮੌਜੂਦਾ ਟੈਬ ਬੰਦ ਕਰੋ - + Back ਪਿੱਛੇ - + Forward - + Switch to next tab ਅਗਲੀ ਟੈਬ ਉੱਤੇ ਜਾਓ - + Switch to previous tab ਪਿਛਲੀ ਟੈਬ ਉੇੱਤੇ ਜਾਓ - + Next file ਅਗਲੀ ਫਾਇਲ - + Previous file ਪਿਛਲੀ ਫਾਇਲ - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button ਦੋਵੇ ਰੱਖੋ - + Skip button ਛੱਡੋ - - + + Replace button ਤਬਦੀਲ ਕਰੋ - + Do not ask again ਮੁੜ ਨਾ ਪੁੱਛੋ - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button ਰੱਦ ਕਰੋ - + Remove button ਹਟਾਓ @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer ਕੰਪਿਊਟਰ - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer ਕੰਪਿਊਟਰ - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space ਖਾਲੀ ਥਾਂ - + %1 items %1 ਚੀਜ਼ਾਂ - + %1 item %1 ਚੀਜ਼ @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ ਆਕਾਰ - + Dimension - + Duration - + Type ਕਿਸਮ - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - ਚੇਪੋ + &Paste + - Cut - ਕੱਟੋ + Cu&t + - Copy - ਕਾਪੀ ਕਰੋ + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - ਖੋਲ੍ਹੋ + &Open + - Rename - ਨਾਂ ਬਦਲੋ + Rena&me + - Delete - ਹਟਾਓ + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal ਟਰਮੀਨਲ 'ਚ ਖੋਲ੍ਹੋ + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop ਡੈਸਕਟਾਪ ਉੱਤੇ ਭੇਜੋ @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - ਖੋਲ੍ਹੋ + + &Open + - + Open in new window - + Open in new tab ਨਵੀਂ ਟੈਬ ਵਿੱਚ ਖੋਲ੍ਹੋ - + Cancel sharing ਸਾਂਝਾ ਕਰਨਾ ਰੱਦ ਕਰੋ - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size ਆਕਾਰ - + Contains - + Type ਕਿਸਮ - + Location - + Time created ਬਣਾਉਣ ਵੇਲਾ - + Time accessed - + Time modified ਸੋਧ ਕਰਨ ਦਾ ਵੇਲਾ - + Hide this file - - + + %1 item %1 ਚੀਜ਼ - + %1 items %1 ਚੀਜ਼ਾਂ @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit ਬਿੱਟ - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer ਕੰਪਿਊਟਰ - + Basic Info ਮੁੱਢਲੀ ਜਾਣਕਾਰੀ - + Computer name - + Version - + Edition - + OS build - + Type ਕਿਸਮ - + Processor ਪਰੋਸੈਸਰ - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path ਮਾਰਗ - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path ਮਾਰਗ @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all ਸਾਰੇ ਚੁਣੋ - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - LAN ਵਿੱਚ ਕੰਪਿਊਟਰ - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - ਖੋਲ੍ਹੋ + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button ਰੱਦ ਕਰੋ - + Connect button ਕਨੈਕਟ ਕਰੋ - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path ਸਰੋਤ ਮਾਰਗ - + Time deleted ਹਟਾਉਣ ਦਾ ਵੇਲਾ @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore ਬਹਾਲ ਕਰੋ - + Restore all - + Empty trash - + Source path - + Time deleted ਹਟਾਉਣ ਦਾ ਵੇਲਾ @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash ਰੱਦੀ @@ -5526,17 +5529,17 @@ ਰੱਦੀ - + item - + items ਚੀਜ਼ਾਂ - + Contains %1 %2 %1 %2 ਰੱਖਦਾ ਹੈ @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size ਆਕਾਰ - + Contains - + Type ਕਿਸਮ - + Location - + Time created ਬਣਾਉਣ ਵੇਲਾ - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ਠੀਕ ਹੈ @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - ਪਾਸਵਰਡ + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + ਪਾਸਵਰਡ + + + + Password hint: %1 - + Cancel - button - ਰੱਦ ਕਰੋ + - - Use Key - button + + Delete - - Delete - button - ਹਟਾਓ + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - ਠੀਕ ਹੈ + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by ਲੜੀਬੱਧ - + Display as ਇੰਞ ਵੇਖਾਓ - + Name ਨਾਂ - + Time modified ਸੋਧ ਕਰਨ ਦਾ ਵੇਲਾ - + Size ਆਕਾਰ - + Type ਕਿਸਮ - + Icon ਚਿੰਨ੍ਹ - + List ਸੂਚੀ + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button ਖੋਲ੍ਹੋ @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_pam.ts b/translations/dde-file-manager_pam.ts index c9738ba0dc..48c0fd8c66 100644 --- a/translations/dde-file-manager_pam.ts +++ b/translations/dde-file-manager_pam.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_pl.ts b/translations/dde-file-manager_pl.ts index 1a9090c27d..b93dba1ace 100644 --- a/translations/dde-file-manager_pl.ts +++ b/translations/dde-file-manager_pl.ts @@ -15,99 +15,104 @@ Application - + File Manager Menedżer plików - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Menedżer plików to potężne i łatwe w użyciu narzędzie do zarządzania plikami, wyposażone w wyszukiwanie, kopiowanie, kosz, kompresję/dekompresję, właściwości pliku i inne przydatne funkcje. - - DAttachedProtocolDevice - - - %1 on %2 - %1 na %2 - - - - DeepinStorage - - - - %1 Volume - Wolumin %1 - - DesktopMain - + Desktop Pulpit - DiskControlWidget + DeviceList - + Disks Dyski - - - The device was not safely removed - Urządzenie nie zostało bezpiecznie usunięte - - - - Click "Safely Remove" and then disconnect it next time - Kliknij „Bezpieczne usuwanie”, a następnie odłącz go następnym razem - - - - Disk is busy, cannot unmount now - Dysk jest zajęty, nie można go teraz odmontować - - - - The device is busy, cannot eject now - Urządzenie jest zajęte, nie można go teraz wysunąć - DiskMountPlugin - + Disk Dysk - + Open Otwórz - + Eject all Wysuń wszystkie + + DockItemDataManager + + + The device has been safely removed + Urządzenie zostało bezpiecznie usunięte + + + + eject + wysunąć + + + + unmount + odmontować + + + + + remove + usunąć + + + + Operation failed + Operacja zakończona niepowodzeniem! + + + + Device (%1) is busy, cannot %2 now. + Urządzenie (%1) jest zajęte, nie można teraz %2. + + FileDialogHandle - + All Files Wszystkie pliki + + FileOperateBaseWorker + + + The file name or the path is too long! + Nazwa pliku lub ścieżka jest za długa! + + MimeTypeDisplayManager - + Unknown Nieznany @@ -123,88 +128,89 @@ QObject - + need authorization to access need authorization to access - + Can't verify the identity of %1. Nie można zweryfikować %1 - + This happens when you log in to a computer the first time. Występuje to, kiedy zalogujesz się do komputera po raz pierwszy. - + The identity sent by the remote computer is Identyfikator wysłany przed komputer zdalny to - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jeśli chcesz mieć absolutną pewność, czy można bezpiecznie kontynuować, skontaktuj się z administratorem systemu. - - - + + + System Disk Dysk systemowy - + Data Disk Dysk z danymi - + Blank %1 Disc Pusty dysk %1 - - - + + + Unknown Nieznany - + %1 Drive Napęd %1 - + %1 Encrypted %1 zaszyfrowany - + + %1 Volume Wolumin %1 - - + Scanning the device, stop it? Skanowanie urządzenia, zatrzymać? - + Unmount failed Błąd odmontowania - + Cannot stop scanning device Nie można zatrzymać skanowania urządzenia - + + %1 on %2 %1 na %2 @@ -213,7 +219,6 @@ - Home Katalog domowy @@ -223,7 +228,6 @@ - Desktop Pulpit @@ -233,7 +237,6 @@ - Videos Filmy @@ -243,7 +246,6 @@ - Music Muzyka @@ -253,7 +255,6 @@ - Pictures Zdjęcia @@ -263,7 +264,6 @@ - Documents Dokumenty @@ -273,7 +273,6 @@ - Downloads Pobrane @@ -282,7 +281,6 @@ - Trash Kosz @@ -293,12 +291,11 @@ - Recent Ostatnie - + @@ -306,7 +303,7 @@ Automatyczne montowanie - + @@ -319,47 +316,46 @@ %1 zadań w trakcie wykonywania - + %1 item %1 przedmiot - + %1 items %1 przedmiotów - + Unable to find the original file Brak możliwości znalezienia pierwotnego pliku - - + + File has been moved or deleted Plik został przeniesiony lub usunięty - - - + + You do not have permission to access this folder Nie posiadasz uprawnień dostępu do tego foldera - - + + You do not have permission to traverse files in it Nie posiadasz uprawnień do analizy plików znajdujących się w folderze - - + + Folder is empty Folder jest pusty - + Loading... Wczytywanie... @@ -408,7 +404,7 @@ - + Built-in disks Dyski wbudowane @@ -416,7 +412,6 @@ - Computer Komputer @@ -424,9 +419,8 @@ - - - + + Computers in LAN Komputery w sieci LAN @@ -434,7 +428,7 @@ - + Loop partitions Partycje zapętlone @@ -442,7 +436,8 @@ - + + Mounted sharing folders Zamontowane foldery współdzielone @@ -450,7 +445,6 @@ - My shares Moje współdzielenia @@ -458,7 +452,7 @@ - + Network Sieć @@ -466,7 +460,7 @@ - + Mounted partitions and discs Zamontowane partycje i dyski @@ -474,7 +468,7 @@ - + Partitions Partycje @@ -482,7 +476,7 @@ - + Quick access Szybki dostęp @@ -490,7 +484,7 @@ - + Tag Znacznik @@ -498,7 +492,7 @@ - + Added tags Dodane znaczniki @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Pokaż zamontowane katalogi współdzielone Samba @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Stop - + Shortcut Skrót - + This system wallpaper is locked. Please contact your admin. Tapeta systemu jest zablokowana. Skontaktuj się ze swoim administratorem. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopiuj) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopiuj %1) @@ -909,33 +901,26 @@ Bit - Access denied Odmowa dostępu - Confirm button Potwierdź - - - The device has been safely removed - Urządzenie zostało bezpiecznie usunięte - - - + + - - - + + + Open in new window Otwórz w nowym oknie @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Otwórz w nowej karcie @@ -968,8 +953,8 @@ - - + + Properties Właściwości @@ -1005,7 +990,7 @@ Nowy plik - + Create symlink Utwórz dowiązanie symboliczne @@ -1092,70 +1077,70 @@ Dodaj do dysku - + Are you sure you want to erase all data on the disc? Czy na pewno chcesz usunąć wszystkie dane z dysku? - + Erase button Wymaż - + This action cannot be undone Tej akcji nie można cofnąć - + How do you want to use this disc? Jak chcesz korzystać z tego dysku? - + Burn image button Wypal obraz - + Burn files button Wypal pliki - + %1 is a duplicate file. %1 jest duplikatem pliku. - + Insufficient disc space. Za mało miejsca na dysku. - + Lost connection to drive. Utracono połączenie z dyskiem. - + The CD/DVD drive is not ready. Try another disc. Napęd CD/DVD nie jest gotowy. Wypróbuj inną płytę. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Napęd CD/DVD jest zajęty. Wyjdź z programu korzystającego z napędu, a następnie włóż dysk ponownie. - + Invalid volume name Nieprawidłowa nazwa woluminu - + Unknown error Nieznany błąd @@ -1194,42 +1179,42 @@ Przedmioty: %1 - + Orange Pomarańczowy - + Red Czerwony - + Purple Purpurowy - + Navy-blue Granatowy - + Azure Błękitny - + Green Zielony - + Yellow Żółty - + Gray Szary @@ -1305,76 +1290,76 @@ Brak dostępu - + User directory Katalog użytkownika - + Local disk Dysk lokalny - + Removable disk Dysk wymienny - + DVD DVD - + Network shared directory Współdzielony katalog sieciowy - - + + Android mobile device Urządzenie przenośne Android - + Apple mobile device Urządzenie przenośne Apple - + Unknown device Nieznane urządzenie - + Remove button Usuń - + Do you want to remove this item? Czy chcesz usunąć ten przedmiot? - + Do yout want to remove %1 items? Czy chcesz usunąć %1 przedmiotów? - + It does not delete the original files Ta akcja nie usuwa oryginalnych plików - + Clear recent history Wyczyść ostatnią historię - - - + + + Source path Ścieżka źródłowa @@ -1419,12 +1404,12 @@ Brak możliwości otwierania przedmiotów w koszu, najpierw je przywróć - + Empty Trash Opróżnij kosz - + Location Położenie @@ -1524,9 +1509,9 @@ Wyszukiwanie... - + My Vault - Mój Skarbiec + Mój skarbiec @@ -1571,7 +1556,7 @@ Delete File Vault - Usuń Skarbiec Plików + Usuń skarbiec plików @@ -1719,7 +1704,7 @@ Wystąpił błąd - + Sidebar Pasek boczny @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - Nieautoryzowany + Brak autoryzacji - - + + + In trial period + W okresie próbnym + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + Brak autoryzacji + + + + In trial period W okresie próbnym @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nowa kolekcja @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizuj pulpit - + Desktop options Opcje pulpitu - + Organize by Organizuj według - + Custom collection Kolekcja niestandardowa - + Type Typ - + Time accessed Ostatni dostęp - + Time modified Data modyfikacji - + Time created Data utworzenia - + Create a collection Utwórz kolekcje - - - Display Size - Rozmiar ekranu - - - - Smaller - Mniejsze - - - - Normal - Normalne - - - - Larger - Większe - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opcje pulpitu - + Auto arrange icons Automatyczne sortowanie @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Rozmiar ekranu - - - + Icon size Rozmiar ikon @@ -2283,7 +2258,7 @@ This system wallpaper is locked. Please contact your admin. - Tapeta systemu jest zablokowana. Skontaktuj się ze swoim administratorem. + Ta tapeta systemu jest zablokowana. Skontaktuj się z administratorem. @@ -2333,7 +2308,7 @@ Require a password on wakeup - Wymagaj hasło po wybudzeniu komputera + Wymagaj hasło po wybudzeniu @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Menedżer plików zostanie zaktualizowany do najnowszej wersji, wszystkie zadania w trakcie zostaną przerwane. Czy chcesz zaktualizować teraz? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Usługi pulpitu zostaną zaktualizowane do najnowszej wersji, wszystkie zadania w trakcie zostaną przerwane. Czy chcesz zaktualizować teraz? - + Update button Aktualizuj - + Cancel button Anuluj @@ -2385,7 +2360,7 @@ - + %1 item selected Zaznaczono %1 przedmiot @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operacja zakończona niepowodzeniem! @@ -2554,191 +2529,191 @@ Folder docelowy znajduje się wewnątrz foldera źródłowego! - + The passphrase is needed to access encrypted data on %1. Wymagane jest hasło, aby uzyskać dostęp do zaszyfrowanej zawartości na %1. - - - - - - - - + + + + + + + + Cancel button Anuluj - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? Aby uzyskać dostęp do urządzenia, musisz najpierw je sformatować. Czy chcesz zrobić to teraz? - + Do you want to run %1 or display its content? Czy chcesz uruchomić %1 lub wyświetlić jego zawartość? - + It is an executable text file. Jest to wykonywalny plik tekstowy. - - - + + + Run button Uruchom - - + + Run in terminal button Uruchom w terminalu - + Display button Wyświetl - + Do you want to run %1? Czy chcesz uruchomić %1? - + It is an executable file. Jest to plik wykonywalny. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Nie można przenieść %1 zaznaczonych przedmiotów do kosza. Czy chcesz je usunąć permanentnie? - + Permanently delete %1 items? Czy usunąć permanentnie %1 przedmiotów? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Nie można przenieść "%1" do kosza. Czy chcesz go usunąć permanentnie? - - - + + + Delete button Usuń - + Permanently delete %1? Czy usunąć permanentnie %1? - - + + This action cannot be undone Tej akcji nie można cofnąć - + Are you sure you want to empty %1 item? Czy na pewno usunąć permanentnie %1 przedmiot? - + Are you sure you want to empty %1 items? Czy na pewno usunąć permanentnie %1 przedmiotów? - + Empty Opróżnij - + Do you want to delete %1? Czy chcesz usunąć %1? - + Do you want to delete the selected %1 items? Czy chcesz usunąć %1 zaznaczonych przedmiotów? - + Failed to restore %1 file, the target folder is read-only Nie udało się przywrócić %1 pliku, folder docelowy jest tylko-do-odczytu - + Failed to restore %1 files, the target folder is read-only Nie udało się przywrócić %1 plików, folder docelowy jest tylko-do-odczytu - + "%1" already exists, please use another name. "%1" już istnieje, użyj innej nazwy. - + Device or resource busy Urządzenie lub zasoby zajęte - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Plik zostanie ukryty, jeśli jego nazwa będzie zaczynać się od '.'. Czy chcesz go ukryć? - + Hide Ukryj - + Cancel Anuluj - + Unable to access %1 Brak dostępu do %1 - + %1 that this shortcut refers to has been changed or moved %1, do którego odnosi się skrót, został zmieniony lub przeniesiony - + Do you want to delete this shortcut? Czy chcesz usunąć ten skrót? - + This file is not executable, do you want to add the execute permission and run? Ten plik jest niewykonywalny, czy chcesz mu dodać uprawnienia do wykonywania i uruchomić? - + The selected files contain system file/directory, and it cannot be deleted Zaznaczone pliki zawierają pliki/katalogi systemowe i nie mogą zostać usunięte @@ -2866,278 +2841,276 @@ Wprowadź hasło, aby rozszyfrować dysk + + dfmbase::RightValueWidget + + + Copy complete info + Kopiuj pełne informacje + + dfmbase::SettingBackend - + Always open folder in new window Zawsze otwieraj folder w nowym oknie - + Open file: Otwórz plik: - + Click Kliknięcie - + Double click Podwójne kliknięcie - + New window and tab Nowe okno i karta - + Open from default window: Otwórz w domyślnym oknie: - - + + Computer Komputer - - + + Home Katalog domowy - - + + Desktop Pulpit - - + + Videos Filmy - - + + Music Muzyka - - + + Pictures Zdjęcia - - + + Documents Dokumenty - - + + Downloads Pobrane - + Open in new tab: Otwórz w nowej karcie: - + Current Directory Bieżący katalog - + Files and folders Pliki i foldery - + Show hidden files Wyświetl pliki ukryte - + Show file extensions Wyświetl rozszerzenia plików - + Mix sorting of files and folders Wymieszaj sortowanie plików i folderów - + Workspace Obszar roboczy - + View Widok - + Default size: Rozmiar domyślny: - + Extra small Bardzo mały - + Small Mały - + Medium Średni - + Large Duży - + Extra large Bardzo duży - + + Tree + Drzewko + + + Default view: Widok domyślny: - + Icon Ikona - + List Lista - + + Restore default view mode for all directories + Przywróć domyślny tryb widoku dla wszystkich katalogów + + + + Restore default view mode + Przywróć domyślny tryb widoku + + + Thumbnail preview Podgląd miniatur - + Compressed file preview Podgląd plików skompresowanych - + Text preview Podgląd tekstów - + Document preview Podgląd dokumentów - + Image preview Podgląd obrazów - + Video preview Podgląd filmów - + Music preview Podgląd muzyki - + The remote environment shows thumbnail previews W środowisku zdalnym wyświetlane są podglądy miniatur - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Włączenie podglądu miniatur może spowolnić lub kompletnie zawiesić wczytywanie katalogu zdalnego - + Advanced Zaawansowane - - Search - Szukaj - - - - Auto index internal disk - Automatycznie indeksuj dysk wewnętrzny - - - - Index external storage device after connected to computer - Indeksuj zewnętrzne nośniki danych po podłączeniu - - - - Full-Text search - Wyszukiwanie pełnotekstowe - - - + Mount Zamontuj - + Auto mount Automatyczne montowanie - + Open after auto mount Otwórz po automatycznym zamontowaniu - - Show item counts and sizes in the path of mounted MTP devices - Pokaż liczbę i rozmiar plików w ścieżce montowanych urządzeń MTP - - - + Merge the entries of Samba shared folders Scal wpisy współdzielonych folderów Samba - + Switching the entry display may lead to failed mounting Włączenie tej opcji może doprowadzić do błędu montowania - + Use the file chooser dialog of File Manager Używaj okna wyboru plików Menedżera plików - + Ask for my confirmation when deleting files Zapytaj o potwierdzenie podczas usuwania plików @@ -3301,51 +3274,56 @@ + Switch to tree view + Przełącz na widok drzewka + + + Others Inne - + Close Zamknij - + Close current tab Zamknij bieżącą kartę - + Back Cofnij - + Forward Dalej - + Switch to next tab Przełącz na następną kartę - + Switch to previous tab Przełącz na poprzednią kartę - + Next file Następny plik - + Previous file Poprzedni plik - + Switch tab by specified number between 1 to 8 Przełącz kartę poprzez określoną cyfrę pomiędzy 1 a 8 @@ -3416,42 +3394,43 @@ create target file %1 Info failed in show conflict Info function! - + Time modified: %1 Data modyfikacji: %1 - + Original folder Folder oryginalny - + Contains: %1 Zawiera: %1 - + Original file Plik oryginalny - + Size: %1 Rozmiar: %1 - + Target folder Folder docelowy - + + In data statistics ... W statystykach danych... - + Target file Plik docelowy @@ -3466,37 +3445,37 @@ Proszę czekać - + Keep both button Zachowaj oba - + Skip button Pomiń - - + + Replace button Zastąp - + Do not ask again Nie pytaj ponownie - + Retry button Ponów - + Merge button Scal @@ -3510,7 +3489,7 @@ Wprowadź hasło, aby chronić foldery współdzielone - + Set a password on the shared folder for non-anonymous access Ustaw hasło foldera współdzielonego dla użytkowników nieanonimowych @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Przepraszamy, nie udało się znaleźć folderu szybkiego dostępu. Czy chcesz go usunąć? - + Cancel button Anuluj - + Remove button Usuń @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Komputer - + Computer display items Elementy wyświetlane komputera - + Hide built-in disks on the Computer page Ukryj dyski wbudowane na stronie komputera - + Hide loop partitions on the Computer page Ukryj partycje zapętlone na stronie komputera - + Show file system on disk icon Wyświetl system plików na ikonie dysku - + Hide My Directories on the Computer page Ukryj Moje katalogi na stronie komputera - + Hide 3rd party entries on the Computer page Ukryj wpisy stron trzecich na stronie komputera @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Unlock device failed - + Wrong password Błędne hasło - + Rename failed Zmiana nazwy nie powiodła się - + The device is busy and cannot be renamed now Urządzenie jest zajęte i nie może zostać zmieniona jego nazwa - + Format failed Formatowanie nie powiodło się - + The device is busy and cannot be formatted now Urządzenie jest zajęte i nie może zostać sformatowane - + Mount error Błąd montowania - + Cannot access %1 Brak dostępu do %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Komputer - + %1 is read-only. Do you want to enable read and write permissions for it? %1 jest tylko-do-odczytu. Czy chcesz nadać mu uprawnienia do odczytu i zapisu? - + Once enabled, read/write permission will be granted permanently Po włączeniu, uprawnienia odczytu/zapisu zostaną nadane permanentnie. - + Cancel Anuluj - + Enable Now Włącz teraz @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje katalogi - + Disks Dyski @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Informacje podstawowe - + Device type Typ urządzenia - + Total space Całkowite miejsce - + File system System plików - + Contains Zawiera - + Free space Wolne miejsce - + %1 items %1 przedmiotów - + %1 item %1 przedmiot @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 na %2 @@ -3990,27 +3968,27 @@ Rozmiar - + Dimension Wymiary - + Duration Czas trwania - + Type Typ - + Accessed Ostatni dostęp - + Modified Modyfikacja @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - + Nie udało się przenieść pliku %1 do kosza @@ -4357,7 +4335,7 @@ Copy or Cut File failed! - + Błąd kopiowania lub wklejania! @@ -4387,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + Nie udało się przenieść pliku %1 do kosza, powód: %2 @@ -4406,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Kopiowanie lub wycinanie pliku nie powiodło się, przyczyna: %1 @@ -4439,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Błąd zmiany nazwy pliku - + Failed to create the directory Nie udało się utworzyć katalogu - + Failed to create the file Nie udało się utworzyć pliku - + link file error błąd dowiązania pliku - - + + Failed to modify file permissions - + Nie udało się zmodyfikować uprawnień pliku @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Wklej + &Paste + &Paste - Cut - Wytnij + Cu&t + Cu&t - Copy - Kopiuj + &Copy + &Copy dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Otwórz + &Open + &Open - Rename - Zmień nazwę + Rena&me + Rena&me - Delete - Usuń + &Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal Otwórz w terminalu + + + Reverse select + Wybór odwrotny + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Wyślij do - + + Bluetooth + Bluetooth + + + Create link Utwórz dowiązanie - + Send to desktop Wyślij na pulpit @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Udostępnij - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Otwórz + + &Open + &Open - + Open in new window Otwórz w nowym oknie - + Open in new tab Otwórz w nowej karcie - + Cancel sharing Przestań współdzielić - - Properties - Właściwości + + P&roperties + P&roperties dfmplugin_myshares::MyShares - + My Shares Moje współdzielenia @@ -4700,7 +4683,7 @@ Brak plików do wypalenia - + Unable to burn. Not enough free space on the target disk. Nie można wypalić. Za mało miejsca na dysku docelowym. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Informacje podstawowe - + Size Rozmiar - + Contains Zawiera - + Type Typ - + Location Położenie - + Time created Data utworzenia - + Time accessed Ostatni dostęp - + Time modified Data modyfikacji - + Hide this file Ukryj plik - - + + %1 item %1 przedmiot - + %1 items %1 przedmiotów @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Dla ochrony informacji poufnych - + For Government Dla placówek rządowych - + For Enterprise Dla biznesu - + Bit Bit - + Available Dostępny @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Komputer - + Basic Info Informacje podstawowe - + Computer name Nazwa komputera - + Version Wersja - + Edition Wydanie - + OS build Wersja systemu - + Type Typ - + Processor Procesor - + Memory Pamięć @@ -4891,6 +4874,14 @@ %1 plik(ów), %2 folder(ów) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + %1 są niedozwolone + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Właściwości + P&roperties + P&roperties dfmplugin_recent::Recent - - + Recent Ostatnie @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Ścieżka - + Last access Ostatni dostęp - + Recent Ostatnie @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Szukaj: - + File Type: Typ pliku: - + File Size: Rozmiar pliku: - + Time Modified: Data modyfikacji: - + Time Accessed: Ostatni dostęp: - + Time Created: Data utworzenia: - + Reset Resetuj - + All subdirectories Wszystkie podkatalogi - + Current directory Bieżący katalog - + Application Program - + Video Wideo - + Audio Audio - + Image Obraz - + Archive Archiwum - + Text Tekst - + Executable Wykonywalny - + Backup file Plik kopii zapasowej - + Today Dzisiaj - + Yesterday Wczoraj - + This week W tym tygodniu - + Last week W ubiegłym tygodniu - + This month W tym miesiącu - + Last month W ubiegłym miesiącu - + This year W tym roku - + Last year W ubiegłym roku @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Szukaj + + + Auto index internal disk + Automatycznie indeksuj dysk wewnętrzny + + + + Index external storage device after connected to computer + Indeksuj zewnętrzne nośniki danych po podłączeniu + + + + Full-Text search + Wyszukiwanie Full-Text + dfmplugin_search::SearchHelper - + Path Ścieżka @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otwórz położenie pliku - + Select all Zaznacz wszystko - + Path Ścieżka @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Szybki dostęp - + Partitions Partycje - + Network Sieć - + Tag Znacznik - - Bookmark - Zakładki - - - + Other Inne - + Unknown Group Grupa nieznana - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Komputery w sieci LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Otwórz + &Open + &Open @@ -5191,8 +5184,8 @@ - Properties - Właściwości + P&roperties + P&roperties @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Znacznik @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otwórz położenie pliku @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Połącz się z serwerem - - - + + + Clear History Wyczyść historię - + Unfavorite Usuń z ulubionych - + + Error + Błąd + + + + Unable to favorite illegitimate url! + Nie można polubić błędnego adresu URL! + + + Cancel button Anuluj - + Connect button Połącz - + Charset Encoding Kodowanie znaków - + Default Domyślne - + My Favorites Moje ulubione - + No favorites yet Brak ulubionych - + Favorite Dodaj do ulubionych @@ -5397,7 +5400,7 @@ Password cannot be empty - Pole na hasło nie może być puste + Hasło nie może być puste @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Ścieżka źródłowa - + Time deleted Data usunięcia @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Przywróć - + Restore all Przywróć wszystkie - + Empty trash Opróżnij kosz - + Source path Ścieżka źródłowa - + Time deleted Data usunięcia @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Kosz @@ -5527,17 +5530,17 @@ Kosz - + item przedmiot - + items przedmiotów - + Contains %1 %2 Zawiera %1 %2 @@ -5552,12 +5555,12 @@ File Transfer Successful - Przesyłanie pliku powiodło się + Pomyślnie przesłano plik File Transfer Failed - Przesyłanie pliku nie powiodło się + Wystąpił błąd przesyłania pliku @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Informacje podstawowe - + Size Rozmiar - + Contains Zawiera - + Type Typ - + Location Położenie - + Time created Data utworzenia - + Time accessed Ostatni dostęp - + Time locked Data zablokowania @@ -5888,7 +5891,7 @@ Verify Key button - Zweryfikuj klucz + Weryfikuj klucz @@ -5926,7 +5929,7 @@ Unlock File Vault - Odblokuj Skarbiec + Odblokuj skarbiec @@ -5985,9 +5988,9 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault - Zaszyfruj Skarbiec Plików + Szyfruj skarbiec plików @@ -6006,19 +6009,19 @@ - - - + + + Encrypt - Zaszyfruj + Szyfruj - + Failed to create file vault: %1 Nie udało się utworzyć skarbca plików: %1 - + OK OK @@ -6048,7 +6051,7 @@ No permission, please reselect - Brak permisji, proszę wybrać ponownie + Brak uprawnień, wybierz ponownie @@ -6069,7 +6072,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Ustaw hasło skarbca @@ -6095,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 znaków, zawiera A-Z, a-z, 0-9 i symbole @@ -6130,8 +6133,8 @@ Dalej - - + + Passwords do not match Hasła nie pasują do siebie @@ -6139,9 +6142,9 @@ dfmplugin_vault::VaultActiveStartView - + File Vault - Skarbiec Plików + Skarbiec plików @@ -6169,7 +6172,7 @@ My Vault - Mój Skarbiec + Mój skarbiec @@ -6189,7 +6192,7 @@ dfmplugin_vault::VaultHelper - + Vault Skarbiec @@ -6199,7 +6202,7 @@ Skarbiec jest niedostępny, ponieważ cryfs nie został zainstalowany! - + A task is in progress, so it cannot perform your operation Zadanie jest w trakcie wykonywania, nie można wykonać operacji @@ -6207,98 +6210,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - Mój Skarbiec + Mój skarbiec - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Hasło + + Cancel + Anuluj - - Password hint: %1 - Wskazówka do hasła: %1 + + Delete + Usuń - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Wprowadź 32 cyfrowy klucz odzyskiwania + + Delete File Vault + Usuń skarbiec plików - - - dfmplugin_vault::VaultRemovePages - - Delete File Vault - Usuń Skarbiec Plików + + Failed to delete file vault + Nie udało się usunąć skarbca plików - + + OK + OK + + + Once deleted, the files in it will be permanently deleted Pliki usunięte w tym folderze przepadną na zawsze + + + dfmplugin_vault::VaultRemoveByPasswordView - - Cancel - button - Anuluj + + Once deleted, the files in it will be permanently deleted + Pliki usunięte w tym folderze przepadną na zawsze - - Use Key - button - Użyj klucza + + Password + Hasło + + + + Password hint: %1 + Wskazówka do hasła: %1 - + + Cancel + Anuluj + + + Delete - button Usuń - - Removing... - Przesuwanie... + + Delete File Vault + Usuń skarbiec plików - - + + Wrong password + Błędne hasło + + + + Failed to delete file vault + Nie udało się usunąć skarbca plików + + + OK - button OK + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Błędne hasło + + Input the 32-digit recovery key + Wprowadź 32 cyfrowy klucz odzyskiwania + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - nieprawidłowy klucz odzyskiwania + + Removing... + Usuwanie... - - Failed to delete file vault - Nie udało się usunąć skarbca plików + + OK + OK - - Deleted successfully - Usunięto pomyślnie + + Delete File Vault + Usuń skarbiec plików - - Failed to delete - Nie udało się usunąć + + Deleted successfully + Usunięto pomyślnie @@ -6306,18 +6332,12 @@ My Vault - Mój Skarbiec + Mój skarbiec - + File Vault - Skarbiec Plików - - - - - Vault - Skarbiec + Skarbiec plików @@ -6331,22 +6351,22 @@ dfmplugin_workspace::FileViewModel - + Name Nazwa - + Time modified Data modyfikacji - + Size Rozmiar - + Type Typ @@ -6362,7 +6382,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 są niedozwolone @@ -6378,45 +6398,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortuj według - + Display as Wyświetl jako - + Name Nazwa - + Time modified Data modyfikacji - + Size Rozmiar - + Type Typ - + Icon Ikona - + List Lista + + + Tree + Drzewko + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ filedialog_core::FileDialog - + Save button Zapisz @@ -6438,13 +6463,13 @@ filedialog_core::FileDialogStatusBar - + Save button Zapisz - + Open button Otwórz @@ -6482,112 +6507,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Dostępne rozmiary: - + Custom Size Rozmiar niestandardowy - + Device Pixel Ratio: Współczynnik pikseli urządzenia: - + Theme: Motyw: - + Light Jasny - + Dark Ciemny - + Mode: Tryb: - + Normal Normalny - + Disabled Wyłączony - + Hovered Najechany - + Pressed Przyciśnięty - + Palette Paleta - + Current mode icon does not support the palette Bieżący tryb ikon nie wspiera palety - + Foreground: Pierwszy plan: - + Background: Tło: - + Highlight: Wyróżnij: - + HighlightForeground: Podkreślenie pierwszego planu: - + Background Color: Kolor tła: - + White Biały - + Black Ciemny - + Transparent Przezroczysty - + Custom Niestandardowy @@ -6619,24 +6644,24 @@ plugin_filepreview::MusicMessageView - + Artist: Wykonawca: - + Album: Album: - + unknown artist wykonawca nieznany - + unknown album album nieznany - + \ No newline at end of file diff --git a/translations/dde-file-manager_pt.ts b/translations/dde-file-manager_pt.ts index 9afc8c5864..45fe7a91f5 100644 --- a/translations/dde-file-manager_pt.ts +++ b/translations/dde-file-manager_pt.ts @@ -15,99 +15,104 @@ Application - + File Manager Gestor de Ficheiros - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. O Gestor de Ficheiros é uma ferramenta de gestão de ficheiros poderosa e fácil de usar, que inclui pesquisar, copiar, eliminar, comprimir/extrair, consultar propriedades dos ficheiros e outras funções úteis. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Ambiente de trabalho - DeepinStorage + DeviceList - - - %1 Volume - Volume %1 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Ambiente de trabalho + + Disk + Disco - - - DiskControlWidget - - Disks - Discos + + Open + Abrir - - The device was not safely removed - O dispositivo não foi removido em segurança + + Eject all + Ejectar tudo + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Clique em "Remover em segurança" e retire-o da próxima vez + + The device has been safely removed + - - Disk is busy, cannot unmount now - O disco está ocupado, não pode ser desmontado agora + + eject + - - The device is busy, cannot eject now - O dispositivo está ocupado, não é possível ejectar agora + + unmount + - - - DiskMountPlugin - - Disk - Disco + + + remove + - - Open - Abrir + + Operation failed + - - Eject all - Ejectar tudo + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Desconhecido @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Isto acontece quando se inicia sessão num computador pela primeira vez. - + The identity sent by the remote computer is A identidade enviada pelo computador remoto é - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Se quiser ter a certeza absoluta de que é seguro continuar, contacte o administrador do sistema. - - - + + + System Disk Disco do sistema - + Data Disk Dados do disco - + Blank %1 Disc Disco %1 Vazio - - - + + + Unknown Desconhecido - + %1 Drive Unidade %1 - + %1 Encrypted %1 Encriptado - + + %1 Volume Volume %1 - - + Scanning the device, stop it? A analisar o dispositivo, interromper? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Pasta Pessoal @@ -223,7 +228,6 @@ - Desktop Ambiente de Trabalho @@ -233,7 +237,6 @@ - Videos Vídeos @@ -243,7 +246,6 @@ - Music Música @@ -253,7 +255,6 @@ - Pictures Imagens @@ -263,7 +264,6 @@ - Documents Documentos @@ -273,7 +273,6 @@ - Downloads Transferências @@ -282,7 +281,6 @@ - Trash Lixo @@ -293,12 +291,11 @@ - Recent Recente - + @@ -306,7 +303,7 @@ Montar automaticamente - + @@ -319,47 +316,46 @@ %1 tarefas em andamento - + %1 item %1 item - + %1 items %1 itens - + Unable to find the original file Não foi possível localizar o ficheiro original - - + + File has been moved or deleted O ficheiro foi movido ou eliminado - - - + + You do not have permission to access this folder Não tem autorização para aceder a esta pasta - - + + You do not have permission to traverse files in it Não tem autorização para percorrer ficheiros dentro dele - - + + Folder is empty Esta pasta está vazia - + Loading... A carregar... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Computador @@ -424,9 +419,8 @@ - - - + + Computers in LAN Computadores em rede de área local @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network Rede @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions Partições @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Etiqueta @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Continuar a mostrar as partilhas do Samba montadas @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Parar - + Shortcut Atalho - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copiar) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Acesso negado - Confirm button Confirmar - - - The device has been safely removed - O dispositivo foi removido com segurança - - - + + - - - + + + Open in new window Abrir numa nova janela @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Abrir num novo separador @@ -968,8 +953,8 @@ - - + + Properties Propriedades @@ -1005,7 +990,7 @@ Novo Ficheiro - + Create symlink Criar hiperligação simbólica @@ -1092,70 +1077,70 @@ Adicionar ao disco - + Are you sure you want to erase all data on the disc? Tem a certeza que deseja apagar todos os dados no disco? - + Erase button Apagar - + This action cannot be undone Esta ação não pode ser anulada - + How do you want to use this disc? Como deseja usar este disco? - + Burn image button Gravar imagem - + Burn files button Gravar ficheiros - + %1 is a duplicate file. %1 é um ficheiro duplicado. - + Insufficient disc space. Espaço em disco insuficiente. - + Lost connection to drive. Ligação à unidade perdida. - + The CD/DVD drive is not ready. Try another disc. A unidade de CD/DVD não está pronta. Tente outro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. A unidade de CD/DVD está ocupada. Saia do programa usando a unidade e insira a unidade novamente. - + Invalid volume name - + Unknown error Erro desconhecido @@ -1194,42 +1179,42 @@ Itens: %1 - + Orange Laranja - + Red Vermelho - + Purple Roxo - + Navy-blue Azul-marinho - + Azure Azul - + Green Verde - + Yellow Amarelo - + Gray Cinzento @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Disco local - + Removable disk Disco removível - + DVD DVD - + Network shared directory Pasta de rede partilhada - - + + Android mobile device Dispositivo móvel Android - + Apple mobile device Dispositivo móvel Apple - + Unknown device Dispositivo desconhecido - + Remove button Remover - + Do you want to remove this item? Deseja remover este item? - + Do yout want to remove %1 items? Deseja remover %1 itens? - + It does not delete the original files Não elimina os ficheiros originais - + Clear recent history Eliminar histórico recente - - - + + + Source path Caminho de origem @@ -1419,12 +1404,12 @@ Incapaz de abrir os itens no lixo, restaure-os primeiro - + Empty Trash Esvaziar o lixo - + Location Localização @@ -1524,7 +1509,7 @@ A Procurar... - + My Vault O meu cofre @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Não autorizado - - + + In trial period Em período experimental + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nova coleção @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by Organizar por - + Custom collection Coleção personalizada - + Type Tipo - + Time accessed Duração do acesso - + Time modified Data de Modificação - + Time created Data de criação - + Create a collection Criar uma coleção - - - Display Size - Tamanho de exibição - - - - Smaller - Pequeno - - - - Normal - Normal - - - - Larger - Grande - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Tamanho de exibição - - - + Icon size Tamanho dos ícones @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 item selecionado @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Aceitar - + Operation failed! Falha na operação! @@ -2554,191 +2529,191 @@ A pasta de destino está dentro da pasta de origem! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formatar - + To access the device, you must format the disk first. Are you sure you want to format it now? Para aceder ao dispositivo, é necessário formatar primeiro o disco. Tem a certeza que o deseja formatar agora? - + Do you want to run %1 or display its content? Deseja executar %1 ou mostrar o seu conteúdo? - + It is an executable text file. É um ficheiro de texto executável. - - - + + + Run button Executar - - + + Run in terminal button Executar no Terminal - + Display button Visualizar - + Do you want to run %1? Deseja executar %1? - + It is an executable file. É um um ficheiro executável. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Eliminar permanentemente %1 itens? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Eliminar - + Permanently delete %1? Eliminar permanentemente %1? - - + + This action cannot be undone Esta ação não pode ser anulada - + Are you sure you want to empty %1 item? Tem a certeza que deseja eliminar %1 item? - + Are you sure you want to empty %1 items? Tem a certeza que deseja eliminar %1 itens? - + Empty Esvaziar - + Do you want to delete %1? Deseja eliminar %1? - + Do you want to delete the selected %1 items? Deseja eliminar os %1 itens selecionados? - + Failed to restore %1 file, the target folder is read-only Erro ao restaurar o ficheiro %1, a pasta de destino é apenas de leitura - + Failed to restore %1 files, the target folder is read-only Erro ao restaurar ficheiros %1, a pasta de destino é apenas de leitura - + "%1" already exists, please use another name. "%1" já existe, use outro nome. - + Device or resource busy Dispositivo ou recurso ocupado - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este ficheiro ficará oculto se o nome começar com um '.'. Deseja ocultá-lo? - + Hide Ocultar - + Cancel Cancelar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 a que este atalho se refere foi modificado ou movido - + Do you want to delete this shortcut? Tem a certeza que quer eliminar este atalho? - + This file is not executable, do you want to add the execute permission and run? Este ficheiro não é executável, deseja adicionar a autorização de execução e executá-lo? - + The selected files contain system file/directory, and it cannot be deleted Os ficheiros selecionados contêm ficheiros/diretórios de sistema, por isso não podem ser eliminados @@ -2866,278 +2841,276 @@ Inserir a palavra-passe para desencriptar o disco + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Outros - + Close Fechar - + Close current tab Fechar separador atual - + Back Retroceder - + Forward Avançar - + Switch to next tab Alterar para separador seguinte - + Switch to previous tab Alterar para separador anterior - + Next file Ficheiro seguinte - + Previous file Ficheiro anterior - + Switch tab by specified number between 1 to 8 Alternar o tab especificando um número entre 1 a 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Data de modificação: %1 - + Original folder Pasta original - + Contains: %1 Conteúdo: %1 - + Original file Ficheiro original - + Size: %1 Tamanho: %1 - + Target folder Pasta de destino - + + In data statistics ... - + Target file Ficheiro de destino @@ -3466,37 +3445,37 @@ Aguarde - + Keep both button Manter ambos - + Skip button Ignorar - - + + Replace button Substituir - + Do not ask again Não perguntar novamente - + Retry button Repetir - + Merge button Agrupar @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Cancelar - + Remove button Remover @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Computador - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Meus Diretórios - + Disks Discos @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tipo de dispositivo - + Total space Espaço total - + File system Sistema de ficheiros - + Contains Conteúdo - + Free space Espaço livre - + %1 items %1 itens - + %1 item %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Tamanho - + Dimension Dimensão - + Duration Duração - + Type Tipo - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Colar + &Paste + - Cut - Cortar + Cu&t + - Copy - Copiar + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Abrir + &Open + - Rename - Renomear + Rena&me + - Delete - Eliminar + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Abrir no terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar para - + + Bluetooth + + + + Create link Criar ligação - + Send to desktop Enviar para o ambiente de trabalho @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Abrir + + &Open + - + Open in new window Abrir numa nova janela - + Open in new tab Abrir num novo separador - + Cancel sharing Cancelar partilha - - Properties - Propriedades + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Minhas Partilhas @@ -4700,7 +4683,7 @@ Sem ficheiros para gravar - + Unable to burn. Not enough free space on the target disk. Incapaz de gravar. Não existe espaço livre suficiente no disco de destino. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Tamanho - + Contains Conteúdo - + Type Tipo - + Location Localização - + Time created Data de criação - + Time accessed Duração do acesso - + Time modified Data de Modificação - + Hide this file Ocultar este ficheiro - - + + %1 item %1 item - + %1 items %1 itens @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government Para governos - + For Enterprise Para empresas - + Bit Bit - + Available Disponível @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computador - + Basic Info Informação Básica - + Computer name Nome do computador - + Version Versão - + Edition Edição - + OS build Compilação do SO - + Type Tipo - + Processor Processador - + Memory Memória @@ -4891,6 +4874,14 @@ %1 ficheiro(s), %2 pasta(s) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propriedades + P&roperties + dfmplugin_recent::Recent - - + Recent Recente @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Caminho - + Last access O último acesso - + Recent Recente @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Pesquisa: - + File Type: Tipo de ficheiro: - + File Size: Tamanho do ficheiro: - + Time Modified: Data de Modificação: - + Time Accessed: Duração do acesso: - + Time Created: Data de criação: - + Reset Restabelecer - + All subdirectories Todos os subdiretórios - + Current directory Diretório atual - + Application Aplicação - + Video Vídeo - + Audio Áudio - + Image Imagem - + Archive Arquivo - + Text Texto - + Executable Executável - + Backup file Cópia de segurança - + Today Hoje - + Yesterday Ontem - + This week Esta semana - + Last week Na semana passada - + This month Este mês - + Last month No mês passado - + This year Este ano - + Last year No ano passado @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Pesquisa + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Caminho @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir localização do ficheiro - + Select all Selecionar todos - + Path @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etiqueta - - Bookmark - - - - + Other Outro - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Computadores em rede de área local - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Abrir + &Open + @@ -5191,7 +5184,7 @@ - Properties + P&roperties @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir localização do ficheiro @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Ligar-se ao Servidor - - - + + + Clear History Eliminar histórico - + Unfavorite Remover dos favoritos - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Cancelar - + Connect button Ligar - + Charset Encoding - + Default - + My Favorites Meus favoritos - + No favorites yet Ainda sem favoritos - + Favorite Adicionar aos favoritos @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Caminho de origem - + Time deleted Data de eliminação @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar tudo - + Empty trash - + Source path Caminho de origem - + Time deleted Data de eliminação @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Lixo @@ -5527,17 +5530,17 @@ Lixo - + item item - + items itens - + Contains %1 %2 Contém %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Tamanho - + Contains Conteúdo - + Type Tipo - + Location Localização - + Time created Data de criação - + Time accessed Duração do acesso - + Time locked Tempo bloqueado @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Encriptar cofre de ficheiros @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Encriptar - + Failed to create file vault: %1 Falha na criação do cofre de ficheiros: %1 - + OK Aceitar @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Definir palavra-passe do cofre @@ -6094,7 +6097,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caracteres, contém A-Z, a-z, 0-9, e símbolos @@ -6129,8 +6132,8 @@ Seguinte - - + + Passwords do not match As palavras-passe não coincidem @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Cofre de ficheiros @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6198,7 +6201,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6206,98 +6209,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault O meu cofre - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Palavra-passe + + Cancel + - - Password hint: %1 - Sugestão de palavra-passe: 1% + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Introduza a chave de recuperação com 32 dígitos + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Eliminar cofre de ficheiros + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Uma vez eliminados, os ficheiros que lá se encontram serão permanentemente eliminados + + Password + Palavra-passe - - Cancel - button - Cancelar + + Password hint: %1 + Sugestão de palavra-passe: 1% - - Use Key - button - Utilizar chave + + Cancel + - + Delete - button - Eliminar + - - Removing... - A remover... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - Aceitar + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Palavra-passe incorreta + + Input the 32-digit recovery key + Introduza a chave de recuperação com 32 dígitos + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Chave de recuperação incorreta + + Removing... + - - Failed to delete file vault - Falha ao eliminar o cofre de ficheiros + + OK + - - Deleted successfully - Eliminado com sucesso + + Delete File Vault + - - Failed to delete - Falha ao eliminar + + Deleted successfully + @@ -6308,16 +6334,10 @@ O meu cofre - + File Vault Cofre de ficheiros - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 não são permitidos @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Mostrar como - + Name Nome - + Time modified Data de Modificação - + Size Tamanho - + Type Tipo - + Icon Ícone - + List Lista + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Guardar @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Guardar - + Open button Abrir @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_pt_BR.ts b/translations/dde-file-manager_pt_BR.ts index 1465bc469a..65f8a3621f 100644 --- a/translations/dde-file-manager_pt_BR.ts +++ b/translations/dde-file-manager_pt_BR.ts @@ -15,99 +15,104 @@ Application - + File Manager Gerenciador de Arquivos - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. O Gerenciador de Arquivos é uma ferramenta poderosa e fácil de usar para manusear os arquivos. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Área de Trabalho - DeepinStorage + DeviceList - - - %1 Volume - Volume de %1 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Área de Trabalho + + Disk + Disco - - - DiskControlWidget - - Disks - Dispositivos + + Open + Abrir - - The device was not safely removed - O dispositivo não foi removido com segurança + + Eject all + Ejetar tudo + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Clique em "Remover com segurança" e então desconecte-o na próxima vez + + The device has been safely removed + - - Disk is busy, cannot unmount now - O disco está ocupado; impossível desmontá-lo + + eject + - - The device is busy, cannot eject now - O dispositivo está ocupado; impossível ejetá-lo + + unmount + - - - DiskMountPlugin - - Disk - Disco + + + remove + - - Open - Abrir + + Operation failed + - - Eject all - Ejetar tudo + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + Todos os arquivos + + + + FileOperateBaseWorker + + + The file name or the path is too long! MimeTypeDisplayManager - + Unknown Desconhecido @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Isto ocorre quando o login é feito pela primeira vez em um computador - + The identity sent by the remote computer is A identidade enviada pelo computador remoto é - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Para continuar com segurança, contate o administrador do sistema. - - - + + + System Disk Disco do Sistema - + Data Disk Disco de Dados - + Blank %1 Disc %1 Disco Vazio - - - + + + Unknown Desconhecido - + %1 Drive %1 Disco - + %1 Encrypted Criptografado %1 - + + %1 Volume Volume de %1 - - + Scanning the device, stop it? Verificando o dispositivo, parar? - + Unmount failed Falha ao desmontar - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Pasta Pessoal @@ -223,7 +228,6 @@ - Desktop Área de Trabalho @@ -233,7 +237,6 @@ - Videos Vídeos @@ -243,7 +246,6 @@ - Music Músicas @@ -253,7 +255,6 @@ - Pictures Imagens @@ -263,7 +264,6 @@ - Documents Documentos @@ -273,7 +273,6 @@ - Downloads Downloads @@ -282,7 +281,6 @@ - Trash Lixeira @@ -293,12 +291,11 @@ - Recent Recentes - + @@ -306,7 +303,7 @@ Montar automaticamente - + @@ -319,47 +316,46 @@ %1 tarefas em andamento - + %1 item %1 item - + %1 items %1 itens - + Unable to find the original file Impossível encontrar o arquivo original - - + + File has been moved or deleted O arquivo foi movido ou excluído - - - + + You do not have permission to access this folder Você não tem permissão para acessar esta pasta - - + + You do not have permission to traverse files in it Você não tem permissão para mover os arquivos - - + + Folder is empty A pasta está vazia - + Loading... Carregando... @@ -408,15 +404,14 @@ - + Built-in disks - + Discos internos - Computer Computador @@ -424,9 +419,8 @@ - - - + + Computers in LAN Rede @@ -434,7 +428,7 @@ - + Loop partitions Partições de loop @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network Rede @@ -466,15 +460,15 @@ - + Mounted partitions and discs - Partições e discos montados + Discos montados - + Partitions Partições @@ -482,7 +476,7 @@ - + Quick access Acesso rápido @@ -490,7 +484,7 @@ - + Tag Etiqueta @@ -498,7 +492,7 @@ - + Added tags Tags adicionadas @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Continuar exibindo os compartilhamentos montados @@ -543,7 +537,7 @@ Hide built-in disks on the Computer page - + Ocultar os discos internos na página Computador @@ -633,7 +627,7 @@ Extra small - Muito pequeno + Extrapequeno @@ -661,7 +655,7 @@ Extra large - Muito grande + Extragrande @@ -731,7 +725,7 @@ Double click - Clique duplo + Duplo clique @@ -745,7 +739,7 @@ Dialog - Caixa de Diálogo + Caixa de diálogo @@ -759,7 +753,7 @@ Items on sidebar pane - Items on sidebar pane + Itens no painel da barra lateral @@ -842,21 +836,20 @@ Switching the entry display may lead to failed mounting - + Alternar a exibição de entrada pode levar a uma falha na montagem - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Parar - + Shortcut Atalho - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copiar) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copiar %1) @@ -909,33 +901,26 @@ Bit - Access denied Acesso negado - Confirm button Confirmar - - - The device has been safely removed - O dispositivo foi removido com segurança - - - + + - - - + + + Open in new window Abrir em nova janela @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Abrir em nova aba @@ -968,8 +953,8 @@ - - + + Properties Propriedades @@ -1005,7 +990,7 @@ Novo Arquivo - + Create symlink Criação de atalho @@ -1092,70 +1077,70 @@ Adicionar ao disco - + Are you sure you want to erase all data on the disc? Apagar todos os dados no disco? - + Erase button Apagar - + This action cannot be undone Essa ação não poderá ser revertida - + How do you want to use this disc? Como usar este disco? - + Burn image button Gravar imagem - + Burn files button Gravar arquivos - + %1 is a duplicate file. %1 é um arquivo duplicado. - + Insufficient disc space. Espaço insuficiente em disco. - + Lost connection to drive. Conexão perdida com o dispositivo. - + The CD/DVD drive is not ready. Try another disc. O dispositivo de CD/DVD não está pronto. Tente outro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. O dispositivo de CD/DVD está ocupado. Feche o programa que o está utilizando e insira o disco novamente. - + Invalid volume name - + Unknown error Erro desconhecido @@ -1194,42 +1179,42 @@ Itens: %1 - + Orange Laranja - + Red Vermelha - + Purple Roxa - + Navy-blue Azul marinho - + Azure Azul - + Green Verde - + Yellow Amarela - + Gray Cinza @@ -1305,76 +1290,76 @@ Não é possível acessar - + User directory - + Local disk Disco local - + Removable disk Disco removível - + DVD DVD - + Network shared directory Diretório compartilhado de rede - - + + Android mobile device Dispositivo Móvel Android - + Apple mobile device Dispositivo Móvel Apple - + Unknown device Dispositivo desconhecido - + Remove button Remover - + Do you want to remove this item? Deseja remover este item? - + Do yout want to remove %1 items? Remover %1 itens? - + It does not delete the original files Isto não apaga os arquivos originais - + Clear recent history Limpar o histórico recente - - - + + + Source path Caminho de origem @@ -1419,12 +1404,12 @@ Impossível abrir os itens da lixeira; restaure-os - + Empty Trash Esvaziar Lixeira - + Location Local @@ -1524,7 +1509,7 @@ Pesquisando... - + My Vault Meu Cofre @@ -1701,7 +1686,7 @@ Device disconnected - + Dispositivo desconectado @@ -1711,17 +1696,17 @@ Success - + Bem-sucedido Failed - + Falhou - + Sidebar - + Barra Lateral @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Não autorizado - - + + + In trial period + Em período de testes + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + Não autorizado + + + + In trial period Em período de testes @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nova coleção @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizar automaticamente - + Desktop options Opções da área de trabalho - + Organize by Organizar por - + Custom collection Coleção personalizada - + Type Tipo - + Time accessed Último acesso - + Time modified Última modificação - + Time created Data da criação - + Create a collection Criar uma coleção - - - Display Size - - - - - Smaller - Pequeno - - - - Normal - - - - - Larger - Grande - ddplugin_organizer::ItemEditor @@ -2065,14 +2045,14 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opções da área de trabalho - + Auto arrange icons - + Organizar automaticamente @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Tamanho de exibição - - - + Icon size Tamanho do ícone @@ -2190,7 +2165,7 @@ Apps - + Aplicativos @@ -2228,7 +2203,7 @@ Apps - + Aplicativos @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button Atualizar - + Cancel button Cancelar @@ -2385,7 +2360,7 @@ - + %1 item selected %1 item selecionado @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2436,27 +2411,27 @@ Operating failed - + A operação falhou Mount failed - + A montagem falhou Unmount failed - + A desmontagem falhou Unmounting device now... - + Desmontando dispositivo... Mounting device now... - + Montando dispositivo... @@ -2536,15 +2511,15 @@ - - + + OK button Ok - + Operation failed! Operação falhou! @@ -2554,191 +2529,191 @@ A pasta de destino está dentro da pasta de origem! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formatar - + To access the device, you must format the disk first. Are you sure you want to format it now? Para acessar o dispositivo, é necessário formatar o disco. Formatá-lo agora? - + Do you want to run %1 or display its content? Executar %1 ou exibir o conteúdo? - + It is an executable text file. O arquivo de texto é executável. - - - + + + Run button Executar - - + + Run in terminal button Executar no Terminal - + Display button Exibir - + Do you want to run %1? Executar %1? - + It is an executable file. O arquivo é executável. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Impossível mover os %1 itens selecionados para a lixeira. Excluí-los permanentemente? - + Permanently delete %1 items? Excluir permanentemente %1 itens? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Excluir - + Permanently delete %1? Excluir permanentemente %1? - - + + This action cannot be undone Essa ação não poderá ser revertida - + Are you sure you want to empty %1 item? Excluir permanentemente %1 item? - + Are you sure you want to empty %1 items? Excluir permanentemente %1 itens? - + Empty Esvaziar - + Do you want to delete %1? Excluir %1? - + Do you want to delete the selected %1 items? Excluir os %1 itens selecionados? - + Failed to restore %1 file, the target folder is read-only Falha ao restaurar %1 arquivo, a pasta de destino é somente leitura - + Failed to restore %1 files, the target folder is read-only Falha ao restaurar %1 arquivos, a pasta de destino é somente leitura - + "%1" already exists, please use another name. "%1" já existe; use outro nome. - + Device or resource busy Dispositivo ou recurso ocupado - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este arquivo ficará oculto se o nome do arquivo começar com "." (ponto). Ocultá-lo? - + Hide Ocultar - + Cancel Cancelar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 a que este atalho se refere foi alterado ou movido - + Do you want to delete this shortcut? Excluir este atalho? - + This file is not executable, do you want to add the execute permission and run? Este arquivo não é executável. Adicionar a permissão de execução e executá-lo? - + The selected files contain system file/directory, and it cannot be deleted Os arquivos selecionados contém um arquivo/diretório do sistema, e não podem ser excluídos @@ -2866,278 +2841,276 @@ Insira a senha para descriptografar o disco + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Abrir arquivo: - + Click - + Clique - + Double click - + Duplo clique - + New window and tab - + Nova janela e aba - + Open from default window: - - + + Computer - + Computador - - + + Home - - + + Desktop - + Área de Trabalho - - + + Videos - + Vídeos - - + + Music - + Músicas - - + + Pictures - + Imagens - - + + Documents - + Documentos - - + + Downloads - + Downloads - + Open in new tab: - + Abrir em nova guia: - + Current Directory - + Files and folders - + Arquivos e pastas - + Show hidden files - + Exibir arquivos ocultos - + Show file extensions - + Exibir extensões de arquivo - + Mix sorting of files and folders - + Classificar aleatoriamente os arquivos e pastas - + Workspace - + Espaço de Trabalho - + View - + Default size: - + Tamanho padrão: - + Extra small - + Extrapequeno - + Small - + Pequeno - + Medium - + Médio - + Large - + Grande - + Extra large + Extragrande + + + + Tree - + Default view: - + Icon - + Ícone - + List + Lista + + + + Restore default view mode for all directories - - Thumbnail preview + + Restore default view mode - + + Thumbnail preview + Pré-visualização em miniatura + + + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Alternar a exibição de entrada pode levar a uma falha na montagem - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3182,7 +3155,7 @@ Reverse selection - + Inverter seleção @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Outros - + Close Fechar - + Close current tab Fechar aba atual - + Back Voltar - + Forward Avançar - + Switch to next tab Alterar para a próxima aba - + Switch to previous tab Alternar para a aba anterior - + Next file Próximo arquivo - + Previous file Arquivo anterior - + Switch tab by specified number between 1 to 8 Alternar a aba pelo número especificado entre 1 e 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Última modificação: %1 - + Original folder Pasta de origem - + Contains: %1 Contém: %1 - + Original file Arquivo original - + Size: %1 Tamanho: %1 - + Target folder Pasta de destino - + + In data statistics ... - + Target file Arquivo de destino @@ -3466,37 +3445,37 @@ Aguarde - + Keep both button Manter Ambos - + Skip button Ignorar - - + + Replace button Substituir - + Do not ask again Não perguntar novamente - + Retry button - Tentar novamente + Repetir - + Merge button Mesclar @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Impossível localizar o diretório do acesso rápido. Removê-lo? - + Cancel button Cancelar - + Remove button Remover @@ -3799,87 +3778,86 @@ Double click to open it - Clique duplo para abrí-lo + Duplo clique para abri-lo dfmplugin_computer::Computer - - + Computer Computador - + Computer display items - + Exibição de itens do computador - + Hide built-in disks on the Computer page - + Ocultar os discos internos na página Computador - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Ocultar Meus Diretórios na página Computador - + Hide 3rd party entries on the Computer page - + Ocultar a entradas de terceiros na página Computador dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password Senha incorreta - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Cancelar - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Meus Diretórios - + Disks Dispositivos @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Informações Básicas - + Device type Tipo de dispositivo - + Total space Espaço total - + File system Sistema de arquivos - + Contains Contém - + Free space Espaço livre - + %1 items %1 itens - + %1 item %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Tamanho - + Dimension Dimensão - + Duration Duração - + Type Tipo - + Accessed Último acesso - + Modified Última modificação @@ -4342,7 +4320,7 @@ Unknown error - + Erro desconhecido @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Colar + &Paste + - Cut - Recortar + Cu&t + - Copy - Copiar + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Abrir + &Open + - Rename - Renomear + Rena&me + - Delete - Excluir + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Abrir no terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar para - + + Bluetooth + + + + Create link Criar atalho - + Send to desktop Área de Trabalho @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - - - Bluetooth - Bluetooth + Compartilhar dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Abrir + + &Open + - + Open in new window Abrir em nova janela - + Open in new tab Abrir em nova aba - + Cancel sharing Cancelar compartilhamento - - Properties - Propriedades + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Compartilhamentos @@ -4700,7 +4683,7 @@ Nenhum arquivo para gravar - + Unable to burn. Not enough free space on the target disk. Impossível gravar. Não há espaço disponível no disco de destino. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Informações Básicas - + Size Tamanho - + Contains Contém - + Type Tipo - + Location Local - + Time created Data da criação - + Time accessed Último acesso - + Time modified Última modificação - + Hide this file Ocultar este arquivo - - + + %1 item %1 item - + %1 items %1 itens @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - Para Governos + Para Governo - + For Enterprise Para Empresas - + Bit Bit - + Available Disponível @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computador - + Basic Info Informações Básicas - + Computer name Nome do computador - + Version Versão - + Edition Versão - + OS build Build do Sistema - + Type Tipo - + Processor Processador - + Memory Memória @@ -4891,6 +4874,14 @@ %1 arquivo(s), %2 pasta(s) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Propriedades + P&roperties + dfmplugin_recent::Recent - - + Recent Recentes @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Caminho - + Last access Último acesso - + Recent Recentes @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Pesquisar: - + File Type: Tipo de Arquivo: - + File Size: Tamanho do Arquivo: - + Time Modified: Última modificação: - + Time Accessed: Último acesso: - + Time Created: Data da Criação: - + Reset Redefinir - + All subdirectories Todas as subpastas - + Current directory Diretório - + Application Aplicativo - + Video Vídeo - + Audio Áudio - + Image Imagem - + Archive Arquivo - + Text Texto - + Executable Executável - + Backup file Arquivo de backup - + Today Hoje - + Yesterday Ontem - + This week Esta semana - + Last week Semana passada - + This month Este mês - + Last month Mês passado - + This year Este Ano - + Last year Ano passado @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Pesquisar + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Caminho @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir local do arquivo - + Select all Selecionar tudo - + Path @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Acesso rápido - + Partitions Partições - + Network Rede - + Tag Etiqueta - - Bookmark - - - - + Other Outros - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Rede - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Abrir + &Open + @@ -5191,7 +5184,7 @@ - Properties + P&roperties @@ -5220,13 +5213,13 @@ Remove - + Remover dfmplugin_tag::Tag - + Tag Etiqueta @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir local do arquivo @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Conectar-se ao servidor - - - + + + Clear History Limpar histórico - + Unfavorite Desfavorável - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Cancelar - + Connect button Conectar - + Charset Encoding - + Default - + Padrão - + My Favorites Favoritos: - + No favorites yet Ainda sem favoritos - + Favorite Favoritos @@ -5358,7 +5361,7 @@ Repeat password: - Confirmar senha: + Confirmar a nova senha: @@ -5380,7 +5383,7 @@ New password should differ from the current one - A nova senha deve ser diferente da senha atual + A nova senha deve ser diferente da atual @@ -5397,7 +5400,7 @@ Password cannot be empty - A senha não pode ficar em branco + A senha não pode estar em branco @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Caminho de origem - + Time deleted Data/hora da exclusão @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar tudo - + Empty trash - + Esvaziar lixeira - + Source path Caminho de origem - + Time deleted Data/hora da exclusão @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Lixeira @@ -5527,17 +5530,17 @@ Lixeira - + item Item - + items itens - + Contains %1 %2 Contém %1 %2 @@ -5641,7 +5644,7 @@ Retry button - Tentar novamente + Repetir @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Informações Básicas - + Size Tamanho - + Contains Contém - + Type Tipo - + Location Local - + Time created Data da criação - + Time accessed Último acesso - + Time locked Tempo bloqueado @@ -5950,7 +5953,7 @@ Wrong password, please try again %1 minutes later - Senha incorreta, por favor, tente novamente em %1 minutos + Senha incorreta, tente novamente em %1 minutos @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Criptografar o Cofre de Arquivo @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Criptografar - + Failed to create file vault: %1 Falha ao criar o cofre de arquivos: %1 - + OK Ok @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Definir a Senha do Cofre @@ -6094,14 +6097,14 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caracteres; contém A-Z, a-z, 0-9 e símbolos Repeat password - Repetir senha + Confirmar a nova senha @@ -6129,8 +6132,8 @@ Próximo - - + + Passwords do not match As senhas não coincidem @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Cofre de Arquivo @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6198,7 +6201,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6206,98 +6209,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Meu Cofre - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Senha + + Cancel + Cancelar - - Password hint: %1 - Dica de senha: %1 + + Delete + Excluir - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Insira a chave de recuperação de 32 dígitos + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + Ok + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Excluir o Cofre de Arquivos + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Uma vez excluídos, os arquivos serão excluídos permanentemente + + Password + Senha - - Cancel - button - Cancelar + + Password hint: %1 + Dica de senha: %1 - - Use Key - button - Usar Chave + + Cancel + Cancelar - + Delete - button Excluir - - Removing... - Removendo... + + Delete File Vault + + + + + Wrong password + Senha incorreta + + + + Failed to delete file vault + - - + OK - button Ok + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Senha incorreta + + Input the 32-digit recovery key + Insira a chave de recuperação de 32 dígitos + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Chave de recuperação incorreta + + Removing... + Removendo... - - Failed to delete file vault - Falha ao excluir o cofre de arquivos + + OK + Ok - - Deleted successfully - Excluído + + Delete File Vault + - - Failed to delete - Falha ao excluir + + Deleted successfully + @@ -6308,16 +6334,10 @@ Meu Cofre - + File Vault Cofre de Arquivo - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name Nome - + Time modified Última modificação - + Size Tamanho - + Type Tipo @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 não são permitidos @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Exibir como - + Name Nome - + Time modified Última modificação - + Size Tamanho - + Type Tipo - + Icon Ícone - + List Lista + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Salvar @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Salvar - + Open button Abrir @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Tema: - + Light - + Claro - + Dark - + Escuro - + Mode: - + Modo: - + Normal - + Normal - + Disabled - + Desativado - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ro.ts b/translations/dde-file-manager_ro.ts index 47bfe94b1b..5437791023 100644 --- a/translations/dde-file-manager_ro.ts +++ b/translations/dde-file-manager_ro.ts @@ -15,99 +15,104 @@ Application - + File Manager Manager de fișiere - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Spațiul de lucru - DeepinStorage + DeviceList - - - %1 Volume - %1 Volum + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Spațiul de lucru + + Disk + Disc - - - DiskControlWidget - - Disks - Discuri + + Open + Deschide - - The device was not safely removed - Dispozitivul nu a fost deconectat în mod sigur + + Eject all + Scoateți toate + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Clic pe „Eliminare sigură” și apoi deconectați data viitoare + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disc ocupat, nu poate fi demontat la moment + + eject + - - The device is busy, cannot eject now - Dispozitivul este ocupat, nu poate fi scos acum + + unmount + - - - DiskMountPlugin - - Disk - Disc + + + remove + - - Open - Deschide + + Operation failed + - - Eject all - Scoateți toate + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Necunoscut @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Disc Sistem - + Data Disk - + Blank %1 Disc - - - + + + Unknown Necunoscut - + %1 Drive - + %1 Encrypted %1 Criptat - + + %1 Volume %1 Volum - - + Scanning the device, stop it? Scanarea dispozitivului, oprire? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Acasă @@ -223,7 +228,6 @@ - Desktop Spațiul de lucru @@ -233,7 +237,6 @@ - Videos Videoclipuri @@ -243,7 +246,6 @@ - Music Muzică @@ -253,7 +255,6 @@ - Pictures Imagini @@ -263,7 +264,6 @@ - Documents Documente @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash Coș de gunoi @@ -293,12 +291,11 @@ - Recent Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder Nu aveți permisiunea de a accesa acest directoriu - - + + You do not have permission to traverse files in it - - + + Folder is empty Dosarul este gol - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Calculator @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Etichetă @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Oprire - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Acces interzis - Confirm button Confirmare - - - The device has been safely removed - Dispozitivul a fost îndepărtat în mod sigur - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties Proprietăți @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Șterge - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Eroare necunoscută @@ -1194,42 +1179,42 @@ - + Orange Portocaliu - + Red Roșu - + Purple Violet - + Navy-blue - + Azure - + Green Verde - + Yellow Galben - + Gray Gri @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nu este autorizat - - + + In trial period Perioada de grație + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tip - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Dimensiune pictogramă @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Anulare - + Format button Formatare - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Șterge - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Anulare - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Altele - + Close - + Close current tab - + Back Înapoi - + Forward - + Switch to next tab - + Switch to previous tab - + Next file Următorul fișier - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button Reîncercați - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Anulare - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Calculator - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Calculator - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Directoare mele - + Disks Discuri @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space Spațiu total - + File system - + Contains Conține - + Free space Spațiu liber - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Mărime - + Dimension - + Duration Durată - + Type Tip - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,18 +4473,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Deschide + &Open + - Rename + Rena&me - Delete - Șterge + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Deschide + + &Open + - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - Proprietăți + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Mărime - + Contains Conține - + Type Tip - + Location - + Time created - + Time accessed - + Time modified - + Hide this file Ascundeți acest fișier - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Calculator - + Basic Info Informaţii de bază - + Computer name - + Version Versiune - + Edition - + OS build - + Type Tip - + Processor Procesor - + Memory Memorie @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Proprietăți + P&roperties + dfmplugin_recent::Recent - - + Recent Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Căutați: - + File Type: Tip Fişier: - + File Size: Dimensiune Fişier: - + Time Modified: Timp modificare: - + Time Accessed: - + Time Created: - + Reset Resetează - + All subdirectories Toate subdirectoarele - + Current directory Director curent - + Application - + Video - + Audio - + Image Imagine - + Archive Arhivă - + Text Text - + Executable - + Backup file - + Today Azi - + Yesterday Ieri - + This week Săptămâna aceasta - + Last week Săptămâna trecută - + This month Luna aceasta - + Last month Luna trecută - + This year Acest an - + Last year Anul trecut @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Căutare + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etichetă - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Deschide + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Etichetă @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Anulare - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restabiliți - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Coș de gunoi @@ -5526,17 +5529,17 @@ Coș de gunoi - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Mărime - + Contains Conține - + Type Tip - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ Următorul - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Parola + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Parola + + + + Password hint: %1 - + Cancel - button - Anulare + - - Use Key - button + + Delete - - Delete - button - Șterge + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortează după - + Display as - + Name Nume - + Time modified - + Size Mărime - + Type Tip - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button Deschide @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ru.ts b/translations/dde-file-manager_ru.ts index be34ff4b09..652173d7ce 100644 --- a/translations/dde-file-manager_ru.ts +++ b/translations/dde-file-manager_ru.ts @@ -15,99 +15,104 @@ Application - + File Manager Файловый Менеджер - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Диспетчер Файлов - это мощный и простой в использовании инструмент управления файлами, включающий поиск, копирование, удаление, сжатие / распаковку, свойства файла и другие полезные функции. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Рабочий Стол - DeepinStorage + DeviceList - - - %1 Volume - %1 Объём + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Рабочий Стол + + Disk + Диск - - - DiskControlWidget - - Disks - Диски + + Open + Открыть - - The device was not safely removed - Устройство не было безопасно извлечено + + Eject all + Извлечь все + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - В следующий раз сначала нажмите "Безопасное извлечение", а затем отключите устройство + + The device has been safely removed + - - Disk is busy, cannot unmount now - Диск занят, не могу отмонтировать сейчас + + eject + - - The device is busy, cannot eject now - Устройство занято и не может быть извлечено сейчас + + unmount + - - - DiskMountPlugin - - Disk - Диск + + + remove + - - Open - Открыть + + Operation failed + - - Eject all - Извлечь все + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Неизвестно @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Это происходит при первом вашем входе в систему. - + The identity sent by the remote computer is Идентификация, отправленная удаленным компьютером - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Если вы хотите быть абсолютно уверены в безопасности действия и его продолжения, обратитесь к системному администратору. - - - + + + System Disk Системный Диск - + Data Disk Диск Данных - + Blank %1 Disc Чистый %1 Диск - - - + + + Unknown Неизвестно - + %1 Drive %1 Привод - + %1 Encrypted %1 Зашифровано - + + %1 Volume %1 Объём - - + Scanning the device, stop it? Сканирование устройства, остановить его? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Домашняя папка @@ -223,7 +228,6 @@ - Desktop Рабочий стол @@ -233,7 +237,6 @@ - Videos Видео @@ -243,7 +246,6 @@ - Music Музыка @@ -253,7 +255,6 @@ - Pictures Изображения @@ -263,7 +264,6 @@ - Documents Документы @@ -273,7 +273,6 @@ - Downloads Загрузки @@ -282,7 +281,6 @@ - Trash Корзина @@ -293,12 +291,11 @@ - Recent Недавние - + @@ -306,7 +303,7 @@ Авто-подключение - + @@ -319,47 +316,46 @@ %1 задачи выполняются - + %1 item %1 элемент - + %1 items %1 элементов - + Unable to find the original file Не удалось найти исходный файл - - + + File has been moved or deleted Файл был перемещен или удален - - - + + You do not have permission to access this folder У вас нет права доступа к этой папке - - + + You do not have permission to traverse files in it У вас нет прав для просмотра файлов - - + + Folder is empty Папка пуста - + Loading... Загрузка... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Компьютер @@ -424,9 +419,8 @@ - - - + + Computers in LAN Компьютеры в сети @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Ярлык @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Стоп - + Shortcut Ярлык - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Бит - Access denied Доступ запрещен - Confirm button Подтвердить - - - The device has been safely removed - Устройство было безопасно извлечено - - - + + - - - + + + Open in new window Открыть в новом окне @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Открыть в новой вкладке @@ -968,8 +953,8 @@ - - + + Properties Свойства @@ -1005,7 +990,7 @@ Новый Файл - + Create symlink Создать символическую ссылку @@ -1092,70 +1077,70 @@ Добавить на диск - + Are you sure you want to erase all data on the disc? Вы уверены, что хотите стереть все данные на диске? - + Erase button Очистить - + This action cannot be undone Это действие не может быть отменено - + How do you want to use this disc? Как вы хотите использовать этот диск? - + Burn image button Записать образ - + Burn files button Записать файлы - + %1 is a duplicate file. %1 является дубликатом файла. - + Insufficient disc space. Недостаточно места на диске. - + Lost connection to drive. Потеряна связь с приводом. - + The CD/DVD drive is not ready. Try another disc. Привод CD/DVD не готов. Попробуйте другой диск. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Дисковод CD/DVD занят. Выйдите из программы, используя привод, и снова вставьте диск. - + Invalid volume name - + Unknown error Неизвестная ошибка @@ -1194,42 +1179,42 @@ Элементов: %1 - + Orange Оранжевый - + Red Красный - + Purple Пурпурный - + Navy-blue Темно-синий - + Azure Лазурь - + Green Зеленый - + Yellow Желтый - + Gray Серый @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Локальный диск - + Removable disk Съемный диск - + DVD DVD - + Network shared directory Общий сетевой каталог - - + + Android mobile device Мобильное устройство Android - + Apple mobile device Мобильное устройство Apple - + Unknown device Неизвестное устройство - + Remove button Удалить - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Очистить недавнюю историю - - - + + + Source path Путь к источнику @@ -1419,12 +1404,12 @@ Не удаётся открыть элементы в корзине, сначала восстановите их. - + Empty Trash Очистить корзину - + Location Местонахождение @@ -1524,7 +1509,7 @@ Поиск... - + My Vault Моё хранилище @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Не авторизован - - + + In trial period Пробный период + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Тип - + Time accessed Время доступа к - + Time modified Время изменения - + Time created Время создания - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Размер значка @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 элемент выбран @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! Не удалось выполнить операцию! @@ -2554,191 +2529,191 @@ Целевая папка находится внутри исходной папки! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Отмена - + Format button Форматировать - + To access the device, you must format the disk first. Are you sure you want to format it now? Чтобы получить доступ к устройству, вы должны сначала отформатировать диск. Вы уверены, что хотите отформатировать его сейчас? - + Do you want to run %1 or display its content? Вы хотите запустить %1 или отобразить его содержание? - + It is an executable text file. это исполняемый текстовый файл. - - - + + + Run button Выполнить - - + + Run in terminal button Выполнить в терминале - + Display button Дисплей - + Do you want to run %1? Вы хотите выполнить %1? - + It is an executable file. Это исполняемый файл. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Удалить без возможности восстановления %1 элементов? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Удалить - + Permanently delete %1? Удалить без возможности восстановления %1? - - + + This action cannot be undone Это действие не может быть отменено - + Are you sure you want to empty %1 item? Вы уверены в очистке %1 объекта? - + Are you sure you want to empty %1 items? Вы уверены в очистке %1 объектов? - + Empty Очистить - + Do you want to delete %1? Вы хотите удалить %1? - + Do you want to delete the selected %1 items? Вы хотите удалить выбранные %1 элемента(ов)? - + Failed to restore %1 file, the target folder is read-only Не удалось восстановить %1 файл, целевая папка доступна только для чтения - + Failed to restore %1 files, the target folder is read-only Не удалось восстановить %1 файлы, целевая папка доступна только для чтения - + "%1" already exists, please use another name. %1 существует, пожалуйста выберите другое имя. - + Device or resource busy Устройство или ресурс заняты - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Этот файл будет скрыт, если имя файла начинается с '.'. Хотите его скрыть? - + Hide - + Cancel Отмена - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, этот ярлык относится к измененному или перемещенному объекту - + Do you want to delete this shortcut? Вы хотите удалить этот ярлык? - + This file is not executable, do you want to add the execute permission and run? Этот файл не является исполняемым, вы хотите добавить разрешение на выполнение и запустить? - + The selected files contain system file/directory, and it cannot be deleted Выбранные файлы содержат системный файл/каталог и не могут быть удалены @@ -2866,278 +2841,276 @@ Пожалуйста введите пароль для расшифровки диска + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Прочее - + Close Закрыть - + Close current tab Закрыть текущую вкладку - + Back Назад - + Forward Вперед - + Switch to next tab Переключиться на следующую вкладку - + Switch to previous tab Переключиться на предыдущую вкладку - + Next file Следующий файл - + Previous file Предыдущий файл - + Switch tab by specified number between 1 to 8 Переключить вкладку по указанному номеру от 1 до 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Время изменения: %1 - + Original folder Исходная папка - + Contains: %1 Содержит: %1 - + Original file Исходный файл - + Size: %1 Размер: %1 - + Target folder Папка назначения - + + In data statistics ... - + Target file Файл назначения @@ -3466,37 +3445,37 @@ Пожалуйста подождите - + Keep both button Оставить оба - + Skip button Пропустить - - + + Replace button Заменить - + Do not ask again Не спрашивать больше - + Retry button Повторить - + Merge button Объединить @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Отмена - + Remove button Удалить @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Компьютер - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Компьютер - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Мои Каталоги - + Disks Диски @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Тип устройства - + Total space Всего - + File system Файловая система - + Contains Содержит - + Free space Свободное место - + %1 items %1 элементов - + %1 item %1 элемент @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Размер - + Dimension Размерность - + Duration Продолжительность - + Type Тип - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Вставить + &Paste + - Cut - Вырезать + Cu&t + - Copy - Копировать + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Открыть + &Open + - Rename - Переименовать + Rena&me + - Delete - Удалить + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Открыть в терминале + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Отправить в - + + Bluetooth + + + + Create link Создать ссылку - + Send to desktop Отправить на рабочий стол @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Открыть + + &Open + - + Open in new window Открыть в новом окне - + Open in new tab Открыть в новой вкладке - + Cancel sharing Отменить общий доступ - - Properties - Свойства + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Общедоступные @@ -4699,7 +4682,7 @@ Нет файлов для записи - + Unable to burn. Not enough free space on the target disk. Ошибка записи. Недостаточно свободного места на целевом диске. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Размер - + Contains Содержит - + Type Тип - + Location Местонахождение - + Time created Время создания - + Time accessed Время доступа к - + Time modified Время изменения - + Hide this file Скрыть этот файл - - + + %1 item %1 элемент - + %1 items %1 элементов @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government Для правительства - + For Enterprise Для крупного бизнеса - + Bit Бит - + Available Доступный @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Компьютер - + Basic Info Основная Информация - + Computer name Имя компьютера - + Version Версия - + Edition Издание - + OS build Билд ОС - + Type Тип - + Processor Процессор - + Memory Память @@ -4890,6 +4873,14 @@ %1 файл(ов), %2 папка(ок) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Свойства + P&roperties + dfmplugin_recent::Recent - - + Recent Недавние @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Путь - + Last access Последний доступ - + Recent Недавние @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Поиск: - + File Type: Тип Файла: - + File Size: Размер Файла: - + Time Modified: Время Изменения: - + Time Accessed: Время доступа: - + Time Created: Время создания: - + Reset Сбросить - + All subdirectories Все подкаталоги - + Current directory Текущий каталог - + Application Приложение - + Video Видео - + Audio Аудио - + Image Изображение - + Archive Архив - + Text Текст - + Executable Исполняемый - + Backup file Резервное копирование файла - + Today Сегодня - + Yesterday Вчера - + This week На этой неделе - + Last week На прошлой неделе - + This month В этом месяце - + Last month В прошлом месяце - + This year В этом году - + Last year В прошлом году @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Поиск + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Путь @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Открыть местоположение файла - + Select all Выбрать все - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Ярлык - - Bookmark - - - - + Other Другой - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Компьютеры в сети - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Открыть + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Ярлык @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Открыть местоположение файла @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Соединиться с Сервером - - - + + + Clear History Очистить Историю - + Unfavorite Удалить из Избранного - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Отмена - + Connect button Соединить - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite В Избранное @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Исходный Путь - + Time deleted Время удаления @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Восстановить - + Restore all Восстановить все - + Empty trash - + Source path Путь к источнику - + Time deleted Время удаления @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Корзина @@ -5526,17 +5529,17 @@ Корзина - + item элемент - + items элементы - + Contains %1 %2 Содержит %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Размер - + Contains Содержит - + Type Тип - + Location Местонахождение - + Time created Время создания - + Time accessed Время доступа к - + Time locked Время заблокировано @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Зашифровать Хранилище Файлов @@ -6004,19 +6007,19 @@ - - - + + + Encrypt Зашифровать - + Failed to create file vault: %1 Не удалось создать хранилище файлов: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Установить пароль хранилища @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 символов, содержит A-Z, a-z, 0-9 и символы @@ -6128,8 +6131,8 @@ Следующий - - + + Passwords do not match Пароли не совпадают @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Файловое хранилище @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,98 +6208,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Моё хранилище - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Пароль + + Cancel + - - Password hint: %1 - Подсказка пароля: %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Введите 32-значный ключ восстановления + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Удалить хранилище файлов + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - После удаления файлы в нем будут удалены безвозвратно + + Password + Пароль - - Cancel - button - Отмена + + Password hint: %1 + Подсказка пароля: %1 - - Use Key - button - Использовать ключ + + Cancel + - + Delete - button - Удалить + - - Removing... - Удаление... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Неверный пароль + + Input the 32-digit recovery key + Введите 32-значный ключ восстановления + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Неверный ключ восстановления + + Removing... + - - Failed to delete file vault - Не удалось удалить хранилище файлов + + OK + - - Deleted successfully - Успешно удалено + + Delete File Vault + - - Failed to delete - Не удалось удалить + + Deleted successfully + @@ -6307,16 +6333,10 @@ Моё хранилище - + File Vault Файловое хранилище - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Сортировать по - + Display as Отобразить как - + Name Имя - + Time modified Время изменения - + Size Размер - + Type Тип - + Icon Значок - + List Список + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Сохранить @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Сохранить - + Open button Открыть @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sc.ts b/translations/dde-file-manager_sc.ts index 95a90ee35b..43b32b633b 100644 --- a/translations/dde-file-manager_sc.ts +++ b/translations/dde-file-manager_sc.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_si.ts b/translations/dde-file-manager_si.ts index c29e1ef4ee..4aa649eac0 100644 --- a/translations/dde-file-manager_si.ts +++ b/translations/dde-file-manager_si.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer පරිගණකය @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size නිරූපකයේ ප්‍රමාණය @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer පරිගණකය - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer පරිගණකය - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer පරිගණකය - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_si_LK.ts b/translations/dde-file-manager_si_LK.ts index 7e3fb9b53d..7d4efd314c 100644 --- a/translations/dde-file-manager_si_LK.ts +++ b/translations/dde-file-manager_si_LK.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sk.ts b/translations/dde-file-manager_sk.ts index 92bed393eb..5660b6d3bb 100644 --- a/translations/dde-file-manager_sk.ts +++ b/translations/dde-file-manager_sk.ts @@ -15,99 +15,104 @@ Application - + File Manager Správca súborov - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Správca súborov je výkonný a ľahko použiteľný nástroj na správu súborov vybavený funkciami vyhľadávania, kopírovania, koša, kompresie/dekompresie, vlastností súboru a ďalších užitočných funkcií. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Plocha - DeepinStorage + DeviceList - - - %1 Volume - %1 oddiel + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Plocha + + Disk + Disk - - - DiskControlWidget - - Disks - Disky + + Open + Otvoriť - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - Disk je zaneprázdnený, teraz ho nemožno odpojiť + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Otvoriť + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Neznámy @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Systémový disk - + Data Disk Data Disk - + Blank %1 Disc - - - + + + Unknown Neznámy - + %1 Drive - + %1 Encrypted %1 zašifrované - + + %1 Volume %1 oddiel - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Domov @@ -223,7 +228,6 @@ - Desktop Pracovná plocha @@ -233,7 +237,6 @@ - Videos Videá @@ -243,7 +246,6 @@ - Music Hudba @@ -253,7 +255,6 @@ - Pictures Obrázky @@ -263,7 +264,6 @@ - Documents Dokumenty @@ -273,7 +273,6 @@ - Downloads Stiahnuté @@ -282,7 +281,6 @@ - Trash Kôš @@ -293,12 +291,11 @@ - Recent Posledné - + @@ -306,7 +303,7 @@ Automaticky pripojiť - + @@ -319,47 +316,46 @@ %1 úlohy prebiehajú - + %1 item %1 položky - + %1 items %1 vybraných položiek - + Unable to find the original file - - + + File has been moved or deleted Súbor bol presunutý alebo vymazaný - - - + + You do not have permission to access this folder Nemáte povolenie na prístup do tohto priečinka - - + + You do not have permission to traverse files in it - - + + Folder is empty Priečinok je prázdny - + Loading... Nahrávanie... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Počítač @@ -424,9 +419,8 @@ - - - + + Computers in LAN Počítače v LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Značka @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Odkaz - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Trocha - Access denied Prístup zamietnutý - Confirm button Potvrdiť - - - The device has been safely removed - - - - + + - - - + + + Open in new window Otvoriť v novom okne @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Otvoriť v novej karte @@ -968,8 +953,8 @@ - - + + Properties Vlastnosti @@ -1005,7 +990,7 @@ Nový súbor - + Create symlink Vytvoriť symlink @@ -1092,70 +1077,70 @@ Pridať na disk - + Are you sure you want to erase all data on the disc? - + Erase button Vymazať - + This action cannot be undone Túto akciu nie je možné obnoviť - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. Nedostatok miesta na disku. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ Položky: %1 - + Orange Oranžová - + Red Červená - + Purple Fialová - + Navy-blue Námornícka modrá - + Azure Azurová - + Green Zelená - + Yellow Žltá - + Gray Sivá @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Lokálny disk - + Removable disk Odpojiteľný disk - + DVD DVD - + Network shared directory Sieťový zdieľaný adresár - - + + Android mobile device Android mobilné zariadenie - + Apple mobile device Apple mobilné zariadenie - + Unknown device Neznáme zariadenie - + Remove button Odstrániť - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Vyčistiť nedávnu históriu - - - + + + Source path Zdrojová cesta @@ -1419,12 +1404,12 @@ - + Empty Trash Prázdny kôš - + Location Umiestnenie @@ -1524,7 +1509,7 @@ Vyhľadávanie... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Typ - + Time accessed - + Time modified Čas úpravy - + Time created Čas vytvorenia - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Veľkosť ikony @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 položka vybraná @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operácia zlyhala! @@ -2554,191 +2529,191 @@ Cieľový priečinok je vnútri zdrojovej zložky! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Zrušiť - + Format button Formát - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Chcete spustiť %1 alebo zobraziť jej obsah? - + It is an executable text file. Je to spustiteľný textový súbor. - - - + + + Run button Spustiť - - + + Run in terminal button Spustiť v termináli - + Display button Zobrazenie - + Do you want to run %1? Chcete spustiť %1? - + It is an executable file. Je to spustiteľný textový súbor. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Natrvalo zmazať %1 položky? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Vymazať - + Permanently delete %1? Natrvalo zmazať %1? - - + + This action cannot be undone Túto akciu nie je možné obnoviť - + Are you sure you want to empty %1 item? Naozaj chcete vymazať %1 položku? - + Are you sure you want to empty %1 items? Naozaj chcete vymazať %1 položky? - + Empty Prázdne - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" už existuje, použite iné meno. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Zrušiť - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, ktorý odkazujena tento odkaz bol zmenený alebo presunutý - + Do you want to delete this shortcut? Chcete vymazať tento odkaz? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted Vybrané súbory obsahujú systémový súbor/priečinok, a nemôžu byť zmazané @@ -2866,278 +2841,276 @@ Zadajte heslo na dešifrovanie disku + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Iné - + Close Zatvoriť - + Close current tab Zatvoriť aktuálnu kartu - + Back Späť - + Forward Dopredu - + Switch to next tab Prepnúť na ďalšiu kartu - + Switch to previous tab Prepnúť na predchádzajúcu kartu - + Next file Ďalší súbor - + Previous file Predchádzajúci súbor - + Switch tab by specified number between 1 to 8 Prepnite na kartu podľa zadaného čísla medzi 1 až 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Čas úpravy: %1 - + Original folder Pôvodný adresár - + Contains: %1 Obsahuje: %1 - + Original file Pôvodný súbor - + Size: %1 Veľkosť: %1 - + Target folder Cieľový adresár - + + In data statistics ... - + Target file Cieľový súbor @@ -3466,37 +3445,37 @@ - + Keep both button Ponechať obe - + Skip button Preskočiť - - + + Replace button Nahradiť - + Do not ask again Nepýtať sa znova - + Retry button Opakovať - + Merge button Zlúčiť @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Zrušiť - + Remove button Odstrániť @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Počítač - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Počítač - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje adresáre - + Disks Disky @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Typ zariadenia - + Total space Celkový priestor - + File system Systém súborov - + Contains Obsahuje - + Free space Voľný priestor - + %1 items %1 vybraných položiek - + %1 item %1 položky @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Veľkosť - + Dimension - + Duration Trvanie - + Type Typ - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Prilepiť + &Paste + - Cut - Vystrihnúť + Cu&t + - Copy - Kopírovať + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Otvoriť + &Open + - Rename - Premenovať + Rena&me + - Delete - Vymazať + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Otvoriť v termináli + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Odoslať na - + + Bluetooth + + + + Create link Vytvoriť odkaz - + Send to desktop Odoslať na pracovnú plochu @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Otvoriť + + &Open + - + Open in new window Otvoriť v novom okne - + Open in new tab Otvoriť v novej karte - + Cancel sharing Zrušiť zdieľanie - - Properties - Vlastnosti + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Moje zdieľania @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. Nedá sa napáliť. Na cieľovom disku nie je dostatok voľného miesta. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Veľkosť - + Contains Obsahuje - + Type Typ - + Location Umiestnenie - + Time created Čas vytvorenia - + Time accessed - + Time modified Čas úpravy - + Hide this file Skryť tento súbor - - + + %1 item %1 položky - + %1 items %1 vybraných položiek @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Trocha - + Available Dostupné @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Počítač - + Basic Info Základné informácie - + Computer name - + Version Verzia - + Edition - + OS build - + Type Typ - + Processor Procesor - + Memory Pamäť @@ -4890,6 +4873,14 @@ %1 súbor(y), %2 priečinok(y) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Vlastnosti + P&roperties + dfmplugin_recent::Recent - - + Recent Posledné @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Cesta - + Last access Posledný prístup - + Recent Posledné @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Vyhľadať: - + File Type: Typ súboru: - + File Size: Veľkosť súboru: - + Time Modified: Čas úpravy: - + Time Accessed: - + Time Created: - + Reset Obnoviť - + All subdirectories Všetky podadresáre - + Current directory Aktuálny priečinok - + Application Aplikácia - + Video Video - + Audio Zvuk - + Image Obrázok - + Archive Archív - + Text Text - + Executable Spustiteľný - + Backup file - + Today Dnes - + Yesterday Včera - + This week Tento týždeň - + Last week Minulý týždeň - + This month Tento mesiac - + Last month Minulý mesiac - + This year Tento rok - + Last year Minulý rok @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Vyhľadať + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Cesta @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otvoriť umiestnenie súboru - + Select all Vybrať všetko - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Značka - - Bookmark - - - - + Other Iný - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Počítače v LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Otvoriť + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag Značka @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otvoriť umiestnenie súboru @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Pripojiť na server - - - + + + Clear History Vymazať históriu - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Zrušiť - + Connect button Pripojiť - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Zdrojová cesta - + Time deleted Čas vymazania @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Obnoviť - + Restore all Obnoviť všetko - + Empty trash - + Source path Zdrojová cesta - + Time deleted Čas vymazania @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Kôš @@ -5526,17 +5529,17 @@ Kôš - + item Položka - + items Položky - + Contains %1 %2 Obsahuje %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Veľkosť - + Contains Obsahuje - + Type Typ - + Location Umiestnenie - + Time created Čas vytvorenia - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Heslo + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Heslo + + + + Password hint: %1 - + Cancel - button - Zrušiť + - - Use Key - button + + Delete - - Delete - button - Vymazať + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Zoradiť podľa - + Display as Zobraziť ako - + Name Meno - + Time modified Čas úpravy - + Size Veľkosť - + Type Typ - + Icon Ikona - + List Zoznam + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Uložiť @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Uložiť - + Open button Otvoriť @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sl.ts b/translations/dde-file-manager_sl.ts index 78c98572d5..32af57d8de 100644 --- a/translations/dde-file-manager_sl.ts +++ b/translations/dde-file-manager_sl.ts @@ -15,99 +15,104 @@ Application - + File Manager Upravitelj datotek - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Upravitelj datotek je zmogljivo in enostavno orodje za upravljanje datotek, s funkcijami iskanja, kopiranja, košem, stiskanjem/ razširjanjem, lastnostmi datotek in drugimi uporabnimi zadevami. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Namizje - DeepinStorage + DeviceList - - - %1 Volume - %1 Glasnost + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Namizje + + Disk + Disk - - - DiskControlWidget - - Disks - Diski + + Open + Odpri - - The device was not safely removed - Naprava ni bila varno odstranjena + + Eject all + Izvrzi vse + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Klikni "Varno odstrani" in nato odstranite + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disk je v rabi. Trenutno ga ni mogoče odklopiti + + eject + - - The device is busy, cannot eject now - Naprava je v rabi in je trenutno ni mogoče izvreči + + unmount + - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Odpri + + Operation failed + - - Eject all - Izvrzi vse + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Neznano @@ -123,88 +128,89 @@ QObject - + need authorization to access za potreb je potrebna overitev - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. To se zgodi ob prvi prijavi v računalnik. - + The identity sent by the remote computer is Identiteta, ki jo je poslal oddaljeni računalnik, je - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Če želite biti povsem prepričani, da je nadaljevanje varno, kontaktirajte skrbnika sistema - - - + + + System Disk Sistemski disk - + Data Disk Podatkovni disk - + Blank %1 Disc Prazen %1 disk - - - + + + Unknown Neznano - + %1 Drive %1 pogon - + %1 Encrypted %1 šifriran - + + %1 Volume %1 Glasnost - - + Scanning the device, stop it? Preverjanje naprave. Zaustavim? - + Unmount failed Odklop ni bil uspešen - + Cannot stop scanning device Ne morem zaustaviti skeniranja naprave - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Domov @@ -223,7 +228,6 @@ - Desktop Namizje @@ -233,7 +237,6 @@ - Videos Videoposnetki @@ -243,7 +246,6 @@ - Music Glasba @@ -253,7 +255,6 @@ - Pictures Slike @@ -263,7 +264,6 @@ - Documents Dokumenti @@ -273,7 +273,6 @@ - Downloads Prenosi @@ -282,7 +281,6 @@ - Trash Koš @@ -293,12 +291,11 @@ - Recent Nedavno - + @@ -306,7 +303,7 @@ Samodejno priklopi - + @@ -319,47 +316,46 @@ %1 opravil v obdelavi - + %1 item %1 element - + %1 items %1 elementov - + Unable to find the original file Ne morem najti izvirnih datotek - - + + File has been moved or deleted Datoteka je bila premaknjena ali izbrisana - - - + + You do not have permission to access this folder Nimate dovoljenja za dostopanje do te mape - - + + You do not have permission to traverse files in it Nimate dovoljenja za prehod preko datotek v njej - - + + Folder is empty Mapa je prazna - + Loading... Nalagam... @@ -408,7 +404,7 @@ - + Built-in disks Vgrajeni diski @@ -416,7 +412,6 @@ - Computer Računalnik @@ -424,9 +419,8 @@ - - - + + Computers in LAN Računalniki v LAN omrežju @@ -434,7 +428,7 @@ - + Loop partitions Razdelki v zanki @@ -442,7 +436,8 @@ - + + Mounted sharing folders Priklopljene mape v skupni rabi @@ -450,7 +445,6 @@ - My shares Moje delitve @@ -458,7 +452,7 @@ - + Network Omrežje @@ -466,7 +460,7 @@ - + Mounted partitions and discs Priklopljeni razdelki in diski @@ -474,7 +468,7 @@ - + Partitions Particije @@ -482,7 +476,7 @@ - + Quick access Hitri dostop @@ -490,7 +484,7 @@ - + Tag Oznaka @@ -498,7 +492,7 @@ - + Added tags Dodane oznake @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Prikazuj priklopljene Samba delitve @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Zaustavi - + Shortcut Bližnjica - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Zavrnjen dostop - Confirm button Potrdi - - - The device has been safely removed - Naprava je bila varno odstranjena - - - + + - - - + + + Open in new window Odpri v novem oknu @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Odpri v novem zavihku @@ -968,8 +953,8 @@ - - + + Properties Lastnosti @@ -1005,7 +990,7 @@ Nova datoteka - + Create symlink Ustvari simbolno povezavo @@ -1092,70 +1077,70 @@ Dodaj na disk - + Are you sure you want to erase all data on the disc? Ali ste prepričani, da želite izbrisati vse podatke na disku? - + Erase button Izbriši - + This action cannot be undone Tega dejanja ni mogoče razveljaviti - + How do you want to use this disc? Kako želite uporabljati ta disk? - + Burn image button Zapiši posnetek - + Burn files button Zapiši datoteke - + %1 is a duplicate file. %1 je podvojena datoteka - + Insufficient disc space. Na disku ni dovolj prostora, - + Lost connection to drive. Izgubljena povezava s pogonom. - + The CD/DVD drive is not ready. Try another disc. CD/DVD pogon ni pripravljen. Poskusite z drugim diskom. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD pogon je v rabi. Zaprite program, ki ga uporablja in ponovno vstavite disk v pogon. - + Invalid volume name - + Unknown error Neznana napaka @@ -1194,42 +1179,42 @@ Predmeti: %1 - + Orange Oranžna - + Red Rdeča - + Purple Vijolična - + Navy-blue Mornarsko modra - + Azure Nebesno modra - + Green Zelena - + Yellow Rumena - + Gray Siva @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Lokalni disk - + Removable disk Zunanji disk - + DVD DVD - + Network shared directory Omrežna mapa v skupni rabi - - + + Android mobile device Mobilna naprava Android - + Apple mobile device Mobilna naprava Apple - + Unknown device Neznana naprava - + Remove button Odstrani - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Počisti nedavno zgodovino - - - + + + Source path Izhodišče @@ -1419,12 +1404,12 @@ Ne morem odpreti predmetov v košu. Najprej jih obnovite - + Empty Trash Izprazni koš - + Location Lokacija @@ -1524,7 +1509,7 @@ Iščem... - + My Vault Moj trezor @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Ni overjeno - - + + In trial period Preizkusna doba + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Vrsta - + Time accessed Čas dostopa - + Time modified Čas spremembe - + Time created Čas nastanka - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Velikost ikone @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 izbran element @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button V redu - + Operation failed! Operacija ni uspela! @@ -2554,191 +2529,191 @@ Ciljna mapa je znotraj izvorne mape! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Prekini - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? Za dostop do naprave morate najprej formatirati disk. Jo želite zdaj formatirati? - + Do you want to run %1 or display its content? Želite zagnati %1 ali prikazati pripadajočo vsebino? - + It is an executable text file. To je izvršljiva besedilna datoteka. - - - + + + Run button Zaženi - - + + Run in terminal button Zaženi v terminalu - + Display button Prikaži - + Do you want to run %1? Hočete zagnati %1? - + It is an executable file. To je izvršljiva datoteka. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Izbranih %1 predmetov ni mogoče premakniti v koš. Ali jih želite trajno izbrisati? - + Permanently delete %1 items? Trajno izbrišem %1 predmetov? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Izbriši - + Permanently delete %1? Trajno izbrišem %1? - - + + This action cannot be undone Tega dejanja ni mogoče razveljaviti - + Are you sure you want to empty %1 item? Ali ste prepričani, da želite počistiti %1 predmet? - + Are you sure you want to empty %1 items? Ali ste prepričani, da želite počistiti %1 predmetov? - + Empty Prazen - + Do you want to delete %1? Želite izbrisati %1? - + Do you want to delete the selected %1 items? Ali žeite izbrisati izbranih %1 predmetov? - + Failed to restore %1 file, the target folder is read-only Neuspešno obnavljanje %1 datoteke. Ciljna mapa je zgolj bralna - + Failed to restore %1 files, the target folder is read-only Neuspešno obnavljanje %1 datotek. Ciljna mapa je zgolj bralna - + "%1" already exists, please use another name. "%1" že obstaja. Uporabite drug naziv. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Prekini - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, kamor kaže ta bližnjica, je bil spremenjen ali premaknjen - + Do you want to delete this shortcut? Želite izbrisati to bližnjico? - + This file is not executable, do you want to add the execute permission and run? Ta datoteka ni izvršljiva. Bi radi dodali dovoljenje za izvedbo in jo zagnali? - + The selected files contain system file/directory, and it cannot be deleted Izbrane datoteke vsebujejo sistemske datoteke/mape, zato jih ni mogoče izbrisati @@ -2866,278 +2841,276 @@ Vnesite geslo za dešifriranje diska + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Drugo - + Close Zapri - + Close current tab Zapri trenuten zavihek - + Back Nazaj - + Forward Naprej - + Switch to next tab Preklopi na naslednji zavihek - + Switch to previous tab Preklopi na prejšnji zavihek - + Next file Naslednja datoteka - + Previous file Prejšnja datoteka - + Switch tab by specified number between 1 to 8 Preklopite na zavihek z določeno številko med 1 in 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Čas spremembe: %1 - + Original folder Izvorna mapa - + Contains: %1 Vsebuje: %1 - + Original file Izvirnik datoteke - + Size: %1 Velikost: %1 - + Target folder Ciljna mapa - + + In data statistics ... - + Target file Ciljna datoteka @@ -3466,37 +3445,37 @@ Počakajte - + Keep both button Ohrani oboje - + Skip button Preskoči - - + + Replace button Zamenjaj - + Do not ask again Ne sprašuje več - + Retry button Znova - + Merge button Združi @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Prekini - + Remove button Odstrani @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Računalnik - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Računalnik - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje mape - + Disks Diski @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Vrsta naprave - + Total space Celoten prostor - + File system Datotečni sistem - + Contains Vsebuje - + Free space Nezaseden prostor - + %1 items %1 predmetov - + %1 item %1 predmet @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Velikost - + Dimension Velikost - + Duration Trajanje - + Type Vrsta - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Prilepi + &Paste + - Cut - Izreži + Cu&t + - Copy - Kopiraj + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Odpri + &Open + - Rename - Preimenuj + Rena&me + - Delete - Izbriši + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Odpri v terminalu + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Pošlji v/na - + + Bluetooth + + + + Create link Ustvari povezavo - + Send to desktop Pošlji na namizje @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Odpri + + &Open + - + Open in new window Odpri v novem oknu - + Open in new tab Odpri v novem zavihku - + Cancel sharing Prekliči deljenje - - Properties - Lastnosti + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Predmeti v skupni rabi @@ -4700,7 +4683,7 @@ Ni datotek za zapisovanje - + Unable to burn. Not enough free space on the target disk. Ne morem zapisati. Na ciljnem disku ni dovolj prostora. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Velikost - + Contains Vsebuje - + Type Vrsta - + Location Lokacija - + Time created Čas nastanka - + Time accessed Čas dostopa - + Time modified Čas spremembe - + Hide this file Skrij to datoteko - - + + %1 item %1 predmet - + %1 items %1 predmetov @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Na voljo @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Računalnik - + Basic Info Osnovne informacije - + Computer name - + Version Različica - + Edition Izdaja - + OS build - + Type Vrsta - + Processor Procesor - + Memory Pomnilnik @@ -4891,6 +4874,14 @@ %1 datotek, %2 map + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Lastnosti + P&roperties + dfmplugin_recent::Recent - - + Recent Nedavno @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Pot - + Last access Zadnji dostop - + Recent Nedavno @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Iskanje: - + File Type: Vrsta datoteke: - + File Size: Velikost datoteke: - + Time Modified: Čas spremembe: - + Time Accessed: Čas dostopa: - + Time Created: Čas stvaritve: - + Reset Ponastavi - + All subdirectories Vse podmape - + Current directory Trenutna mapa - + Application Aplikacija - + Video Video - + Audio Zvok - + Image Slika - + Archive Arhiv - + Text Besedilo - + Executable Zagonska - + Backup file Varnostna kopija - + Today Danes - + Yesterday Včeraj - + This week Ta teden - + Last week Prejšnji teden - + This month Ta mesec - + Last month Prejšnji mesec - + This year To leto - + Last year Prejšnje leto @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Išči + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Pot @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Odpri mapo datoteke - + Select all Izberi vse - + Path @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Oznaka - - Bookmark - - - - + Other Drugo - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Računalniki v LAN omrežju - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Odpri + &Open + @@ -5191,7 +5184,7 @@ - Properties + P&roperties @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Oznaka @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Odpri mapo datoteke @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Poveži s strežnikom - - - + + + Clear History Počisti zgodovino - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Prekini - + Connect button Poveži - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Izvorna pot - + Time deleted Čas brisanja @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Obnovi - + Restore all Obnovi vse - + Empty trash - + Source path Izhodišče - + Time deleted Čas brisanja @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Koš @@ -5527,17 +5530,17 @@ Koš - + item Predmet - + items Predmeti - + Contains %1 %2 Vsebuje %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Velikost - + Contains Vsebuje - + Type Vrsta - + Location Lokacija - + Time created Čas nastanka - + Time accessed Čas dostopa - + Time locked Zaklenjen čas @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Šifiraj trezor datotek @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Šifriraj - + Failed to create file vault: %1 Trezorja datotek ni bilo mogoče ustvariti: %1 - + OK V redu @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Določi geslo trezorja @@ -6094,7 +6097,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 znakov, vsebuje A-Z, a-z, 0-9, in simbole @@ -6129,8 +6132,8 @@ Naprej - - + + Passwords do not match Gesli se ne ujemata @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Trezor datotek @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6198,7 +6201,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6206,98 +6209,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Moj trezor - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Geslo + + Cancel + - - Password hint: %1 - Namig za geslo: %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Vnesite 32-mestni obnovitveni ključ + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Izbriši trezor datotek + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Ko je zbrisan, so podatki v njemu za vedno izgubljeni + + Password + Geslo - - Cancel - button - Prekini + + Password hint: %1 + Namig za geslo: %1 - - Use Key - button - Uporabi ključ + + Cancel + - + Delete - button - Izbriši + - - Removing... - Odstranjevanje... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - V redu + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Napačno geslo + + Input the 32-digit recovery key + Vnesite 32-mestni obnovitveni ključ + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Napačen obnovitveni ključ + + Removing... + - - Failed to delete file vault - Trezorja datotek ni bilo mogoče izbrisati + + OK + - - Deleted successfully - Upešeno izbrisano + + Delete File Vault + - - Failed to delete - Brisanje ni uspelo + + Deleted successfully + @@ -6308,16 +6334,10 @@ Moj trezor - + File Vault Trezor datotek - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed Ni pravic za %1 @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Razvrsti po - + Display as Prikaži kot - + Name Ime - + Time modified Čas spremembe - + Size Velikost - + Type Vrsta - + Icon Ikona - + List Seznam + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Shrani @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Shrani - + Open button Odpri @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sq.ts b/translations/dde-file-manager_sq.ts index d6b0f0d61b..6baec1bf8b 100644 --- a/translations/dde-file-manager_sq.ts +++ b/translations/dde-file-manager_sq.ts @@ -15,99 +15,104 @@ Application - + File Manager Përgjegjës Kartelash - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Përgjegjësi i Kartelave është një mjet i fuqishëm dhe i kollajtë për t’u përdorur për administrim kartelash, që përmban kërkim, kopjim, shpënie te hedhurinat, ngjeshje/çhngjeshje, veti kartelash dhe funksione të tjera të dobishme. - - DAttachedProtocolDevice - - - %1 on %2 - %1 në %2 - - - - DeepinStorage - - - - %1 Volume - Vëllim %1 - - DesktopMain - + Desktop Desktop - DiskControlWidget + DeviceList - + Disks Disqe - - - The device was not safely removed - Pajisja s’u hoq në mënyrë të parrezik - - - - Click "Safely Remove" and then disconnect it next time - Herës tjetër klikoni mbi “Hiqe Në Mënyrë të Parrezik” dhe mandej shkëputeni - - - - Disk is busy, cannot unmount now - Disku është i zënë, s’mund të çmontohet tani - - - - The device is busy, cannot eject now - Pajisja është e zënë, s’mund të nxirret tani - DiskMountPlugin - + Disk Disk - + Open Hape - + Eject all Nxirri krejt + + DockItemDataManager + + + The device has been safely removed + Pajisja u hoq në mënyrë të parrezik + + + + eject + nxirre + + + + unmount + çmontoje + + + + + remove + hiqe + + + + Operation failed + Veprimi dështoi + + + + Device (%1) is busy, cannot %2 now. + Pajisja (%1) është e zënë, s’mund të %2 tani. + + FileDialogHandle - + All Files Krejt Kartelat + + FileOperateBaseWorker + + + The file name or the path is too long! + Emri ose shtegu për te kartela është shumë i gjatë! + + MimeTypeDisplayManager - + Unknown I panjohur @@ -123,88 +128,89 @@ QObject - + need authorization to access lyp autorizim për hyrje - + Can't verify the identity of %1. S’verifikohet dot identiteti i %1. - + This happens when you log in to a computer the first time. Kjo ndodh kur bëni hyrjen për herë të parë në një kompjuter. - + The identity sent by the remote computer is Identiteti i dërguar nga kompjuteri i largët është - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Nëse doni të jeni absolutisht i sigurt se, të vazhdohet, është pa rrezik, lidhuni me përgjegjësin e sistemit. - - - + + + System Disk Disk Sistemi - + Data Disk Disk të Dhënash - + Blank %1 Disc Zbardh Diskun %1 - - - + + + Unknown E panjohur - + %1 Drive Pajisje %1 - + %1 Encrypted %1 i Fshehtëzuar - + + %1 Volume Vëllim %1 - - + Scanning the device, stop it? Po skanohet pajisja, të ndalet? - + Unmount failed Çmontimi dështoi - + Cannot stop scanning device S’ndalet dot pajisje skanimi - + + %1 on %2 %1 në %2 @@ -213,7 +219,6 @@ - Home Shtëpi @@ -223,7 +228,6 @@ - Desktop Desktop @@ -233,7 +237,6 @@ - Videos Video @@ -243,7 +246,6 @@ - Music Muzikë @@ -253,7 +255,6 @@ - Pictures Foto @@ -263,7 +264,6 @@ - Documents Dokumente @@ -273,7 +273,6 @@ - Downloads Shkarkime @@ -282,7 +281,6 @@ - Trash Hedhurina @@ -293,12 +291,11 @@ - Recent Së fundi - + @@ -306,7 +303,7 @@ Vetëmontoje - + @@ -319,47 +316,46 @@ %1 punë në përmbushje e sipër - + %1 item %1 objekt - + %1 items %1 objekte - + Unable to find the original file S’arrihet të gjendet kartela origjinale - - + + File has been moved or deleted Kartela është lëvizur ose fshirë - - - + + You do not have permission to access this folder S’keni leje të hyni te kjo dosje - - + + You do not have permission to traverse files in it S’keni leje për të kaluar kartela në të - - + + Folder is empty Dosja është e zbrazët - + Loading... Po ngarkohet… @@ -408,7 +404,7 @@ - + Built-in disks Disqe të brendshëm @@ -416,7 +412,6 @@ - Computer Kompjuter @@ -424,9 +419,8 @@ - - - + + Computers in LAN Kompjutera në LAN @@ -434,7 +428,7 @@ - + Loop partitions Pjesë “loop” @@ -442,7 +436,8 @@ - + + Mounted sharing folders Dosje të përbashkëta të montuara @@ -450,7 +445,6 @@ - My shares Ndarjet e mia @@ -458,7 +452,7 @@ - + Network Rrjet @@ -466,7 +460,7 @@ - + Mounted partitions and discs Pjesë dhe disqe të montuar @@ -474,7 +468,7 @@ - + Partitions Pjesë @@ -482,7 +476,7 @@ - + Quick access Përdorim i shpejtë @@ -490,7 +484,7 @@ - + Tag Etiketë @@ -498,7 +492,7 @@ - + Added tags Etiketa të shtuara @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Vazhdo të shfaqësh ndarje Samba të montuara @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Ndale - + Shortcut Shkurtore - + This system wallpaper is locked. Please contact your admin. Ky sfond sistemi është i kyçur. Ju lutemi, lidhuni me përgjegjësin tuaj. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopje) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopje %1) @@ -909,33 +901,26 @@ Bit - Access denied Hyrja u mohua - Confirm button Ripohojeni - - - The device has been safely removed - Pajisja u hoq në mënyrë të parrezik - - - + + - - - + + + Open in new window Hape në dritare të re @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Hape në skedë të re @@ -968,8 +953,8 @@ - - + + Properties Veti @@ -1005,7 +990,7 @@ Kartelë e Re - + Create symlink Krijo simlidhje @@ -1092,70 +1077,70 @@ Shtoje në disk - + Are you sure you want to erase all data on the disc? Jeni i sigurt se doni të fshihen krejt të dhënat te disku? - + Erase button Fshije - + This action cannot be undone Ky veprim s’mund të zhbëhet - + How do you want to use this disc? Si doni ta përdorni këtë disk? - + Burn image button Shkruani pamje - + Burn files button Shkruani kartela - + %1 is a duplicate file. %1 është kartelë e përsëdytur. - + Insufficient disc space. Hapësirë disku e pamjaftueshme. - + Lost connection to drive. Humbi lidhja me pajisjen. - + The CD/DVD drive is not ready. Try another disc. Pajisja CD/DVD s’është gati. Provoni disk tjetër. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Pajisja CD/DVD është e zënë. Dilni nga programi duke përdorur pajisjen dhe rifuteni pajisjen. - + Invalid volume name Emër i pavlefshëm vëllimi - + Unknown error Gabim i panjohur @@ -1194,42 +1179,42 @@ Objekte: %1 - + Orange Portokalli - + Red E kuqe - + Purple E purpurt - + Navy-blue Blu e errët - + Azure E kaltër - + Green E gjelbër - + Yellow E verdhë - + Gray Gri @@ -1305,76 +1290,76 @@ S’hyhet dot - + User directory Drejtori përdoruesi - + Local disk Disk vendor - + Removable disk Disk i heqshëm - + DVD DVD - + Network shared directory Drejtori e përbashkët në rrjet - - + + Android mobile device Pajisje celulare Android - + Apple mobile device Pajisje celulare Apple - + Unknown device Pajisje e panjohur - + Remove button Hiqe - + Do you want to remove this item? Doni të hiqet ky objekt? - + Do yout want to remove %1 items? Doni të hiqen %1 objekte? - + It does not delete the original files Kjo nuk sjell fshirjen e kartelave origjinale - + Clear recent history Spastro historik së fundi - - - + + + Source path Shteg burimi @@ -1419,12 +1404,12 @@ S’arrihet të hapen objekte te hedhurinat, ju lutemi, së pari rikthejini - + Empty Trash Zbraz Hedhurinat - + Location Vendndodhje @@ -1524,7 +1509,7 @@ Po kërkohet… - + My Vault Kasaforta Ime @@ -1719,7 +1704,7 @@ Dështoi - + Sidebar Anështyllë @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + E paautorizuar + + + + + In trial period + Në periudhë prove + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized E paautorizuar - - + + In trial period Në periudhë prove @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Koleksion i ri @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Sistemoni desktopin - + Desktop options Sistemoji sipas - + Organize by Koleksion vetjak - + Custom collection Lloj - + Type Lloji - + Time accessed Kohë përdorimi - + Time modified Kohë ndryshimi - + Time created Kohë krijimi - + Create a collection Krijoni një koleksion - - - Display Size - Madhësi Shfaqjeje - - - - Smaller - Më e vogël - - - - Normal - Normale - - - - Larger - E madhe - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Mundësi desktopi - + Auto arrange icons Vetësistemoji ikonat @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Madhësi shfaqjeje - - - + Icon size Madhësi ikonash @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Përgjegjësi i Kartelave do të përditësohet me një version të ri dhe gjatë përditësimit, punët që janë duke u bërë, do të humbin. Doni të përditësohet tani? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Shërbimet desktop do të përditësohen me një version të ri dhe gjatë përditësimit punët që janë duke u bërë do të humbnin. Doni të përditësohet tani? - + Update button Përditësoje - + Cancel button Anuloje @@ -2385,7 +2360,7 @@ - + %1 item selected %1 objekt i përzgjedhur @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Veprimi dështoi! @@ -2554,191 +2529,191 @@ Dosja e synuar gjendet brenda dosjes burim! - + The passphrase is needed to access encrypted data on %1. Frazëkalimi është i nevojshëm për të hyrë te të dhëna të fshehtëzuara në %1. - - - - - - - - + + + + + + + + Cancel button Anuloje - + Format button Formatoje - + To access the device, you must format the disk first. Are you sure you want to format it now? Që të përdorni pajisjen, së pari duhet ta formatoni diskun. Jeni i sigurt se doni të formatohet tani? - + Do you want to run %1 or display its content? Doni që %1 të xhirohet, apo të shfaqet lënda e saj? - + It is an executable text file. Është kartelë tekst e ekzekutueshme. - - - + + + Run button Xhiroje - - + + Run in terminal button Xhiroje në terminal - + Display button Shfaqe - + Do you want to run %1? Doni të xhirohet %1? - + It is an executable file. Është kartelë e ekzekutueshme. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? S’shpihen dot te hedhurinat %1 e përzgjedhur. Doni të fshihen përgjithmonë? - + Permanently delete %1 items? Të fshihen përgjithmonë %1 objekte? - + Cannot move "%1" to the trash. Do you want to permanently delete it? S’shpihet dot te hedhurinat “%1”. Doni të fshihet përgjithmonë? - - - + + + Delete button Fshije - + Permanently delete %1? Të fshihet përgjithmonë %1? - - + + This action cannot be undone Ky veprim s’mund të zhbëhet - + Are you sure you want to empty %1 item? Jeni i sigurt se doni të zbrazet %1 objekt? - + Are you sure you want to empty %1 items? Jeni i sigurt se doni të zbrazen %1 objekte? - + Empty Zbraze - + Do you want to delete %1? Doni të fshihet %1? - + Do you want to delete the selected %1 items? Doni të fshihen %1 objektet e përzgjedhur? - + Failed to restore %1 file, the target folder is read-only S’u arrit të rikthehet %1 kartelë, dosja e synuar është vetëm-lexim - + Failed to restore %1 files, the target folder is read-only S’u arrit të rikthehen %1 kartela, dosja e synuar është vetëm-lexim - + "%1" already exists, please use another name. “%1” ekziston tashmë, ju lutemi, përdorni një emër tjetër. - + Device or resource busy Pajisje ose burim i zënë - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Kjo kartelë do të kalojë në fshehje, nëse emri i kartelës fillon me '.'. Doni të fshihet? - + Hide Fshihe - + Cancel Anuloje - + Unable to access %1 S’arrihet të hyhet në %1 - + %1 that this shortcut refers to has been changed or moved %1, së cilës i referohet kjo shkurtore, është ndryshuar ose lëvizur - + Do you want to delete this shortcut? Doni të fshihet kjo shkurtore? - + This file is not executable, do you want to add the execute permission and run? Kjo kartelë s’është e ekzekutueshme, doni të shtohet leja e ekzekutimit dhe të xhirohet? - + The selected files contain system file/directory, and it cannot be deleted Kartelat e përzgjedhura përmbajnë kartelë/drejtori sistemit dhe s’mund të fshihen @@ -2866,278 +2841,276 @@ Që të shfshehtëzohet disku, jepni fjalëkalimin + + dfmbase::RightValueWidget + + + Copy complete info + Kopjo hollësi të plota + + dfmbase::SettingBackend - + Always open folder in new window Hap përherë dosje në dritare të re - + Open file: Hapni kartelë: - + Click Klikim - + Double click Dyklikim - + New window and tab Dritare dhe skedë e re - + Open from default window: Hape prej dritares parazgjedhje: - - + + Computer Kompjuter - - + + Home Shtëpi - - + + Desktop Desktop - - + + Videos Video - - + + Music Muzikë - - + + Pictures Foto - - + + Documents Dokumente - - + + Downloads Shkarkime - + Open in new tab: Hape në skedë të re: - + Current Directory Drejtoria e Tanishme - + Files and folders Kartela dhe dosje - + Show hidden files Shfaq kartela të fshehura - + Show file extensions Shfaq zgjatime kartelash - + Mix sorting of files and folders Renditje e përzierë kartelash dhe dosjesh - + Workspace Hapësirë pune - + View Shihni - + Default size: Madhësi parazgjedhje: - + Extra small Ekstra e vogël - + Small E vogël - + Medium Mesatare - + Large E madhe - + Extra large Ekstra e madhe - + + Tree + Pemë + + + Default view: Pamje parazgjedhje: - + Icon Ikonë - + List Listë - + + Restore default view mode for all directories + Rikthe mënyrë parazgjedhje parjeje për krejt drejtoritë + + + + Restore default view mode + Rikthe mënyrë parazgjedhje parjeje + + + Thumbnail preview Paraparje miniaturash - + Compressed file preview Paraparje kartelash të ngjeshura - + Text preview Paraparje teksti - + Document preview Paraparje dokumenti - + Image preview Paraparje figure - + Video preview Paraparje e videos - + Music preview Paraparje muzikore - + The remote environment shows thumbnail previews Mjedisi i largët shfaq paraparje miniaturë - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Aktivizimi i paraparjes së miniaturave mund të bëjë që drejtoria e largët të ngarkohet më ngadalë, ose veprimi të ngrijë - + Advanced Të mëtejshme - - Search - Kërko - - - - Auto index internal disk - Vetëindekso disqe të brendshëm - - - - Index external storage device after connected to computer - Indekso pajisje të jashtme depozitimi pas lidhjes me kompjuterin - - - - Full-Text search - Kërkim në Krejt Tekstin - - - + Mount Montoje - + Auto mount Vetëmontim - + Open after auto mount Hape pas vetëmontimi - - Show item counts and sizes in the path of mounted MTP devices - Shfaq numër dhe madhësi objektesh te shtegu i pajisjeve MTP të montuara - - - + Merge the entries of Samba shared folders Përzje zërat e dosjeve pjesë Samba - + Switching the entry display may lead to failed mounting Ndërrimi i shfaqjes së zërit mund të shpjerë në dështim të montimit - + Use the file chooser dialog of File Manager Përdorni dialogun e zgjedhjes së kartelave të Përgjegjësit të Kartelave - + Ask for my confirmation when deleting files Kërko ripohim prej meje, kur fshihen kartela @@ -3301,51 +3274,56 @@ + Switch to tree view + Kalo në pamjen si pemë + + + Others Të tjera - + Close Mbylle - + Close current tab Mbyll skedën e tanishme - + Back Mbrapsht - + Forward Përpara - + Switch to next tab Kalo te skeda pasuese - + Switch to previous tab Kalo te skeda e mëparshme - + Next file Kartela pasuese - + Previous file Kartela e mëparshme - + Switch tab by specified number between 1 to 8 Kaloni nga një skedë në tjetër, përmes numri të dhënë nga 1 deri në 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Kohë kur u ndryshua: %1 - + Original folder Dosja origjinale - + Contains: %1 Përmban: %1 - + Original file Kartelë origjinale - + Size: %1 Madhësi: %1 - + Target folder Dosja e synuar - + + In data statistics ... Në statistika të dhënash … - + Target file Kartela e synuar @@ -3466,37 +3445,37 @@ Ju lutemi, prisni - + Keep both button Mbaji të dyja - + Skip button Anashkaloje - - + + Replace button Zëvendësoje - + Do not ask again Mos pyet sërish - + Retry button Riprovo - + Merge button Përzieji @@ -3510,7 +3489,7 @@ Që të mbrohen dosje të përbashkëta, jepni një fjalëkalim - + Set a password on the shared folder for non-anonymous access Caktoni një fjalëkalim mbi dosjen e ndarë me të tjerë, për përdorim jo anonim @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Na ndjeni, s’arrihet të lokalizohet drejtoria juaj për përdorim të shpejtë, mos e keni hequr? - + Cancel button Anuloje - + Remove button Hiqe @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Kompjuter - + Computer display items - + Hide built-in disks on the Computer page Fshih disqe të brendshëm te faqja Kompjuter - + Hide loop partitions on the Computer page Fshih pjesë “loop” te faqja Kompjuter - + Show file system on disk icon Shfaq sistem kartelash në ikonë disku - + Hide My Directories on the Computer page Fshihi Drejtoritë e Mia te faqja Kompjuter - + Hide 3rd party entries on the Computer page Fshih zëra prej palësh të treta te faqja Kompjuter @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - Tani po shkyçet pajisja + Shkyçja e pajisjes dështoi - + Wrong password Fjalëkalim i gabuar - + Rename failed Riemërtimi dështoi - + The device is busy and cannot be renamed now Pajisja është e zënë dhe s’mund të riemërtohet tani - + Format failed Formatimi dështoi - + The device is busy and cannot be formatted now Pajisja është e zënë dhe s’mund të formatohet tani - + Mount error Gabim montimi disku - + Cannot access %1 S’hyhet dot në %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Kompjuter - + %1 is read-only. Do you want to enable read and write permissions for it? %1 është vetëm për lexim. Doni të aktivizohen leje shkrimi dhe leximi për të? - + Once enabled, read/write permission will be granted permanently Pasi të aktivizohen, lejet për lexim/shkrim do të akordohen për gjithnjë - + Cancel Anuloje - + Enable Now Aktivizoji Tani @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Drejtoritë e Mia - + Disks Disqe @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Hollësi elementare - + Device type Lloj pajisjeje - + Total space Hapësirë gjithsej - + File system Sistem kartelash - + Contains Përmban - + Free space Hapësirë e lirë - + %1 items %1 objekte - + %1 item %1 objekt @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 në %2 @@ -3990,27 +3968,27 @@ Madhësi - + Dimension Përmasë - + Duration Kohëzgjatje - + Type Lloj - + Accessed Përdorur më - + Modified Ndryshuar më @@ -4280,7 +4258,7 @@ Failed to move the file %1 to trash - + S’u arrit të shpihej kartela %1 te hedhurinat @@ -4297,7 +4275,7 @@ Failed, the file size of %1 must be less than 4 GB - Dështoi, madhësia %1 e kartelave duhet të jetë më pak se 4GB + Dështoi, madhësia e kartelës për %1 duhet të jetë më pak se 4GB @@ -4357,7 +4335,7 @@ Copy or Cut File failed! - + Kopjimi ose Prerja e Kartelës dështoi! @@ -4387,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + S’u arrit të shpihej kartela %1 te hedhurinat, shkaku: %2 @@ -4406,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Kopjimi ose Prerja e Kartelës dështoi,shkaku: %1 @@ -4439,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Gabim riemërtimi kartele - + Failed to create the directory S’u arrit të krijohej drejtoria - + Failed to create the file S’u arrit të krijohet kartela - + link file error gabim lidhjeje kartele - - + + Failed to modify file permissions - + S’u arrit të ndryshohen leje mbi kartela @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Ngjite + &Paste + &Ngjite - Cut - Prije + Cu&t + &Prije - Copy - Kopjoje + &Copy + &Kopjoje dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Hape + &Open + &Hap - Rename - Riemërtoni + Rena&me + Ri&emërtojeni - Delete - Fshije + &Delete + &Fshije @@ -4579,6 +4557,11 @@ Open in terminal Hape në terminal + + + Reverse select + Ktheje së prapthi përzgjedhjen + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Dërgoje te - + + Bluetooth + Bluetooth + + + Create link Krijo lidhje - + Send to desktop Dërgoje në desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Ndarje me të tjerët - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Hape + + &Open + &Hap - + Open in new window Hape në dritare të re - + Open in new tab Hape në skedë të re - + Cancel sharing Anuloje ndarjen me të tjerët - - Properties - Veti + + P&roperties + &Veti dfmplugin_myshares::MyShares - + My Shares Ndarjet e Mia @@ -4700,7 +4683,7 @@ S’ka kartela për shkrim - + Unable to burn. Not enough free space on the target disk. S’arrihet të shkruhet. S’ka hapësirë të mjaftueshme te disku i synuar. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Hollësi elementare - + Size Madhësi - + Contains Përmban - + Type Lloj - + Location Vendndodhje - + Time created Kohë krijimi - + Time accessed Kohë përdorimi - + Time modified Kohë ndryshimi - + Hide this file Fshihe këtë kartelë - - + + %1 item %1 objekt - + %1 items %1 objekte @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Për Siguri të Fshehtash - + For Government Për Qeveri - + For Enterprise Për Ndërmarrje - + Bit Bit - + Available Të passhme @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Kompjuter - + Basic Info Hollësi Elementare - + Computer name Emër kompjuteri - + Version Version - + Edition Edicion - + OS build Montim OS-i - + Type Lloj - + Processor Procesor - + Memory Kujtesë @@ -4891,6 +4874,14 @@ %1 kartelë(a), %2 dosje(e) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + Nuk lejohen %1 + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Veti + P&roperties + &Veti dfmplugin_recent::Recent - - + Recent Së fundi @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Shteg - + Last access Përdorimi i fundit - + Recent Së fundi @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Kërko: - + File Type: Lloj Kartele: - + File Size: Madhësi Kartele: - + Time Modified: Kohë Kur u Ndryshua: - + Time Accessed: Kohë Kur u Hap: - + Time Created: Kohë Kur u Krijua: - + Reset Ktheje te parazgjedhjet - + All subdirectories Krejt nëndrejtoritë - + Current directory Drejtoria e tanishme - + Application Aplikacion - + Video Video - + Audio Audio - + Image Figurë - + Archive Arkiv - + Text Tekst - + Executable E ekzekutueshme - + Backup file Kartelë kopjeruajtje - + Today Sot - + Yesterday Dje - + This week Këtë javë - + Last week Javën e fundit - + This month Këtë muaj - + Last month Muajin e fundit - + This year Këtë vit - + Last year Vitin e shkuar @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Kërko + + + Auto index internal disk + Indekso automatikisht disk të brendshëm + + + + Index external storage device after connected to computer + Indekso pajisje të jashtme depozitimi, pasi lidhet me kompjuterin + + + + Full-Text search + Kërkim në Krejt Tekstin + dfmplugin_search::SearchHelper - + Path Shteg @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Hap vendndodhje kartele - + Select all Përzgjidhi krejt - + Path Shteg @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Hyrje e shpejtë - + Partitions Pjesë - + Network Rrjet - + Tag Etiketë - - Bookmark - Faqerojtës - - - + Other Tjetër - + Unknown Group Gabim i Panjohur - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Kompjutera në LAN - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Hape + &Open + &Hap @@ -5191,8 +5184,8 @@ - Properties - Veti + P&roperties + &Veti @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Etiketë @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Hap vendndodhje kartele @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Lidhu te Shërbyesi - - - + + + Clear History Spastro Historikun - + Unfavorite Hiqe nga të parapëlqyerat - + + Error + Gabim + + + + Unable to favorite illegitimate url! + + + + Cancel button Anuloje - + Connect button Lidhu - + Charset Encoding Kodim Shkronjash - + Default Parazgjedhje - + My Favorites Të parapëlqyerat e Mia - + No favorites yet Ende pa të parapëlqyera - + Favorite Vëre te të parapëlqyerat @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Shteg Burimi - + Time deleted Kohë fshirjeje @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Riktheje - + Restore all Riktheji krejt - + Empty trash Zbraz hedhurinat - + Source path Shteg burimi - + Time deleted Kohë fshirjeje @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Hedhurina @@ -5527,17 +5530,17 @@ Hedhurina - + item objekt - + items objekte - + Contains %1 %2 Përmban %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Hollësi elementare - + Size Madhësi - + Contains Përmban - + Type Lloj - + Location Vendndodhje - + Time created Kohë krijimi - + Time accessed Kohë përdorimi - + Time locked Kyçur me kohë @@ -5985,7 +5988,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Fshehtëzo Kasafortë Kartelash @@ -6006,19 +6009,19 @@ - - - + + + Encrypt Fshehtëzoje - + Failed to create file vault: %1 S’u arrit të krijohej kasafortë kartelash: %1 - + OK OK @@ -6069,7 +6072,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Caktoni Fjalëkalim Kasaforte @@ -6095,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 shenja, përmban A-Z, a-z, 0-9 dhe simbole @@ -6130,8 +6133,8 @@ Pasuesi - - + + Passwords do not match Fjalëkalimet s’përputhen @@ -6139,7 +6142,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Kasafortë Kartelash @@ -6189,7 +6192,7 @@ dfmplugin_vault::VaultHelper - + Vault Kasafortë @@ -6199,7 +6202,7 @@ Kasaforta s’mund të përdoret, ngaqë s’është instaluar cryfs! - + A task is in progress, so it cannot perform your operation Ka në zhvillim një punë, ndaj s’mund të kryejë veprimin tuaj @@ -6207,99 +6210,122 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Kasaforta Ime + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Anuloje + + + + Delete + Fshije + + + + Delete File Vault + Fshi Kasafortë Kartelash + + + + Failed to delete file vault + S’u arrit të fshihet kasafortë kartelash + + + + OK + OK + + + + Once deleted, the files in it will be permanently deleted + Pasi të jetë fshirë, kartelat në të do të fshihen përgjithnjë + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + Pasi të jetë fshirë, kartelat në të do të fshihen përgjithnjë + + + Password Fjalëkalim - + Password hint: %1 Ndihmëz fjalëkalimi: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Jepni kyçin 32-shifror të rimarrjeve + + Cancel + Anuloje + + + + Delete + Fshije - - - dfmplugin_vault::VaultRemovePages - + Delete File Vault Fshi Kasafortë Kartelash - - Once deleted, the files in it will be permanently deleted - Pasi të jetë fshirë, kartelat në të do të fshihen përgjithnjë + + Wrong password + Fjalëkalim i gabuar - - Cancel - button - Anuloje + + Failed to delete file vault + S’u arrit të fshihet kasafortë kartelash - - Use Key - button - Përdor Kyç + + OK + OK + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Fshije + + Input the 32-digit recovery key + Jepni kyçin 32-shifror të rimarrjeve + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... Po hiqet… - - + OK - button OK - - Wrong password - Fjalëkalim i gabuar - - - - Wrong recovery key - Kyç rimarrjesh i gabuar - - - - Failed to delete file vault - S’u arrit të fshihet kasafortë kartelash + + Delete File Vault + Fshi Kasafortë Kartelash - + Deleted successfully U fshi me sukses - - - Failed to delete - S’u arrit të fshihet - dfmplugin_vault::VaultVisibleManager @@ -6309,16 +6335,10 @@ Kasaforta Ime - + File Vault Kasafortë Kartelash - - - - Vault - Kasafortë - dfmplugin_workspace::FileOperatorHelper @@ -6331,22 +6351,22 @@ dfmplugin_workspace::FileViewModel - + Name Emër - + Time modified Kohë ndryshimi - + Size Madhësi - + Type Lloj @@ -6362,7 +6382,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed Nuk lejohen %1 @@ -6378,45 +6398,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Renditi sipas - + Display as Shfaqe si - + Name Emër - + Time modified Kohë ndryshimi - + Size Madhësi - + Type Lloj - + Icon Ikonë - + List Listë + + + Tree + Pemë + dfmplugin_workspace::WorkspaceMenuScene @@ -6429,7 +6454,7 @@ filedialog_core::FileDialog - + Save button Ruaje @@ -6438,13 +6463,13 @@ filedialog_core::FileDialogStatusBar - + Save button Ruaje - + Open button Hape @@ -6482,112 +6507,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Madhësi të përdorshme: - + Custom Size Madhësi Vetjake - + Device Pixel Ratio: Përpjestim Pikselash i Pajisjes: - + Theme: Temë: - + Light E çelët - + Dark E errët - + Mode: Mënyrë: - + Normal Normale - + Disabled E çaktivizuar - + Hovered Kur kalohet kursori përsipër - + Pressed Kur shtypet - + Palette Paletë - + Current mode icon does not support the palette Ikona e tanishme për mënyrën nuk mbulon paletën - + Foreground: - + Background: Sfond: - + Highlight: Theksim: - + HighlightForeground: - + Background Color: Ngjyrë Sfondi: - + White E bardhë - + Black E zezë - + Transparent E tejdukshme - + Custom Vetjake @@ -6619,24 +6644,24 @@ plugin_filepreview::MusicMessageView - + Artist: Artist: - + Album: Album: - + unknown artist artist i panjohur - + unknown album album i panjohur - + \ No newline at end of file diff --git a/translations/dde-file-manager_sr.ts b/translations/dde-file-manager_sr.ts index 06a886529d..f61c93e159 100644 --- a/translations/dde-file-manager_sr.ts +++ b/translations/dde-file-manager_sr.ts @@ -15,99 +15,104 @@ Application - + File Manager Управник Података - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Управник Података је моћан алат за управљање датотекама који је лак за коришћење. Поседује претрагу, копирање, смеће, запакивање, распакивање, својства датотека и многе друге корисне функције. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Радна површина - DeepinStorage + DeviceList - - - %1 Volume - %1 Логички диск + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Радна површина + + Disk + Диск - - - DiskControlWidget - - Disks - Дискови + + Open + Отвори - - The device was not safely removed - Уређај није безбедно уклоњен + + Eject all + Избаци све + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Следећи пут, кликните на "Безбедно уклони", затим уклоните уређај + + The device has been safely removed + - - Disk is busy, cannot unmount now - Диск је у употреби, тренутно се не може демонтирати + + eject + - - The device is busy, cannot eject now - Уређај је заузет, не може се избацити + + unmount + - - - DiskMountPlugin - - Disk - Диск + + + remove + - - Open - Отвори + + Operation failed + - - Eject all - Избаци све + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Непознато @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Ово се дешава када се први пут пријавите на рачунар. - + The identity sent by the remote computer is Идентитет послат од удаљеног рачунара је - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Ако желите да будете сигурни да је безбедно наставити, контактирајте администратора. - - - + + + System Disk Системски диск - + Data Disk Складиште - + Blank %1 Disc Празан %1 диск - - - + + + Unknown Непознато - + %1 Drive %1 Уређај - + %1 Encrypted %1 Шифровано - + + %1 Volume %1 Логички диск - - + Scanning the device, stop it? Проверавање уређаја, зауставити? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Лично @@ -223,7 +228,6 @@ - Desktop Радна површина @@ -233,7 +237,6 @@ - Videos Видео @@ -243,7 +246,6 @@ - Music Музика @@ -253,7 +255,6 @@ - Pictures Слике @@ -263,7 +264,6 @@ - Documents Документи @@ -273,7 +273,6 @@ - Downloads Преузимања @@ -282,7 +281,6 @@ - Trash Смеће @@ -293,12 +291,11 @@ - Recent Недавно - + @@ -306,7 +303,7 @@ Самомонтирај - + @@ -319,47 +316,46 @@ %1 задатака у току - + %1 item %1 ставка/и - + %1 items %1 ставки/е - + Unable to find the original file Не могу да пронађем изворну датотеку - - + + File has been moved or deleted Датотека је премештена или обрисана - - - + + You do not have permission to access this folder Немате дозволу да приступите овој фасцикли - - + + You do not have permission to traverse files in it Немате дозволу да пролазите датотеке које садржи - - + + Folder is empty Фасцикла је празна - + Loading... Учитавање... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Рачунар @@ -424,9 +419,8 @@ - - - + + Computers in LAN Рачунари у ЛАН-у @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Ознака @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Заустави - + Shortcut Пречица - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Бит - Access denied Забрањен приступ - Confirm button Потврди - - - The device has been safely removed - Уређај је безбедно уклоњен - - - + + - - - + + + Open in new window Отвори у новом прозору @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Отвори у новој картици @@ -968,8 +953,8 @@ - - + + Properties Својства @@ -1005,7 +990,7 @@ Нова датотека - + Create symlink Направи симболичку везу @@ -1092,70 +1077,70 @@ Додај на диск - + Are you sure you want to erase all data on the disc? Заиста желите да обришете све податке са диска? - + Erase button Обриши - + This action cannot be undone Ова радња је неповратна - + How do you want to use this disc? Како желите да користите диск? - + Burn image button Нарежи одраз - + Burn files button Нарежи датотеке - + %1 is a duplicate file. %1 је дупликат. - + Insufficient disc space. Недовољно простора на диску. - + Lost connection to drive. Прекинута веза са уређајем. - + The CD/DVD drive is not ready. Try another disc. ЦД/ДВД уређај није спреман. Покушајте са другим диском. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. ЦД/ДВД уређеј је заузет. Изађите из програма за уређај и прикључите уређај поново. - + Invalid volume name - + Unknown error Непозната грешка @@ -1194,42 +1179,42 @@ Ставки: %1 - + Orange Наранџаста - + Red Црвена - + Purple Љубичаста - + Navy-blue Плава - + Azure Азурна - + Green Зелена - + Yellow Жута - + Gray Сива @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Локални диск - + Removable disk Уклоњиви диск - + DVD ДВД - + Network shared directory Мрежно дељени директоријум - - + + Android mobile device Андроид мобилни уређај - + Apple mobile device Apple мобилни уређај - + Unknown device Непознат уређај - + Remove button Уклони - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Очисти недавну историју - - - + + + Source path Путања @@ -1419,12 +1404,12 @@ Неуспешно отварање ставки у смећу, прво их вратите - + Empty Trash Испразни смеће - + Location Локација @@ -1524,7 +1509,7 @@ Претрага... - + My Vault Мој трезор @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Није овлашћен - - + + In trial period Пробни период + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Врста - + Time accessed Приступљено - + Time modified Измењено - + Time created Настало - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Величина иконица @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 ставка изабрана @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button У реду - + Operation failed! Операција неуспешна! @@ -2554,191 +2529,191 @@ Одредишна фасцикла је унутар изворне фасцикле! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Откажи - + Format button Форматирање - + To access the device, you must format the disk first. Are you sure you want to format it now? Да приступите уређају, морате га прво форматирати. Заиста желите да га форматирате сад? - + Do you want to run %1 or display its content? Да ли желите да покренете %1 или да прикажете садржај? - + It is an executable text file. Ово је извршна текстуална датотека. - - - + + + Run button Покрени - - + + Run in terminal button Покре. у терминалу - + Display button Прикажи - + Do you want to run %1? Желите да покренете %1? - + It is an executable file. Ово је извршна датотека. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Трајно обриши %1 ставки/е? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Обриши - + Permanently delete %1? Трајно обриши %1? - - + + This action cannot be undone Ова радња је неповратна - + Are you sure you want to empty %1 item? Заиста желите да испразните %1 ставку? - + Are you sure you want to empty %1 items? Заиста желите да испразните %1 ставки/е? - + Empty Испразни - + Do you want to delete %1? Желите ли да обришете %1? - + Do you want to delete the selected %1 items? Желите ли да обришете изабране/их %1 ставке/и? - + Failed to restore %1 file, the target folder is read-only Неуспешно враћање %1 датотеке, одредишна фасцикла је само за читање - + Failed to restore %1 files, the target folder is read-only Неуспешно враћање %1 датотеке/а, одредишна фасцикла је само за читање - + "%1" already exists, please use another name. "%1" већ постоји, молимо користите друго име. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Ова датотека ће бити скривена ако име почиње са '.'. Заиста желите да је сакријете? - + Hide - + Cancel Откажи - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 на шта ова пречица показује је промењено или померено - + Do you want to delete this shortcut? Да ли желите да обришете ову пречицу? - + This file is not executable, do you want to add the execute permission and run? Ова датотека није извршна. Желите ли да додате дозволу за извршење и покренете? - + The selected files contain system file/directory, and it cannot be deleted Изабране датотеке садрже системску датотеку или директоријум и зато се не могу обрисати @@ -2866,278 +2841,276 @@ Унесите лозинку за дешифровање диска + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Остало - + Close Затвори - + Close current tab Затвори тренутну картицу - + Back Назад - + Forward Напред - + Switch to next tab Пређи на следећу картицу - + Switch to previous tab Пређи на претходну картицу - + Next file Следећа датотека - + Previous file Претходна датотека - + Switch tab by specified number between 1 to 8 Мењај картице одабиром бројева од 1 до 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 Измењено:%1 - + Original folder Првобитна фасцикла - + Contains: %1 Садржи: %1 - + Original file Првобитна датотека - + Size: %1 Величина: %1 - + Target folder Одредишна фасцикла - + + In data statistics ... - + Target file Одредишна датотека @@ -3466,37 +3445,37 @@ Молимо сачекајте - + Keep both button Задржи оба - + Skip button Прескочи - - + + Replace button Замени - + Do not ask again Не питај ме поново - + Retry button Понови - + Merge button Спој @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Откажи - + Remove button Уклони @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Рачунар - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Рачунар - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Моји директоријуми - + Disks Дискови @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Врста уређаја - + Total space Укупан простор - + File system Систем датотека - + Contains Садржи - + Free space Слободно - + %1 items %1 ставки/е - + %1 item %1 ставка/и @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Величина - + Dimension Димензије - + Duration Трајање - + Type Врста - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Убаци + &Paste + - Cut - Исеци + Cu&t + - Copy - Копирај + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Отвори + &Open + - Rename - Преименуј + Rena&me + - Delete - Обриши + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Отвори у терминалу + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Пошаљи у - + + Bluetooth + + + + Create link Направи везу - + Send to desktop Пошаљи на радну површину @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - Блутут - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Отвори + + &Open + - + Open in new window Отвори у новом прозору - + Open in new tab Отвори у новој картици - + Cancel sharing Откажи дељење - - Properties - Својства + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Моја дељења @@ -4700,7 +4683,7 @@ Нема датотека за нарезивање - + Unable to burn. Not enough free space on the target disk. Немогуће нарезати. Недовољно простора на одредишном диску. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Величина - + Contains Садржи - + Type Врста - + Location Локација - + Time created Настало - + Time accessed Приступљено - + Time modified Измењено - + Hide this file Сакриј датотеку - - + + %1 item %1 ставка/и - + %1 items %1 ставки/е @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Бит - + Available Слободно @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Рачунар - + Basic Info Основни подаци - + Computer name - + Version Верзија - + Edition Издање - + OS build - + Type Врста - + Processor Процесор - + Memory Меморија @@ -4891,6 +4874,14 @@ %1 датотеке(а), %2 фасцикле(и) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Својства + P&roperties + dfmplugin_recent::Recent - - + Recent Недавно @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Путања - + Last access Последњи приступ - + Recent Недавно @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Претражи: - + File Type: Врста датотеке: - + File Size: Величина датотеке: - + Time Modified: Измењено: - + Time Accessed: Приступљено: - + Time Created: Настало: - + Reset Поништи - + All subdirectories Сви под-директоријуми - + Current directory Тренутни директоријум - + Application Програм - + Video Видео - + Audio Звук - + Image Слика - + Archive Архива - + Text Текст - + Executable Извршна - + Backup file Резерва - + Today Данас - + Yesterday Јуче - + This week Ове недеље - + Last week Прошле недеље - + This month Овог месеца - + Last month Прошлог месеца - + This year Ове године - + Last year Прошле године @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Претражи + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Путања @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Отвори локацију датотеке - + Select all Изабери све - + Path @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Ознака - - Bookmark - - - - + Other Остало - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Рачунари у ЛАН-у - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Отвори + &Open + @@ -5191,7 +5184,7 @@ - Properties + P&roperties @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Ознака @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Отвори локацију датотеке @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Повежи се са сервером - - - + + + Clear History Очисти историју - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Откажи - + Connect button Повежи - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Путања - + Time deleted Обрисано @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Врати - + Restore all Врати све - + Empty trash - + Source path Путања - + Time deleted Обрисано @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Смеће @@ -5527,17 +5530,17 @@ Смеће - + item ставку/и - + items ставки/е - + Contains %1 %2 Садржи %1 %2 @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Величина - + Contains Садржи - + Type Врста - + Location Локација - + Time created Настало - + Time accessed Приступљено - + Time locked Закључано @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Шифруј трезор датотека @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Шифруј - + Failed to create file vault: %1 Неуспешно прављење трезора: %1 - + OK У реду @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Постави лозинку трзора @@ -6094,7 +6097,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 карактера, садржај A-Z, a-z, 0-9, и симболи @@ -6129,8 +6132,8 @@ Следеће - - + + Passwords do not match Лозинке се не подударају @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Трезор датотека @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6198,7 +6201,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6206,98 +6209,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Мој трезор - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Лозинка + + Cancel + - - Password hint: %1 - Подсетник лозинке: %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Унесите 32-цифрени кључ за опоравак + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Обриши трезор + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Након уклањања, биће трајно обрисане све припадајуће датотеке + + Password + Лозинка - - Cancel - button - Откажи + + Password hint: %1 + Подсетник лозинке: %1 - - Use Key - button - Употреби кључ + + Cancel + - + Delete - button - Обриши + - - Removing... - Уклањање... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - У реду + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Погрешна лозинка + + Input the 32-digit recovery key + Унесите 32-цифрени кључ за опоравак + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Погрешан кључ за опоравак + + Removing... + - - Failed to delete file vault - Неуспешно брисање трезора + + OK + - - Deleted successfully - Успешно обрисано + + Delete File Vault + - - Failed to delete - Неуспешно брисање + + Deleted successfully + @@ -6308,16 +6334,10 @@ Мој трезор - + File Vault Трезор датотека - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Поређај по - + Display as Прикажи као - + Name Име - + Time modified Измењено - + Size Величина - + Type Врста - + Icon Иконице - + List Списак + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Сачувај @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Сачувај - + Open button Отвори @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sv.ts b/translations/dde-file-manager_sv.ts index 8bc4c92586..b9696ba10e 100644 --- a/translations/dde-file-manager_sv.ts +++ b/translations/dde-file-manager_sv.ts @@ -15,99 +15,104 @@ Application - + File Manager Filhanterare - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Skrivbord - DeepinStorage + DeviceList - - - %1 Volume - %1 Volym + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Skrivbord + + Disk + Disk - - - DiskControlWidget - - Disks - + + Open + Öppna - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now - Disken är upptagen, kan ej avmontera nu + + eject + - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - Öppna + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Okänd @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk System Disk - + Data Disk Data Disk - + Blank %1 Disc - - - + + + Unknown Okänd - + %1 Drive - + %1 Encrypted - + + %1 Volume %1 Volym - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Hem @@ -223,7 +228,6 @@ - Desktop Skrivbord @@ -233,7 +237,6 @@ - Videos Videos @@ -243,7 +246,6 @@ - Music Musik @@ -253,7 +255,6 @@ - Pictures Bilder @@ -263,7 +264,6 @@ - Documents Dokument @@ -273,7 +273,6 @@ - Downloads Hämtningar @@ -282,7 +281,6 @@ - Trash Papperskorg @@ -293,12 +291,11 @@ - Recent Tidigare - + @@ -306,7 +303,7 @@ Automontera - + @@ -319,47 +316,46 @@ %1 uppgifter pågår - + %1 item %1 objekt - + %1 items %1 objekt - + Unable to find the original file - - + + File has been moved or deleted Filen har flyttats eller tagits bort - - - + + You do not have permission to access this folder Du har en behörighet att bearbeta denna mapp - - + + You do not have permission to traverse files in it - - + + Folder is empty Mappen är tom - + Loading... Läser in... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Dator @@ -424,9 +419,8 @@ - - - + + Computers in LAN Nätverk @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut Genväg - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Åtkomst nekad - Confirm button Bekräfta - - - The device has been safely removed - - - - + + - - - + + + Open in new window Öppna i nytt fönster @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Öppna i ny flik @@ -968,8 +953,8 @@ - - + + Properties Egenskaper @@ -1005,7 +990,7 @@ - + Create symlink Skapa länk @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? Är du säker du vill radera all data på skivan? - + Erase button Radera - + This action cannot be undone Denna åtgärd kan ej ångras - + How do you want to use this disc? Hur vill du använda denna skivan? - + Burn image button Bränn avbild - + Burn files button Bränn filer - + %1 is a duplicate file. %1 är en dublett. - + Insufficient disc space. Otillräckligt skivutrymme - + Lost connection to drive. Förlorade kontakt till enhet. - + The CD/DVD drive is not ready. Try another disc. CD/DVD enhet är ej redo. Prova med en annan skiva. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Okänt fel @@ -1194,42 +1179,42 @@ Objekt: %1 - + Orange Orange - + Red Röd - + Purple Lila - + Navy-blue Skeppsblå - + Azure Blå - + Green Grön - + Yellow Gul - + Gray Grå @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Lokal disk - + Removable disk Flyttbar disk - + DVD DVD - + Network shared directory Nätverksmapp - - + + Android mobile device Android enhet - + Apple mobile device Apple enhet - + Unknown device Okänd enhet - + Remove button Ta bort - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Rensa tidigare historik - - - + + + Source path Målsökväg @@ -1419,12 +1404,12 @@ - + Empty Trash Töm Papperskorg - + Location Plats @@ -1524,7 +1509,7 @@ Söker... - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Typ - + Time accessed - + Time modified Modifierad - + Time created Skapad - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Ikonstorlek @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 valt objekt @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button OK - + Operation failed! Operation misslyckades! @@ -2554,191 +2529,191 @@ Målmappen är inuti källmappen! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Avbryt - + Format button Formatera - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Vill du köra %1 eller visa dess innehåll? - + It is an executable text file. Det är en körbar textfil. - - - + + + Run button Kör - - + + Run in terminal button Kör i terminal - + Display button Visa - + Do you want to run %1? Vill du köra %1? - + It is an executable file. Det är en körbar fil. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Radera %1 objekt permanent? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Radera - + Permanently delete %1? Radera %1 permanent? - - + + This action cannot be undone Denna åtgärd kan ej ångras - + Are you sure you want to empty %1 item? Är du säker du vill tömma %1 objekt? - + Are you sure you want to empty %1 items? Är du säker du vill tömma %1 objekt? - + Empty Tom - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" existerar redan, var god välj ett annat namn. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Avbryt - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 som denna genväg refererar till har ändrats eller flyttats - + Do you want to delete this shortcut? Vill du radera denna genväg ? - + This file is not executable, do you want to add the execute permission and run? Denna filen är ej körbar, vill du göra filen körbar och sedan starta den? - + The selected files contain system file/directory, and it cannot be deleted De valda filerna innehåller system filer/mappar, och kan ej raderas @@ -2866,278 +2841,276 @@ Skriv in lösenord för att avkryptera disken + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Annat - + Close Stäng - + Close current tab Stäng nuvarande flik - + Back Tillbaka - + Forward Framåt - + Switch to next tab Växla till nästa flik - + Switch to previous tab Växla till föregående flik - + Next file Nästa fil - + Previous file Föregående fil - + Switch tab by specified number between 1 to 8 Ändra flik genom att specificera nummer mellan 1 till 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder Ursprunglig mapp - + Contains: %1 - + Original file Ursprunglig fil - + Size: %1 Storlek: %1 - + Target folder Målmapp - + + In data statistics ... - + Target file Målfil @@ -3466,37 +3445,37 @@ - + Keep both button Behåll båda - + Skip button Skippa - - + + Replace button Ersätt - + Do not ask again Fråga inte igen - + Retry button Försök igen - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Avbryt - + Remove button Ta bort @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Dator - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Dator - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mina bibliotek - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Typ - + Total space Totalt utrymme - + File system - + Contains Innehåller - + Free space Ledigt utrymme - + %1 items %1 objekt - + %1 item %1 objekt @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Storlek - + Dimension - + Duration - + Type Typ - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Klistra in + &Paste + - Cut - Klipp ut + Cu&t + - Copy - Kopiera + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Öppna + &Open + - Rename - Döp om + Rena&me + - Delete - Radera + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Öppna i terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Skicka till - + + Bluetooth + + + + Create link Skapa länk - + Send to desktop Skicka till skrivbord @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Öppna + + &Open + - + Open in new window Öppna i nytt fönster - + Open in new tab Öppna i ny flik - + Cancel sharing Avbryt delning - - Properties - Egenskaper + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Mina delningar @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Storlek - + Contains Innehåller - + Type Typ - + Location Plats - + Time created Skapad - + Time accessed - + Time modified Modifierad - + Hide this file - - + + %1 item %1 objekt - + %1 items %1 objekt @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Dator - + Basic Info Grundläggande information - + Computer name - + Version Version - + Edition - + OS build - + Type Typ - + Processor Processor - + Memory Minne @@ -4890,6 +4873,14 @@ %1 fil(er), %2 mapp(ar) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Egenskaper + P&roperties + dfmplugin_recent::Recent - - + Recent Tidigare @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path Sökväg - + Last access Senast öppnad - + Recent Tidigare @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Sök: - + File Type: Filtyp: - + File Size: Filstorlek: - + Time Modified: Ändrad: - + Time Accessed: - + Time Created: - + Reset Återställ - + All subdirectories Alla huvudbibliotek - + Current directory Nuvarande bibliotek - + Application Program - + Video Video - + Audio Ljud - + Image Bild - + Archive Arkiv - + Text Text - + Executable Körbar - + Backup file Backupfil - + Today Idag - + Yesterday Igår - + This week Denna veckan - + Last week Förra veckan - + This month Denna månaden - + Last month Förra månaden - + This year Detta året - + Last year Förra året @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search Sök + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Sökväg @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Öppna filens sökväg - + Select all Välj alla - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Nätverk - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Öppna + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Öppna filens sökväg @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Avbryt - + Connect button Anslut - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path Målsökväg - + Time deleted Borttagen @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Återställ - + Restore all Återställ alla - + Empty trash - + Source path Målsökväg - + Time deleted Borttagen @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papperskorg @@ -5526,17 +5529,17 @@ Papperskorg - + item objekt - + items objekt - + Contains %1 %2 Innehåller %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Storlek - + Contains Innehåller - + Type Typ - + Location Plats - + Time created Skapad - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Lösenord + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + Lösenord + + + + Password hint: %1 - + Cancel - button - Avbryt + - - Use Key - button + + Delete - - Delete - button - Radera + + Delete File Vault + - - Removing... + + Wrong password + + + + + Failed to delete file vault - - + OK - button - OK + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortera efter - + Display as Visa som - + Name Namn - + Time modified Modifierad - + Size Storlek - + Type Typ - + Icon Ikon - + List Lista + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button Spara @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button Spara - + Open button Öppna @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sw.ts b/translations/dde-file-manager_sw.ts index 91346b99b9..f90a08a2fd 100644 --- a/translations/dde-file-manager_sw.ts +++ b/translations/dde-file-manager_sw.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ta.ts b/translations/dde-file-manager_ta.ts index 37afa45160..d1ee1ce60a 100644 --- a/translations/dde-file-manager_ta.ts +++ b/translations/dde-file-manager_ta.ts @@ -15,99 +15,104 @@ Application - + File Manager கோப்பு மேலாளர் - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + கணினி - DeepinStorage + DeviceList - - - %1 Volume - % 1 தொகுதி + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - கணினி + + Disk + வட்டு இயக்கி - - - DiskControlWidget - - Disks - + + Open + திற - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk - வட்டு இயக்கி + + + remove + - - Open - திற + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume % 1 தொகுதி - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop கணினி @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music இசை @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash குப்பை கோப்பு @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer கணினி @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ பிட் - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties பண்புகள் @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red சிவப்பு - + Purple - + Navy-blue - + Azure - + Green பச்சை - + Yellow மஞ்சள் - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type வகை - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size ஐகான் அளவு @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Delete - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view + Others + + + + Close மூடு - + Close current tab - + Back பின் - + Forward - + Switch to next tab - + Switch to previous tab - + Next file அடுத்த கோப்பு - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer கணினி - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer கணினி - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories என் கோப்பகங்கள் - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ அளவு - + Dimension - + Duration - + Type வகை - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - ஒட்டு + &Paste + - Cut - வெட்டு + Cu&t + - Copy - நகலெடு + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - திற + &Open + - Rename - மறுபெயரிடு + Rena&me + - Delete - Delete + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - திற + + &Open + - + Open in new window - + Open in new tab - + Cancel sharing - - Properties - பண்புகள் + + P&roperties + dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size அளவு - + Contains - + Type வகை - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit பிட் - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer கணினி - + Basic Info அடிப்படை தகவல்கள் - + Computer name - + Version பதிப்பு - + Edition - + OS build - + Type வகை - + Processor செயலி - + Memory நினைவுத்திறன் @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - பண்புகள் + P&roperties + dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path பாதை - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: தேடு: - + File Type: கோப்பு வகை: - + File Size: கோப்பின் அளவு: - + Time Modified: மாற்றப்பட்ட நேரம்: - + Time Accessed: - + Time Created: - + Reset மீட்டமைக்க - + All subdirectories அனைத்து துணை கோப்பகங்களும் - + Current directory தற்போதைய கோப்பகங்கள் - + Application - + Video - + Audio - + Image - + Archive - + Text உரை - + Executable - + Backup file - + Today இன்று - + Yesterday நேற்று - + This week - + Last week - + This month - + Last month - + This year இந்த ஆண்டு - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search தேடு + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path பாதை @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - திற + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash குப்பை கோப்பு @@ -5526,17 +5529,17 @@ குப்பை கோப்பு - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size அளவு - + Contains - + Type வகை - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - கடவுச்சொல் + + Cancel + - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password + கடவுச்சொல் + + + + Password hint: %1 - + Cancel - button - - Use Key - button + + Delete - - Delete - button - Delete + + Delete File Vault + - - Removing... + + Wrong password - - + + Failed to delete file vault + + + + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name பெயர் - + Time modified - + Size அளவு - + Type வகை - + Icon - + List பட்டியல் + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button திற @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_th.ts b/translations/dde-file-manager_th.ts index 58c020fc5e..e25ae2b0fd 100644 --- a/translations/dde-file-manager_th.ts +++ b/translations/dde-file-manager_th.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_tr.ts b/translations/dde-file-manager_tr.ts index 540d765224..2e3c588dc7 100644 --- a/translations/dde-file-manager_tr.ts +++ b/translations/dde-file-manager_tr.ts @@ -15,99 +15,104 @@ Application - + File Manager Dosya Yöneticisi - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Dosya Yöneticisi, arama, kopyalama, çöp kutusu, sıkıştırma/açma, dosya özelliği ve diğer kullanışlı işlevler içeren güçlü ve kullanımı kolay bir dosya yönetim aracıdır. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - + + Desktop + Masaüstü - DeepinStorage + DeviceList - - - %1 Volume - %1 Birim + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Masaüstü + + Disk + Disk - - - DiskControlWidget - - Disks - Diskler + + Open + - - The device was not safely removed - Cihaz güvenli bir şekilde kaldırılmadı + + Eject all + Tümünü çıkar + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Bir daha ki sefer "Güvenle Kaldıra" tıklayın bağlantısını kesin + + The device has been safely removed + - - Disk is busy, cannot unmount now - Disk meşgul olduğundan şu anda ayrılamıyor + + eject + - - The device is busy, cannot eject now - Aygıt meşgul, şimdi çıkarılamıyor + + unmount + - - - DiskMountPlugin - - Disk - Disk + + + remove + - - Open - + + Operation failed + - - Eject all - Tümünü çıkar + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Bilinmiyor @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Bu, bir bilgisayarda ilk kez oturum açtığınızda olur. - + The identity sent by the remote computer is Uzak bilgisayar tarafından gönderilen kimlik - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Devam etmenin güvenli olduğundan kesinlikle emin olmak istiyorsanız, sistem yöneticisine başvurun. - - - + + + System Disk Sistem Diski - + Data Disk Veri Diski - + Blank %1 Disc Boş %1 Disk - - - + + + Unknown Bilinmiyor - + %1 Drive %1 Sürücü - + %1 Encrypted %1 Şifreli - + + %1 Volume %1 Birim - - + Scanning the device, stop it? Cihaz taranıyor, durdurulsun mu? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Ana Sayfa @@ -223,7 +228,6 @@ - Desktop Masaüstü @@ -233,7 +237,6 @@ - Videos Görüntüler @@ -243,7 +246,6 @@ - Music Müzikler @@ -253,7 +255,6 @@ - Pictures Fotoğraflar @@ -263,7 +264,6 @@ - Documents Belgeler @@ -273,7 +273,6 @@ - Downloads İndirilenler @@ -282,7 +281,6 @@ - Trash Çöp kutusu @@ -293,12 +291,11 @@ - Recent Son Kullanılanlar - + @@ -306,7 +303,7 @@ Otomatik bağla - + @@ -319,47 +316,46 @@ %1 görev devam diyor - + %1 item %1 öge - + %1 items %1 öge - + Unable to find the original file Orijinal dosya bulunamıyor - - + + File has been moved or deleted Dosya taşınmış ya da silinmiş - - - + + You do not have permission to access this folder Bu klasöre erişme izniniz yok - - + + You do not have permission to traverse files in it İçindeki dosyalar arasında geçiş yapmaya izniniz yok - - + + Folder is empty Klasör boş - + Loading... Yükleniyor... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Bilgisayar @@ -424,9 +419,8 @@ - - - + + Computers in LAN Yerel Ağdaki Bilgisayarlar @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag Etiket @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Bağlanmış Samba paylaşımlarını göstermeye devam edin @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Durdur - + Shortcut Kısayol - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ Bit - Access denied Erişim reddedildi - Confirm button Onayla - - - The device has been safely removed - Cihaz güvenli bir şekilde kaldırıldı - - - + + - - - + + + Open in new window Yeni pencerede aç @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Yeni sekmede aç @@ -968,8 +953,8 @@ - - + + Properties Özellikler @@ -1005,7 +990,7 @@ Yeni Dosya - + Create symlink Sembolik bağlantı oluştur @@ -1092,70 +1077,70 @@ Diske ekle - + Are you sure you want to erase all data on the disc? Diskteki tüm verileri silmek istiyor musunuz? - + Erase button Sil - + This action cannot be undone Bu işlem geri alınamaz - + How do you want to use this disc? Bu diski nasıl kullanmak istersiniz? - + Burn image button Kalıbı yazdır - + Burn files button Dosyaları yazdır - + %1 is a duplicate file. %1 yinelenen bir dosya. - + Insufficient disc space. Yetersiz disk alanı. - + Lost connection to drive. Sürücü bağlantısı kesildi. - + The CD/DVD drive is not ready. Try another disc. CD/DVD sürücüsü hazır değil. Başka bir disk deneyin. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD sürücüsü meşgul. Sürücüyü kullanarak uygulamadan çıkın ve sürücüyü tekrar takın. - + Invalid volume name - + Unknown error Bilinmeyen hata @@ -1194,42 +1179,42 @@ Öge: %1 - + Orange Turuncu - + Red Kırmızı - + Purple Mor - + Navy-blue Lacivert - + Azure Mavi - + Green Yeşil - + Yellow Sarı - + Gray Gri @@ -1305,76 +1290,76 @@ - + User directory - + Local disk Yerel disk - + Removable disk Çıkarılabilir disk - + DVD DVD - + Network shared directory Ağ paylaşımlı dizin - - + + Android mobile device Android mobil aygıt - + Apple mobile device Apple mobil aygıt - + Unknown device Bilinmeyen aygıt - + Remove button Kaldır - + Do you want to remove this item? Bu öğeyi kaldırmak istiyor musunuz? - + Do yout want to remove %1 items? %1 öğeyi kaldırmak istiyor musunuz? - + It does not delete the original files Orijinal dosyaları silmez - + Clear recent history Yakın geçmişi temizle - - - + + + Source path Kaynak yol @@ -1419,12 +1404,12 @@ Çöp kutusundaki ögeler açılamıyor, lütfen önce geri yükleyin - + Empty Trash Çöp Kutusunu Boşalt - + Location Konum @@ -1524,7 +1509,7 @@ Aranıyor... - + My Vault Kasam @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,18 +1887,33 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Yetkili değil - - + + In trial period Deneme döneminde + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + + In trial period + + + ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tür - + Time accessed Erişim zamanı - + Time modified Değiştirilme zamanı - + Time created Oluşturulma zamanı - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size Simge boyutu @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected %1 öge seçildi @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Tamam - + Operation failed! İşlem tamamlanamadı! @@ -2554,191 +2529,191 @@ Hedef klasör, kaynak klasörün içinde! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button İptal - + Format button Biçimlendir - + To access the device, you must format the disk first. Are you sure you want to format it now? Cihaz erişmek için önce diski biçimlendirmelisiniz. Şimdi biçimlendirmek istediğinizden emin misiniz? - + Do you want to run %1 or display its content? %1 dosyasını çalıştırmayı mı içeriğini görüntülemeyi mi istiyorsunuz? - + It is an executable text file. Çalıştırılabilir bir metin dosyasıdır. - - - + + + Run button Çalıştır - - + + Run in terminal button Uçbirimde çalştır - + Display button Görüntü - + Do you want to run %1? %1 çalıştırılsın mı? - + It is an executable file. Çalıştırılabilir bir dosyadır. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 öge kalıcı olarak silinsin mi? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Sil - + Permanently delete %1? %1 kalıcı olarak silinsin mi? - - + + This action cannot be undone Bu işlem geri alınamaz - + Are you sure you want to empty %1 item? %1 ögeyi kalıcı olarak silmek istediğinize emin misiniz? - + Are you sure you want to empty %1 items? %1 ögeyi kalıcı olarak silmek istediğinize emin misiniz? - + Empty Boş - + Do you want to delete %1? %1'i silmek istiyor musunuz? - + Do you want to delete the selected %1 items? Seçili %1 öğeyi silmek istiyor musunuz? - + Failed to restore %1 file, the target folder is read-only %1 dosyası geri yüklenemedi, hedef klasör salt okunur - + Failed to restore %1 files, the target folder is read-only %1 dosyaları geri yüklenemedi, hedef klasör salt okunur - + "%1" already exists, please use another name. "%1" zaten var, lütfen başka bir ad yazın. - + Device or resource busy Cihaz veya kaynak meşgul - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Dosya adı '.' İle başlıyorsa bu dosya gizlenir. Gizlemek ister misin? - + Hide Gizle - + Cancel İptal - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved Bu kısayolun gösterdiği %1, değiştirilmiş ya da taşınmış - + Do you want to delete this shortcut? Bu kısayolu silmek ister misiniz? - + This file is not executable, do you want to add the execute permission and run? Bu dosyanın çalıştırma izni yok, çalıştırma iznini ekleyip çalıştırmak ister misiniz? - + The selected files contain system file/directory, and it cannot be deleted Seçilmiş dosyalar içinde sistem dosyası ya da klasörü bulunduğundan silinemez @@ -2866,278 +2841,276 @@ Diskin şifresini çözmek için parolayı yazın + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Diğerleri - + Close Kapat - + Close current tab Mevcut sekmeyi kapat - + Back Geri - + Forward İleri - + Switch to next tab Sonraki sekmeye geç - + Switch to previous tab Önceki sekmeye geç - + Next file Sonraki dosya - + Previous file Önceki dosya - + Switch tab by specified number between 1 to 8 Sekmeyi 1'den 8'e kadar belirtilen sayıya çevir @@ -3416,42 +3394,43 @@ - + Time modified: %1 Değiştirilme zamanı: %1 - + Original folder Özgün klasör - + Contains: %1 İçerik: %1 - + Original file Özgün dosya - + Size: %1 Boyut: %1 - + Target folder Hedef klasör - + + In data statistics ... - + Target file Hedef dosya @@ -3466,37 +3445,37 @@ Lütfen bekleyin - + Keep both button İkisini de tut - + Skip button Atla - - + + Replace button Değiştir - + Do not ask again Tekrar sorma - + Retry button Tekrar dene - + Merge button Birleştir @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button İptal - + Remove button Kaldır @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Bilgisayar - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Bilgisayar - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Dizinlerim - + Disks Diskler @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Aygıt türü - + Total space Toplam alan - + File system Dosya sistemi - + Contains İçeriği - + Free space Boş alan - + %1 items %1 öge - + %1 item %1 öge @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ Boyut - + Dimension Boyut - + Duration Süre - + Type Tür - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Yapıştır + &Paste + - Cut - Kes + Cu&t + - Copy - Kopyala + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - + &Open + - Rename - Adlandır + Rena&me + - Delete - Sil + &Delete + @@ -4579,6 +4557,11 @@ Open in terminal Uçbirimde aç + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Şuraya gönder - + + Bluetooth + + + + Create link Bağ oluştur - + Send to desktop Masaüstüne gönder @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Paylaş - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - + + &Open + - + Open in new window Yeni pencerede aç - + Open in new tab Yeni sekmede aç - + Cancel sharing Paylaşımı iptal et - - Properties - Özellikler + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Paylaşımlarım @@ -4700,7 +4683,7 @@ Yazılacak dosya yok - + Unable to burn. Not enough free space on the target disk. Yazılamıyor. Hedef diskte yeterli boş alan yok. @@ -4708,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Boyut - + Contains İçeriği - + Type Tür - + Location Konum - + Time created Oluşturulma zamanı - + Time accessed Erişim zamanı - + Time modified Değiştirilme zamanı - + Hide this file Bu dosyayı gizle - - + + %1 item %1 öge - + %1 items %1 öge @@ -4780,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government Hükümet için - + For Enterprise Kurumsal için - + Bit Bit - + Available Mevcut @@ -4808,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Bilgisayar - + Basic Info Temel Bilgi - + Computer name Bilgisayar adı - + Version Sürüm - + Edition Yayın - + OS build İşletim Sistemi derlemesi - + Type Tür - + Processor İşlemci - + Memory Bellek @@ -4891,6 +4874,14 @@ %1 dosya, %2 klasör + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4910,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Özellikler + P&roperties + dfmplugin_recent::Recent - - + Recent Son Kullanılanlar @@ -4926,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Yol - + Last access Son erişim - + Recent Son Kullanılanlar @@ -4967,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Ara: - + File Type: Dosya Türü: - + File Size: Dosya Boyutu: - + Time Modified: Düzenlenme Zamanı: - + Time Accessed: Erişim Zamanı: - + Time Created: Oluşturulma Zamanı: - + Reset Sıfırla - + All subdirectories Tüm alt dizinler - + Current directory Mevcut dizin - + Application Uygulama - + Video Video - + Audio Ses - + Image Görsel - + Archive Arşiv - + Text Metin - + Executable Çalıştırılabilir - + Backup file Yedek dosyası - + Today Bugün - + Yesterday Dün - + This week Bu hafta - + Last week Önceki hafta - + This month Bu ay - + Last month Önceki ay - + This year Bu yıl - + Last year Önceki yıl @@ -5095,15 +5085,31 @@ dfmplugin_search::Search - + + Search Ara + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Yol @@ -5111,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Dosya konumunu aç - + Select all Tümünü seç - + Path Yol @@ -5129,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etiket - - Bookmark - - - - + Other Diğer - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Yerel Ağdaki Bilgisayarlar - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - + &Open + @@ -5191,7 +5184,7 @@ - Properties + P&roperties @@ -5226,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Etiket @@ -5234,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Dosya konumunu aç @@ -5284,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Sunucuya Bağlan - - - + + + Clear History Geçmişi Temizle - + Unfavorite Favori değil - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button İptal - + Connect button Bağlan - + Charset Encoding - + Default Varsayılan - + My Favorites Favorilerim - + No favorites yet Henüz favori yok - + Favorite Favori @@ -5473,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Kaynak Yol - + Time deleted Silinme tarihi @@ -5486,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Geri al - + Restore all Tümünü geri al - + Empty trash - + Source path Kaynak yol - + Time deleted Silinme tarihi @@ -5514,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Çöp kutusu @@ -5527,17 +5530,17 @@ Çöp kutusu - + item öge - + items öge - + Contains %1 %2 %1 %2 içeriyor @@ -5719,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Boyut - + Contains İçeriği - + Type Tür - + Location Konum - + Time created Oluşturulma zamanı - + Time accessed Erişim zamanı - + Time locked Zaman kilitlendi @@ -5984,7 +5987,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Dosya Kasasını Şifrele @@ -6005,19 +6008,19 @@ - - - + + + Encrypt Şifrele - + Failed to create file vault: %1 Dosya kasası oluşturulamadı: %1 - + OK Tamam @@ -6068,7 +6071,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Kasa Parolasını Ayarla @@ -6094,7 +6097,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 karakter, A-Z, a-z, 0-9 ve sembolleri içerir @@ -6129,8 +6132,8 @@ Sonraki - - + + Passwords do not match Parolalar uyuşmuyor @@ -6138,7 +6141,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Dosya Kasası @@ -6188,7 +6191,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6198,7 +6201,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6206,98 +6209,121 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Kasam - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password - Parola + + Cancel + - - Password hint: %1 - Parola ipucu: %1 + + Delete + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - 32 basamaklı kurtarma anahtarını gir + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted + - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault - Dosya Kasasını Sil + + Once deleted, the files in it will be permanently deleted + - - Once deleted, the files in it will be permanently deleted - Silindikten sonra, içindeki dosyalar kalıcı olarak silinecek + + Password + Parola - - Cancel - button - İptal + + Password hint: %1 + Parola ipucu: %1 - - Use Key - button - Anahtar Kullan + + Cancel + - + Delete - button - Sil + - - Removing... - Kaldırılıyor... + + Delete File Vault + + + + + Wrong password + - - + + Failed to delete file vault + + + + OK - button - Tamam + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password - Yanlış parola + + Input the 32-digit recovery key + 32 basamaklı kurtarma anahtarını gir + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key - Yanlış kurtarma anahtarı + + Removing... + - - Failed to delete file vault - Dosya kasası silinemedi + + OK + - - Deleted successfully - Başarıyla silindi + + Delete File Vault + - - Failed to delete - Silinemedi + + Deleted successfully + @@ -6308,16 +6334,10 @@ Kasam - + File Vault Dosya Kasası - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6330,22 +6350,22 @@ dfmplugin_workspace::FileViewModel - + Name Adı - + Time modified - + Size Büyüklük - + Type Tür @@ -6361,7 +6381,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1'e izin verilmiyor @@ -6377,45 +6397,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sırala - + Display as Farklı görüntüle - + Name Ad - + Time modified Değiştirilme zamanı - + Size Boyut - + Type Tür - + Icon Simge - + List Liste + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6428,7 +6453,7 @@ filedialog_core::FileDialog - + Save button Kaydet @@ -6437,13 +6462,13 @@ filedialog_core::FileDialogStatusBar - + Save button Kaydet - + Open button @@ -6481,112 +6506,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: Tema: - + Light Açık - + Dark Koyu - + Mode: Mod: - + Normal Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: Arkaplan Rengi: - + White Beyaz - + Black Siyah - + Transparent Transparan - + Custom Özel @@ -6618,22 +6643,22 @@ plugin_filepreview::MusicMessageView - + Artist: Sanatçı: - + Album: Albüm: - + unknown artist bilinmeyen sanatçı - + unknown album bilinmeyen albüm diff --git a/translations/dde-file-manager_tzm.ts b/translations/dde-file-manager_tzm.ts index ebf6ed57a3..58c66f5690 100644 --- a/translations/dde-file-manager_tzm.ts +++ b/translations/dde-file-manager_tzm.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks - + + Open + Ṛẓem - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open - Ṛẓem + + Operation failed + - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home Asnubg @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer Amessuds @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + + + + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Asertu - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button WAX - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Sser - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Sser - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Sser - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer Amessuds - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Amessuds - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Isdawn - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type Asertu - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Ṛẓem + &Open + - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Ṛẓem + + &Open + - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type Asertu - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Amessuds - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type Asertu - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,55 +5134,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Ṛẓem + &Open + @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Sser - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type Asertu - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK WAX @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button - Sser + + Password hint: %1 + - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password - - + + Failed to delete file vault + + + + OK - button - WAX + + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type Asertu - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button Ṛẓem @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ug.ts b/translations/dde-file-manager_ug.ts index faa69f2331..be4750535b 100644 --- a/translations/dde-file-manager_ug.ts +++ b/translations/dde-file-manager_ug.ts @@ -17,12 +17,12 @@ Application - + File Manager ھۆججەت باشقۇرغۇچ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ھۆججەت باشقۇرغۇچ بولسا كۈچلۈك ۋە ئىشلىتىشكە قۇلايلىق بولغان ھۆججەت باشقۇرۇش قورالى بولۇپ ، ئىزدەش ، كۆپەيتىش ، ئەخلەت ساندۇقى ، پىرىسلاش / يېشىش ، ھۆججەت خاسلىقى ۋە باشقا پايدىلىق ئىقتىدارلار بىلەن ئىپادىلىنىدۇ. @@ -30,7 +30,7 @@ DesktopMain - + Desktop ئۈستەليۈزى @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - ئۈسكۈنە بىخەتەر ئۆچۈرۈلدى + - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 رايۇن @@ -212,7 +212,7 @@ - + %1 on %2 %2 دىكى %1 @@ -886,19 +886,19 @@ (قوشۇمچە %1) - - + + dde-file-manager ھۆججەت باشقۇرغۇچ - + Files are being processed ھۆججەتنى بىر تەرەپ قىلىۋاتىدۇ - + Bit بىت @@ -3004,7 +3004,7 @@ Tree - + دەرەخسىمان كۆرۈنۈش @@ -3277,7 +3277,7 @@ Switch to tree view - + دەرەخسىمان كۆرۈنۈشكە ئالماشتۇرۇش @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - + ھۆججەت %1 نى ئەخلەت ساندۇقىغا يۆتكەش مەغلۇب بولدى @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - + ھۆججەتنى كۆچۈرۈش ياكى كېسىپ چاپلاش مەغلۇپ بولدى! @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - + ھۆججەت %1 نى ئەخلەت ساندۇقىغا يۆتكەش مەغلۇب بولدى، سەۋەبى: %2 @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - + ھۆججەتنى كۆچۈرۈش ياكى كېسىپ چاپلاش مەغلۇپ بولدى، سەۋەبى: %1 @@ -4588,7 +4588,7 @@ Bluetooth - كۆكچىش + @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key شىفىرلىق ئاچقۇچتا ئېچىشنى ئەسلىگە كۈلتۈرۈش - + Input the 32-digit recovery key 32 خانىلىق ئەسلىگە كەلتۈرۈش ئاچقۇچىنى كىرگۈزۈڭ - + Cancel button بىكار قىلىش - + Unlock button قۇلۇپ ئېچىش - + Wrong recovery key پارول خاتا - + Failed to unlock file vault بىخەتەرلىك ساندۇقى ئېچىلمىدى - + OK ماقۇل @@ -5937,6 +5936,11 @@ Forgot password? پارول قايتۇرىمەن + + + Key unlock + + Password @@ -6221,111 +6225,146 @@ Cancel - بىكار قىلىش + Delete - ئۆچۈرۈش + ئۆچۈرۈش Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش Failed to delete file vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرگىلى بولمىدى + OK - ماقۇل + ماقۇل Once deleted, the files in it will be permanently deleted - بىخەتەرلىك ساندۇقىنى ئۆچۈرگەندىن كېيىن، ئۇنىڭدىكى بارلىق مەزمۇن مەڭگۈلۈك ئۆچۈرۈلىدۇ + dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted - بىخەتەرلىك ساندۇقىنى ئۆچۈرگەندىن كېيىن، ئۇنىڭدىكى بارلىق مەزمۇن مەڭگۈلۈك ئۆچۈرۈلىدۇ + - + Password پارول - + + Key delete + + + + Password hint: %1 پارول ئەسكەرتىشى: %1 - + Cancel - بىكار قىلىش + - + Delete - ئۆچۈرۈش + ئۆچۈرۈش - + Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش - + Wrong password - پارول خاتا + پارول خاتا - + Failed to delete file vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرگىلى بولمىدى + - + OK - ماقۇل + ماقۇل dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 32 خانىلىق ئەسلىگە كەلتۈرۈش ئاچقۇچىنى كىرگۈزۈڭ + + + Cancel + + + + + Delete + ئۆچۈرۈش + + + + Delete File Vault + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + + + + Wrong recovery key + پارول خاتا + + + + Failed to delete file vault + + + + + OK + ماقۇل + dfmplugin_vault::VaultRemoveProgressView Removing... - ئۆچۈرۈۋاتىدۇ... + OK - ماقۇل + ماقۇل Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش Deleted successfully - ئۆچۈرۈلدى + @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... يۈكلەۋاتىدۇ... @@ -6399,49 +6438,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by تەرتىپلەش - + Display as كۆرۈنمە شەكلى - + Name نامى - + Time modified ئۆزگەرتىلگەن ۋاقىت - + Size سىغىمى - + Type تىپى - + Icon سىن بەلگە كۆرۈنۈشى - + List تىزىملىك - + Tree - + دەرەخسىمان كۆرۈنۈش diff --git a/translations/dde-file-manager_uk.ts b/translations/dde-file-manager_uk.ts index 442ce987f1..d80163346a 100644 --- a/translations/dde-file-manager_uk.ts +++ b/translations/dde-file-manager_uk.ts @@ -15,99 +15,104 @@ Application - + File Manager Файловий менеджер - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Менеджер файлів - це потужний і простий у використанні інструмент керування файлами з функціями пошуку, копіювання, видалення, стиснення/розпакування, зміни властивостей файлу та іншими корисними функціями. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 - %1 на %2 + + Desktop + Стільниця - DeepinStorage + DeviceList - - - %1 Volume - Том %1 + + Disks + - DesktopMain + DiskMountPlugin - - Desktop - Стільниця + + Disk + Диск - - - DiskControlWidget - - Disks - Диски + + Open + Відкрити - - The device was not safely removed - Пристрій не було безпечно вилучено + + Eject all + Виштовхнути усі + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time - Наступного разу натисніть кнопку «Вилучити безпечно», а вже потім від'єднуйте пристрій + + The device has been safely removed + - - Disk is busy, cannot unmount now - Диск зайнятий, його неможливо розмонтувати зараз + + eject + - - The device is busy, cannot eject now - Пристрій зайнято, його не можна виштовхнути зараз + + unmount + - - - DiskMountPlugin - - Disk - Диск + + + remove + - - Open - Відкрити + + Operation failed + - - Eject all - Виштовхнути усі + + Device (%1) is busy, cannot %2 now. + FileDialogHandle - + All Files Усі файли + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown Невідомо @@ -123,88 +128,89 @@ QObject - + need authorization to access для доступу потрібне уповноваження - + Can't verify the identity of %1. Не вдалося переконатися у ідентичності %1. - + This happens when you log in to a computer the first time. Таке трапляється, якщо ви входите до системи уперше. - + The identity sent by the remote computer is Профіль, який надіслано віддаленим комп'ютером, — - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Якщо ви хочете бути абсолютно певні, що виконання дії є безпечним, проконсультуйтеся в адміністратора вашої системи. - - - + + + System Disk Системний диск - + Data Disk Диск із даними - + Blank %1 Disc Порожній диск %1 - - - + + + Unknown Невідомо - + %1 Drive Пристрій %1 - + %1 Encrypted %1 Зашифрований - + + %1 Volume Том %1 - - + Scanning the device, stop it? Скануємо пристрій. Припинити? - + Unmount failed Не вдалося демонтувати - + Cannot stop scanning device Не вдалося зупинити сканування пристрою - + + %1 on %2 %1 на %2 @@ -213,7 +219,6 @@ - Home Домівка @@ -223,7 +228,6 @@ - Desktop Стільниця @@ -233,7 +237,6 @@ - Videos Відео @@ -243,7 +246,6 @@ - Music Музика @@ -253,7 +255,6 @@ - Pictures Зображення @@ -263,7 +264,6 @@ - Documents Документи @@ -273,7 +273,6 @@ - Downloads Завантаження @@ -282,7 +281,6 @@ - Trash Смітник @@ -293,12 +291,11 @@ - Recent Нещодавні - + @@ -306,7 +303,7 @@ Автоматичне монтування - + @@ -319,47 +316,46 @@ %1 завдань в процесі - + %1 item %1 об'єкт - + %1 items %1 об'єктів - + Unable to find the original file Не вдалося знайти початковий файл - - + + File has been moved or deleted Файл був переміщений чи видалений - - - + + You do not have permission to access this folder У вас немає дозволу на доступ до цієї теки - - + + You do not have permission to traverse files in it Ви не маєте права пересувати тут файли - - + + Folder is empty Порожня тека - + Loading... Завантаження... @@ -408,7 +404,7 @@ - + Built-in disks Вбудовані диски @@ -416,7 +412,6 @@ - Computer Комп'ютер @@ -424,9 +419,8 @@ - - - + + Computers in LAN Комп'ютери в локальній мережі @@ -434,7 +428,7 @@ - + Loop partitions Петльові розділи @@ -442,7 +436,8 @@ - + + Mounted sharing folders Змонтовані спільні теки @@ -450,7 +445,6 @@ - My shares Мої спільні @@ -458,7 +452,7 @@ - + Network Мережа @@ -466,7 +460,7 @@ - + Mounted partitions and discs Змонтовані розділи і диски @@ -474,7 +468,7 @@ - + Partitions Розділи @@ -482,7 +476,7 @@ - + Quick access Швидкий доступ @@ -490,7 +484,7 @@ - + Tag Мітка @@ -498,7 +492,7 @@ - + Added tags Додані мітки @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares Продовжувати показ змонтованих спільних ресурсів Samba @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button Припинити - + Shortcut Ярлик - + This system wallpaper is locked. Please contact your admin. Це загальносистемне фонове зображення заблоковано. Будь ласка, зв'яжіться із адміністратором системи. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (копія) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (копія %1) @@ -909,33 +901,26 @@ Біт - Access denied Доступ заборонено - Confirm button Підтвердити - - - The device has been safely removed - Пристрій було безпечно вилучено - - - + + - - - + + + Open in new window Відкрити у новому вікні @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab Відкрити у новій вкладці @@ -968,8 +953,8 @@ - - + + Properties Властивості @@ -1005,7 +990,7 @@ Новий Файл - + Create symlink Створити посилання @@ -1092,70 +1077,70 @@ Додати на диск - + Are you sure you want to erase all data on the disc? Ви справді хочете витерти усі дані на диску? - + Erase button Витерти - + This action cannot be undone Цю дію не можна скасувати - + How do you want to use this disc? Як ви хочете скористатися цим диском? - + Burn image button Записати образ - + Burn files button Записати файли - + %1 is a duplicate file. %1 є файлом-дублікатом. - + Insufficient disc space. Недостатньо місця на диску. - + Lost connection to drive. Втрачено зв'язок із диском. - + The CD/DVD drive is not ready. Try another disc. Пристрій для записування CD/DVD є неготовим. Спробуйте інший диск. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Пристрій для записування CD/DVD зайнято. Завершіть роботу програми, яка працює із пристроєм, і повторіть спробу. - + Invalid volume name Некоректна назва тому - + Unknown error Невідома помилка @@ -1194,42 +1179,42 @@ Об'єкти: %1 - + Orange Оранжевий - + Red Червоний - + Purple Фіолетовий - + Navy-blue Синій - + Azure Блакитний - + Green Зелений - + Yellow Жовтий - + Gray Сірий @@ -1305,76 +1290,76 @@ Не вдалося отримати доступ - + User directory Каталог користувача - + Local disk Локальний накопичувач - + Removable disk Знімний накопичувач - + DVD DVD - + Network shared directory Мережева спільна директорія - - + + Android mobile device Мобільний пристрій Android - + Apple mobile device Мобільний пристрій Apple - + Unknown device Невідомий пристрій - + Remove button Вилучити - + Do you want to remove this item? Хочете вилучити цей запис? - + Do yout want to remove %1 items? Хочете вилучити %1 записів? - + It does not delete the original files Початкові файли вилучено не буде - + Clear recent history Очистити нещодавню історію - - - + + + Source path Шлях до джерела @@ -1419,12 +1404,12 @@ Не вдалося відкрити записи у смітнику. Будь ласка, спочатку відновіть їх. - + Empty Trash Спорожнити смітник - + Location Місцезнаходження @@ -1524,7 +1509,7 @@ Пошук... - + My Vault Моє сховище @@ -1701,27 +1686,27 @@ Device disconnected - + Пристрій від'єднано ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - + Ідентифікатор=%1, дата і час=%2, записувач=%3, тип диска=%4, результат=%5, користувач=%6, назва файла=%7, розмір файла=%8, тип файла=%9 Success - + Успіх Failed - + Помилка - + Sidebar - + Бічна панель @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + + Not authorized + Не уповноважено + + + + + In trial period + Період тестування + + + + ddplugin_canvas::WatermaskSystem + + + Not authorized Не уповноважено - - + + In trial period Період тестування @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Нова збірка @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Упорядковування стільниці - + Desktop options Параметри стільниці - + Organize by Критерій упорядкування - + Custom collection Нетипова збірка - + Type Тип - + Time accessed Час доступу - + Time modified Час зміни - + Time created Час створення - + Create a collection Створити збірку - - - Display Size - Розмір дисплея - - - - Smaller - Менший - - - - Normal - Звичайний - - - - Larger - Більший - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Параметри стільниці - + Auto arrange icons Автоматичне упорядкування піктограм @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - Розмір дисплея - - - + Icon size Розмір іконки @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Програму для керування файлами буде оновлено до нової версії. Під час оновлення усі виконувані завдання буде перервано. Хочете виконати оновлення зараз? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Служби стільниці буде оновлено до нової версії. Під час оновлення усі виконувані завдання буде перервано. Хочете виконати оновлення зараз? - + Update button Оновити - + Cancel button Скасувати @@ -2385,7 +2360,7 @@ - + %1 item selected %1 об'єкт вибрано @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button Гаразд - + Operation failed! Помилка операції! @@ -2554,191 +2529,191 @@ Цільова тека знаходиться всередині вихідної теки! - + The passphrase is needed to access encrypted data on %1. Потрібе пароль для доступу до зашифрованих даних на %1. - - - - - - - - + + + + + + + + Cancel button Скасувати - + Format button Форматувати - + To access the device, you must format the disk first. Are you sure you want to format it now? Щоб отримати доступ до пристрою, вам слід спочатку виконати форматування диска. Ви справді хочете форматувати диск зараз? - + Do you want to run %1 or display its content? Чи бажаєте запустити %1 або відобразити цей вміст? - + It is an executable text file. Це є виконуваний текстовий файл - - - + + + Run button Запустити - - + + Run in terminal button Запустити в терміналі - + Display button Відобразити - + Do you want to run %1? Ви дійсно хочете запустити %1? - + It is an executable file. Це є виконуваний файл - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Не вдалося пересунути позначені %1 записів до смітника. Хочете остаточно їх вилучити? - + Permanently delete %1 items? Видалити назавжди %1 об'єктів? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Не вдалося пересунути «%1» до смітника. Хочете його остаточно вилучити? - - - + + + Delete button Видалити - + Permanently delete %1? Назавжди видалити %1? - - + + This action cannot be undone Цю дію не можна скасувати - + Are you sure you want to empty %1 item? Ви впевнені, що бажаєте очистити %1 об'єкт? - + Are you sure you want to empty %1 items? Ви впевнені, що бажаєте очистити %1 об'єкти? - + Empty Порожньо - + Do you want to delete %1? Хочете вилучити %1? - + Do you want to delete the selected %1 items? Хочете вилучити позначені %1 записів? - + Failed to restore %1 file, the target folder is read-only Не вдалося відновити файл %1, цільова тека доступна лише для читання - + Failed to restore %1 files, the target folder is read-only Не вдалося відновити файли %1, цільова тека доступна лише для читання - + "%1" already exists, please use another name. "%1" вже використовується, будь ласка введіть інше ім'я - + Device or resource busy Пристрій або ресурс зайнято - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Цей файл буде приховано, якщо його назва починатиметься з «.». Хочете приховати файл? - + Hide Приховати - + Cancel Скасувати - + Unable to access %1 Не вдалося отримати доступ до %1 - + %1 that this shortcut refers to has been changed or moved %1 на що цей ярлик посилається, було змінено або переміщено - + Do you want to delete this shortcut? Ви хочете видалити це ярлик? - + This file is not executable, do you want to add the execute permission and run? Цей файл не є виконуваним. Хочете додати права на виконання і запустити його? - + The selected files contain system file/directory, and it cannot be deleted Вибрані файли містять системний файл/директорію, і його не можливо видалити @@ -2866,280 +2841,278 @@ Введіть пароль для розшифрування диска + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Завжди відкривати теку у новому вікні - + Open file: - + Відкривати файл: - + Click - + клацанням - + Double click - + подвійним клацанням - + New window and tab - + Нове вікно і вкладка - + Open from default window: - + Відкриття з типового вікна: - - + + Computer - + Комп'ютер - - + + Home - + Домівка - - + + Desktop - + Стільниця - - + + Videos - + Відео - - + + Music - + Музика - - + + Pictures - + Зображення - - + + Documents - + Документи - - + + Downloads - + Завантаження - + Open in new tab: - + Відкриття у новій вкладці: - + Current Directory - + Поточний каталог - + Files and folders - + Файли і теки - + Show hidden files - + Показувати приховані файли - + Show file extensions - + Показувати суфікси назв файлів - + Mix sorting of files and folders - + Перемішати файли і теки у списку - + Workspace - + Робочий простір - + View - + Перегляд - + Default size: - + Типовий розмір: - + Extra small - + Дуже малий - + Small - + Малий - + Medium - + Середній - + Large - + Великий - + Extra large + Дуже великий + + + + Tree - + Default view: - + Типовий перегляд: - + Icon - + Піктограма - + List + Список + + + + Restore default view mode for all directories - - Thumbnail preview + + Restore default view mode - + + Thumbnail preview + Перегляд мініатюр + + + Compressed file preview - + Попередній перегляд стисненого файлу - + Text preview - + Перегляд тексту - + Document preview - + Перегляд документів - + Image preview - + Перегляд зображень - + Video preview - + Перегляд відео - + Music preview - + Попереднє прослуховування музики - + The remote environment shows thumbnail previews - + Віддалене середовище показує попередній перегляд мініатюр - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Вмикання попереднього перегляду мініатюр може призвести до повільного завантаження віддаленого каталогу або зависання дії - + Advanced - - - - - Search - + Додатково - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Монтування - + Auto mount - + Автоматичне монтування - + Open after auto mount - - - - - Show item counts and sizes in the path of mounted MTP devices - + Відкривати після автоматичного монтування - + Merge the entries of Samba shared folders - + Об'єднати запису спільних тек Samba - + Switching the entry display may lead to failed mounting - + Перемикання показу записів може призвести до помилок при монтуванні - + Use the file chooser dialog of File Manager - + Використовувати вікно вибору файлів Менеджера файлів - + Ask for my confirmation when deleting files - + Просити підтвердження вилучення файлів @@ -3301,51 +3274,56 @@ + Switch to tree view + + + + Others Інші - + Close Закрити - + Close current tab Закрити поточну вкладку - + Back Назад - + Forward Вперед - + Switch to next tab Переключитися до наступної вкладки - + Switch to previous tab Переключитися до попередньої вкладки - + Next file Наступний файл - + Previous file Попередній файл - + Switch tab by specified number between 1 to 8 Перейдіть на вкладку за вказаним номером від 1 до 8 @@ -3416,47 +3394,43 @@ не вдалося створити дані файла призначення %1 у функції показу конфліктів Info! - + Time modified: %1 Час зміни: %1 - - In data statistics - У статистиці даних - - - + Original folder Початкова тека - + Contains: %1 Вміщує: %1 - + Original file Початковий файл - + Size: %1 Розмір: %1 - + Target folder Тека призначення - + + In data statistics ... - + У статистиці даних… - + Target file Файл призначення @@ -3471,37 +3445,37 @@ Будь ласка, зачекайте - + Keep both button Залишити два - + Skip button Пропустити - - + + Replace button Замінити - + Do not ask again Не запитувати знову - + Retry button Повторити - + Merge button Об'єднати @@ -3515,7 +3489,7 @@ Введіть пароль для захисту оприлюднених тек - + Set a password on the shared folder for non-anonymous access Встановити пароль для теки спільного використання для доступу неанонімних користувачів @@ -3541,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Вибачте, не вдалося знайти ваш каталог швидкого доступу. Його вилучено? - + Cancel button Скасувати - + Remove button Вилучити @@ -3810,81 +3784,80 @@ dfmplugin_computer::Computer - - + Computer Комп'ютер - + Computer display items - + Показані записи комп'ютера - + Hide built-in disks on the Computer page - + Приховати вбудовані диски на сторінці «Комп'ютер» - + Hide loop partitions on the Computer page - + Приховати петльові пристрої на сторінці «Комп'ютер» - + Show file system on disk icon - + Показувати файлову систему на піктограмі диска - + Hide My Directories on the Computer page - + Приховати «Мої каталоги» на сторінці «Комп'ютер» - + Hide 3rd party entries on the Computer page - + Приховати сторонні записи на сторінці «Комп'ютер» dfmplugin_computer::ComputerController - + Unlock device failed Не вдалося розблокувати пристрій - + Wrong password Помилковий пароль - + Rename failed Не вдалося перейменувати - + The device is busy and cannot be renamed now Пристрій зайнято. Його не можна зараз перейменувати. - + Format failed Не вдалося форматувати - + The device is busy and cannot be formatted now Пристрій зайнято. Його не можна зараз форматувати. - + Mount error Помилка монтування - + Cannot access %1 Не вдалося отримати доступ до %1 @@ -3892,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Комп'ютер - + %1 is read-only. Do you want to enable read and write permissions for it? %1 призначено лише для читання. Хочете увімкнути права доступу на запис та читання для нього? - + Once enabled, read/write permission will be granted permanently Після вмикання права на читання-запис буде надано остаточно - + Cancel Скасувати - + Enable Now Увімкнути зараз @@ -3920,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Мої Директорії - + Disks Диски @@ -3933,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Базова інформація - + Device type Тип пристрою - + Total space Загальний розмір - + File system Файлова система - + Contains Вміщує - + Free space Вільний простір - + %1 items %1 об'єктів - + %1 item %1 об'єкт @@ -3976,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 на %2 @@ -3995,27 +3968,27 @@ Розмір - + Dimension Розмір - + Duration Тривалість - + Type Тип - + Accessed Отримано доступ - + Modified Змінено @@ -4285,7 +4258,7 @@ Failed to move the file %1 to trash - + Не вдалося пересунути файл %1 до Смітника @@ -4362,7 +4335,7 @@ Copy or Cut File failed! - + Не вдалося скопіювати або вирізати файл! @@ -4392,7 +4365,7 @@ Failed to move the file %1 to trash, cause: %2 - + Не вдалося пересунути файл %1 до Смітника. Причина: %2 @@ -4411,8 +4384,8 @@ - Copy or Cut File failed,cause: %1 - + Copy or Cut File failed, cause: %1 + Не вдалося скопіювати або вирізати файл. Причина: %1 @@ -4444,30 +4417,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Помилка під час перейменовування файла - + Failed to create the directory Не вдалося створити каталог - + Failed to create the file Не вдалося створити файл - + link file error помилка посилання на файл - - + + Failed to modify file permissions - + Не вдалося змінити права доступу до файла @@ -4482,36 +4455,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste - Вставити + &Paste + - Cut - Вирізати + Cu&t + - Copy - Копіювати + &Copy + dfmplugin_menu::FileOperatorMenuScenePrivate - Open - Відкрити + &Open + - Rename - Перейменувати + Rena&me + - Delete - Видалити + &Delete + @@ -4584,6 +4557,11 @@ Open in terminal Відкрити в терміналі + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4601,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Надіслати до - + + Bluetooth + + + + Create link Створити посилання - + Send to desktop Надіслати на стільницю @@ -4619,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Спільні - - - Bluetooth - Bluetooth - dfmplugin_myshares::MyShareMenuScenePrivate - - Open - Відкрити + + &Open + - + Open in new window Відкрити у новому вікні - + Open in new tab Відкрити у новій вкладці - + Cancel sharing Скасувати обмін - - Properties - Властивості + + P&roperties + dfmplugin_myshares::MyShares - + My Shares Мої спільні @@ -4705,7 +4683,7 @@ Немає файлів для записування - + Unable to burn. Not enough free space on the target disk. Не вдалося записати. Недостатньо вільного місця на диску призначення. @@ -4713,58 +4691,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Базова інформація - + Size Розмір - + Contains Вміщує - + Type Тип - + Location Місцезнаходження - + Time created Час створення - + Time accessed Час доступу - + Time modified Час зміни - + Hide this file Приховати цей файл - - + + %1 item %1 об'єкт - + %1 items %1 об'єктів @@ -4785,27 +4763,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Для захисту ключів - + For Government Для урядових організацій - + For Enterprise Для промисловості - + Bit Біт - + Available Доступна @@ -4813,47 +4791,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Комп'ютер - + Basic Info Базова інформація - + Computer name Назва комп’ютера - + Version Версія - + Edition Редагування - + OS build Збірка ОС - + Type Тип - + Processor Процесор - + Memory Памʼять @@ -4896,6 +4874,14 @@ %1 файл(и), %2 тека(и) + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4915,15 +4901,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties - Властивості + P&roperties + dfmplugin_recent::Recent - - + Recent Нещодавні @@ -4931,17 +4916,17 @@ dfmplugin_recent::RecentManager - + Path Шлях - + Last access Останній доступ - + Recent Нещодавні @@ -4972,127 +4957,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Шукати: - + File Type: Тип файла: - + File Size: Розмір файла: - + Time Modified: Внесення змін: - + Time Accessed: Час доступу: - + Time Created: Час створення: - + Reset Скинути - + All subdirectories Усі підкаталоги - + Current directory Поточний каталог - + Application Програма - + Video Відео - + Audio Аудіо - + Image Зображення - + Archive Архів - + Text Текст - + Executable Виконуваний - + Backup file Файл резервної копії - + Today Сьогодні - + Yesterday Вчора - + This week Цього тижня - + Last week Минулого тижня - + This month Цього місяця - + Last month Минулого місяця - + This year Цього року - + Last year Минулого року @@ -5100,15 +5085,31 @@ dfmplugin_search::Search - + + Search Пошук + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path Шлях @@ -5116,17 +5117,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Відкрити розташування файлу - + Select all Вибрати все - + Path Шлях @@ -5134,55 +5135,42 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Швидкий доступ - + Partitions Розділи - + Network Мережа - + Tag Мітка - - Bookmark - Закладка - - - + Other Інше - + Unknown Group Невідома груп - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - Комп'ютери в локальній мережі - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open - Відкрити + &Open + @@ -5196,8 +5184,8 @@ - Properties - Властивості + P&roperties + @@ -5231,7 +5219,7 @@ dfmplugin_tag::Tag - + Tag Мітка @@ -5239,7 +5227,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Відкрити розташування файлу @@ -5289,56 +5277,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Підключення до сервера - - - + + + Clear History Очистити історію - + Unfavorite Прибрати з улюблених - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button Скасувати - + Connect button Під'єднатися - + Charset Encoding Кодування символів - + Default Типове - + My Favorites Улюблені - + No favorites yet Улюблених записів ще немає - + Favorite Додати до улюблених @@ -5478,12 +5476,12 @@ dfmplugin_trash::TrashHelper - + Source Path Шлях до джерела - + Time deleted Час видалення @@ -5491,27 +5489,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Відновити - + Restore all Відновити все - + Empty trash Спорожнити смітник - + Source path Шлях до джерела - + Time deleted Час видалення @@ -5519,7 +5517,7 @@ dfmplugin_trashcore::TrashCore - + Trash Смітник @@ -5532,17 +5530,17 @@ Смітник - + item об'єкт - + items об'єктів - + Contains %1 %2 Вміщує %1 %2 @@ -5724,42 +5722,42 @@ dfmplugin_vault::BasicWidget - + Basic info Базова інформація - + Size Розмір - + Contains Вміщує - + Type Тип - + Location Місцезнаходження - + Time created Час створення - + Time accessed Час доступу - + Time locked Час блокування @@ -5931,7 +5929,7 @@ Unlock File Vault - Не вдалося розблокувати файлове сховище + Розблокувати файлове сховище @@ -5990,7 +5988,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Зашифрувати сховище файлів @@ -6011,19 +6009,19 @@ - - - + + + Encrypt Зашифрувати - + Failed to create file vault: %1 Не вдалося створити сховище файлів: %1 - + OK Гаразд @@ -6074,7 +6072,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Встановлення пароля сховища @@ -6100,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 символів, може містити A-Z, a-z, 0-9 та символи пунктуації @@ -6135,8 +6133,8 @@ Наступний - - + + Passwords do not match Паролі не збігаються @@ -6144,7 +6142,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Файлове сховище @@ -6194,7 +6192,7 @@ dfmplugin_vault::VaultHelper - + Vault Сховище @@ -6204,7 +6202,7 @@ Сховище недоступне, оскільки не встановлено cryfs! - + A task is in progress, so it cannot perform your operation Виконуємо завдання. Отже, виконання вашої дії неможливе. @@ -6212,99 +6210,122 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Моє сховище + + dfmplugin_vault::VaultRemoveByNoneWidget + + + Cancel + Скасувати + + + + Delete + Вилучити + + + + Delete File Vault + Вилучити сховище файлів + + + + Failed to delete file vault + Не вдалося вилучити сховище файлів + + + + OK + Гаразд + + + + Once deleted, the files in it will be permanently deleted + У результаті вилучення сховища файли буде остаточно вилучено + + dfmplugin_vault::VaultRemoveByPasswordView - + + Once deleted, the files in it will be permanently deleted + У результаті вилучення сховища файли буде остаточно вилучено + + + Password Пароль - + Password hint: %1 Підказка пароля: %1 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Введіть 32-цифровий ключ відновлення + + Cancel + Скасувати + + + + Delete + Вилучити - - - dfmplugin_vault::VaultRemovePages - + Delete File Vault Вилучити сховище файлів - - Once deleted, the files in it will be permanently deleted - У результаті вилучення сховища файли буде остаточно вилучено + + Wrong password + Помилковий пароль - - Cancel - button - Скасувати + + Failed to delete file vault + Не вдалося вилучити сховище файлів - - Use Key - button - Використати ключ + + OK + Гаразд + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Delete - button - Видалити + + Input the 32-digit recovery key + Введіть 32-цифровий ключ відновлення + + + dfmplugin_vault::VaultRemoveProgressView - + Removing... Вилучення… - - + OK - button Гаразд - - Wrong password - Помилковий пароль - - - - Wrong recovery key - Помилковий ключ відновлення - - - - Failed to delete file vault - Не вдалося вилучити сховище файлів + + Delete File Vault + Вилучити сховище файлів - + Deleted successfully Успішно вилучено - - - Failed to delete - Не вдалося вилучити - dfmplugin_vault::VaultVisibleManager @@ -6314,16 +6335,10 @@ Моє сховище - + File Vault Файлове сховище - - - - Vault - Сховище - dfmplugin_workspace::FileOperatorHelper @@ -6336,22 +6351,22 @@ dfmplugin_workspace::FileViewModel - + Name Назва - + Time modified Час зміни - + Size Розмір - + Type Тип @@ -6367,7 +6382,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 заборонено @@ -6383,45 +6398,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Сортувати за - + Display as Відобразити як - + Name Назва - + Time modified Час зміни - + Size Розмір - + Type Тип - + Icon Піктограма - + List Список + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6434,7 +6454,7 @@ filedialog_core::FileDialog - + Save button Зберегти @@ -6443,13 +6463,13 @@ filedialog_core::FileDialogStatusBar - + Save button Зберегти - + Open button Відкрити @@ -6487,112 +6507,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Доступні розміри: - + Custom Size Нетиповий розмір - + Device Pixel Ratio: Формат пристрою у пікселях: - + Theme: Тема: - + Light Світла - + Dark Темна - + Mode: Режим: - + Normal Звичайний - + Disabled Вимкнено - + Hovered Наведення - + Pressed Натискання - + Palette Палітра - + Current mode icon does not support the palette Для поточної піктограми режимів не передбачено підтримки палітри - + Foreground: Передній план: - + Background: Тло: - + Highlight: Підсвічування: - + HighlightForeground: Підсвічений передній план: - + Background Color: Колір тла: - + White Білий - + Black Чорний - + Transparent Прозорий - + Custom Нетиповий @@ -6624,24 +6644,24 @@ plugin_filepreview::MusicMessageView - + Artist: Виконавець: - + Album: Альбом: - + unknown artist невідомий виконавець - + unknown album невідомий альбом - + \ No newline at end of file diff --git a/translations/dde-file-manager_ur.ts b/translations/dde-file-manager_ur.ts index c288a557f3..1db8e7e71b 100644 --- a/translations/dde-file-manager_ur.ts +++ b/translations/dde-file-manager_ur.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_uz.ts b/translations/dde-file-manager_uz.ts index b07b591e8f..ab06f2df3d 100644 --- a/translations/dde-file-manager_uz.ts +++ b/translations/dde-file-manager_uz.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_vi.ts b/translations/dde-file-manager_vi.ts index 45bd327464..fa06e68f23 100644 --- a/translations/dde-file-manager_vi.ts +++ b/translations/dde-file-manager_vi.ts @@ -15,99 +15,104 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DAttachedProtocolDevice + DesktopMain - - %1 on %2 + + Desktop - DeepinStorage + DeviceList - - - %1 Volume + + Disks - DesktopMain + DiskMountPlugin - - Desktop + + Disk - - - DiskControlWidget - - Disks + + Open - - The device was not safely removed + + Eject all + + + DockItemDataManager - - Click "Safely Remove" and then disconnect it next time + + The device has been safely removed - - Disk is busy, cannot unmount now + + eject - - The device is busy, cannot eject now + + unmount - - - DiskMountPlugin - - Disk + + + remove - - Open + + Operation failed - - Eject all + + Device (%1) is busy, cannot %2 now. FileDialogHandle - + All Files + + FileOperateBaseWorker + + + The file name or the path is too long! + + + MimeTypeDisplayManager - + Unknown @@ -123,88 +128,89 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - + + %1 Volume - - + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - + + %1 on %2 @@ -213,7 +219,6 @@ - Home @@ -223,7 +228,6 @@ - Desktop @@ -233,7 +237,6 @@ - Videos @@ -243,7 +246,6 @@ - Music @@ -253,7 +255,6 @@ - Pictures @@ -263,7 +264,6 @@ - Documents @@ -273,7 +273,6 @@ - Downloads @@ -282,7 +281,6 @@ - Trash @@ -293,12 +291,11 @@ - Recent - + @@ -306,7 +303,7 @@ - + @@ -319,47 +316,46 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - - + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -408,7 +404,7 @@ - + Built-in disks @@ -416,7 +412,6 @@ - Computer @@ -424,9 +419,8 @@ - - - + + Computers in LAN @@ -434,7 +428,7 @@ - + Loop partitions @@ -442,7 +436,8 @@ - + + Mounted sharing folders @@ -450,7 +445,6 @@ - My shares @@ -458,7 +452,7 @@ - + Network @@ -466,7 +460,7 @@ - + Mounted partitions and discs @@ -474,7 +468,7 @@ - + Partitions @@ -482,7 +476,7 @@ - + Quick access @@ -490,7 +484,7 @@ - + Tag @@ -498,7 +492,7 @@ - + Added tags @@ -513,7 +507,7 @@ - + Keep showing the mounted Samba shares @@ -847,16 +841,15 @@ - - - + + - + Cancel button @@ -864,29 +857,28 @@ - Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -909,33 +901,26 @@ - Access denied - Confirm button - - - The device has been safely removed - - - - + + - - - + + + Open in new window @@ -944,12 +929,12 @@ - - + + - - - + + + Open in new tab @@ -968,8 +953,8 @@ - - + + Properties @@ -1005,7 +990,7 @@ - + Create symlink @@ -1092,70 +1077,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1194,42 +1179,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1305,76 +1290,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1419,12 +1404,12 @@ - + Empty Trash - + Location @@ -1524,7 +1509,7 @@ - + My Vault @@ -1719,7 +1704,7 @@ - + Sidebar @@ -1902,14 +1887,29 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + + In trial period + + + + + ddplugin_canvas::WatermaskSystem + + + + Not authorized + + + + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,70 +1981,50 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection - - - Display Size - - - - - Smaller - - - - - Normal - - - - - Larger - - ddplugin_organizer::ItemEditor @@ -2065,12 +2045,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2175,12 +2155,7 @@ ddplugin_organizer::SizeSlider - - Display size - - - - + Icon size @@ -2349,23 +2324,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2385,7 +2360,7 @@ - + %1 item selected @@ -2424,10 +2399,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2536,15 +2511,15 @@ - - + + OK button - + Operation failed! @@ -2554,191 +2529,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2866,278 +2841,276 @@ + + dfmbase::RightValueWidget + + + Copy complete info + + + dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - + + Tree + + + + Default view: - + Icon - + List - + + Restore default view mode for all directories + + + + + Restore default view mode + + + + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - - Search - - - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - - - + Mount - + Auto mount - + Open after auto mount - - Show item counts and sizes in the path of mounted MTP devices - - - - + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3301,51 +3274,56 @@ - Others + Switch to tree view - Close + Others - Close current tab + Close - Back + Close current tab - Forward + Back - Switch to next tab + Forward - Switch to previous tab + Switch to next tab - Next file + Switch to previous tab - Previous file + Next file + Previous file + + + + Switch tab by specified number between 1 to 8 @@ -3416,42 +3394,43 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - + + In data statistics ... - + Target file @@ -3466,37 +3445,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3510,7 +3489,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3536,18 +3515,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3805,38 +3784,37 @@ dfmplugin_computer::Computer - - + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3844,42 +3822,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3887,27 +3865,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3915,12 +3893,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3928,42 +3906,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3971,7 +3949,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3990,27 +3968,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4406,7 +4384,7 @@ - Copy or Cut File failed,cause: %1 + Copy or Cut File failed, cause: %1 @@ -4439,28 +4417,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4477,17 +4455,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - Paste + &Paste - Cut + Cu&t - Copy + &Copy @@ -4495,17 +4473,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - Open + &Open - Rename + Rena&me - Delete + &Delete @@ -4579,6 +4557,11 @@ Open in terminal + + + Reverse select + + dfmplugin_menu::OpenWithMenuScenePrivate @@ -4596,17 +4579,22 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - + + Bluetooth + + + + Create link - + Send to desktop @@ -4614,48 +4602,43 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - - - Bluetooth - - dfmplugin_myshares::MyShareMenuScenePrivate - - Open + + &Open - + Open in new window - + Open in new tab - + Cancel sharing - - Properties + + P&roperties dfmplugin_myshares::MyShares - + My Shares @@ -4699,7 +4682,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4707,58 +4690,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4779,27 +4762,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4807,47 +4790,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4890,6 +4873,14 @@ + + dfmplugin_propertydialog::NameTextEdit + + + %1 are not allowed + + + dfmplugin_propertydialog::PermissionManagerWidget @@ -4909,15 +4900,14 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - Properties + P&roperties dfmplugin_recent::Recent - - + Recent @@ -4925,17 +4915,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4966,127 +4956,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5094,15 +5084,31 @@ dfmplugin_search::Search - + + Search + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + dfmplugin_search::SearchHelper - + Path @@ -5110,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5128,54 +5134,41 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - - Bookmark - - - - + Other - + Unknown Group - - dfmplugin_smbbrowser::SmbBrowser - - - Computers in LAN - - - dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - Open + &Open @@ -5190,7 +5183,7 @@ - Properties + P&roperties @@ -5225,7 +5218,7 @@ dfmplugin_tag::Tag - + Tag @@ -5233,7 +5226,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5283,56 +5276,66 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - + + Error + + + + + Unable to favorite illegitimate url! + + + + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5472,12 +5475,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5485,27 +5488,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5513,7 +5516,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5526,17 +5529,17 @@ - + item - + items - + Contains %1 %2 @@ -5718,42 +5721,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5983,7 +5986,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6004,19 +6007,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6067,7 +6070,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6093,7 +6096,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6128,8 +6131,8 @@ - - + + Passwords do not match @@ -6137,7 +6140,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6187,7 +6190,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6197,7 +6200,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6205,97 +6208,120 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByNoneWidget - - Password + + Cancel - - Password hint: %1 + + Delete - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Delete File Vault + + + + + Failed to delete file vault + + + + + OK + + + + + Once deleted, the files in it will be permanently deleted - dfmplugin_vault::VaultRemovePages + dfmplugin_vault::VaultRemoveByPasswordView - - Delete File Vault + + Once deleted, the files in it will be permanently deleted - - Once deleted, the files in it will be permanently deleted + + Password - - Cancel - button + + Password hint: %1 - - Use Key - button + + Cancel - + Delete - button - - Removing... + + Delete File Vault + + + + + Wrong password + + + + + Failed to delete file vault - - + OK - button + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Wrong password + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemoveProgressView - - Wrong recovery key + + Removing... - - Failed to delete file vault + + OK - - Deleted successfully + + Delete File Vault - - Failed to delete + + Deleted successfully @@ -6307,16 +6333,10 @@ - + File Vault - - - - Vault - - dfmplugin_workspace::FileOperatorHelper @@ -6329,22 +6349,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6360,7 +6380,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6376,45 +6396,50 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List + + + Tree + + dfmplugin_workspace::WorkspaceMenuScene @@ -6427,7 +6452,7 @@ filedialog_core::FileDialog - + Save button @@ -6436,13 +6461,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6480,112 +6505,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6617,22 +6642,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_zh_CN.ts b/translations/dde-file-manager_zh_CN.ts index 0670b2000a..3771b76baf 100644 --- a/translations/dde-file-manager_zh_CN.ts +++ b/translations/dde-file-manager_zh_CN.ts @@ -17,12 +17,12 @@ Application - + File Manager 文件管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 文件管理器是一款功能强大的文件管理工具,它包括搜索、复制、回收站、压缩/解压缩,文件属性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -64,35 +64,35 @@ DockItemDataManager - + The device has been safely removed - 设备已被安全移除 + - + eject - 弹出 + - + unmount - 卸载 + - - + + remove - 移除 + - + Operation failed - 操作失败 + - + Device (%1) is busy, cannot %2 now. - 设备(%1)正忙,无法%2。 + @@ -108,7 +108,7 @@ The file name or the path is too long! - 文件名称或路径太长! + @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在处理文件 - + Bit @@ -1688,7 +1688,7 @@ Device disconnected - 设备断开连接 + 光驱设备未连接 @@ -2848,7 +2848,7 @@ Copy complete info - 复制完整信息 + @@ -2944,7 +2944,7 @@ Files and folders - 文件和文件夹 + 文件和目录 @@ -2979,7 +2979,7 @@ Extra small - 极小 + 特小 @@ -2999,7 +2999,7 @@ Extra large - 极大 + 特大 @@ -3024,12 +3024,12 @@ Restore default view mode for all directories - 所有目录恢复默认视图 + Restore default view mode - 恢复默认视图 + @@ -3818,7 +3818,7 @@ Hide 3rd party entries on the Computer page - 计算机工作区隐藏第三方入口 + 计算机工作区隐藏第三方项 @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - 将文件 %1 移至回收站失败 + 移动文件 %1 到回收站失败 @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - 复制或剪切文件失败! + 拷贝或剪贴文件失败! @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - 将文件 %1 移至回收站失败,原因是: %2 + 移动文件 %1 到回收站失败,原因: %2 @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - 复制或剪切文件失败,原因:%1 + 拷贝或剪贴文件失败,原因: %1 @@ -4458,17 +4458,17 @@ &Paste - 粘贴(&P) + Cu&t - 剪切(&T) + &Copy - 复制(&C) + @@ -4476,17 +4476,17 @@ &Open - 打开(&O) + Rena&me - 重命名(&M) + &Delete - 删除(&D) + @@ -4562,7 +4562,7 @@ Reverse select - 反选 + @@ -4588,7 +4588,7 @@ Bluetooth - 蓝牙 + @@ -4614,7 +4614,7 @@ &Open - 打开(&O) + @@ -4634,7 +4634,7 @@ P&roperties - 属性(&R) + @@ -4671,7 +4671,7 @@ 1. It is not %1 disc; 2. The version of this file system does not support adding files yet. - 1. 它不是%1磁盘; + 1. 它不是%1磁盘;69/5000 2. 这个文件系统的版本还不支持添加文件。 @@ -4904,7 +4904,7 @@ P&roperties - 属性(&R) + @@ -5172,7 +5172,7 @@ &Open - 打开(&O) + @@ -5187,7 +5187,7 @@ P&roperties - 属性(&R) + @@ -5303,7 +5303,7 @@ Unable to favorite illegitimate url! - 非法url无法收藏! + @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key 恢复密钥解锁 - + Input the 32-digit recovery key 请输入32位恢复密钥 - + Cancel button 取 消 - + Unlock button 解锁 - + Wrong recovery key 密钥错误 - + Failed to unlock file vault 解锁保险箱失败 - + OK 确 定 @@ -5937,6 +5936,11 @@ Forgot password? 忘记密码? + + + Key unlock + 秘钥解锁 + Password @@ -6236,7 +6240,7 @@ Failed to delete file vault - 删除保险箱失败 + 解锁保险箱失败 @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 删除保险箱后,其中的所有内容将会被永久删除 - + Password 密码 - + + Key delete + 使用秘钥 + + + Password hint: %1 密码提示:%1 - + Cancel 取 消 - + Delete 删 除 - + Delete File Vault 删除保险箱 - + Wrong password 密码错误 - + Failed to delete file vault 删除保险箱失败 - + OK 确 定 @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 请输入32位恢复密钥 + + + Cancel + 取 消 + + + + Delete + 删 除 + + + + Delete File Vault + 删除保险箱 + + + + Wrong recovery key + 密钥错误 + + + + Failed to delete file vault + 删除保险箱失败 + + + + OK + 确 定 + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在加载... @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 显示方式 - + Name 名称 - + Time modified 修改时间 - + Size 大小 - + Type 类型 - + Icon 图标视图 - + List 列表视图 - + Tree 树形视图 diff --git a/translations/dde-file-manager_zh_HK.ts b/translations/dde-file-manager_zh_HK.ts index 8e404ab4cf..b22d0b2313 100644 --- a/translations/dde-file-manager_zh_HK.ts +++ b/translations/dde-file-manager_zh_HK.ts @@ -17,12 +17,12 @@ Application - + File Manager 文件管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 文件管理器是一款功能強大的文件管理工具,它包括搜索、複製、回收站、壓縮/解壓縮,文件屬性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -40,7 +40,7 @@ Disks - 磁盤列表 + 磁盤列表 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - 設備已被安全移除 + - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在處理文件 - + Bit @@ -3004,7 +3004,7 @@ Tree - + 樹形視圖 @@ -3277,7 +3277,7 @@ Switch to tree view - + 切換到樹形視圖 @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - + 移動文件 %1 到回收站失敗 @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - + 拷貝或剪貼文件失敗! @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - + 移動文件 %1 到回收站失敗,原因: %2 @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - + 拷貝或剪貼文件失敗,原因: %1 @@ -4588,7 +4588,7 @@ Bluetooth - 藍牙 + @@ -4881,7 +4881,7 @@ %1 are not allowed - 不得含有%1 + 不得含有%1 @@ -5095,17 +5095,17 @@ Auto index internal disk - 自動索引內置磁盤 + 自動索引內置磁盤 Index external storage device after connected to computer - 連接電腦後索引外部存儲設備 + 連接電腦後索引外部存儲設備 Full-Text search - 全文搜索 + 全文搜索 @@ -5298,7 +5298,7 @@ Error - 錯誤訊息 + 錯誤訊息 @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key 恢復密鑰解鎖 - + Input the 32-digit recovery key 請輸入32位恢復密鑰 - + Cancel button 取 消 - + Unlock button 解鎖 - + Wrong recovery key 密鑰錯誤 - + Failed to unlock file vault 解鎖保險箱失敗 - + OK 確 定 @@ -5937,6 +5936,11 @@ Forgot password? 忘記密碼? + + + Key unlock + 密鑰解鎖 + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 刪除保險箱後,其中的所有內容將會被永久刪除 - + Password 密碼 - + + Key delete + 密鑰刪除 + + + Password hint: %1 密碼提示:%1 - + Cancel 取 消 - + Delete 刪 除 - + Delete File Vault 刪除保險箱 - + Wrong password 密碼錯誤 - + Failed to delete file vault 刪除保險箱失敗 - + OK 確 定 @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 請輸入32位恢復密鑰 + + + Cancel + 取 消 + + + + Delete + 刪 除 + + + + Delete File Vault + 刪除保險箱 + + + + Wrong recovery key + 密鑰錯誤 + + + + Failed to delete file vault + 刪除保險箱失敗 + + + + OK + 確 定 + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在加載... @@ -6399,49 +6438,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 顯示方式 - + Name 名稱 - + Time modified 修改時間 - + Size 大小 - + Type 類型 - + Icon 圖標視圖 - + List 列表視圖 - + Tree - + 樹形視圖 diff --git a/translations/dde-file-manager_zh_TW.ts b/translations/dde-file-manager_zh_TW.ts index 3e054b3c4b..eb13f4541c 100644 --- a/translations/dde-file-manager_zh_TW.ts +++ b/translations/dde-file-manager_zh_TW.ts @@ -17,12 +17,12 @@ Application - + File Manager 檔案管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 檔案管理器是一款功能強大的文件管理工具,它包括搜尋、複製、回收站、壓縮/解壓縮,文件屬性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -40,7 +40,7 @@ Disks - 磁碟列表 + 磁碟列表 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - 裝置已被安全移除 + - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在處理文件 - + Bit @@ -3004,7 +3004,7 @@ Tree - + 樹形檢視 @@ -3277,7 +3277,7 @@ Switch to tree view - + 切換到樹形檢視 @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - + 移動文件 %1 到回收站失敗 @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - + 複製或剪貼文件失敗! @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - + 移動文件 %1 到回收站失敗,原因: %2 @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - + 複製或剪貼文件失敗,原因: %1 @@ -4588,7 +4588,7 @@ Bluetooth - 藍牙 + @@ -4881,7 +4881,7 @@ %1 are not allowed - 不得含有%1 + 不得含有%1 @@ -5095,17 +5095,17 @@ Auto index internal disk - 自動索引內建磁碟 + 自動索引內建磁碟 Index external storage device after connected to computer - 連接電腦後索引外部儲存裝置 + 連接電腦後索引外部儲存裝置 Full-Text search - 全文搜尋 + 全文搜尋 @@ -5298,7 +5298,7 @@ Error - 錯誤訊息 + 錯誤訊息 @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key 復原金鑰解鎖 - + Input the 32-digit recovery key 請輸入32位復原金鑰 - + Cancel button 取 消 - + Unlock button 解鎖 - + Wrong recovery key 金鑰錯誤 - + Failed to unlock file vault 解鎖保險箱失敗 - + OK 確 定 @@ -5937,6 +5936,11 @@ Forgot password? 忘記密碼? + + + Key unlock + 金鑰解鎖 + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 刪除保險箱後,其中的所有內容將會被永久刪除 - + Password 密碼 - + + Key delete + 金鑰刪除 + + + Password hint: %1 密碼提示:%1 - + Cancel 取 消 - + Delete 刪 除 - + Delete File Vault 刪除保險箱 - + Wrong password 密碼錯誤 - + Failed to delete file vault 刪除保險箱失敗 - + OK 確 定 @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 請輸入32位復原金鑰 + + + Cancel + 取 消 + + + + Delete + 刪 除 + + + + Delete File Vault + 刪除保險箱 + + + + Wrong recovery key + 金鑰錯誤 + + + + Failed to delete file vault + 刪除保險箱失敗 + + + + OK + 確 定 + dfmplugin_vault::VaultRemoveProgressView @@ -6325,7 +6364,7 @@ Deleted successfully - 刪除成功 + 成功刪除 @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在載入... @@ -6399,49 +6438,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 顯示方式 - + Name 名稱 - + Time modified 修改時間 - + Size 大小 - + Type 類型 - + Icon 圖示檢視 - + List 列表檢視 - + Tree - + 樹形檢視 From 140c58fcec7337a19e5d3c6d29dae9163dd98f55 Mon Sep 17 00:00:00 2001 From: liuyangming Date: Fri, 19 Jan 2024 10:02:05 +0800 Subject: [PATCH 15/25] fix: [workspace]display issue reset the item name label rect. Log: fix dissplay issue Bug: https://pms.uniontech.com/bug-view-239625.html --- .../core/dfmplugin-workspace/views/expandedItem.cpp | 10 +++++----- .../dfmplugin-workspace/views/iconitemdelegate.cpp | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/expandedItem.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/views/expandedItem.cpp index 3ebdc9631f..e163b22806 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/expandedItem.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/expandedItem.cpp @@ -57,10 +57,10 @@ void ExpandedItem::paintEvent(QPaintEvent *) const QMargins &margins = contentsMargins(); - QRectF labelRect(kIconModeTextPadding + margins.left(), - margins.top() + iconHeight + kIconModeTextPadding + 2 * kIconModeIconSpacing, - width() - kIconModeTextPadding * 2 - margins.left() - margins.right(), - INT_MAX); + QRect labelRect(kIconModeRectRadius + margins.left(), + iconHeight + kIconModeTextPadding + 2 * kIconModeIconSpacing + margins.top(), + width() - kIconModeRectRadius * 2, + INT_MAX); QString str = delegate->displayFileName(index); @@ -174,7 +174,7 @@ QRectF ExpandedItem::textGeometry(int width) const QRect labelRect(kIconModeTextPadding + margins.left(), iconHeight + kIconModeTextPadding + 2 * kIconModeIconSpacing + margins.top(), - width - kIconModeTextPadding * 2, + width - kIconModeRectRadius * 2, INT_MAX); QString str = delegate->displayFileName(index); diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/iconitemdelegate.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/views/iconitemdelegate.cpp index cfb0b9ebe5..a4d9efd92e 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/iconitemdelegate.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/iconitemdelegate.cpp @@ -559,12 +559,13 @@ void IconItemDelegate::paintItemFileName(QPainter *painter, QRectF iconRect, QPa : QBrush(Qt::NoBrush); QScopedPointer layout(ItemDelegateHelper::createTextLayout(displayName, QTextOption::WrapAtWordBoundaryOrAnywhere, d->textLineHeight, Qt::AlignCenter, painter)); + + labelRect.setLeft(labelRect.left() + kIconModeRectRadius); labelRect.setWidth(labelRect.width() - kIconModeRectRadius); const FileInfoPointer &info = parent()->fileInfo(index); WorkspaceEventSequence::instance()->doIconItemLayoutText(info, layout.data()); if (!singleSelected && isSelectedOpt) { layout->setAttribute(ElideTextLayout::kBackgroundRadius, kIconModeRectRadius); - labelRect.setLeft(labelRect.left() + kIconModeRectRadius); } layout->layout(labelRect, opt.textElideMode, painter, background); @@ -653,7 +654,7 @@ void IconItemDelegate::updateEditorGeometry(QWidget *editor, const QStyleOptionV //重置textBounding,使其在adjustSize重新计算,否则在调整图标大小时使用旧的textBounding计算导致显示不全 d->expandedItem->show(); d->expandedItem->setTextBounding(QRect()); - editor->setFixedWidth(option.rect.width() - kIconModeRectRadius); + editor->setFixedWidth(option.rect.width()); d->expandedItem->setIconHeight(iconSize.height()); editor->adjustSize(); From 10732f07f4cccd755fb08e86b42a9df9668908bc Mon Sep 17 00:00:00 2001 From: Zhang Sheng Date: Fri, 19 Jan 2024 14:43:33 +0800 Subject: [PATCH 16/25] fix: [admin] scale-factor export QT_SCALE_FACTOR = scale-factor of curent user Log: set scale-factor for admin Bug: https://pms.uniontech.com/bug-view-232923.html --- .../pkexec/dde-file-manager-pkexec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/apps/dde-file-manager/pkexec/dde-file-manager-pkexec b/src/apps/dde-file-manager/pkexec/dde-file-manager-pkexec index fa4cf4b631..3d2d121584 100644 --- a/src/apps/dde-file-manager/pkexec/dde-file-manager-pkexec +++ b/src/apps/dde-file-manager/pkexec/dde-file-manager-pkexec @@ -6,6 +6,17 @@ # Reference: # https://wikidev.uniontech.com/%E8%BF%9B%E7%A8%8B%E8%BF%90%E8%A1%8C%E6%9D%83%E9%99%90%E4%B8%8E%E6%8F%90%E6%9D%83 +function get_scale_factor() { + user_name=$(logname) + scaling=$(sudo -u "$user_name" dbus-launch gsettings get com.deepin.xsettings scale-factor) + + if (( $(bc <<< "$scaling >= 1 && $scaling <= 10") )); then + echo $scaling + else + echo "Error: Invalid scaling factor: $scaling" >&2 + echo 1 + fi +} function run_pkexec() { xhost +SI:localuser:root @@ -29,6 +40,12 @@ function run_app() { export GDK_BACKEND=x11 export $(dbus-launch) + scale_factor=$(get_scale_factor) + if [ "$scale_factor" != "1" ]; then + echo "export scaling: $scale_factor" + export QT_SCALE_FACTOR=$scale_factor + fi + dde-file-manager "$1" -w "$(pwd)" } From 1319bb0763c30ae3240725459d1d0fa93a05e1d8 Mon Sep 17 00:00:00 2001 From: liyigang Date: Fri, 19 Jan 2024 11:22:55 +0800 Subject: [PATCH 17/25] fix: After restarting the system and reconnecting with the folder sent to the desktop by the SMB server, it is still not possible to drag files to the folder of this shortcut on the desktop Add desktop refresh handling during protocol device mounting and uninstallation Log: After restarting the system and reconnecting with the folder sent to the desktop by the SMB server, it is still not possible to drag files to the folder of this shortcut on the desktop Bug: https://pms.uniontech.com/bug-view-236365.html --- .../core/serverplugin-core/devicemanagerdbus.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/plugins/server/core/serverplugin-core/devicemanagerdbus.cpp b/src/plugins/server/core/serverplugin-core/devicemanagerdbus.cpp index a3723f85fb..5299517373 100644 --- a/src/plugins/server/core/serverplugin-core/devicemanagerdbus.cpp +++ b/src/plugins/server/core/serverplugin-core/devicemanagerdbus.cpp @@ -78,10 +78,19 @@ void DeviceManagerDBus::initConnection() emit this->BlockDevicePropertyChanged(id, property, QDBusVariant(val)); }); - connect(DevMngIns, &DeviceManager::protocolDevMounted, this, &DeviceManagerDBus::ProtocolDeviceMounted); - connect(DevMngIns, &DeviceManager::protocolDevUnmounted, this, &DeviceManagerDBus::ProtocolDeviceUnmounted); - connect(DevMngIns, &DeviceManager::protocolDevAdded, this, &DeviceManagerDBus::ProtocolDeviceAdded); connect(DevMngIns, &DeviceManager::protocolDevRemoved, this, &DeviceManagerDBus::ProtocolDeviceRemoved); + connect(DevMngIns, &DeviceManager::protocolDevMounted, this, [this](const QString &id, const QString &mpt) { + emit ProtocolDeviceMounted(id, mpt); + requestRefreshDesktopAsNeeded(mpt, "onMount"); + }); + connect(DevMngIns, &DeviceManager::protocolDevUnmounted, this, [this](const QString &id, const QString &oldMpt) { + emit ProtocolDeviceUnmounted(id, oldMpt); + requestRefreshDesktopAsNeeded(oldMpt, "onUnmount"); + }); + connect(DevMngIns, &DeviceManager::protocolDevRemoved, this, [this](const QString &id, const QString &oldMpt) { + emit ProtocolDeviceRemoved(id, oldMpt); + requestRefreshDesktopAsNeeded(oldMpt, "onRemove"); + }); connect(DevMngIns, &DeviceManager::blockDevMounted, this, [this](const QString &id, const QString &mpt) { emit BlockDeviceMounted(id, mpt); From 1fc43643b8c194d907d749338d4d7cebd6c2038b Mon Sep 17 00:00:00 2001 From: Zhang Sheng Date: Sat, 20 Jan 2024 00:18:54 +0800 Subject: [PATCH 18/25] chore: fix build error on v23 fix build error on v23 Log: fix build error on v23 --- src/dfm-base/utils/universalutils.cpp | 17 ++++++++--------- .../base/device/private/ut_devicehelper.cpp | 4 ++++ .../dfmplugin-tag/menu/ut_tagdirmenuscene.cpp | 5 ++++- .../menus/ut_searchmenuscene.cpp | 5 ++++- 4 files changed, 20 insertions(+), 11 deletions(-) diff --git a/src/dfm-base/utils/universalutils.cpp b/src/dfm-base/utils/universalutils.cpp index 9f6680e405..a12eeaef4e 100644 --- a/src/dfm-base/utils/universalutils.cpp +++ b/src/dfm-base/utils/universalutils.cpp @@ -293,26 +293,25 @@ bool UniversalUtils::checkLaunchAppInterface() bool UniversalUtils::launchAppByDBus(const QString &desktopFile, const QStringList &filePaths) { #ifdef COMPILE_ON_V23 - const auto& components = desktopFile.split('/',Qt::SkipEmptyParts); - const auto& file = components.last(); - constexpr decltype(auto) desktopSuffix{u8".desktop"}; + const auto &components = desktopFile.split('/', Qt::SkipEmptyParts); + const auto &file = components.last(); + constexpr auto kDesktopSuffix { u8".desktop" }; - if(!file.endsWith(desktopSuffix)) { + if (!file.endsWith(kDesktopSuffix)) { qCDebug(logDFMBase) << "invalid desktop file:" << desktopFile << file; return false; } - const auto& desktopId = file.chopped(sizeof(desktopSuffix) - 1); - const auto& DBusAppId = DUtil::escapeToObjectPath(desktopId); - const auto& currentAppPath = QString{APP_MANAGER_PATH_PREFIX} + "/" + DBusAppId; + const auto &desktopId = file.chopped(sizeof(kDesktopSuffix) - 1); + const auto &DBusAppId = DUtil::escapeToObjectPath(desktopId); + const auto ¤tAppPath = QString { APP_MANAGER_PATH_PREFIX } + "/" + DBusAppId; qCDebug(logDFMBase) << "app object path:" << currentAppPath; QDBusInterface appManager(APP_MANAGER_SERVICE, currentAppPath, APP_INTERFACE, QDBusConnection::sessionBus()); - auto reply = appManager.callWithArgumentList(QDBus::Block, QStringLiteral("Launch"),{ - QVariant::fromValue(QString{}), QVariant::fromValue(filePaths), QVariant::fromValue(QVariantMap{})}); + auto reply = appManager.callWithArgumentList(QDBus::Block, QStringLiteral("Launch"), { QVariant::fromValue(QString {}), QVariant::fromValue(filePaths), QVariant::fromValue(QVariantMap {}) }); return reply.type() == QDBusMessage::ReplyMessage; diff --git a/tests/dfm-base/base/device/private/ut_devicehelper.cpp b/tests/dfm-base/base/device/private/ut_devicehelper.cpp index 651016d3ad..b007d90488 100644 --- a/tests/dfm-base/base/device/private/ut_devicehelper.cpp +++ b/tests/dfm-base/base/device/private/ut_devicehelper.cpp @@ -211,7 +211,11 @@ TEST_F(UT_DeviceHelper, OpenFileManagerToDevice) stub.set_lamda(startDetached_QString_QStringList, [&] { __DBG_STUB_INVOKE__ dfmStarted = true; return true; }); bool showFolder_invoked = false; +#ifdef COMPILE_ON_V23 + auto showFolder_QUrl_QString = qOverload(&DDesktopServices::showFolder); +#else auto showFolder_QUrl_QString = qOverload(&DDesktopServices::showFolder); +#endif stub.set_lamda(showFolder_QUrl_QString, [&] { __DBG_STUB_INVOKE__ showFolder_invoked = true; return true; }); // test dfm bin not found diff --git a/tests/plugins/common/dfmplugin-tag/menu/ut_tagdirmenuscene.cpp b/tests/plugins/common/dfmplugin-tag/menu/ut_tagdirmenuscene.cpp index 2e4426c374..c7b558e715 100644 --- a/tests/plugins/common/dfmplugin-tag/menu/ut_tagdirmenuscene.cpp +++ b/tests/plugins/common/dfmplugin-tag/menu/ut_tagdirmenuscene.cpp @@ -131,8 +131,11 @@ TEST_F(TagDirMenuSceneTest, openFileLocation) st.reset(SysInfoUtils::isRootUser); st.set_lamda(SysInfoUtils::isRootUser, [] { return false; }); - +#ifdef COMPILE_ON_V23 + auto func2 = qOverload(&DDesktopServices::showFileItem); +#else auto func2 = qOverload(&DDesktopServices::showFileItem); +#endif st.set_lamda(func2, [] { return true; }); EXPECT_TRUE(d->openFileLocation("/home")); } diff --git a/tests/plugins/filemanager/dfmplugin-search/menus/ut_searchmenuscene.cpp b/tests/plugins/filemanager/dfmplugin-search/menus/ut_searchmenuscene.cpp index def9aa4298..5174620c65 100644 --- a/tests/plugins/filemanager/dfmplugin-search/menus/ut_searchmenuscene.cpp +++ b/tests/plugins/filemanager/dfmplugin-search/menus/ut_searchmenuscene.cpp @@ -215,8 +215,11 @@ TEST(SearchMenuScenePrivateTest, ut_openFileLocation) st.reset(SysInfoUtils::isRootUser); st.set_lamda(SysInfoUtils::isRootUser, [] { return false; }); - +#ifdef COMPILE_ON_V23 + auto func2 = qOverload(&DDesktopServices::showFileItem); +#else auto func2 = qOverload(&DDesktopServices::showFileItem); +#endif st.set_lamda(func2, [] { return true; }); EXPECT_TRUE(scene.d->openFileLocation("/home")); } From c638827a216564529e4fbbc38175f1323c65d9cb Mon Sep 17 00:00:00 2001 From: Zhang Sheng Date: Sat, 20 Jan 2024 18:09:42 +0800 Subject: [PATCH 19/25] Revert "fix: [vault] add translate for vault" This reverts commit 121616c8d9deba3a9a40e31b53521b0efd64a08f. --- translations/dde-file-manager.ts | 127 +- translations/dde-file-manager_ady.ts | 1349 +++++++------- translations/dde-file-manager_af.ts | 1349 +++++++------- translations/dde-file-manager_am_ET.ts | 1387 ++++++++------- translations/dde-file-manager_ar.ts | 1395 ++++++++------- translations/dde-file-manager_ast.ts | 1387 ++++++++------- translations/dde-file-manager_az.ts | 1436 ++++++++------- translations/dde-file-manager_bg.ts | 1391 ++++++++------- translations/dde-file-manager_bn.ts | 1367 +++++++-------- translations/dde-file-manager_bo.ts | 181 +- translations/dde-file-manager_bqi.ts | 1369 +++++++-------- translations/dde-file-manager_br.ts | 1349 +++++++------- translations/dde-file-manager_ca.ts | 1429 ++++++++------- translations/dde-file-manager_cs.ts | 1547 ++++++++-------- translations/dde-file-manager_da.ts | 1391 ++++++++------- translations/dde-file-manager_de.ts | 1531 ++++++++-------- translations/dde-file-manager_el.ts | 1391 ++++++++------- translations/dde-file-manager_en_AU.ts | 1357 +++++++-------- translations/dde-file-manager_en_GB.ts | 1349 +++++++------- translations/dde-file-manager_eo.ts | 1359 +++++++-------- translations/dde-file-manager_es.ts | 1554 ++++++++--------- translations/dde-file-manager_et.ts | 1387 ++++++++------- translations/dde-file-manager_fa.ts | 1401 ++++++++------- translations/dde-file-manager_fi.ts | 1579 +++++++++-------- translations/dde-file-manager_fil.ts | 1349 +++++++------- translations/dde-file-manager_fr.ts | 1421 ++++++++------- translations/dde-file-manager_gl_ES.ts | 1391 ++++++++------- translations/dde-file-manager_he.ts | 1349 +++++++------- translations/dde-file-manager_hi_IN.ts | 1373 +++++++-------- translations/dde-file-manager_hr.ts | 1481 ++++++++-------- translations/dde-file-manager_hu.ts | 1425 ++++++++------- translations/dde-file-manager_hy.ts | 1349 +++++++------- translations/dde-file-manager_id.ts | 1405 ++++++++------- translations/dde-file-manager_it.ts | 1429 ++++++++------- translations/dde-file-manager_ja.ts | 1403 ++++++++------- translations/dde-file-manager_ka.ts | 1349 +++++++------- translations/dde-file-manager_kab.ts | 1355 +++++++-------- translations/dde-file-manager_km_KH.ts | 1375 +++++++-------- translations/dde-file-manager_kn_IN.ts | 1349 +++++++------- translations/dde-file-manager_ko.ts | 1391 ++++++++------- translations/dde-file-manager_ku.ts | 1351 +++++++------- translations/dde-file-manager_ku_IQ.ts | 1349 +++++++------- translations/dde-file-manager_ky.ts | 1349 +++++++------- translations/dde-file-manager_ky@Arab.ts | 1349 +++++++------- translations/dde-file-manager_lt.ts | 1403 ++++++++------- translations/dde-file-manager_ml.ts | 1385 ++++++++------- translations/dde-file-manager_mn.ts | 1369 +++++++-------- translations/dde-file-manager_mr.ts | 1349 +++++++------- translations/dde-file-manager_ms.ts | 2032 +++++++++++----------- translations/dde-file-manager_nb.ts | 1389 ++++++++------- translations/dde-file-manager_ne.ts | 1391 ++++++++------- translations/dde-file-manager_nl.ts | 1431 ++++++++------- translations/dde-file-manager_pa.ts | 1383 ++++++++------- translations/dde-file-manager_pam.ts | 1349 +++++++------- translations/dde-file-manager_pl.ts | 1467 ++++++++-------- translations/dde-file-manager_pt.ts | 1421 ++++++++------- translations/dde-file-manager_pt_BR.ts | 1561 ++++++++--------- translations/dde-file-manager_ro.ts | 1391 ++++++++------- translations/dde-file-manager_ru.ts | 1421 ++++++++------- translations/dde-file-manager_sc.ts | 1349 +++++++------- translations/dde-file-manager_si.ts | 1349 +++++++------- translations/dde-file-manager_si_LK.ts | 1349 +++++++------- translations/dde-file-manager_sk.ts | 1391 ++++++++------- translations/dde-file-manager_sl.ts | 1421 ++++++++------- translations/dde-file-manager_sq.ts | 1433 ++++++++------- translations/dde-file-manager_sr.ts | 1421 ++++++++------- translations/dde-file-manager_sv.ts | 1391 ++++++++------- translations/dde-file-manager_sw.ts | 1349 +++++++------- translations/dde-file-manager_ta.ts | 1385 ++++++++------- translations/dde-file-manager_th.ts | 1349 +++++++------- translations/dde-file-manager_tr.ts | 1421 ++++++++------- translations/dde-file-manager_tzm.ts | 1363 +++++++-------- translations/dde-file-manager_ug.ts | 179 +- translations/dde-file-manager_uk.ts | 1552 ++++++++--------- translations/dde-file-manager_ur.ts | 1349 +++++++------- translations/dde-file-manager_uz.ts | 1349 +++++++------- translations/dde-file-manager_vi.ts | 1349 +++++++------- translations/dde-file-manager_zh_CN.ts | 197 +-- translations/dde-file-manager_zh_HK.ts | 157 +- translations/dde-file-manager_zh_TW.ts | 159 +- 80 files changed, 51444 insertions(+), 53514 deletions(-) diff --git a/translations/dde-file-manager.ts b/translations/dde-file-manager.ts index d17310fc48..b985715429 100644 --- a/translations/dde-file-manager.ts +++ b/translations/dde-file-manager.ts @@ -17,12 +17,12 @@ Application - + File Manager File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. @@ -30,7 +30,7 @@ DesktopMain - + Desktop Desktop @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed The device has been safely removed - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 Volume @@ -212,7 +212,7 @@ - + %1 on %2 @@ -886,19 +886,19 @@ (copy %1) - - + + dde-file-manager dde-file-manager - + Files are being processed Files are being processed - + Bit Bit @@ -5811,39 +5811,40 @@ dfmplugin_vault::RecoveryKeyView - + + Unlock by Key Unlock by Key - + Input the 32-digit recovery key Input the 32-digit recovery key - + Cancel button Cancel - + Unlock button Unlock - + Wrong recovery key Wrong recovery key - + Failed to unlock file vault Failed to unlock file vault - + OK OK @@ -5936,11 +5937,6 @@ Forgot password? Forgot password? - - - Key unlock - - Password @@ -6256,52 +6252,47 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted Once deleted, the files in it will be permanently deleted - + Password Password - - Key delete - - - - + Password hint: %1 Password hint: %1 - + Cancel Cancel - + Delete Delete - + Delete File Vault Delete File Vault - + Wrong password Wrong password - + Failed to delete file vault Failed to delete file vault - + OK OK @@ -6309,40 +6300,10 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key Input the 32-digit recovery key - - - Cancel - Cancel - - - - Delete - Delete - - - - Delete File Vault - Delete File Vault - - - - Wrong recovery key - Wrong recovery key - - - - Failed to delete file vault - Failed to delete file vault - - - - OK - OK - dfmplugin_vault::VaultRemoveProgressView @@ -6414,7 +6375,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... Loading... @@ -6438,47 +6399,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sort by - + Display as Display as - + Name Name - + Time modified Time modified - + Size Size - + Type Type - + Icon Icon - + List List - + Tree diff --git a/translations/dde-file-manager_ady.ts b/translations/dde-file-manager_ady.ts index 64cb09b9b9..2876d96f18 100644 --- a/translations/dde-file-manager_ady.ts +++ b/translations/dde-file-manager_ady.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_af.ts b/translations/dde-file-manager_af.ts index 27d009a387..d1d5273292 100644 --- a/translations/dde-file-manager_af.ts +++ b/translations/dde-file-manager_af.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_am_ET.ts b/translations/dde-file-manager_am_ET.ts index 7b5f31212d..7914793727 100644 --- a/translations/dde-file-manager_am_ET.ts +++ b/translations/dde-file-manager_am_ET.ts @@ -15,104 +15,99 @@ Application - + File Manager የ ፋይል አስተዳዳሪ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - ዴስክቶፕ + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - ዲስክ + + Desktop + ዴስክቶፕ + + + DiskControlWidget - - Open - መክፈቻ + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + ዲስክ - - Operation failed - + + Open + መክፈቻ - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk የ ስርአት ዲስክ - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home ቤት @@ -228,6 +223,7 @@ + Desktop ዴስክቶፕ @@ -237,6 +233,7 @@ + Videos ቪዲዮዎች @@ -246,6 +243,7 @@ + Music ሙዚቃ @@ -255,6 +253,7 @@ + Pictures ስእሎች @@ -264,6 +263,7 @@ + Documents ሰነዶች @@ -273,6 +273,7 @@ + Downloads የ ወረዱ @@ -281,6 +282,7 @@ + Trash ቆሻሻ @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ በራሱ መጫኛ - + @@ -316,46 +319,47 @@ %1 ስራዎች በ ሂደት ላይ - + %1 item %1 እቃ - + %1 items %1 እቃዎች - + Unable to find the original file - - + + File has been moved or deleted ፋይሉ ተንቀሳቅሷል ወይንም ጠፍቷል - - + + + You do not have permission to access this folder እዚህ ፎልደር ጋር ለ መድረስ በቂ ፍቃድ የሎትም - - + + You do not have permission to traverse files in it - - + + Folder is empty ፎልደሩ ባዶ ነው - + Loading... በ መጫን ላይ... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer ኮምፒዩተር @@ -419,8 +424,9 @@ - - + + + Computers in LAN ኮምፒዩተር በ LAN ውስጥ @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut አቋራጭ - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ ቢት + Access denied + Confirm button ማረጋገጫ + + + The device has been safely removed + + - - + + - - - + + + Open in new window በ አዲስ መስኮት ውስጥ መክፈቻ @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab በ አዲስ tab ውስጥ መክፈቻ @@ -953,8 +968,8 @@ - - + + Properties ባህሪዎች @@ -990,7 +1005,7 @@ አዲስ ፋይል - + Create symlink አገናኝ መፍጠሪያ @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ እቃዎች: %1 - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk የ አካባቢ ዲስክ - + Removable disk የሚወልቅ ዲስክ - + DVD - + Network shared directory ኔትዎርክ የሚካፈለው ዳይሬክቶሪ - - + + Android mobile device አንድሮይድ ተንቀሳቃሽ አካል - + Apple mobile device አፕል ተንቀሳቃሽ አካል - + Unknown device ያልታወቀ አካል - + Remove button ማስወገጃ - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history የ ቅርብ ጊዜ ታሪክ ማጽጃ - - - + + + Source path የ ምንጩ መንገድ @@ -1404,12 +1419,12 @@ - + Empty Trash ቆሻሻ ባዶ ማድረጊያ - + Location አካባቢ: @@ -1509,7 +1524,7 @@ በ መፈለግ ላይ... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type አይነት - + Time accessed - + Time modified የ ተሻሻለበት ጊዜ - + Time created የ ተፈጠረበት ጊዜ - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size የ ምልክት መጠን @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 እቃ ተመርጧል @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button እሺ - + Operation failed! ተግባሩ አልተሳካም! @@ -2529,191 +2554,191 @@ ኢላማው ፎልደር በ ምንጭ ፎልደር ውስጥ ነው! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button መሰረዣ - + Format button አቀራረብ - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? እርስዎ ማስኬድ ነው %1 ወይንም ማሳየት የሚፈልጉት? - + It is an executable text file. የሚፈጸም የ ጽሁፍ ፋይል ነው - - - + + + Run button ማስኬጃ - - + + Run in terminal button በ ተርሚናል ውስጥ ማስኬጃ - + Display button ማሳያ - + Do you want to run %1? - + It is an executable file. የሚፈጸም የ ጽሁፍ ፋይል ነው - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? በ ቋሚነት ላጥፋ %1 እቃዎቹን? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button ማጥፊያ - + Permanently delete %1? በ ቋሚነት ላጥፋው %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty ባዶ - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" ቀደም ብሎ ነበር: እባክዎን ሌላ ስም ይጠቀሙ - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel መሰረዣ - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 ይህ አቋራጭ የሚያመሳከረው ተቀይሯል ወይንም ተንቀሳቅሷል - + Do you want to delete this shortcut? ይህን አቋራጭ ቁልፍ ማጥፋት ይፈልጋሉ? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted የ ተመረጠው ፋይል የያዘው የ ስርአት ፋይል / ዳይሬክቶሪ ነው: እና ማጥፋት አይቻልም @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others ሌሎች - + Close መዝጊያ - + Close current tab የ አሁኑን tab መዝጊያ - + Back ወደ ኋላ - + Forward ወደ ፊት - + Switch to next tab መቀየሪያ ወደሚቀጥለው tab - + Switch to previous tab መቀየሪያ ወዳለፈው tab - + Next file የሚቀጥለው ፋይል - + Previous file ያለፈው ፋይል - + Switch tab by specified number between 1 to 8 መቀየሪያ tab በ ተወነው ቁጥር በ 1 እስከ 8 መካከል @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 መጠን:%1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button ሁለቱንም ማስቀመጫ - + Skip button መዝለያ - - + + Replace button መቀየሪያ - + Do not ask again በድጋሚ አትጠይቀኝ - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button መሰረዣ - + Remove button ማስወገጃ @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer ኮምፒዩተር - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer ኮምፒዩተር - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories የ እኔ ዳይሬክቶሪዎች - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type የ አካሉ አይነት - + Total space ጠቅላላ ቦታ - + File system - + Contains የያዘው - + Free space ነፃ ቦታ - + %1 items %1 እቃዎች - + %1 item %1 እቃ @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ መጠን - + Dimension - + Duration - + Type አይነት - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + መለጠፊያ - Cu&t - + Cut + መቁረጫ - &Copy - + Copy + ኮፒ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + መክፈቻ - Rena&me - + Rename + እንደገና መሰየሚያ - &Delete - + Delete + ማጥፊያ @@ -4557,11 +4579,6 @@ Open in terminal በ ተርሚናል ውስጥ መክፈቻ - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to መላኪያ ወደ - - Bluetooth - - - - + Create link አገናኝ መፍጠሪያ - + Send to desktop ወደ ዴስክቶፕ መላኪያ @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + መክፈቻ - + Open in new window በ አዲስ መስኮት ውስጥ መክፈቻ - + Open in new tab በ አዲስ tab ውስጥ መክፈቻ - + Cancel sharing ማካፈያ መሰረዣ - - P&roperties - + + Properties + ባህሪዎች dfmplugin_myshares::MyShares - + My Shares እኔ የማካፍላቸው @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size መጠን - + Contains የያዘው - + Type አይነት - + Location አካባቢ: - + Time created የ ተፈጠረበት ጊዜ - + Time accessed - + Time modified የ ተሻሻለበት ጊዜ - + Hide this file - - + + %1 item %1 እቃ - + %1 items %1 እቃዎች @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit ቢት - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer ኮምፒዩተር - + Basic Info መሰረታዊ መረጃ - + Computer name - + Version እትም: - + Edition - + OS build - + Type አይነት - + Processor ሂደት - + Memory ማስታወሻ @@ -4873,14 +4890,6 @@ %1 ፋይል(ሎች), %2 ፎልደር(ሮች) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + ባህሪዎች dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path መንገድ - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text ጽሁፍ - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search መፈለጊያ - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path መንገድ @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location የ ፋይል አካባቢ መክፈቻ - + Select all ሁሉንም መምረጫ - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other ሌላ - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + ኮምፒዩተር በ LAN ውስጥ + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + መክፈቻ @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location የ ፋይል አካባቢ መክፈቻ @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button መሰረዣ - + Connect button መገናኛ - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path የ ምንጩ መንገድ - + Time deleted የ ጠፋበት ጊዜ @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore እንደ ነበር መመለሻ - + Restore all ሁሉንም እንደ ነበር መመለሻ - + Empty trash - + Source path የ ምንጩ መንገድ - + Time deleted የ ጠፋበት ጊዜ @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash ቆሻሻ @@ -5529,17 +5526,17 @@ ቆሻሻ - + item እቃ - + items እቃዎች - + Contains %1 %2 የያዘው %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size መጠን - + Contains የያዘው - + Type አይነት - + Location አካባቢ: - + Time created የ ተፈጠረበት ጊዜ - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK እሺ @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + የ መግቢያ ቃል - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - የ መግቢያ ቃል - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + መሰረዣ - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + ማጥፊያ - - Failed to delete file vault + + Removing... - + + OK - + button + እሺ - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by መለያ በ - + Display as ማሳያ እንደ - + Name ስም - + Time modified የ ተሻሻለበት ጊዜ - + Size መጠን - + Type አይነት - + Icon ምልክት - + List ዝርዝር - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button ማስቀመጫ @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button ማስቀመጫ - + Open button መክፈቻ @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ar.ts b/translations/dde-file-manager_ar.ts index 76112751d0..6e640138ca 100644 --- a/translations/dde-file-manager_ar.ts +++ b/translations/dde-file-manager_ar.ts @@ -15,104 +15,99 @@ Application - + File Manager مدير الملفات - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. مدير الملفات هو أداة سهلة وقوية لإدارة الملفات، وتتميز بالقدرة على البحث، النسخ، حذف الملفات، الضغط وفك الضغط، عرض خصائص الملفات، وغيرها من الوظائف المفيدة. - DesktopMain + DAttachedProtocolDevice - - Desktop - سطح المكتب + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + الحجم %1 - DiskMountPlugin + DesktopMain - - Disk - القرص + + Desktop + سطح المكتب + + + DiskControlWidget - - Open - فتح + + Disks + الأقراص - - Eject all - إخراج الكل + + The device was not safely removed + لم يتم إزالة الجهاز بأمان - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + القرص قيد الاستخدام ، لا يمكن فصله اﻵن - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + القرص - - Operation failed - + + Open + فتح - - Device (%1) is busy, cannot %2 now. - + + Eject all + إخراج الكل FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown غير معروف @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk قرص النظام - + Data Disk قرص البيانات - + Blank %1 Disc تفريغ القرص %1 - - - + + + Unknown غير معروف - + %1 Drive %1 قرص - + %1 Encrypted تم تشفير %1 - - + %1 Volume الحجم %1 - + + Scanning the device, stop it? يتم فحص الجهاز ... هل تريد إيقافه ؟ - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home المنزل @@ -228,6 +223,7 @@ + Desktop سطح المكتب @@ -237,6 +233,7 @@ + Videos الفيديو @@ -246,6 +243,7 @@ + Music الصوتيات @@ -255,6 +253,7 @@ + Pictures الصور @@ -264,6 +263,7 @@ + Documents المستندات @@ -273,6 +273,7 @@ + Downloads التنزيلات @@ -281,6 +282,7 @@ + Trash سلة المهملات @@ -291,11 +293,12 @@ + Recent حديث - + @@ -303,7 +306,7 @@ وصل تلقائي - + @@ -316,46 +319,47 @@ %1 من المهام قيد المعالجة - + %1 item %1 عنصر - + %1 items %1 من العناصر - + Unable to find the original file - - + + File has been moved or deleted تم نقل الملف أو أنه قد حذف - - + + + You do not have permission to access this folder ليس لديك صلاحيات للوصول إلى هذا المجلد - - + + You do not have permission to traverse files in it - - + + Folder is empty المجلد فارغ - + Loading... يحمل الآن ... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer الحاسوب @@ -419,8 +424,9 @@ - - + + + Computers in LAN حواسيب في الشبكة @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag علامة استدلال @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button إيقاف - + Shortcut اختصار - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ بت + Access denied تم رفض الوصول + Confirm button تأكيد + + + The device has been safely removed + تمت إزالة الجهاز بأمان + - - + + - - - + + + Open in new window فتح في نافذة جديدة @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab فتح في تبويب جديد @@ -953,8 +968,8 @@ - - + + Properties الخصائص @@ -990,7 +1005,7 @@ ملف جديد - + Create symlink إنشاء وصلة رمزية @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? هل أنت متأكد من حذف كافة البيانات على هذه الأسطوانة؟ - + Erase button مسح - + This action cannot be undone هذا الإجراء لا يمكن إلغاؤه - + How do you want to use this disc? كيف تريد استخدام هذه الأسطوانة؟ - + Burn image button حرق ISO - + Burn files button حرق ملفات - + %1 is a duplicate file. %1 هو ملف مكرر. - + Insufficient disc space. مساحة القرص غير كافية. - + Lost connection to drive. تم فقد الاتصال بالقرص. - + The CD/DVD drive is not ready. Try another disc. قرص CD/DVD ليس مستعدًا. جرب أسطوانة أخرى. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. قرص CD/DVD مشغول. اخرج من البرنامج الذي يستخدم القرص، ثم أدخل القرص مرة أخرى. - + Invalid volume name - + Unknown error خطأ غير معروف @@ -1179,42 +1194,42 @@ العناصر: %1 - + Orange برتقالي - + Red أحمر - + Purple بنفسجي - + Navy-blue أزرق داكن - + Azure أزرق سماوي - + Green أخضر - + Yellow أصفر - + Gray رمادي @@ -1290,76 +1305,76 @@ - + User directory - + Local disk قرص محلي - + Removable disk قرص قابل للإزالة - + DVD دي في دي - + Network shared directory الدليل المشترك للشبكة - - + + Android mobile device جهاز أندرويد محمول - + Apple mobile device جهاز آبل محمول - + Unknown device جهاز غير معروف - + Remove button إزالة - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history مسح السجل الحديث - - - + + + Source path مسار المصدر @@ -1404,12 +1419,12 @@ - + Empty Trash إقراغ سلة المحذوفات - + Location المكان @@ -1509,7 +1524,7 @@ يبحث اﻵن ... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + In trial period قيد التجربة - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type النوع - + Time accessed وقت الدخول - + Time modified وقت التعديل - + Time created وقت الإنشاء - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size حجم الأيقونة @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 عنصر محدد @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button حسناً - + Operation failed! فشلت العملية ! @@ -2529,191 +2554,191 @@ المجلد الهدف داخل مجلد المصدر ! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button إلغاء - + Format button التنسيق - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? هل تريد تشغيل %1 أم عرض محتواه ؟ - + It is an executable text file. ملف نصي قابل للتنفيذ. - - - + + + Run button تشغيل - - + + Run in terminal button تشغيل في الطرفية - + Display button عرض - + Do you want to run %1? هل أنت متأكد من تشغيل %1؟ - + It is an executable file. إنه ملف تنفيذي - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? حذف بشكل دائم %1 عناصر ؟ - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button حذف - + Permanently delete %1? حذف %1 بشكل دائم ؟ - - + + This action cannot be undone هذا الإجراء لا يمكن إلغاؤه - + Are you sure you want to empty %1 item? هل أنت متأكد من إفراغ %1 عنصر ؟ - + Are you sure you want to empty %1 items? هل أنت متأكد من إفراغ %1 عنصر ؟ - + Empty فارغ/إفراغ - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only فشل إستعادة %1 ملف/ملفات، المجلد المستهدف للقراءة فقط - + Failed to restore %1 files, the target folder is read-only فشل إستعادة %1 ملف/ملفات، المجلد المستهدف للقراءة فقط - + "%1" already exists, please use another name. "%1" موجود بالفعل، يرجى استخدام اسماً آخر. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel إلغاء - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved إن " %1 " الذي يشير إليه هذا الاختصار قد تغير أو تم نقله . - + Do you want to delete this shortcut? هل تريد حذف هذا الاختصار ؟ - + This file is not executable, do you want to add the execute permission and run? هذا الملف غير قابل للتشغيل، هل تريد أن تعطيه الأذن وتشغله؟ - + The selected files contain system file/directory, and it cannot be deleted تحتوي الملفات المحددة على ملفات نظام / دليل، ولا يمكن حذفه @@ -2841,276 +2866,278 @@ أدخل كلمة المرور لفك تشفير القرص - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others غير ذلك - + Close إغلاق - + Close current tab إغلاق التبويب الحالي - + Back رجوع - + Forward للأمام - + Switch to next tab التبديل إلى التبويب التالي - + Switch to previous tab التبديل إلى التبويب السابق - + Next file الملف التالي - + Previous file الملف السابق - + Switch tab by specified number between 1 to 8 تبديل التبويب عن طريق رقم محدد ما بين 1 إلى 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 وقت التعديل : %1 - + Original folder المجلد الأصلي - + Contains: %1 المحتويات : %1 - + Original file الملف الأصلي - + Size: %1 الحجم : %1 - + Target folder المجلد المستهدف - - + In data statistics ... - + Target file الملف المستهدف @@ -3445,37 +3466,37 @@ - + Keep both button الاحتفاظ بكليهما - + Skip button تخطي - - + + Replace button استبدال - + Do not ask again لا تسأل ثانيةً - + Retry button إعادة المحاولة - + Merge button دمج @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button إلغاء - + Remove button إزالة @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer الحاسوب - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer الحاسوب - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories مسار مجلداتي - + Disks الأقراص @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type نوع الجهاز - + Total space المساحة الإجمالية - + File system نظام الملف - + Contains المحتويات - + Free space المساحة الفارغة - + %1 items %1 من العناصر - + %1 item %1 عنصر @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ الحجم - + Dimension البُعد - + Duration الفترة - + Type النوع - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + لصق - Cu&t - + Cut + قص - &Copy - + Copy + نسخ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + فتح - Rena&me - + Rename + إعادة تسمية - &Delete - + Delete + حذف @@ -4557,11 +4579,6 @@ Open in terminal فتح في الطرفية - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to إرسال إلى - - Bluetooth - - - - + Create link إنشاء رابط - + Send to desktop إرسال إلى سطح المكتب @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + فتح - + Open in new window فتح في نافذة جديدة - + Open in new tab فتح في تبويب جديد - + Cancel sharing إلغاء المشاركة - - P&roperties - + + Properties + الخصائص dfmplugin_myshares::MyShares - + My Shares مشاركاتي @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size الحجم - + Contains المحتويات - + Type النوع - + Location المكان - + Time created وقت الإنشاء - + Time accessed وقت الدخول - + Time modified وقت التعديل - + Hide this file إخفاء هذا الملف - - + + %1 item %1 عنصر - + %1 items %1 من العناصر @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit بت - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer الحاسوب - + Basic Info المعلومات الأساسية - + Computer name - + Version اﻹصدار - + Edition - + OS build - + Type النوع - + Processor المعالج - + Memory الذاكرة @@ -4873,14 +4890,6 @@ %1 من الملفات %2 من المجلدات - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + الخصائص dfmplugin_recent::Recent - + + Recent حديث @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path المسار - + Last access آخر دخول - + Recent حديث @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: بحث: - + File Type: نوع الملف: - + File Size: حجم الملف: - + Time Modified: وقت التعديل: - + Time Accessed: - + Time Created: - + Reset إعادة ضبط - + All subdirectories الموقع بتفرعاته - + Current directory الموقع الحالي - + Application تطبيق - + Video فيديو - + Audio صوت - + Image صورة - + Archive أرشيف - + Text نص - + Executable ملف تنفيذي - + Backup file ملف احتياطي - + Today اليوم - + Yesterday أمس - + This week هذا الأسبوع - + Last week الأسبوع الماضى - + This month هذا الشهر - + Last month الشهر الماضي - + This year هذا العام - + Last year العام الماضي @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search بحث - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path المسار @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location فتح مكان الملف - + Select all تحديد الكل - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag علامة استدلال - + + Bookmark + + + + Other آخر - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + حواسيب في الشبكة + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + فتح @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag علامة استدلال @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location فتح مكان الملف @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server الاتصال بالخادم - - - + + + Clear History مسح السجل الحديث - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button إلغاء - + Connect button اتصال - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path مسار المصدر - + Time deleted تاريخ الحذف @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore استعادة - + Restore all استعادة الكل - + Empty trash - + Source path مسار المصدر - + Time deleted تاريخ الحذف @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash سلة المهملات @@ -5529,17 +5526,17 @@ سلة المهملات - + item عنصر - + items من العناصر - + Contains %1 %2 يحتوي على %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size الحجم - + Contains المحتويات - + Type النوع - + Location المكان - + Time created وقت الإنشاء - + Time accessed وقت الدخول - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK حسناً @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ التالي - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault حقيبة الملفات المحمية @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + كلمة المرور - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - كلمة المرور - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + إلغاء - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + حذف - - Failed to delete file vault + + Removing... - + + OK - + button + حسناً - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault حقيبة الملفات المحمية + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by ترتيب حسب - + Display as عرض حسب - + Name الاسم - + Time modified وقت التعديل - + Size الحجم - + Type النوع - + Icon رموز - + List قائمة - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button حفظ @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button حفظ - + Open button فتح @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ast.ts b/translations/dde-file-manager_ast.ts index aec4e2ddce..d1c4933613 100644 --- a/translations/dde-file-manager_ast.ts +++ b/translations/dde-file-manager_ast.ts @@ -15,104 +15,99 @@ Application - + File Manager Xestor de ficheros - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Escritoriu + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Discu + + Desktop + Escritoriu + + + DiskControlWidget - - Open - Abrir + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Discu - - Operation failed - + + Open + Abrir - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Discu del sistema - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Home @@ -228,6 +223,7 @@ + Desktop Escritoriu @@ -237,6 +233,7 @@ + Videos Vídeos @@ -246,6 +243,7 @@ + Music Música @@ -255,6 +253,7 @@ + Pictures Semeyes @@ -264,6 +263,7 @@ + Documents Documentos @@ -273,6 +273,7 @@ + Downloads Descargues @@ -281,6 +282,7 @@ + Trash Papelera @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ Auto-montar - + @@ -316,46 +319,47 @@ %1 xeres en cursu - + %1 item %1 elementu - + %1 items %1 elementos - + Unable to find the original file - - + + File has been moved or deleted El ficheru movióse o desanicióse - - + + + You do not have permission to access this folder Nun tienes permisu p'acceder a esta carpeta - - + + You do not have permission to traverse files in it - - + + Folder is empty La carpeta ta balera - + Loading... Cargando... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Ordenador @@ -419,8 +424,9 @@ - - + + + Computers in LAN Ordenadores na LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Atayu - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bits + Access denied + Confirm button Confirmar + + + The device has been safely removed + + - - + + - - - + + + Open in new window Abrir na ventana nueva @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Abrir na llingüeta nueva @@ -953,8 +968,8 @@ - - + + Properties Propiedaes @@ -990,7 +1005,7 @@ Ficheru nuevu - + Create symlink Crear enllaz simbólicu @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ Elementos: %1 - + Orange Naranxa - + Red Bermeyu - + Purple Moráu - + Navy-blue - + Azure - + Green Verde - + Yellow Mariellu - + Gray Buxu @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Discu llocal - + Removable disk Discu estrayible - + DVD DVD - + Network shared directory Direutoriu compartíu de rede - - + + Android mobile device Preséu Android - + Apple mobile device Preséu d'Apple - + Unknown device Preséu desconocíu - + Remove button Desaniciar - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Llimpiar historial recién - - - + + + Source path Camín de fonte @@ -1404,12 +1419,12 @@ - + Empty Trash Balerar papelera - + Location Allugamientu @@ -1509,7 +1524,7 @@ Guetando... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Triba - + Time accessed - + Time modified Data de modificación - + Time created Data de creación - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Tamañu d'iconos @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 elementu esbilláu @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Aceutar - + Operation failed! ¡Falló la operación! @@ -2529,191 +2554,191 @@ ¡La carpeta destín ta dientro la carpeta fonte! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Encaboxar - + Format button Formatu - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? ¿Quies executar %1 o amosar el so conteníu? - + It is an executable text file. Ye un ficheru executable. - - - + + + Run button Executar - - + + Run in terminal button Executar na terminal - + Display button Amosar - + Do you want to run %1? ¿Quies executar %1? - + It is an executable file. Ye un ficheru executable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? ¿Desaniciar %1 elementos dafechu? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Desaniciar - + Permanently delete %1? ¿Desaniciar %1 dafechu? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Balero - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. «%1» yá esiste, por favor usa otru nome. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Encaboxar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? ¿Ques desaniciar esti atayu? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted Los ficheros esbillaos contienen direutorios/ficheros y nun puen desaniciase @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Otros - + Close Zarrar - + Close current tab Zarru de la llingüeta actual - + Back Atrás - + Forward - + Switch to next tab - + Switch to previous tab - + Next file Ficheru siguiente - + Previous file Ficheru previu - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Carpeta orixinal - + Contains: %1 - + Original file Ficheru orixinal - + Size: %1 Tamañu: %1 - + Target folder Carpeta de destín - - + In data statistics ... - + Target file Ficheru de destín @@ -3445,37 +3466,37 @@ - + Keep both button Caltener dambos - + Skip button Saltar - - + + Replace button Trocar - + Do not ask again Nun entrugar de nueves - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Encaboxar - + Remove button Desaniciar @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Ordenador - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Ordenador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Los mios direutorios - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Triba de preséu - + Total space Espaciu total - + File system - + Contains Contién - + Free space Espaciu llibre - + %1 items %1 elementos - + %1 item %1 elementu @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Tamañu - + Dimension - + Duration - + Type Triba - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Apegar - Cu&t - + Cut + Cortar - &Copy - + Copy + Copiar dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Abrir - Rena&me - + Rename + Renomar - &Delete - + Delete + Desaniciar @@ -4557,11 +4579,6 @@ Open in terminal Abrir na terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Unviar a - - Bluetooth - - - - + Create link Crear enllaz - + Send to desktop Unviar a Escritoriu @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Abrir - + Open in new window Abrir na ventana nueva - + Open in new tab Abrir na llingüeta nueva - + Cancel sharing Encaboxar compartición - - P&roperties - + + Properties + Propiedaes dfmplugin_myshares::MyShares - + My Shares Les mios comparticiones @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Tamañu - + Contains Contién - + Type Triba - + Location Allugamientu - + Time created Data de creación - + Time accessed - + Time modified Data de modificación - + Hide this file - - + + %1 item %1 elementu - + %1 items %1 elementos @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bits - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Ordenador - + Basic Info Información básica - + Computer name - + Version Versión - + Edition - + OS build - + Type Triba - + Processor Procesador - + Memory Memoria @@ -4873,14 +4890,6 @@ %1 ficheru(os), %2 carpeta(es) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Propiedaes dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Camín - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text Testu - + Executable Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Guetar - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Camín @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir allugamientu del ficheru - + Select all Esbillar too - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other Otru - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Ordenadores na LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Abrir @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir allugamientu del ficheru @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Encaboxar - + Connect button Coneutar - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Camín fonte - + Time deleted Data de desaniciu @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar too - + Empty trash - + Source path Camín de fonte - + Time deleted Data de desaniciu @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papelera @@ -5529,17 +5526,17 @@ Papelera - + item elementu - + items elementos - + Contains %1 %2 Contién %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Tamañu - + Contains Contién - + Type Triba - + Location Allugamientu - + Time created Data de creación - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK Aceutar @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Contraseña - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Contraseña - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Encaboxar - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Desaniciar - - Failed to delete file vault + + Removing... - + + OK - + button + Aceutar - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar per - + Display as Amosar como - + Name Nome - + Time modified Data de modificación - + Size Tamañu - + Type Triba - + Icon Iconu - + List Llista - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Guardar @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Guardar - + Open button Abrir @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_az.ts b/translations/dde-file-manager_az.ts index 0b9581f10b..57d86bebf4 100644 --- a/translations/dde-file-manager_az.ts +++ b/translations/dde-file-manager_az.ts @@ -15,104 +15,99 @@ Application - + File Manager Fayl Meneceri - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Fayl Meneceri, axtarmaq, kopyalamaq, zibil qutusu, sıxmaq/aşmaq, fayl xüsusiyyətləri və digər faydalı funksiyaları ilə hazırlanmış, faylları rahat idarə etmək üçün güclü vasitədir. - DesktopMain + DAttachedProtocolDevice - - Desktop - İş Masası + + %1 on %2 + %1 / %2 - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 disk tutumu - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + İş Masası + + + DiskControlWidget - - Open - Açmaq + + Disks + Disklər - - Eject all - Hamısını çıxartmaq + + The device was not safely removed + Cihaz təhlükəsiz şəkildə çıxarılmadı - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Növbəti dəfə "Təhlükəsiz Çıxartmaq" vurun və sonra çıxardın - - eject - + + Disk is busy, cannot unmount now + Disk məşğuldur, indi ayrıla bilməz - - unmount - + + The device is busy, cannot eject now + Cihaz məşğuldur, indi çıxarıla bilməz + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Açmaq - - Device (%1) is busy, cannot %2 now. - + + Eject all + Hamısını çıxartmaq FileDialogHandle - + All Files Bütün fayllar - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Naməlum @@ -128,89 +123,88 @@ QObject - + need authorization to access Giriş üçün kimlik doğrulaması tələb olunur - + Can't verify the identity of %1. %1 kimliyini doğrulamaq mümkün olmadı. - + This happens when you log in to a computer the first time. Bu, siz kompyuterə ilk dəfə daxil olduğunuz zaman baş verir - + The identity sent by the remote computer is Uzaq kompyuter tərəfindən göndərilən kimlik - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Davam etmənin təhlükəsiz olduğundan tamamilə əmin olmaq istəyirsinizsə, sistem administratoru ilə əlaqə saxlayın. - - - + + + System Disk Sistem diski - + Data Disk Verilənlər Diski - + Blank %1 Disc Boş %1 disk - - - + + + Unknown Naməlum - + %1 Drive %1 sürücü - + %1 Encrypted %1 şifrələnib - - + %1 Volume %1 disk tutumu - + + Scanning the device, stop it? Cihazlar aşkarlanır, dayandırılsın? - + Unmount failed Ayrıla bilmədi - + Cannot stop scanning device Cihaz axtarışı dayandırıla biulməz - - + %1 on %2 %1 / %2 @@ -219,6 +213,7 @@ + Home Ev @@ -228,6 +223,7 @@ + Desktop İş Masası @@ -237,6 +233,7 @@ + Videos Videolar @@ -246,6 +243,7 @@ + Music Musiqilər @@ -255,6 +253,7 @@ + Pictures Şəkillər @@ -264,6 +263,7 @@ + Documents Sənədlər @@ -273,6 +273,7 @@ + Downloads Endirmələr @@ -281,6 +282,7 @@ + Trash Səbət @@ -291,11 +293,12 @@ + Recent Sonuncu - + @@ -303,7 +306,7 @@ Avtomatik qoşulma - + @@ -316,46 +319,47 @@ %1 tapşırıq icra olunur - + %1 item %1 element - + %1 items %1 element - + Unable to find the original file Orijinal faylı tapmaq mümkün olmadı - - + + File has been moved or deleted Fayl silinib və ya köçürülüb - - + + + You do not have permission to access this folder Bu qovluğa girməniz üçün icazəniz yoxdur - - + + You do not have permission to traverse files in it Onun daxilindəki fayllara keçid etməyə icazəniz yoxdur - - + + Folder is empty Qovluq boşdur - + Loading... Yüklənir... @@ -404,7 +408,7 @@ - + Built-in disks Daxili disklər @@ -412,6 +416,7 @@ + Computer Kompyuter @@ -419,8 +424,9 @@ - - + + + Computers in LAN LAN-dakı kompyuterlər @@ -428,7 +434,7 @@ - + Loop partitions Dairəvi bölmələr @@ -436,8 +442,7 @@ - - + Mounted sharing folders Qoşulmuş paylaşım qovluqları @@ -445,6 +450,7 @@ + My shares Mənim paylaşımlarım @@ -452,7 +458,7 @@ - + Network Şəbəkə @@ -460,7 +466,7 @@ - + Mounted partitions and discs Qoşulmuş bölmələr və disklər @@ -468,7 +474,7 @@ - + Partitions Bölmələr @@ -476,7 +482,7 @@ - + Quick access Cəld giriş @@ -484,7 +490,7 @@ - + Tag Etiket @@ -492,7 +498,7 @@ - + Added tags Etiketlər əlavə olundu @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Quraşdırılmış Samba paylaşımlarını göstərməyə davam edin @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Dayandırmaq - + Shortcut Qısayol - + This system wallpaper is locked. Please contact your admin. Sistem arxa fon şəkli kilidlənib. İnzibatçıya müraciət edin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopyala) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (%1 kopyala) @@ -901,26 +909,33 @@ Bit + Access denied İcazə verilmədi + Confirm button Tədiqləmək + + + The device has been safely removed + Bu cihaz təhlükəsiz çıxarıldı + - - + + - - - + + + Open in new window Yeni pəncərədə açmaq @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Yeni vərəqdə açmaq @@ -953,8 +968,8 @@ - - + + Properties Tərcihlər @@ -990,7 +1005,7 @@ Yeni fayl - + Create symlink Simvolik keçid yaratmaq @@ -1077,70 +1092,70 @@ Diskə əlavə etmək - + Are you sure you want to erase all data on the disc? Disdəki bütün məlumatları silmək istədiyinizə əminsiniz? - + Erase button Silmək - + This action cannot be undone Bu əməl ləğv edilə bilməz - + How do you want to use this disc? Bu diski necə istifadə etmək istəyirsiniz? - + Burn image button Disk surəti yazmaq - + Burn files button Fayllar yazmaq - + %1 is a duplicate file. %1 təkrarlanan fayldır. - + Insufficient disc space. Disk sahəsi kifayət deyil. - + Lost connection to drive. Sürücü ilə bağlantı itirildi - + The CD/DVD drive is not ready. Try another disc. CD/DVD sürücüsü hazır deyil. Başqa diski yoxlayın. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD sürücüsü məşquldur,Sürücün istifadə edən tətbiqdən çıxın və diski yenidən daxil edin. - + Invalid volume name Səhv tutum adı - + Unknown error Naməlum xəta @@ -1179,42 +1194,42 @@ ELementlər: %1 - + Orange Narıncı - + Red Qırmızı - + Purple Cəhrayı - + Navy-blue Tünd göy - + Azure Lacivərd - + Green Yaşıl - + Yellow Sarı - + Gray Boz @@ -1290,76 +1305,76 @@ Giriş mümkün deyil - + User directory İstifadəçi qovluğu - + Local disk Yerli disk - + Removable disk Çıxarılabilən disk - + DVD DVD - + Network shared directory Şəbəkədə paylaşılan qovluq - - + + Android mobile device Android mobil cihazı - + Apple mobile device Apple mobil cihazı - + Unknown device Naməlim cihaz - + Remove button Silmək - + Do you want to remove this item? Bu elementi silmək istıyirsiniz? - + Do yout want to remove %1 items? %1 elementi silmək istəyirsiniz? - + It does not delete the original files Bu, orijinal faylları silmir - + Clear recent history Əvvəlki tarixçəni silmək - - - + + + Source path Mənbə yolu @@ -1404,12 +1419,12 @@ Elementi səbətdə açmaq mümkün deyil, lütfən öncə geri qaytarın - + Empty Trash Səbəti boşaltmaq - + Location Yer @@ -1509,7 +1524,7 @@ Axtarış... - + My Vault Mənim seyfim @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Səlahiyyət verilməyib - - + + In trial period Sınaq müddətində - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Yeni kolleksiya @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop İş masasını nizamla - + Desktop options İş masası seçimləri - + Organize by Buna görə nizamla: - + Custom collection Xüsusi kolleksiya - + Type Növ - + Time accessed İstifadə Vaxtı - + Time modified Dəyişilmə Vaxtı - + Time created Yaradılma Vaxtı - + Create a collection Kolleksiya yarat + + + Display Size + Ekran ölçüsü + + + + Smaller + Kiçik + + + + Normal + Normal + + + + Larger + Geniş + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options İş masası seçimləri - + Auto arrange icons Nişanların avtomatik düzülüşü @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Ekran ölçüsü + + + Icon size Nişan ölçüsü @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Fayl bələdçisi yeni versiyaya yenilənəcək və bu zaman işlək tapşırıqların icrası ləğv ediləcək. İndi yeniləmək istəyirsən? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? İş masası xidmətləri yeni veriyaya yenilənəcək və bu zaman işlək tapşırıqların işi dayandırılacaq. İndi yeniləmək istəyirsən? - + Update button Yeniləyin - + Cancel button İmtina @@ -2360,7 +2385,7 @@ - + %1 item selected %1 element seçildi @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Əməliyyat baş tutmadı! @@ -2529,191 +2554,191 @@ Hədəf qovluğu mənbə qovluğu daxilindədir! - + The passphrase is needed to access encrypted data on %1. %1 üzərindəki şifrələnmiş verilənlərə giriş üçün gizli söz daxil edilməlidir. - - - - - - - - + + + + + + + + Cancel button İmtina - + Format button Formatlamaq - + To access the device, you must format the disk first. Are you sure you want to format it now? Cihaza daxil olmaq üçün öncə onu format etməlisiniz. Onu format etmək istədiyinizə əminsiniz? - + Do you want to run %1 or display its content? %1 başlatmaq, yoxsa tərkiblərini göstərmək istəyirsiniz? - + It is an executable text file. Bu icra faylıdır. - - - + + + Run button Başlatmaq - - + + Run in terminal button Terminalda başlatmaq - + Display button Ekran - + Do you want to run %1? %1 başlatmaq istəyirsiniz? - + It is an executable file. Bu icra faylıdır. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? %1 seçilmiş elementi səbətə köçürmək mümkün olmadı. Onları həmişəlik silmək istəyirsiniz? - + Permanently delete %1 items? %1 element həmişəlik silinsin? - + Cannot move "%1" to the trash. Do you want to permanently delete it? "%1" elemntini səbətə köçürmək mümkün olmadı. Onu həmişəlik silmək istəyirsiniz? - - - + + + Delete button Silmək - + Permanently delete %1? %1 həmişəlik silinsin? - - + + This action cannot be undone Bu əməl ləğv edilə bilməz - + Are you sure you want to empty %1 item? %1 elementi təmizləmək istədiyinizə əminsiniz? - + Are you sure you want to empty %1 items? %1 elementi təmizləmək istədiyinizə əminsiniz? - + Empty Boş - + Do you want to delete %1? %1 silmək istəyirsiniz - + Do you want to delete the selected %1 items? Seçilmiş %1 elementi silmək istəyirsiniz? - + Failed to restore %1 file, the target folder is read-only %1 faylın bərpası baş tutmadı, hədəf qovluq yalnız oxumaq üçündür - + Failed to restore %1 files, the target folder is read-only %1 faylın bərpası baş tutmadı, hədəf qovluq yalnız oxumaq üçündür - + "%1" already exists, please use another name. "%1" artıq mövcuddur, lütfən başqa ad seçin. - + Device or resource busy Cihaz və ya resurs məşğuldur - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Əgər fayl "." ilə başlayırsa o gizlədiləcək. Onu gizlətmək istəyirsiniz? - + Hide Gizlədin - + Cancel İmtina - + Unable to access %1 %1-ə giriş mümkün olmadı - + %1 that this shortcut refers to has been changed or moved %1 qısayolu dəyişdirilmiş və ya silinmiş obyektə aiddir - + Do you want to delete this shortcut? Bu qısayolu silmək istəyirsiniz? - + This file is not executable, do you want to add the execute permission and run? Bu icra faylı deyil, ona icraedilmə icazəsi əlavə etmək və başlatmaq istəyirsiniz? - + The selected files contain system file/directory, and it cannot be deleted Seçilmiş fayl fayldan/qovluqdan ibarətdir və silinə bilməz @@ -2841,276 +2866,278 @@ Diskin şifrəsini açmaq üçün şifrəni daxil edin - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Digəriləri - + Close Bağlamaq - + Close current tab Cari vərəqi bağlamaq - + Back Geriyə - + Forward İrəli - + Switch to next tab Sonrakı vərəqə keçmək - + Switch to previous tab Əvvəlki vərəqə keçmək - + Next file Növbəti fayl - + Previous file Əvvəlki fayl - + Switch tab by specified number between 1 to 8 Vərəqlərə verilmiş 1-dən 8-ə sayları arasında keçid etmək @@ -3394,43 +3416,47 @@ Ziddiyyət haqqında məlumatın göstərilməsi finksiyasında %1 Info hədəf faylı ayartmaq mümkün olmadı! - + Time modified: %1 Dəyişilmə vaxtı: %1 - + + In data statistics + Verilənlərin statistikasında + + + Original folder Orijinal qovluq - + Contains: %1 Tərkibləri: %1 - + Original file Orijinal fayl - + Size: %1 Ölçüsü: %1 - + Target folder Hədəf qovluğu - - + In data statistics ... - + Target file Hədəf faylı @@ -3445,37 +3471,37 @@ Lütfən gözləyin - + Keep both button Hər ikisini saxlamaq - + Skip button Ötürmək - - + + Replace button Əvəzləmək - + Do not ask again Yenidən soruşmamaq - + Retry button Təkrar - + Merge button Birləşdirmək @@ -3489,7 +3515,7 @@ Paylaşım qovluğunu qorumaq üçün şifrə daxil edin - + Set a password on the shared folder for non-anonymous access Gizli olmayan giriş üçün paylaşım qovluğuna bir şifrə təyin edin @@ -3515,18 +3541,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Təəssüf, sürətli giriş kataloqununuzu tapmaq mümkün olmadı, onu silək? - + Cancel button İmtina - + Remove button Silmək @@ -3784,37 +3810,38 @@ dfmplugin_computer::Computer - + + Computer Kompyuter - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3849,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Cihaz kiliddən çıxarıla bilmədi - + Wrong password Səhv şirə - + Rename failed Adını dəyişmək mümkün olmadı - + The device is busy and cannot be renamed now Cihaz məşğuldur və hazırda adı dəyiədirilə bilməz - + Format failed Formatlamaq mümkün olmadı - + The device is busy and cannot be formatted now Cihaz məşğuldur və hazırda formatlana bilməz - + Mount error Qoşulma xətası - + Cannot access %1 %1 girişi mümkün deyil @@ -3865,27 +3892,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Kompyuter - + %1 is read-only. Do you want to enable read and write permissions for it? %1 yalnız oxumaq üçündür. Onun üçün oxumaq və yazmaq icazələrini açmaq istəyirsiniz? - + Once enabled, read/write permission will be granted permanently Aktiv etdikdən sonra oxumağa və yazmağa həmişəlik icazə veriləcəkdir - + Cancel Ləğv edin - + Enable Now İndi aktiv edin @@ -3893,12 +3920,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mənim qovluğum - + Disks Disklər @@ -3906,42 +3933,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Əsas məlumatlar - + Device type Cihaz növü - + Total space Ümumi sahə - + File system Fayl sistemi - + Contains Tərkibləri - + Free space Boş sahə - + %1 items %1 element - + %1 item %1 element @@ -3949,7 +3976,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 / %2 @@ -3968,27 +3995,27 @@ Ölçüsü - + Dimension Ölçü - + Duration Müddət - + Type Növ - + Accessed Daxil oldu - + Modified Dəyişdirildi @@ -4258,7 +4285,7 @@ Failed to move the file %1 to trash - %1 faylını səbətə köçürmək mümkün olmadı + @@ -4335,7 +4362,7 @@ Copy or Cut File failed! - Faylı köçürmək və ya kəsmək mümkün olmadı! + @@ -4365,7 +4392,7 @@ Failed to move the file %1 to trash, cause: %2 - %1 faylını səbətə köçürmək mümkün olmadı, səbəb: %2 + @@ -4384,7 +4411,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,30 +4444,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Faylın adının dəyişdirilməsi xətası - + Failed to create the directory Kataloq yaratmaq mümkün olmadı - + Failed to create the file Faylı yaratmaq mümkün olmadı - + link file error keçid faylı xətası - - + + Failed to modify file permissions - Fayl icazələrini dəyişmək mümkün olmadı + @@ -4455,36 +4482,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Yerləşdirmək - Cu&t - + Cut + Kəsmək - &Copy - + Copy + Kopyalamaq dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Açmaq - Rena&me - + Rename + Yenidən adlandırmaq - &Delete - + Delete + Silmək @@ -4557,11 +4584,6 @@ Open in terminal Terminalda açmaq - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4601,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Buraya göndərmək - - Bluetooth - - - - + Create link Keçid yaratmaq - + Send to desktop İş masasına göndərmək @@ -4602,43 +4619,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Paylaşım + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Açmaq - + Open in new window Yeni pəncərədə açmaq - + Open in new tab Yeni vərəqdə açmaq - + Cancel sharing Paylaşımı ləğv etmək - - P&roperties - + + Properties + Tərcihlər dfmplugin_myshares::MyShares - + My Shares Mənim Paylaşımlarım @@ -4683,7 +4705,7 @@ Yazmaq üçün fayl yoxdur - + Unable to burn. Not enough free space on the target disk. Yazmaq mümkün olmadı. Hədəf diskində kifayət qədər boş yer yoxdur. @@ -4691,58 +4713,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Əsas məlumatlar - + Size Ölçüsü - + Contains Tərkibləri - + Type Növ - + Location Yer - + Time created Yaradılma Vaxtı - + Time accessed İstifadə Vaxtı - + Time modified Dəyişilmə Vaxtı - + Hide this file Bu faylı gizlətmək - - + + %1 item %1 element - + %1 items %1 element @@ -4763,27 +4785,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Məxfiliyin təhlükəsizliyi üçün - + For Government Hökümət üçün - + For Enterprise Müəssisə üçün - + Bit Bit - + Available Mövcud @@ -4791,47 +4813,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Kompyuter - + Basic Info Baza məlumatları - + Computer name Kompyuterin adı - + Version Versiya - + Edition Nəşr - + OS build ƏS-i quruluşu - + Type Növ - + Processor Prosessor - + Memory Yaddaş @@ -4874,14 +4896,6 @@ %1 fayl(lar), %2 qovluq(lar) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4915,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Tərcihlər dfmplugin_recent::Recent - + + Recent Sonuncu @@ -4916,17 +4931,17 @@ dfmplugin_recent::RecentManager - + Path Yol - + Last access Sonuncu giriş - + Recent Sonuncu @@ -4957,127 +4972,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Axtarış: - + File Type: Fayl Növü: - + File Size: Fayl Ölçüsü: - + Time Modified: Dəyişilmə Vaxtı: - + Time Accessed: İstifadə Vaxtı: - + Time Created: Yaradılma Vaxtı: - + Reset Sıfırlamaq - + All subdirectories Bütün alt qovluqlar - + Current directory Cari qovluq - + Application Tətbiq - + Video Video - + Audio Səs - + Image Şəkil - + Archive Arxiv - + Text Mətn - + Executable İcra ediləbilən - + Backup file Ehtiyyat Nüsxə - + Today Bu gün - + Yesterday Sabah - + This week Bu həftə - + Last week Keçən həftə - + This month Bu ay - + Last month Keçən ay - + This year Bu il - + Last year Keçən il @@ -5085,31 +5100,15 @@ dfmplugin_search::Search - - + Search Axtarmaq - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Yol @@ -5117,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Fayl yerini açmaq - + Select all Hamısını seçmək - + Path Yol @@ -5135,42 +5134,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Cəld giriş - + Partitions Bölmələr - + Network Şəbəkə - + Tag Etiket - + + Bookmark + Əlfəcin + + + Other Digər - + Unknown Group Naməlum qrup + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + LAN-dakı kompyuterlər + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Açmaq @@ -5184,8 +5196,8 @@ - P&roperties - + Properties + Xüsusiyyətlər @@ -5219,7 +5231,7 @@ dfmplugin_tag::Tag - + Tag Etiket @@ -5227,7 +5239,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Fayl yerini açmaq @@ -5277,66 +5289,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Serverə bağlantı - - - + + + Clear History Tarixçəni təmizləmək - + Unfavorite Seçilməmiş - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button İmtina - + Connect button Bağlantı - + Charset Encoding Simvol kodlaşması - + Default Standart - + My Favorites Seçilmişlər - + No favorites yet Heç bir seçilmiş yoxdur - + Favorite Seçilmiş @@ -5476,12 +5478,12 @@ dfmplugin_trash::TrashHelper - + Source Path Mənbə yolu - + Time deleted Silinmə vaxtı @@ -5489,27 +5491,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Bərpa etmək - + Restore all Hamısını bərpa etmək - + Empty trash Səbəti boşalt - + Source path Mənbə yolu - + Time deleted Silinmə vaxtı @@ -5517,7 +5519,7 @@ dfmplugin_trashcore::TrashCore - + Trash Səbət @@ -5530,17 +5532,17 @@ Səbət - + item Element - + items Elementlər - + Contains %1 %2 Tərkibi %1 %2 @@ -5722,42 +5724,42 @@ dfmplugin_vault::BasicWidget - + Basic info Əsas məlumatlar - + Size Ölçüsü - + Contains Tərkibləri - + Type Növ - + Location Yer - + Time created Yaradılma Vaxtı - + Time accessed İstifadə Vaxtı - + Time locked Kilidlənmə vaxtı @@ -5988,7 +5990,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Fayl seyfini şifrələmək @@ -6009,19 +6011,19 @@ - - - + + + Encrypt Şifrələmək - + Failed to create file vault: %1 Fayl seyfi yaradılması alınmadı: %1 - + OK OK @@ -6072,7 +6074,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Seyfin açarını təyin edin @@ -6098,7 +6100,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 simvollar, A-Z, a-z, 0-9 və simvollardan ibarət @@ -6133,8 +6135,8 @@ Növbəti - - + + Passwords do not match Şifrələr oxşar deyil @@ -6142,7 +6144,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Fayl seyfi @@ -6192,7 +6194,7 @@ dfmplugin_vault::VaultHelper - + Vault Seyf @@ -6202,7 +6204,7 @@ Seyf əlçatan deyil, çünki "cryfs" quraşdırılmayıb - + A task is in progress, so it cannot perform your operation Tapşırıq icra olunur, ona görə də əməliyyatınızı icra edə bilmir @@ -6210,121 +6212,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mənim seyfim - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Şifrə - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Şifrə ipucu: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + 32-rəqəmli bərpa açarını daxil edin + + + dfmplugin_vault::VaultRemovePages - - Password - Şifrə + + Delete File Vault + Fayl seyfini silmək - - Password hint: %1 - Şifrə ipucu: %1 + + Once deleted, the files in it will be permanently deleted + Silidikdən sonra daxilindəki fayllar həmişəlik itiriləcəkdir - + Cancel - - - - - Delete - + button + İmtina - - Delete File Vault - + + Use Key + button + Açar istifadə edin - - Wrong password - + + Delete + button + Silmək - - Failed to delete file vault - + + Removing... + Silinir... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - 32-rəqəmli bərpa açarını daxil edin + + Wrong password + Səhv şifrə - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Səhv bərpa açarı - - OK - + + Failed to delete file vault + Fayl seyfinin silinməsi alınmadı - - Delete File Vault - + + Deleted successfully + Uğurla silindi - - Deleted successfully - + + Failed to delete + Silmək alınmadı @@ -6335,10 +6314,16 @@ Mənim seyfim - + File Vault Fayl seyfi + + + + Vault + Seyf + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6336,22 @@ dfmplugin_workspace::FileViewModel - + Name Ad - + Time modified Dəyişdirilmə vaxtı - + Size Ölçüsü - + Type Növ @@ -6382,7 +6367,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 icazə verilmir @@ -6398,50 +6383,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Çeşidləmə sırası - + Display as Belə göstərmək - + Name Ad - + Time modified Dəyişilmə Vaxtı - + Size Ölçüsü - + Type Növ - + Icon Nişan - + List Siyahı - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6434,7 @@ filedialog_core::FileDialog - + Save button Saxlamaq @@ -6463,13 +6443,13 @@ filedialog_core::FileDialogStatusBar - + Save button Saxlamaq - + Open button Açmaq @@ -6507,112 +6487,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Əlçatan ölçülər: - + Custom Size İstifadəçi ölçüsü - + Device Pixel Ratio: Cihazın piksel nisbəti: - + Theme: Mövzu: - + Light İşıqlanma - + Dark Qaranlıq - + Mode: Rejim: - + Normal Normal - + Disabled Söndürülüb - + Hovered Üzərində - + Pressed Sıxılmış - + Palette Palitra - + Current mode icon does not support the palette Cari rejimin nişanı palitranı dəstəkləmir - + Foreground: Ön plan: - + Background: Arxa plan: - + Highlight: Rəngli seçim - + HighlightForeground: Ön plan fərqlənməsi - + Background Color: Arxa fon rəngi: - + White - + Black Qara - + Transparent Şəffaf - + Custom Fərdi @@ -6644,22 +6624,22 @@ plugin_filepreview::MusicMessageView - + Artist: İfaçı: - + Album: Albom: - + unknown artist naməlum ifaçı - + unknown album naməlum albom diff --git a/translations/dde-file-manager_bg.ts b/translations/dde-file-manager_bg.ts index 5eac2709e9..eca9cc31e9 100644 --- a/translations/dde-file-manager_bg.ts +++ b/translations/dde-file-manager_bg.ts @@ -15,104 +15,99 @@ Application - + File Manager Файлов мениджър - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Десктоп + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 обем - DiskMountPlugin + DesktopMain - - Disk - Диск + + Desktop + Десктоп + + + DiskControlWidget - - Open - Отваряне + + Disks + Дискове - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + Файлове от диска се използват не можете да го демонтирате - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Диск - - Operation failed - + + Open + Отваряне - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Непознат @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Системен диск - + Data Disk Диск за данни - + Blank %1 Disc - - - + + + Unknown Непознат - + %1 Drive - + %1 Encrypted - - + %1 Volume %1 обем - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Домашна директория @@ -228,6 +223,7 @@ + Desktop Работен плот @@ -237,6 +233,7 @@ + Videos Видео @@ -246,6 +243,7 @@ + Music Музика @@ -255,6 +253,7 @@ + Pictures Снимки @@ -264,6 +263,7 @@ + Documents Документи @@ -273,6 +273,7 @@ + Downloads Свалени @@ -281,6 +282,7 @@ + Trash Кошче @@ -291,11 +293,12 @@ + Recent Последни - + @@ -303,7 +306,7 @@ Автоматично монтиране - + @@ -316,46 +319,47 @@ %1 задачи в изпълнение - + %1 item %1 обект - + %1 items %1 обекта - + Unable to find the original file - - + + File has been moved or deleted Файлът е преместен или изтрит - - + + + You do not have permission to access this folder Вие нямате права за достъп до тази папка - - + + You do not have permission to traverse files in it - - + + Folder is empty Папката е празна - + Loading... Зареждане @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Компютър @@ -419,8 +424,9 @@ - - + + + Computers in LAN Компютри в LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Таг @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Пряк път - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Бит + Access denied Достъп отказан + Confirm button Потвърждавам + + + The device has been safely removed + + - - + + - - - + + + Open in new window Отваряне в нов прозорец @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Отваряне в нов раздел @@ -953,8 +968,8 @@ - - + + Properties Свойства @@ -990,7 +1005,7 @@ Нов файл - + Create symlink Създаване на символна връзка @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? Сигурни ли сте, искате да изтриете всички данни на диска? - + Erase button Изтриване - + This action cannot be undone Това действие не може да бъде възстановено - + How do you want to use this disc? Как искате да използвате този диск? - + Burn image button Записване на образ - + Burn files button Записване на файлове - + %1 is a duplicate file. %1 се повтаря. - + Insufficient disc space. Недостатъчно дисково пространство. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ Елементи: %1 - + Orange Оранжев - + Red Червен - + Purple Лилав - + Navy-blue Морско синьо - + Azure Небесен - + Green Зелен - + Yellow Жълт - + Gray Сив @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Локален диск - + Removable disk Сменяем диск - + DVD DVD - + Network shared directory Споделени папки в мрежата - - + + Android mobile device Android мобилни устройства - + Apple mobile device Apple мобилни устройства - + Unknown device Непознато устройство - + Remove button Преместване - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Изчисти последната история - - - + + + Source path Път до източника @@ -1404,12 +1419,12 @@ - + Empty Trash Изпразване на кошчето - + Location Нахождение @@ -1509,7 +1524,7 @@ Търсене... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Тип - + Time accessed - + Time modified Време на промяна - + Time created Време на създаване - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Размер на икона @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 елемент е избран @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button ОК - + Operation failed! Операцията е неуспешна! @@ -2529,191 +2554,191 @@ Целевата папка се намира в изходната папка! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Отказ - + Format button Формат - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Да пусна ли %1 или да покажа съдържанието му? - + It is an executable text file. Това е изпълним текстов файл. - - - + + + Run button Стартиране - - + + Run in terminal button Стартиране в терминал - + Display button Екран - + Do you want to run %1? Искате ли да стартирате %1? - + It is an executable file. Това е изпълним файл. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Изтриване завинаги на %1 обекта? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Изтриване - + Permanently delete %1? Изтриване завинаги на %1? - - + + This action cannot be undone Това действие не може да бъде възстановено - + Are you sure you want to empty %1 item? Наистина ли искате да изпразните %1 обект? - + Are you sure you want to empty %1 items? Наистина ли искате да премахнете %1 обекта? - + Empty Изпразване - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Не може да се възстанови %1 файл, избраната папка е само за четене - + Failed to restore %1 files, the target folder is read-only Не може да се възстановят %1 файлове, избраната папка е само за четене - + "%1" already exists, please use another name. "%1" вече съществува, моля, използвайте друго име. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Отказ - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved прекият път за %1 може да е бил променен или преместен - + Do you want to delete this shortcut? Искате ли да изтриете този пряк път ? - + This file is not executable, do you want to add the execute permission and run? Този файл не е изпълним, искате ли да добавите разрешението за изпълнение и да стартирате? - + The selected files contain system file/directory, and it cannot be deleted Избраните файлове, съдържат системни файлове/директории и не могат да бъдат изтрити @@ -2841,276 +2866,278 @@ Моля, въведете парола за декриптиране на диска - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Други - + Close Затваряне - + Close current tab Затвори текущия раздел - + Back Обратно - + Forward Напред - + Switch to next tab Премини на следващия раздел - + Switch to previous tab Премини на предишния раздел - + Next file Следващ файл - + Previous file Предишен файл - + Switch tab by specified number between 1 to 8 Превключи раздела по зададен номер от 1 до 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Оригинална папка - + Contains: %1 - + Original file Оригинален файл - + Size: %1 Размер: %1 - + Target folder Целева папка - - + In data statistics ... - + Target file Целеви файл @@ -3445,37 +3466,37 @@ - + Keep both button Запази и двете - + Skip button Пропускане - - + + Replace button Замени - + Do not ask again Не ме питай повече - + Retry button Отново - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Отказ - + Remove button Преместване @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Компютър - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Компютър - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Моите папки - + Disks Дискове @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Тип на устройството - + Total space Общо пространство - + File system - + Contains Съдържание - + Free space Свободно пространство - + %1 items %1 обекта - + %1 item %1 обект @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Размер - + Dimension - + Duration - + Type Тип - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Поставяне - Cu&t - + Cut + Отрязване - &Copy - + Copy + Копиране dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Отваряне - Rena&me - + Rename + Преименуване - &Delete - + Delete + Изтриване @@ -4557,11 +4579,6 @@ Open in terminal Отваряне в терминал - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Изпрати до - - Bluetooth - - - - + Create link Създаване на връзка - + Send to desktop Изпращане на десктопа @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Отваряне - + Open in new window Отваряне в нов прозорец - + Open in new tab Отваряне в нов раздел - + Cancel sharing Отказване на споделянето - - P&roperties - + + Properties + Свойства dfmplugin_myshares::MyShares - + My Shares Споделени @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Размер - + Contains Съдържание - + Type Тип - + Location Нахождение - + Time created Време на създаване - + Time accessed - + Time modified Време на промяна - + Hide this file - - + + %1 item %1 обект - + %1 items %1 обекта @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Бит - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Компютър - + Basic Info Основна информация - + Computer name - + Version Версия - + Edition - + OS build - + Type Тип - + Processor Процесор - + Memory Памет @@ -4873,14 +4890,6 @@ %1 файл(ове), %2 папка(и) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Свойства dfmplugin_recent::Recent - + + Recent Последни @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Път - + Last access Последно използван - + Recent Последни @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Търсене: - + File Type: Тип на файл: - + File Size: Размер на файл: - + Time Modified: Време на промяна: - + Time Accessed: - + Time Created: - + Reset Възстанови - + All subdirectories Всички подпапки - + Current directory Текуща папка - + Application Приложение - + Video Видео - + Audio Аудио - + Image Изображение - + Archive Архив - + Text Текст - + Executable Изпълним - + Backup file - + Today Днес - + Yesterday Вчера - + This week Тази седмица - + Last week Миналата седмица - + This month Този месец - + Last month Миналия месец - + This year Тази година - + Last year Миналата година @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Търсене - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Път @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Отвори местоположението на файла - + Select all Избор на всичко - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Таг - + + Bookmark + + + + Other Друг - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Компютри в LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Отваряне @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Таг @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Отвори местоположението на файла @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Отказ - + Connect button Свързване - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Път до източника - + Time deleted Време на изтриване @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Възстановяване - + Restore all Възстановяване на всичко - + Empty trash - + Source path Път до източника - + Time deleted Време на изтриване @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Кошче @@ -5529,17 +5526,17 @@ Кошче - + item елемент - + items елементи - + Contains %1 %2 Съдържа %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Размер - + Contains Съдържание - + Type Тип - + Location Нахождение - + Time created Време на създаване - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ОК @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Парола - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Парола - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Отказ - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Изтриване - - Failed to delete file vault + + Removing... - + + OK - + button + ОК - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Сортиране по - + Display as Показване като - + Name Име - + Time modified Време на промяна - + Size Размер - + Type Тип - + Icon Икона - + List Списък - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Запазване @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Запазване - + Open button Отваряне @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_bn.ts b/translations/dde-file-manager_bn.ts index 10f5df5561..30e290db1f 100644 --- a/translations/dde-file-manager_bn.ts +++ b/translations/dde-file-manager_bn.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - ডেস্কটপ + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - ডিস্ক + + Desktop + ডেস্কটপ + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + ডিস্ক - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk সিস্টেম ডিস্ক - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop ডেস্কটপ @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash ট্র্যাশ @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item %1 আইটেম - + %1 items %1 গুলো আইটেম - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... লোড হচ্ছে.... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer কম্পিউটার @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ বিট + Access denied + Confirm button নিশ্চিত করুন + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties বৈশিষ্ট্যসমূহ @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type ধরণ - + Time accessed - + Time modified সময় পরিবর্তন হয়ে গেছে - + Time created তৈরি করার সময় - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size আইকনের আকার @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 আইটেম নির্বাচন করা হয়েছে @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button ঠিক আছে - + Operation failed! অপারেশন বার্থ হয়েছে @@ -2529,191 +2554,191 @@ টার্গেট করা ফোল্ডারটি উৎস ফোল্ডারের ভেতরে অবস্থিত - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button বাতিল করুন - + Format button ফরম্যাট - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? আপনি কি %1 চালাতে চান না এর কন্টেন্ট দেখাতে চান ? - + It is an executable text file. এটি একটি এক্সেকিউটাবলে টেক্সট ফাইল - - - + + + Run button চালান - - + + Run in terminal button টার্মিনালে চালান - + Display button ডিসপ্লে - + Do you want to run %1? - + It is an executable file. এটি একটি এক্সেকিউটাবলে ফাইল - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 গুলো আইটেম স্থায়ীভাবে মুছে ফেলবেন ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button মুছে ফেলুন - + Permanently delete %1? %1 স্থায়ীভাবে মুছে ফেলবেন ? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty খালি - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" আগে থেকেই আছে, অন্য কোন নাম ব্যবহার করুন। - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel বাতিল করুন - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button বাতিল করুন - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer কম্পিউটার - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer কম্পিউটার - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories আমার পথগুলো - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items %1 গুলো আইটেম - + %1 item %1 আইটেম @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ আকার - + Dimension - + Duration - + Type ধরণ - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,18 +4495,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete - + Delete + মুছে ফেলুন @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + বৈশিষ্ট্যসমূহ dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size আকার - + Contains - + Type ধরণ - + Location - + Time created তৈরি করার সময় - + Time accessed - + Time modified সময় পরিবর্তন হয়ে গেছে - + Hide this file - - + + %1 item %1 আইটেম - + %1 items %1 গুলো আইটেম @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit বিট - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer কম্পিউটার - + Basic Info প্রাথমিক তথ্য - + Computer name - + Version ভার্সন - + Edition - + OS build - + Type ধরণ - + Processor প্রসেসর - + Memory মেমরি @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + বৈশিষ্ট্যসমূহ dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button বাতিল করুন - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash ট্র্যাশ @@ -5529,17 +5526,17 @@ ট্র্যাশ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size আকার - + Contains - + Type ধরণ - + Location - + Time created তৈরি করার সময় - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ঠিক আছে @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + বাতিল করুন - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + মুছে ফেলুন - - Failed to delete file vault + + Removing... - + + OK - + button + ঠিক আছে - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name নাম - + Time modified সময় পরিবর্তন হয়ে গেছে - + Size আকার - + Type ধরণ - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_bo.ts b/translations/dde-file-manager_bo.ts index df177c542b..d354e1a968 100644 --- a/translations/dde-file-manager_bo.ts +++ b/translations/dde-file-manager_bo.ts @@ -17,12 +17,12 @@ Application - + File Manager ཡིག་ཆ་དོ་དམ་བྱེད་ཆས། - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ཡིག་ཆ་དོ་དམ་བྱེད་ཆས་ནི་རྩོལ་ནུས་སྟོབས་ཆེན་ཡོད་པའི་དོ་དམ་ཡོ་བྱད་ཅིག་ཡིན། དེར་བཤེར་འཚོལ་དང་། པར་སློག སྙིགས་སྣོད། སྡུད་སྒྲིལ། བསྡུས་འགྲོལ། ཡིག་ཆའི་ངོ་བོ་སོགས་ཚུད་པའི་དོ་དམ་རྩོལ་ནུས་ལྡན་ཡོད། @@ -30,7 +30,7 @@ DesktopMain - + Desktop ཅོག་ངོས་མངོན་སྟོན། @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - + སྒྲིག་ཆས་བདེ་འཇགས་ངང་སྤོ་འབུད་བྱས་སོང་། - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume བམ་པོ་%1  @@ -212,7 +212,7 @@ - + %1 on %2 %2 ཡི་ %1 @@ -886,19 +886,19 @@ (འདྲ་དཔེ། %1) - - + + dde-file-manager dde-file-manager - + Files are being processed ཡིག་ཆ་ཐག་གཅོད་བཞིན་པ། - + Bit གནས། @@ -3004,7 +3004,7 @@ Tree - སྡོང་དབྱིབས་མཐོང་རིས། + @@ -3277,7 +3277,7 @@ Switch to tree view - སྡོང་དབྱིབས་མཐོང་རིས་ལ་བརྗེ་བ། + @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - ཡིག་ཆ་%1 སྙིགས་སྣོད་དུ་སྤོ་མ་ཐུབ། + @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - ཡིག་ཆ་མཁོ་ཕབ་བམ་དྲས་སྦྱར་བྱེད་མ་ཐུབ། + @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - ཡིག་ཆ་%1 སྙིགས་སྣོད་དུ་སྤོ་མ་ཐུབ། རྒྱུ་མཚན་ནི་%2 + @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - ཡིག་ཆ་མཁོ་ཕབ་བམ་དྲས་སྦྱར་བྱེད་མ་ཐུབ། རྒྱུ་མཚན་ནི་%1 + @@ -4442,7 +4442,7 @@ Failed to modify file permissions - ཡིག་ཆའི་དབང་ཚད་བཅོས་ཐུབ་མ་སོང་། + @@ -4588,7 +4588,7 @@ Bluetooth - + སོ་སྔོན། @@ -5811,39 +5811,40 @@ dfmplugin_vault::RecoveryKeyView - + + Unlock by Key གསང་ལྡེ་འབྱེད་ཐབས་སོར་ཆུད་པ། - + Input the 32-digit recovery key གྲངས་གནས་32ནང་འཇུག་བྱས་ཏེ་གསང་ལྡེ་སོར་ཆུད་པ། - + Cancel button འདོར་བ། - + Unlock button སྒོ་ལྕགས་འབྱེད་པ། - + Wrong recovery key གསང་ལྡེ་ནོར་བ། - + Failed to unlock file vault ཉེན་འགོག་སྒམ་ཆུང་སྒོ་ལྕགས་འབྱེད་མ་ཐུབ། - + OK ཆོག @@ -5936,11 +5937,6 @@ Forgot password? གསང་ཨང་བརྗེད་འདུག་གམ། - - - Key unlock - - Password @@ -6225,146 +6221,111 @@ Cancel - འདོར་བ། + འདོར་བ། Delete - སུབ་པ། + སུབ་པ། Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། Failed to delete file vault - + ཉེན་འགོག་སྒམ་ཆུང་བསུབས་མ་ཐུབ། OK - ཆོག + ཆོག Once deleted, the files in it will be permanently deleted - + ཉེན་འགོག་སྒམ་ཆུང་བསུབས་རྗེས། དེའི་ནང་གི་ནང་དོན་ཚང་མ་ཡོངས་སུ་བསུབས་ངེས་རེད། dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted - + ཉེན་འགོག་སྒམ་ཆུང་བསུབས་རྗེས། དེའི་ནང་གི་ནང་དོན་ཚང་མ་ཡོངས་སུ་བསུབས་ངེས་རེད། - + Password གསང་ཨང་། - - Key delete - - - - + Password hint: %1 གསང་ཨང་དྲན་སྐུལ། %1 - + Cancel - འདོར་བ། + འདོར་བ། - + Delete - སུབ་པ། + སུབ་པ། - + Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། - + Wrong password - གསང་ཨང་ནོར་བ། + གསང་ཨང་ནོར་བ། - + Failed to delete file vault - + ཉེན་འགོག་སྒམ་ཆུང་བསུབས་མ་ཐུབ། - + OK - ཆོག + ཆོག dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key གྲངས་གནས་32ནང་འཇུག་བྱས་ཏེ་གསང་ལྡེ་སོར་ཆུད་པ། - - - Cancel - འདོར་བ། - - - - Delete - སུབ་པ། - - - - Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། - - - - Wrong recovery key - གསང་ལྡེ་ནོར་བ། - - - - Failed to delete file vault - - - - - OK - ཆོག - dfmplugin_vault::VaultRemoveProgressView Removing... - + སུབ་བཞིན་པ། OK - ཆོག + ཆོག Delete File Vault - ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། Deleted successfully - + བསུབས་པ། @@ -6414,7 +6375,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... སྣོན་འཇུག་བྱེད་བཞིན་པ། @@ -6438,49 +6399,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by སྟར་སྒྲིག་སྟངས། - + Display as མངོན་སྟོན་བྱེད་སྟངས། - + Name མིང་། - + Time modified བཟོ་བཅོས་དུས་ཚོད། - + Size ཆེ་ཆུང་། - + Type རིགས་གྲས། - + Icon རྟགས་རིས་མཐོང་རིས། - + List གསལ་ཐོའི་མཐོང་རིས། - + Tree - སྡོང་དབྱིབས་མཐོང་རིས། + diff --git a/translations/dde-file-manager_bqi.ts b/translations/dde-file-manager_bqi.ts index 44766037dd..252c6d81dc 100644 --- a/translations/dde-file-manager_bqi.ts +++ b/translations/dde-file-manager_bqi.ts @@ -15,104 +15,99 @@ Application - + File Manager dîvowdâri fāyl - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - dêsktāp + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - + + Desktop + dêsktāp + + + DiskControlWidget - - Open - gušiďên + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed - + + Open + gušiďên - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home howne @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music ārêńg @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ purniďênê xotkār - + @@ -316,46 +319,47 @@ - + %1 item %1 āytem - + %1 items %1 āytemā - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty dobalga pati hêď - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares yak rasuviyā mo @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut miyowbor - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (lefgiri) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (lefgiri %1) @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window gušiďên mênê nimdari nu @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab gušiďên mênê balgê nu @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red so'r - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device dasgā mobāyl androyd - + Apple mobile device dasgā mobāyl apêl - + Unknown device dasgā nāšênās - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history roftên virgār dindâyi - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash dalâšqâli nê pati ko - + Location jāga @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + hêndā niyaštgêr + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons kêtên kerdênê xotkārê āykonal @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + hêndā niyaštgêr + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? êxuy %1 nê ra' vani yā mo'tavāsê niya'ri? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button niyaštgêr - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? zê râsti êxuy 1% zê āytêmā nê pati kuni? - + Are you sure you want to empty %1 items? zê râsti êxuy 1% zê āytêmā nê pati kuni? - + Empty pati - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 hêndā: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type no'ê dasgā - + Total space poy jāga - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ hêndā - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,35 +4477,35 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + jā vandên - Cu&t - + Cut + jā goro kerdên - &Copy - + Copy + lefgiri dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + gušiďên - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal gušiďên mênê têrmināl - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to fêšnāďên vê - - Bluetooth - - - - + Create link - + Send to desktop fêšnāďên vê dêsktāp @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share yak rasuvi + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + gušiďên - + Open in new window gušiďên mênê nimdari nu - + Open in new tab gušiďên mênê balgê nu - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares yak rasuviyā mo @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size hêndā - + Contains - + Type - + Location jāga - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition ālêšt kerdên - + OS build - + Type - + Processor - + Memory virga @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: hêndā fāyl: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location gušiďên jāga fāyl - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + gušiďên @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location gušiďên jāga fāyl @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History roftên virgār - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash dalâšqâli nê pati ko - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size hêndā - + Contains - + Type - + Location jāga - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 nî'lêsow @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as niyaštgêr vê onvān - + Name - + Time modified - + Size hêndā - + Type - + Icon - + List nomga - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button zaft kerdên @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button zaft kerdên - + Open button gušiďên @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_br.ts b/translations/dde-file-manager_br.ts index ecf1c108e0..cc1d2da413 100644 --- a/translations/dde-file-manager_br.ts +++ b/translations/dde-file-manager_br.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ca.ts b/translations/dde-file-manager_ca.ts index 47130a648c..063c205820 100644 --- a/translations/dde-file-manager_ca.ts +++ b/translations/dde-file-manager_ca.ts @@ -15,104 +15,99 @@ Application - + File Manager Gestor de fitxers - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. El Gestor de fitxers és una eina de gestió de fitxers potent i fàcil d'usar que permet cercar, copiar, eliminar, comprimir i descomprimir fitxers, canviar-ne les propietats i altres funcions útils. - DesktopMain + DAttachedProtocolDevice - - Desktop - Escriptori + + %1 on %2 + %1 a %2 - DeviceList + DeepinStorage - - Disks - Discs + + + %1 Volume + Volum: %1 - DiskMountPlugin + DesktopMain - - Disk - Disc + + Desktop + Escriptori + + + DiskControlWidget - - Open - Obre + + Disks + Discs - - Eject all - Extreu-ho tot + + The device was not safely removed + El dispositiu no s'ha extret amb seguretat. - - - DockItemDataManager - - The device has been safely removed - El dispositiu s'ha extret amb seguretat. + + Click "Safely Remove" and then disconnect it next time + A la propera, cliqueu a "Extreu-lo amb seguretat" i després desconnecteu-lo. - - eject - expulsar + + Disk is busy, cannot unmount now + El disc està ocupat. No es pot desmuntar ara. - - unmount - desmuntar + + The device is busy, cannot eject now + El dispositiu està ocupat. No es pot extreure ara. + + + DiskMountPlugin - - - remove - eliminar + + Disk + Disc - - Operation failed - Ha fallat l'operació. + + Open + Obre - - Device (%1) is busy, cannot %2 now. - El dispositiu (%1) està ocupat, ara no es pot %2. + + Eject all + Extreu-ho tot FileDialogHandle - + All Files Tots els fitxers - - FileOperateBaseWorker - - - The file name or the path is too long! - El nom del fitxer o el camí és massa llarg! - - MimeTypeDisplayManager - + Unknown Desconegut @@ -128,89 +123,88 @@ QObject - + need authorization to access cal autorització per accedir-hi - + Can't verify the identity of %1. No es pot verificar la identitat de %1. - + This happens when you log in to a computer the first time. Això passa quan obriu la sessió per primer cop. - + The identity sent by the remote computer is La identitat enviada per l'ordinador remot és - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Si voleu estar absolutament segur que és segur continuar, poseu-vos en contacte amb l'administrador del sistema. - - - + + + System Disk Disc de sistema - + Data Disk Disc de dades - + Blank %1 Disc Disc en blanc %1 - - - + + + Unknown Desconegut - + %1 Drive Dispositiu: %1 - + %1 Encrypted Encriptat: %1 - - + %1 Volume Volum: %1 - + + Scanning the device, stop it? S'escaneja el dispositiu. Voleu interrompre-ho? - + Unmount failed Ha fallat el desmuntatge. - + Cannot stop scanning device No es pot aturar l'escaneig del dispositiu. - - + %1 on %2 %1 a %2 @@ -219,6 +213,7 @@ + Home Carpeta de l'usuari @@ -228,6 +223,7 @@ + Desktop Escriptori @@ -237,6 +233,7 @@ + Videos Vídeos @@ -246,6 +243,7 @@ + Music Música @@ -255,6 +253,7 @@ + Pictures Imatges @@ -264,6 +263,7 @@ + Documents Documents @@ -273,6 +273,7 @@ + Downloads Baixades @@ -281,6 +282,7 @@ + Trash Paperera @@ -291,11 +293,12 @@ + Recent Recent - + @@ -303,7 +306,7 @@ Muntatge automàtic - + @@ -316,46 +319,47 @@ %1 tasques en execució - + %1 item %1 element - + %1 items %1 elements - + Unable to find the original file No es pot trobar el fitxer original. - - + + File has been moved or deleted El fitxer s'ha desplaçat o eliminat - - + + + You do not have permission to access this folder No teniu permís per accedir a aquesta carpeta. - - + + You do not have permission to traverse files in it No teniu permís per passar-hi fitxers. - - + + Folder is empty La carpeta és buida - + Loading... Carregant... @@ -404,7 +408,7 @@ - + Built-in disks Discs integrats @@ -412,6 +416,7 @@ + Computer Ordinador @@ -419,8 +424,9 @@ - - + + + Computers in LAN Ordinadors a la xarxa d'àrea local @@ -428,7 +434,7 @@ - + Loop partitions Particions de bucle @@ -436,8 +442,7 @@ - - + Mounted sharing folders Carpetes de compartició muntades @@ -445,6 +450,7 @@ + My shares Comparticions @@ -452,7 +458,7 @@ - + Network Xarxa @@ -460,7 +466,7 @@ - + Mounted partitions and discs Particions i discs muntats @@ -468,7 +474,7 @@ - + Partitions Particions @@ -476,7 +482,7 @@ - + Quick access Accés ràpid @@ -484,7 +490,7 @@ - + Tag Etiqueta @@ -492,7 +498,7 @@ - + Added tags Etiquetes afegides @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Continua mostrant els recursos compartits de Samba muntats. @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Interromp - + Shortcut Drecera - + This system wallpaper is locked. Please contact your admin. Aquest fons de pantalla del sistema està blocat. Poseu-vos en contacte amb l'administrador. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (còpia) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copia %1) @@ -901,26 +909,33 @@ Bit + Access denied Accés denegat + Confirm button Confirmeu-ho + + + The device has been safely removed + El dispositiu s'ha extret amb seguretat. + - - + + - - - + + + Open in new window Obre en una finestra nova @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Obre en una pestanya nova @@ -953,8 +968,8 @@ - - + + Properties Propietats @@ -990,7 +1005,7 @@ Fitxer nou - + Create symlink Crea un enllaç simbòlic @@ -1077,70 +1092,70 @@ Afegeix al disc - + Are you sure you want to erase all data on the disc? Segur que voleu esborrar totes les dades del disc? - + Erase button Esborra - + This action cannot be undone Aquesta acció no es pot desfer - + How do you want to use this disc? Com voleu usar aquest disc? - + Burn image button Grava la imatge - + Burn files button Grava els fitxers - + %1 is a duplicate file. %1 és un fitxer duplicat. - + Insufficient disc space. No hi ha prou espai de disc. - + Lost connection to drive. S'ha perdut la connexió amb la unitat. - + The CD/DVD drive is not ready. Try another disc. La unitat de CD / DVD no està a punt. Proveu-ho amb un altre disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. La unitat de CD / DVD està ocupada. Sortiu del programa usant la unitat i torneu-la a inserir. - + Invalid volume name Nom del volum no vàlid - + Unknown error Error desconegut @@ -1179,42 +1194,42 @@ Elements: %1 - + Orange Taronja - + Red Vermell - + Purple Porpra - + Navy-blue Blau marí - + Azure Atzur - + Green Verd - + Yellow Groc - + Gray Gris @@ -1290,76 +1305,76 @@ No s'hi pot accedir. - + User directory Directori de l'usuari - + Local disk Disc local - + Removable disk Disc extraïble - + DVD DVD - + Network shared directory Directori compartit per xarxa - - + + Android mobile device Dispositiu mòbil d'Android - + Apple mobile device Dispositiu mòbil d'Apple - + Unknown device Dispositiu desconegut - + Remove button Elimina - + Do you want to remove this item? Voleu eliminar aquest element? - + Do yout want to remove %1 items? Voleu eliminar %1 elements? - + It does not delete the original files No s'eliminen els fitxers originals. - + Clear recent history Neteja l'historial recent - - - + + + Source path Camí font @@ -1404,12 +1419,12 @@ No es poden obrir els elements de la paperera. Si us plau, restaureu-los primer. - + Empty Trash Buida la paperera - + Location Ubicació @@ -1509,7 +1524,7 @@ Cercant... - + My Vault La meva cambra cuirassada @@ -1704,7 +1719,7 @@ Ha fallat - + Sidebar Barra lateral @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Sense autorització - - - In trial period - En període de prova - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - Sense autorització - - - - + + In trial period En període de prova @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Col·lecció nova @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organitza l'escriptori - + Desktop options Opcions de l'escriptori - + Organize by Organitza'l per - + Custom collection Col·lecció personalitzada - + Type Tipus - + Time accessed Hora d'accés - + Time modified Hora de modificació - + Time created Hora de creació - + Create a collection Crea una col·lecció + + + Display Size + Mida de visualització + + + + Smaller + Més petita + + + + Normal + Normal + + + + Larger + Més grossa + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opcions de l'escriptori - + Auto arrange icons Arranjament automàtic de les icones @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Mida de visualització + + + Icon size Mida de la icona @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? El Gestor de fitxers s'actualitzarà a una versió nova. Durant l'actualització s'acabaran les tasques en curs. Voleu actualitzar-lo ara? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Els serveis d'escriptori s'actualitzaran a una versió nova. Durant l'actualització s'acabaran les tasques en curs. Voleu actualitzar-los ara? - + Update button Actualitza - + Cancel button Cancel·la @@ -2360,7 +2385,7 @@ - + %1 item selected %1 element seleccionat @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button D'acord - + Operation failed! Ha fallat l'operació! @@ -2529,191 +2554,191 @@ La carpeta de destinació és dins de la carpeta d'origen! - + The passphrase is needed to access encrypted data on %1. Cal contrasenya per accedir a les dades encriptades a %1. - - - - - - - - + + + + + + + + Cancel button Cancel·la - + Format button Formatació - + To access the device, you must format the disk first. Are you sure you want to format it now? Per accedir al dispositiu, primer heu de formatar el disc. Segur que el voleu formatar ara? - + Do you want to run %1 or display its content? Voleu executar %1 o veure'n el contingut? - + It is an executable text file. És un fitxer de text executable. - - - + + + Run button Executa - - + + Run in terminal button Executa al terminal - + Display button Mostra - + Do you want to run %1? Voleu executar %1? - + It is an executable file. És un fitxer executable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? No es poden moure els %1 elements seleccionats a la paperera. Voleu eliminar-los permanentment? - + Permanently delete %1 items? Voleu eliminar permanentment %1 elements? - + Cannot move "%1" to the trash. Do you want to permanently delete it? No es pot moure %1 a la paperera. Voleu eliminar-ho permanentment? - - - + + + Delete button Elimina - + Permanently delete %1? Voleu eliminar permanentment %1? - - + + This action cannot be undone Aquesta acció no es pot desfer - + Are you sure you want to empty %1 item? Segur que voleu eliminar %1 element? - + Are you sure you want to empty %1 items? Segur que voleu eliminar %1 elements? - + Empty Buit - + Do you want to delete %1? Voleu eliminar %1? - + Do you want to delete the selected %1 items? Voleu eliminar els %1 elements seleccionats? - + Failed to restore %1 file, the target folder is read-only No s'ha pogut restaurar %1 fitxer, la carpeta de destinació és de només lectura. - + Failed to restore %1 files, the target folder is read-only No s'han pogut restaurar %1 fitxers, la carpeta de destinació és de només lectura. - + "%1" already exists, please use another name. "%1" ja existeix; si us plau, trieu un altre nom. - + Device or resource busy Dispositiu o recurs ocupat - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Aquest fitxer serà ocult si el nom comença amb un punt. Voleu amagar-lo? - + Hide Amaga - + Cancel Cancel·la - + Unable to access %1 No es pot accedir a %1. - + %1 that this shortcut refers to has been changed or moved %1: la referència d'aquesta drecera ha canviat o s'ha desplaçat. - + Do you want to delete this shortcut? Voleu eliminar aquesta drecera? - + This file is not executable, do you want to add the execute permission and run? Aquest fitxer no és executable. Voleu afegir-hi el permís d'execució i executar-lo? - + The selected files contain system file/directory, and it cannot be deleted Els fitxers seleccionats contenen fitxers / directoris del sistema i no es poden eliminar. @@ -2841,276 +2866,278 @@ Introduïu la contrasenya per desxifrar el disc - - dfmbase::RightValueWidget - - - Copy complete info - Copia la informació completa - - dfmbase::SettingBackend - + Always open folder in new window Obre sempre la carpeta en una finestra nova - + Open file: Obre el fitxer: - + Click Clic - + Double click Clic doble - + New window and tab Finestra i pestanya noves - + Open from default window: Obre des de la finestra per defecte: - - + + Computer Ordinador - - + + Home Carpeta de l'usuari - - + + Desktop Escriptori - - + + Videos Vídeos - - + + Music Música - - + + Pictures Imatges - - + + Documents Documents - - + + Downloads Baixades - + Open in new tab: Obre en una pestanya nova: - + Current Directory Directori actual - + Files and folders Fitxers i carpetes - + Show hidden files Mostra els fitxers ocults. - + Show file extensions Mostra les extensions dels fitxers. - + Mix sorting of files and folders Barreja l'ordenació de fitxers i carpetes. - + Workspace Espai de treball - + View Visualització - + Default size: Mida per defecte: - + Extra small Molt petita - + Small Petita - + Medium Mitjana - + Large Grossa - + Extra large Molt grossa - - Tree - Arbre - - - + Default view: Visualització per defecte: - + Icon Icona - + List Llista - - Restore default view mode for all directories - Restaura el mode de visualització predeterminat per a tots els directoris - - - - Restore default view mode - Restaura el mode de visualització predeterminat - - - + Thumbnail preview Visualització prèvia en miniatures - + Compressed file preview Visualització prèvia del fitxer comprimit - + Text preview Visualització prèvia del text - + Document preview Visualització prèvia del document - + Image preview Visualització prèvia de la imatge - + Video preview Visualització prèvia del vídeo - + Music preview Visualització prèvia de la música - + The remote environment shows thumbnail previews L'entorn remot mostra visualitzacions prèvies de miniatures. - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Si s'activa la vista prèvia de les miniatures, pot ser que el directori remot es carregui lentament o que l'operació es bloqui. - + Advanced Avançat - + + Search + Cerca + + + + Auto index internal disk + Indexa automàticament el disc intern. + + + + Index external storage device after connected to computer + Indexa el dispositiu d'emmagatzematge extern després de connectar-lo a l'ordinador. + + + + Full-Text search + Cerca de text complet + + + Mount Munta - + Auto mount Muntatge automàtic - + Open after auto mount Obre després de muntar-ho automàticament. - + + Show item counts and sizes in the path of mounted MTP devices + Mostra el recompte i les mides d’elements al camí dels dispositius MTP muntats. + + + Merge the entries of Samba shared folders Combina les entrades de les carpetes compartides de Samba. - + Switching the entry display may lead to failed mounting Canviar la pantalla d'entrada pot provocar un error de muntatge. - + Use the file chooser dialog of File Manager Usa el diàleg de tria de fitxers del Gestor de fitxers. - + Ask for my confirmation when deleting files Demana'm la confirmació quan s'eliminin fitxers. @@ -3274,56 +3301,51 @@ - Switch to tree view - Canvia a la vista en arbre - - - Others Altres - + Close Tanca - + Close current tab Tanca la pestanya actual - + Back Enrere - + Forward Endavant - + Switch to next tab Canvia a la pestanya següent - + Switch to previous tab Canvia a la pestanya anterior - + Next file Fitxer següent - + Previous file Fitxer anterior - + Switch tab by specified number between 1 to 8 Canvia de pestanya especificant un número d'entre l'1 al 8 @@ -3394,43 +3416,42 @@ Crear el fitxer de destinació %1 Info ha fallat en mostrar la funció d'informació del conflicte! - + Time modified: %1 Hora de modificació: %1 - + Original folder Carpeta original - + Contains: %1 Contingut: %1 - + Original file Fitxer original - + Size: %1 Mida: %1 - + Target folder Carpeta de destinació - - + In data statistics ... A les estadístiques de dades... - + Target file Fitxer de destinació @@ -3445,37 +3466,37 @@ Espereu, si us plau... - + Keep both button Mantén-los ambdós - + Skip button Omet - - + + Replace button Reemplaça - + Do not ask again No ho tornis a preguntar. - + Retry button Torna-ho a provar - + Merge button Fusiona @@ -3489,7 +3510,7 @@ Introduïu una contrasenya per protegir les carpetes compartides. - + Set a password on the shared folder for non-anonymous access Establiu una contrasenya a la carpeta compartida per a l'accés no anònim. @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Perdoneu, no es pot trobar el directori d'accés ràpid. Voleu eliminar-lo? - + Cancel button Cancel·la - + Remove button Elimina @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Ordinador - + Computer display items Elements de visualització de l'ordinador - + Hide built-in disks on the Computer page Amaga els discs integrats a la pàgina Ordinador. - + Hide loop partitions on the Computer page Amaga les particions de bucle a la pàgina d'Ordinador. - + Show file system on disk icon Mostra el sistema de fitxers a la icona del disc. - + Hide My Directories on the Computer page Amaga els meus directoris a la pàgina d'Ordinador. - + Hide 3rd party entries on the Computer page Amaga les entrades de tercers a la pàgina d'Ordinador. @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Ha fallat desblocar el dispositiu. - + Wrong password Contrasenya incorrecta - + Rename failed Ha fallat canviar-ne el nom. - + The device is busy and cannot be renamed now El dispositiu està ocupat i no se'n pot canviar el nom ara. - + Format failed Ha fallat la formatació. - + The device is busy and cannot be formatted now El dispositiu està ocupat i no es pot formatar ara. - + Mount error Error de muntatge - + Cannot access %1 No es pot accedir a %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Ordinador - + %1 is read-only. Do you want to enable read and write permissions for it? %1 és només de lectura. Voleu habilitar-hi els permisos de lectura i escriptura? - + Once enabled, read/write permission will be granted permanently Un cop habilitat, el permís de lectura i escriptura es concedirà permanentment. - + Cancel Cancel·la - + Enable Now Habilita'l ara @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Directoris de l'usuari - + Disks Discs @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Informació bàsica - + Device type Tipus de dispositiu - + Total space Espai total - + File system Sistema de fitxers - + Contains Contingut - + Free space Espai lliure - + %1 items %1 elements - + %1 item %1 element @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 a %2 @@ -3968,27 +3990,27 @@ Mida - + Dimension Dimensió - + Duration Durada - + Type Tipus - + Accessed Accedit - + Modified Modificat @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - No s'ha pogut moure el fitxer %1 a la paperera. + @@ -4335,7 +4357,7 @@ Copy or Cut File failed! - Ha fallat copiar o enganxar! + @@ -4365,7 +4387,7 @@ Failed to move the file %1 to trash, cause: %2 - No s'ha pogut moure el fitxer %1 a la paperera, causa: %2 + @@ -4384,8 +4406,8 @@ - Copy or Cut File failed, cause: %1 - Ha fallat copiar o tallar el fitxer. Causa: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4439,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Error de canvi de nom del fitxer - + Failed to create the directory Ha fallat crear el directori. - + Failed to create the file Ha fallat crear el fitxer - + link file error error del fitxer d'enllaç - - + + Failed to modify file permissions - No s'han pogut modificar els permisos dels fitxers. + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - En&ganxa + Paste + Enganxa - Cu&t - Re&talla + Cut + Retalla - &Copy - &Copia + Copy + Copia dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Obre + Open + Obre - Rena&me - Canvia'n el no&m + Rename + Canvia'n el nom - &Delete - &Elimina + Delete + Elimina @@ -4557,11 +4579,6 @@ Open in terminal Obre al terminal - - - Reverse select - Selecció inversa - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Envia a... - - Bluetooth - Bluetooth - - - + Create link Crea'n un enllaç - + Send to desktop Envia a l'escriptori @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Compartició + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Obre + + Open + Obre - + Open in new window Obre en una finestra nova - + Open in new tab Obre en una pestanya nova - + Cancel sharing Cancel·la la compartició - - P&roperties - P&ropietats + + Properties + Propietats dfmplugin_myshares::MyShares - + My Shares Comparticions @@ -4683,7 +4700,7 @@ No hi ha fitxers per gravar. - + Unable to burn. Not enough free space on the target disk. No es pot fer la gravació. No hi ha prou espai lliure al disc de destinació. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Informació bàsica - + Size Mida - + Contains Contingut - + Type Tipus - + Location Ubicació - + Time created Hora de creació - + Time accessed Hora d'accés - + Time modified Hora de modificació - + Hide this file Amaga aquest fitxer - - + + %1 item %1 element - + %1 items %1 elements @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Per la seguretat de secrets - + For Government Per al govern - + For Enterprise Per a l'empresa - + Bit Bit - + Available Disponible @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Ordinador - + Basic Info Informació bàsica - + Computer name Nom de l'ordinador - + Version Versió - + Edition Edició - + OS build Compilació del SO - + Type Tipus - + Processor Processador - + Memory Memòria @@ -4874,14 +4891,6 @@ %1 fitxer/s, %2 carpeta/es - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - No es permeten %1 - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - P&ropietats + Properties + Propietats dfmplugin_recent::Recent - + + Recent Recent @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Camí - + Last access Últim accés - + Recent Recent @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Cerca: - + File Type: Tipus de fitxer: - + File Size: Mida del fitxer: - + Time Modified: Hora de modificació: - + Time Accessed: Hora d'accés: - + Time Created: Hora de creació: - + Reset Restableix - + All subdirectories Tots els subdirectoris - + Current directory Directori actual - + Application Aplicació - + Video Vídeo - + Audio Àudio - + Image Imatge - + Archive Arxiu - + Text Text - + Executable Executable - + Backup file Fitxer de còpia de seguretat - + Today Avui - + Yesterday Ahir - + This week Aquesta setmana - + Last week La setmana passada - + This month Aquest mes - + Last month El mes passat - + This year Aquest any - + Last year L'any passat @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Cerca - - - Auto index internal disk - Indexa automàticament el disc intern - - - - Index external storage device after connected to computer - Indexa el dispositiu d'emmagatzematge extern després de connectar-lo a l'ordinador. - - - - Full-Text search - Cerca de text complet - dfmplugin_search::SearchHelper - + Path Camí @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Obre la ubicació del fitxer - + Select all Selecciona-ho tot - + Path Camí @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Accés ràpid - + Partitions Particions - + Network Xarxa - + Tag Etiqueta - + + Bookmark + Marcador + + + Other Altres - + Unknown Group Grup desconegut + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Ordinadors a la xarxa d'àrea local + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Obre + Open + Obre @@ -5184,8 +5191,8 @@ - P&roperties - P&ropietats + Properties + Propietats @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Obre la ubicació del fitxer @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Connecta amb el servidor - - - + + + Clear History Neteja l'historial - + Unfavorite No favorit - - Error - Error - - - - Unable to favorite illegitimate url! - No es pot fer preferit un URL il·legítim! - - - + Cancel button Cancel·la - + Connect button Connecta - + Charset Encoding Codificació del joc de caràcters - + Default Per defecte - + My Favorites Favorits: - + No favorites yet Encara no hi ha cap favorit. - + Favorite Favorit @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Camí font - + Time deleted Hora d'eliminació @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaura - + Restore all Restaura-ho tot - + Empty trash Buida la paperera - + Source path Camí font - + Time deleted Hora d'eliminació @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Paperera @@ -5530,17 +5527,17 @@ Paperera - + item element - + items elements - + Contains %1 %2 Conté %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Informació bàsica - + Size Mida - + Contains Contingut - + Type Tipus - + Location Ubicació - + Time created Hora de creació - + Time accessed Hora d'accés - + Time locked Temps de bloqueig @@ -5988,7 +5985,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Encripta la cambra cuirassada de fitxers @@ -6009,19 +6006,19 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des - - - + + + Encrypt Encripta - + Failed to create file vault: %1 Ha fallat crear la cambra cuirassada: %1 - + OK D'acord @@ -6072,7 +6069,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Establiu la contrasenya de la cambra cuirassada. @@ -6098,7 +6095,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caràcters, conté A-Z, a-z, 0-9 i símbols @@ -6133,8 +6130,8 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des Següent - - + + Passwords do not match Les contrasenyes no coincideixen. @@ -6142,7 +6139,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultActiveStartView - + File Vault Cambra cuirassada de fitxers @@ -6192,7 +6189,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultHelper - + Vault Cambra cuirassada @@ -6202,7 +6199,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des La cambra cuirassada no està disponible perquè cryfs no s'ha instal·lat! - + A task is in progress, so it cannot perform your operation Hi ha una tasca en curs. No pot fer la vostra operació. @@ -6210,122 +6207,99 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_vault::VaultPropertyDialog - + My Vault La meva cambra cuirassada - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Cancel·la - - - - Delete - Elimina - - - - Delete File Vault - Elimina la cambra cuirassada - - - - Failed to delete file vault - Ha fallat eliminar la cambra cuirassada. - - - - OK - D'acord - - - - Once deleted, the files in it will be permanently deleted - Un cop eliminada, els fitxers que hi havia s'hauran esborrat permanentment. - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Un cop eliminada, els fitxers que hi havia s'hauran esborrat permanentment. - - - + Password Contrasenya - + Password hint: %1 Suggeriment de la contrasenya: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Cancel·la - - - - Delete - Elimina + + Input the 32-digit recovery key + Introduïu la clau de recuperació de 32 dígits. + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Elimina la cambra cuirassada - - Wrong password - Contrasenya incorrecta + + Once deleted, the files in it will be permanently deleted + Un cop eliminada, els fitxers que hi havia s'hauran esborrat permanentment. - - Failed to delete file vault - Ha fallat eliminar la cambra cuirassada. + + Cancel + button + Cancel·la - - OK - D'acord + + Use Key + button + Usa la clau - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Introduïu la clau de recuperació de 32 dígits. + + Delete + button + Elimina - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... S'elimina... - + + OK + button D'acord - - Delete File Vault - Elimina la cambra cuirassada + + Wrong password + Contrasenya incorrecta + + + + Wrong recovery key + Clau de recuperació incorrecta - + + Failed to delete file vault + Ha fallat eliminar la cambra cuirassada. + + + Deleted successfully S'ha eliminat correctament. + + + Failed to delete + Ha fallat l'eliminació. + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6309,16 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des La meva cambra cuirassada - + File Vault Cambra cuirassada de fitxers + + + + Vault + Cambra cuirassada + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6331,22 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_workspace::FileViewModel - + Name Nom - + Time modified Hora de modificació - + Size Mida - + Type Tipus @@ -6382,7 +6362,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_workspace::IconItemEditor - + %1 are not allowed No es permeten %1 @@ -6398,50 +6378,45 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Classifica per... - + Display as Mostra com a... - + Name Nom - + Time modified Hora de modificació - + Size Mida - + Type Tipus - + Icon Icona - + List Llista - - - Tree - Arbre - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des filedialog_core::FileDialog - + Save button Desa @@ -6463,13 +6438,13 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des filedialog_core::FileDialogStatusBar - + Save button Desa - + Open button Obre @@ -6507,112 +6482,112 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des plugin_filepreview::DDciIconPreview - + Available sizes: Mides disponibles: - + Custom Size Mida personalitzada - + Device Pixel Ratio: Relació de píxels del dispositiu: - + Theme: Tema: - + Light Clar - + Dark Fosc - + Mode: Mode: - + Normal Normal - + Disabled Inhabilitat - + Hovered Passar-hi - + Pressed Prémer - + Palette Paleta - + Current mode icon does not support the palette La icona del mode actual no admet la paleta. - + Foreground: Primer pla: - + Background: Fons: - + Highlight: Ressaltat: - + HighlightForeground: Ressaltar el primer pla: - + Background Color: Color de fons: - + White Blanc - + Black Negre - + Transparent Transparent - + Custom Personalitzat @@ -6644,24 +6619,24 @@ Si us plau, esborreu els fitxers d'aquest directori i intenteu tornar a des plugin_filepreview::MusicMessageView - + Artist: Artista: - + Album: Àlbum: - + unknown artist artista desconegut - + unknown album àlbum desconegut - \ No newline at end of file + diff --git a/translations/dde-file-manager_cs.ts b/translations/dde-file-manager_cs.ts index 61b783a49f..67cf8cf5b9 100644 --- a/translations/dde-file-manager_cs.ts +++ b/translations/dde-file-manager_cs.ts @@ -15,104 +15,99 @@ Application - + File Manager Správce souborů - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Správce souborů je mocný, přesto snadno se používající nástroj pro správu souborů. Má funkce jako je vyhledávání, kopírování, mazání, komprimace-zabalení/rozbalování archivů, zobrazování vlastností souborů a další užitečné funkce. - DesktopMain + DAttachedProtocolDevice - - Desktop - Plocha + + %1 on %2 + %1 do %2 - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 svazek - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Plocha + + + DiskControlWidget - - Open - Otevřít + + Disks + Disky - - Eject all - Vysunout vše + + The device was not safely removed + Zařízení nebylo bezpečně odebráno - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Příště klepněte na „Bezpečně odebrat“, a až pak odpojte - - eject - + + Disk is busy, cannot unmount now + Disk je zaneprázdněn, nyní ho proto nelze odpojit - - unmount - + + The device is busy, cannot eject now + Zařízení je něčím využíváno, proto ho nyní není možné vysunout + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Otevřít - - Device (%1) is busy, cannot %2 now. - + + Eject all + Vysunout vše FileDialogHandle - + All Files Veškeré soubory - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Neznámý @@ -128,89 +123,88 @@ QObject - + need authorization to access K přístupu je vyžadováno ověření - + Can't verify the identity of %1. Nelze ověřit totožnost %1. - + This happens when you log in to a computer the first time. Toto se stává, když se k počítači přihlašujete poprvé. - + The identity sent by the remote computer is Totožnost poslaná vzdáleným počítačem je - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Pokud si chcete být zcela jistí, zda je bezpečné pokračovat, obraťte se na správce systému. - - - + + + System Disk Systémový disk - + Data Disk Datový disk - + Blank %1 Disc Prázdný %1 disk - - - + + + Unknown Neznámý - + %1 Drive %1 mechanika - + %1 Encrypted %1 zašifrováno - - + %1 Volume %1 svazek - + + Scanning the device, stop it? Prohledává se zařízení. Zastavit? - + Unmount failed Odpojení se nezdařilo - + Cannot stop scanning device Nelze ukončit kontrolu zařízení - - + %1 on %2 %1 do %2 @@ -219,6 +213,7 @@ + Home Domovská složka @@ -228,6 +223,7 @@ + Desktop Plocha @@ -237,6 +233,7 @@ + Videos Obrazy @@ -246,6 +243,7 @@ + Music Hudba @@ -255,6 +253,7 @@ + Pictures Obrázky @@ -264,6 +263,7 @@ + Documents Dokumenty @@ -273,6 +273,7 @@ + Downloads Stažené @@ -281,6 +282,7 @@ + Trash Koš @@ -291,11 +293,12 @@ + Recent Nedávné - + @@ -303,7 +306,7 @@ Připojit automaticky - + @@ -316,46 +319,47 @@ %1 probíhajících úloh - + %1 item %1 položka - + %1 items %1 položek - + Unable to find the original file Nelze najít původní soubor - - + + File has been moved or deleted Soubor byl přesunut nebo smazán - - + + + You do not have permission to access this folder Nemáte oprávnění pro přistupování k této složce - - + + You do not have permission to traverse files in it Nemáte oprávnění pro procházení souborů v ní - - + + Folder is empty Složka je prázdná - + Loading... Načítání… @@ -404,7 +408,7 @@ - + Built-in disks Integrovaná úložiště @@ -412,6 +416,7 @@ + Computer Počítač @@ -419,8 +424,9 @@ - - + + + Computers in LAN Počítače v místní síti (LAN) @@ -428,7 +434,7 @@ - + Loop partitions Oddíly smyčky @@ -436,8 +442,7 @@ - - + Mounted sharing folders Připojené složky pro sdílení @@ -445,6 +450,7 @@ + My shares Mé sdílení @@ -452,7 +458,7 @@ - + Network Síť @@ -460,7 +466,7 @@ - + Mounted partitions and discs Připojené oddíly a disky @@ -468,7 +474,7 @@ - + Partitions Oddíly @@ -476,7 +482,7 @@ - + Quick access Rychlý přístup @@ -484,7 +490,7 @@ - + Tag Štítek @@ -492,7 +498,7 @@ - + Added tags Přidané štítky @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Pořád zobrazovat připojená Samba sdílení @@ -551,7 +557,7 @@ Show crumb bar clickable area - Zobrazit klepnutelnou oblast navigace + Zobrazit klikatelnou oblast navigace @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Zastavit - + Shortcut -odkaz_na - + This system wallpaper is locked. Please contact your admin. Toto systémové pozadí je uzamčeno. Obraťte se prosím na správce. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopírovat) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopírovat %1) @@ -901,26 +909,33 @@ Bit + Access denied Přístup odepřen + Confirm button Potvrdit + + + The device has been safely removed + Zařízení je možné bezpečně odebrat + - - + + - - - + + + Open in new window Otevřít v novém okně @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Otevřít v nové kartě @@ -953,8 +968,8 @@ - - + + Properties Vlastnosti @@ -990,7 +1005,7 @@ Nový soubor - + Create symlink Vytvořit symbolický odkaz @@ -1077,70 +1092,70 @@ Přidat na disk - + Are you sure you want to erase all data on the disc? Opravdu chcete smazat všechna data na disku? - + Erase button Vymazat - + This action cannot be undone Tuto akci není možné vzít zpět - + How do you want to use this disc? Jak chcete tento disk použít? - + Burn image button Vypálit obraz - + Burn files button Vypálit soubory - + %1 is a duplicate file. %1 je kopie souboru. - + Insufficient disc space. Nedostatek místa na disku. - + Lost connection to drive. Spojení s mechanikou ztraceno. - + The CD/DVD drive is not ready. Try another disc. Mechanika CD/DVD není připravena. Zkuste jiný disk. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Mechanika optických disků je zaneprázdněna. Ukončete program používající mechaniku a disk vložte znovu. - + Invalid volume name Neplatný název - + Unknown error Neznámá chyba @@ -1179,42 +1194,42 @@ Položek: %1 - + Orange Oranžová - + Red Červená - + Purple Purpurová - + Navy-blue Námořní modrá - + Azure Azurová - + Green Zelená - + Yellow Žlutá - + Gray Šedá @@ -1290,76 +1305,76 @@ Přístup zamítnut - + User directory Adresář uživatele - + Local disk Pevný disk - + Removable disk Vyměnitelný disk - + DVD DVD - + Network shared directory Síťová sdílená složka - - + + Android mobile device Android mobilní zařízení - + Apple mobile device Apple mobilní zařízení - + Unknown device Neznámé zařízení - + Remove button Odstranit - + Do you want to remove this item? Chcete tuto položku odebrat? - + Do yout want to remove %1 items? Chcete odebrat %1 položek? - + It does not delete the original files Nesmaže původní soubory - + Clear recent history Smazat nedávnou historii - - - + + + Source path Zdrojový popis umístění @@ -1404,12 +1419,12 @@ Nedaří se otevřít položky v koši, prosím nejprve ho obnovte - + Empty Trash Vyprázdnit koš - + Location Umístění @@ -1509,7 +1524,7 @@ Hledání… - + My Vault Můj trezor @@ -1686,27 +1701,27 @@ Device disconnected - Zařízení odpojeno + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 + Success - Podařilo se + Failed - Nepodařilo se + - + Sidebar - Postranní panel + @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nepověřeno - - - In trial period - Ve zkušebním období - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - Nepověřeno - - - - + + In trial period Ve zkušebním období @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nová sbírka @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Uspořádat pracovní plochu - + Desktop options Nastavení pracovní plochy - + Organize by Uspořádat podle - + Custom collection Vlastní sbírka - + Type Typ - + Time accessed Čas přístupu - + Time modified Změněno - + Time created Čas vytvoření - + Create a collection Vytvořit sbírku + + + Display Size + Velikost zobrazení + + + + Smaller + Menší + + + + Normal + Běžné + + + + Larger + Větší + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Nastavení pracovní plochy - + Auto arrange icons Automaticky uspořádat ikony @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Velikost zobrazení + + + Icon size Velikost ikon @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Správce souborů bude aktualizován na novou verzi, při čemž budou ukončeny probíhající úlohy. Chcete provést aktualizaci nyní? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Služby pracovní plochy budou aktualizovány na novou verzi, při čemž budou ukončeny probíhající úlohy. Chcete provést aktualizaci nyní? - + Update button Aktualizovat - + Cancel button Zrušit @@ -2360,7 +2385,7 @@ - + %1 item selected Vybrána %1 položka @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operace se nezdařila! @@ -2529,191 +2554,191 @@ Cílová složka je uvnitř zdrojové složky (nelze samo do sebe)! - + The passphrase is needed to access encrypted data on %1. Pro přístup k zašifrovaným datům na %1 je třeba zadat přístupovou frázi. - - - - - - - - + + + + + + + + Cancel button Zrušit - + Format button Formát - + To access the device, you must format the disk first. Are you sure you want to format it now? Aby bylo možné k zařízení přistupovat, je třeba ho nejprve naformátovat. Chcete to provést nyní? - + Do you want to run %1 or display its content? Chcete %1 spustit nebo zobrazit jeho obsah? - + It is an executable text file. Je spustitelným textovým souborem. - - - + + + Run button Spustit - - + + Run in terminal button Spustit v terminálu - + Display button Zobrazení - + Do you want to run %1? Chcete %1 spustit? - + It is an executable file. Je spustitelným textovým souborem. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Vybrané položky %1 nelze přesunout do koše. Chcete je trvale odstranit? - + Permanently delete %1 items? Nadobro smazat %1 položek? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Nelze přesunout „%1“ do koše. Chcete jej trvale odstranit? - - - + + + Delete button Smazat - + Permanently delete %1? Nadobro smazat %1? - - + + This action cannot be undone Tuto akci není možné vzít zpět - + Are you sure you want to empty %1 item? Chcete smazat %1 položku? - + Are you sure you want to empty %1 items? Chcete smazat %1 položek? - + Empty Vyprázdnit - + Do you want to delete %1? Opravdu chcete %1 smazat? - + Do you want to delete the selected %1 items? Opravdu chcete označených %1 položek smazat? - + Failed to restore %1 file, the target folder is read-only Nepodařilo se obnovit %1 soubor, cílová složka je jen pro čtení - + Failed to restore %1 files, the target folder is read-only Nepodařilo se obnovit %1 souborů, cílová složka je jen pro čtení - + "%1" already exists, please use another name. „%1“ už existuje. Použijte jiný název. - + Device or resource busy Zařízení nebo prostředek je zaneprázdněn - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Pokud název souboru bude začínat na tečku, bude skrytý. Opravdu to chcete? - + Hide Skrýt - + Cancel Zrušit - + Unable to access %1 Nedaří se přistupovat k %1 - + %1 that this shortcut refers to has been changed or moved %1 odkazující na tuto zkratku byl změněn nebo přesunut - + Do you want to delete this shortcut? Chcete smazat tuto klávesovou zkratku? - + This file is not executable, do you want to add the execute permission and run? Tento soubor není spustitelný. Chcete přidat oprávnění pro spouštění a spustit ho? - + The selected files contain system file/directory, and it cannot be deleted Vybrané soubory obsahují systémový soubor/složku, a nelze je proto smazat @@ -2841,278 +2866,280 @@ Zadejte heslo pro rozšifrování disku - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - Složku vždy otevřít v novém okně + - + Open file: - Otevřít soubor: + - + Click - Klepnutím + - + Double click - Dvojklepnutím + - + New window and tab - Nové okno a karta + - + Open from default window: - Otevřít z výchozího okna: + - - + + Computer - Počítač + - - + + Home - Domovská složka + - - + + Desktop - Plocha + - - + + Videos - Videa + - - + + Music - Hudba + - - + + Pictures - Obrázky + - - + + Documents - Dokumenty + - - + + Downloads - Stažené + - + Open in new tab: - V nové kartě otevřít: + - + Current Directory - Stávající složka + - + Files and folders - Soubory a složky + - + Show hidden files - Zobrazit skryté soubory + - + Show file extensions - Zobrazit přípony souborů + - + Mix sorting of files and folders - Smíšené třídění souborů a složek + - + Workspace - Pracovní prostor + - + View - Pohled + - + Default size: - Výchozí velikost: + - + Extra small - Velice malá + - + Small - Malá + - + Medium - Střední + - + Large - Velké + - + Extra large - Opravdu velká - - - - Tree - + Default view: - Výchozí pohled: + - + Icon - Ikony - - - - List - Seznam - - - - Restore default view mode for all directories - - Restore default view mode + + List - + Thumbnail preview - Náhled + - + Compressed file preview - Náhled komprimovaného souboru + - + Text preview - Náhled textu + - + Document preview - Náhled dokumentu + - + Image preview - Náhled obrázku + - + Video preview - Náhled videa + - + Music preview - Náhled hudby + - + The remote environment shows thumbnail previews - Vzdálené prostředí zobrazuje náhledy miniatur + - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Zapnutí náhledu miniatur může způsobit pomalé načítání vzdáleného adresáře nebo zamrznutí operace. + - + Advanced - Pokročilé + - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - Připojit + - + Auto mount - Připojit automaticky + - + Open after auto mount - Po automatickém připojení otevřít + + + + + Show item counts and sizes in the path of mounted MTP devices + - + Merge the entries of Samba shared folders - Sloučení záznamů sdílených složek Samba + - + Switching the entry display may lead to failed mounting - Přepínání vstupního zobrazení může vést k neúspěšnému připojení + - + Use the file chooser dialog of File Manager - Použít dialog pro výběr souboru správce souborů + - + Ask for my confirmation when deleting files - Při mazání souborů vyžadovat potvrzení + @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Ostatní - + Close Zavřít - + Close current tab Zavřít stávající kartu - + Back Zpět - + Forward Vpřed - + Switch to next tab Přepnout na další kartu - + Switch to previous tab Přepnout na předchozí kartu - + Next file Následující soubor - + Previous file Předchozí soubor - + Switch tab by specified number between 1 to 8 Přepnout kartu pomocí zadaného čísla z rozmezí 1 až 8 @@ -3394,43 +3416,42 @@ Nepodařilo se vytvořit cílový soubor %1 ve funkci zobrazit konfliktní informace! - + Time modified: %1 Změněno: %1 - + Original folder Původní složka - + Contains: %1 Obsahuje: %1 - + Original file Původní soubor - + Size: %1 Velikost: %1 - + Target folder Cílová složka - - + In data statistics ... - V datových statistikách… + - + Target file Cílový soubor @@ -3445,37 +3466,37 @@ Počkejte, prosím - + Keep both button Ponechat oba - + Skip button Přeskočit - - + + Replace button Nahradit - + Do not ask again Znovu se neptat - + Retry button Zkusit znovu - + Merge button Sloučit @@ -3489,7 +3510,7 @@ Zadejte heslo pro ochranu sdílených složek - + Set a password on the shared folder for non-anonymous access Nastavit heslo ve sdílené složce pro neanonymní přístup @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Je nám líto, ale nepodařilo se najít složku s vašimi záložkami. Odstranit? - + Cancel button Zrušit - + Remove button Odstranit @@ -3784,80 +3805,81 @@ dfmplugin_computer::Computer - + + Computer Počítač - + Computer display items - Položky zobrazení počítače + - + Hide built-in disks on the Computer page - Skrýt integrované úložiště na stránce Počítač + - + Hide loop partitions on the Computer page - Skrýt oddíly na stránce Počítač + - + Show file system on disk icon - Zobrazovat typ souborového systému na ikoně disku + - + Hide My Directories on the Computer page - Skrýt mé oddíly na stránce Počítač + - + Hide 3rd party entries on the Computer page - Skrýt položky třetích stran na stránce Počítač + dfmplugin_computer::ComputerController - + Unlock device failed Odemknutí zařízení se nezdařilo - + Wrong password Chybné heslo - + Rename failed Přejmenování se nezdařilo - + The device is busy and cannot be renamed now Zařízení je právě používáno a nemůže být přejmenováno - + Format failed Fortmátování s nezdařilo - + The device is busy and cannot be formatted now Zařízení je právě používáno a nemůže být naformátováno - + Mount error Připojení se nezdařilo - + Cannot access %1 Nelze přistupovat k %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Počítač - + %1 is read-only. Do you want to enable read and write permissions for it? %1 je pouze pro čtení. Chcete upravit práva tak, aby bylo možné i zapisovat? - + Once enabled, read/write permission will be granted permanently Jakmile zapnuto, budou práva pro čtení/zápis udělena natrvalo - + Cancel Zrušit - + Enable Now Zapnout nyní @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje složky - + Disks Disky @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Základní informace - + Device type Typ zařízení - + Total space Celkový prostor - + File system Souborový systém - + Contains Obsahuje - + Free space Volné místo - + %1 items %1 položek - + %1 item %1 položka @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 do %2 @@ -3968,27 +3990,27 @@ Velikost - + Dimension Rozměr - + Duration Doba trvání - + Type Typ - + Accessed Dostupné - + Modified Upraveno @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - Nepodařilo se přesunout soubor %1 do Koše + @@ -4335,7 +4357,7 @@ Copy or Cut File failed! - Zkopírování či vyjmutí souboru se nezdařilo! + @@ -4365,7 +4387,7 @@ Failed to move the file %1 to trash, cause: %2 - Nepodařilo se přemístit soubor %1 do koše, příčina: %2 + @@ -4384,8 +4406,8 @@ - Copy or Cut File failed, cause: %1 - Zkopírování či vyjmutí souboru se nezdařilo, příčina: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4439,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Chyba při přejmenování souboru - + Failed to create the directory Adresář se nepodařilo vytvořit - + Failed to create the file Soubor se nepodařilo vytvořit - + link file error Chyba v odkazu na soubor - - + + Failed to modify file permissions - Nepodařilo se změnit práva + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Vložit - Cu&t - + Cut + Vyjmout - &Copy - + Copy + Kopírovat dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Otevřít - Rena&me - + Rename + Přejmenovat - &Delete - + Delete + Smazat @@ -4557,11 +4579,6 @@ Open in terminal Otevřít v terminálu - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Odeslat na - - Bluetooth - - - - + Create link Vytvořit odkaz - + Send to desktop Odeslat na pracovní plochu @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Sdílet + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Otevřít - + Open in new window Otevřít v novém okně - + Open in new tab Otevřít v nové kartě - + Cancel sharing Zrušit sdílení - - P&roperties - + + Properties + Vlastnosti dfmplugin_myshares::MyShares - + My Shares Má sdílení @@ -4683,7 +4700,7 @@ Žádné soubory pro vypálení - + Unable to burn. Not enough free space on the target disk. Není možné zapsat. Nedostatek volného prostoru na cílovém disku. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Základní informace - + Size Velikost - + Contains Obsahuje - + Type Typ - + Location Umístění - + Time created Čas vytvoření - + Time accessed Čas přístupu - + Time modified Změněno - + Hide this file Skrýt tento soubor - - + + %1 item %1 položka - + %1 items %1 položek @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Pro bezpečnost tajemství - + For Government Pro vládní instituce - + For Enterprise Pro společnosti - + Bit Bit - + Available K dispozici @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Počítač - + Basic Info Základní informace - + Computer name Název počítače - + Version Verze - + Edition Vydání - + OS build Verze sestavení OS - + Type Typ - + Processor Procesor - + Memory Paměť @@ -4874,14 +4891,6 @@ %1 soubor(ů), %2 složka(y) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Vlastnosti dfmplugin_recent::Recent - + + Recent Nedávné @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Popis umístění - + Last access Poslední přístup - + Recent Nedávné @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Hledat: - + File Type: Typ souboru: - + File Size: Velikost souboru: - + Time Modified: Změněno: - + Time Accessed: Okamžik přístupu: - + Time Created: Okamžik vytvoření: - + Reset Vynulovat - + All subdirectories Všechny podsložky - + Current directory Stávající složka - + Application Aplikace - + Video Obraz - + Audio Zvuk - + Image Obrázek - + Archive Archiv - + Text Text - + Executable Spustitelný - + Backup file Záložní soubor - + Today Dnes - + Yesterday Včera - + This week Tento týden - + Last week Poslední týden - + This month Tento měsíc - + Last month Poslední měsíc - + This year Tento rok - + Last year Poslední rok @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Hledat - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Popis umístění @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otevřít umístění souboru - + Select all Vybrat vše - + Path Cesta @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Rychlý přístup - + Partitions Oddíly - + Network Síť - + Tag Štítek - + + Bookmark + Záložka + + + Other Jiný - + Unknown Group Neznámá skupina + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Počítače v místní síti (LAN) + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Otevřít @@ -5184,8 +5191,8 @@ - P&roperties - + Properties + Vlastnosti @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Štítek @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otevřít umístění souboru @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Připojit se k serveru - - - + + + Clear History Smazat historii - + Unfavorite Neoblíbené - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Zrušit - + Connect button Připojit - + Charset Encoding Kódování znakové sady - + Default Výchozí - + My Favorites Moje oblíbené - + No favorites yet Zatím žádné oblíbené - + Favorite Oblíbené @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Zdrojový popis umístění - + Time deleted Smazáno @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Obnovit - + Restore all Obnovit vše - + Empty trash Prázdný koš - + Source path Zdrojový popis umístění - + Time deleted Smazáno @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Koš @@ -5530,17 +5527,17 @@ Koš - + item položku - + items položek - + Contains %1 %2 Obsahuje %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Základní informace - + Size Velikost - + Contains Obsahuje - + Type Typ - + Location Umístění - + Time created Čas vytvoření - + Time accessed Čas přístupu - + Time locked Čas uzamčen @@ -5988,7 +5985,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Zašifrovat trezor na soubory @@ -6009,19 +6006,19 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. - - - + + + Encrypt Šifrovat - + Failed to create file vault: %1 Nepodařilo se vytvořit trezor na soubory: %1 - + OK OK @@ -6072,7 +6069,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Nastavit heslo k trezoru @@ -6098,7 +6095,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols alespoň 8 znaků, obsahující A-Z, a-z, 0-9 a symboly @@ -6133,8 +6130,8 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.Další - - + + Passwords do not match Zadání hesla se neshodují @@ -6142,7 +6139,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultActiveStartView - + File Vault Trezor pro soubory @@ -6192,7 +6189,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.dfmplugin_vault::VaultHelper - + Vault Trezor @@ -6202,7 +6199,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.Trezor není k dispozici, protože cryfs není nainstalován! - + A task is in progress, so it cannot perform your operation Úloha probíhá, takže nelze provést vaši operaci. @@ -6210,122 +6207,99 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_vault::VaultPropertyDialog - + My Vault Můj trezor - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Zrušit - - - - Delete - Smazat - - - - Delete File Vault - Smazat trezor na soubory - - - - Failed to delete file vault - Nepodařilo se smazat trezor na soubory - - - - OK - OK - - - - Once deleted, the files in it will be permanently deleted - Po jeho smazání budou soubory v něm natrvalo smazány - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Po jeho smazání budou soubory v něm natrvalo smazány - - - + Password Heslo - + Password hint: %1 Nápověda pro heslo: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Zrušit - - - - Delete - Smazat + + Input the 32-digit recovery key + Zadejte obnovovací klíč (32 číslic) + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Smazat trezor na soubory - - Wrong password - Nesprávné heslo + + Once deleted, the files in it will be permanently deleted + Po jeho smazání budou soubory v něm natrvalo smazány - - Failed to delete file vault - Nepodařilo se smazat trezor na soubory + + Cancel + button + Zrušit - - OK - OK + + Use Key + button + Použít klíč - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Zadejte obnovovací klíč (32 číslic) + + Delete + button + Smazat - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... - Odebírá se… + Odebírání… - + + OK + button OK - - Delete File Vault - Smazat trezor na soubory + + Wrong password + Nesprávné heslo + + + + Wrong recovery key + Nesprávný obnovovací klíč - + + Failed to delete file vault + Nepodařilo se smazat trezor na soubory + + + Deleted successfully Úspěšně smazáno + + + Failed to delete + Nepodařilo se smazat + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6309,16 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout.Můj trezor - + File Vault Trezor pro soubory + + + + Vault + Trezor + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6331,22 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_workspace::FileViewModel - + Name Název - + Time modified Změněno - + Size Velikost - + Type Typ @@ -6382,7 +6362,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 nejsou dovolené @@ -6398,50 +6378,45 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Seřadit podle - + Display as Zobrazit jako - + Name Název - + Time modified Změněno - + Size Velikost - + Type Typ - + Icon Ikony - + List Seznam - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. filedialog_core::FileDialog - + Save button Uložit @@ -6463,13 +6438,13 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. filedialog_core::FileDialogStatusBar - + Save button Uložit - + Open button Otevřít @@ -6507,112 +6482,112 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. plugin_filepreview::DDciIconPreview - + Available sizes: Dostupné velikosti: - + Custom Size Vlastní velikost - + Device Pixel Ratio: Poměr pixelů zařízení: - + Theme: Motiv: - + Light Světlý - + Dark Tmavý - + Mode: Režim: - + Normal Běžný - + Disabled Vypnuto - + Hovered Zvednuté - + Pressed Stlačené - + Palette Paleta - + Current mode icon does not support the palette Aktuální ikona režimu nepodporuje paletu - + Foreground: V popředí: - + Background: V pozadí: - + Highlight: Zvýraznění: - + HighlightForeground: Zvýraznění v popředí: - + Background Color: Barva pozadí: - + White Bílá - + Black Černá - + Transparent Préhledná - + Custom Vlastní @@ -6644,22 +6619,22 @@ vyčistěte veškeré soubory z této složky a zkuste trezor znovu odemknout. plugin_filepreview::MusicMessageView - + Artist: Umělec: - + Album: Album: - + unknown artist Neznámý umělec - + unknown album Neznámé album diff --git a/translations/dde-file-manager_da.ts b/translations/dde-file-manager_da.ts index 8393794012..aa949e6f6c 100644 --- a/translations/dde-file-manager_da.ts +++ b/translations/dde-file-manager_da.ts @@ -15,104 +15,99 @@ Application - + File Manager Filhåndtering - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Filhåndtering er et kraftfuldt filhåndteringsværktøj som er let at bruge, med søgning, kopiering, papirkurv, komprimering/udpakning, filegenskab og andre nyttige funktioner. - DesktopMain + DAttachedProtocolDevice - - Desktop - Skrivebord + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1-diskområde - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Skrivebord + + + DiskControlWidget - - Open - Åbn + + Disks + Diske - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + Disken er i brug. Kan ikke afmontere nu - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Åbn - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Ukendt @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Systemdisk - + Data Disk Datadisk - + Blank %1 Disc Slet %1-disk - - - + + + Unknown Ukendt - + %1 Drive %1-drev - + %1 Encrypted %1-krypteret - - + %1 Volume %1-diskområde - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Hjem @@ -228,6 +223,7 @@ + Desktop Skrivebord @@ -237,6 +233,7 @@ + Videos Videoer @@ -246,6 +243,7 @@ + Music Musik @@ -255,6 +253,7 @@ + Pictures Billeder @@ -264,6 +263,7 @@ + Documents Dokumenter @@ -273,6 +273,7 @@ + Downloads Downloads @@ -281,6 +282,7 @@ + Trash Papirkurv @@ -291,11 +293,12 @@ + Recent Seneste - + @@ -303,7 +306,7 @@ Montér automatisk - + @@ -316,46 +319,47 @@ %1 igangværende opgaver - + %1 item %1 element - + %1 items %1 elementer - + Unable to find the original file - - + + File has been moved or deleted Filen er blevet flyttet eller slettet - - + + + You do not have permission to access this folder Du kan ikke de nødvendige tilladelser til at tilgå denne mappe - - + + You do not have permission to traverse files in it - - + + Folder is empty Mappen er tom - + Loading... Indlæser... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN Computere på LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Mærkat @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Genvej - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Adgang nægtet + Confirm button Bekræft + + + The device has been safely removed + + - - + + - - - + + + Open in new window Åbn i nyt vindue @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Åbn i nyt faneblad @@ -953,8 +968,8 @@ - - + + Properties Egenskaber @@ -990,7 +1005,7 @@ Ny fil - + Create symlink Opret symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? Er du sikker på, at du vil rydde al data på disken? - + Erase button Ryd - + This action cannot be undone Handlingen kan ikke fortrydes - + How do you want to use this disc? Hvordan vil du bruge disken? - + Burn image button Brænd aftryk - + Burn files button Brænd filer - + %1 is a duplicate file. %1 er en duplikeret fil. - + Insufficient disc space. Utilstrækkelig diskplads. - + Lost connection to drive. Mistede forbindelsen til drevet. - + The CD/DVD drive is not ready. Try another disc. CD/DVD-drevet er ikke klart. Prøv en anden disk. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD-/DVD-drevet er optaget. Afslut programmet som bruger drevet og indsæt drevet igen. - + Invalid volume name - + Unknown error Ukendt fejl @@ -1179,42 +1194,42 @@ Elementer: %1 - + Orange Orange - + Red Rød - + Purple Lilla - + Navy-blue Marineblå - + Azure Azur - + Green Grøn - + Yellow Gul - + Gray Grå @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Lokal disk - + Removable disk Flytbar disk - + DVD DVD - + Network shared directory Netværksdelingsmappe - - + + Android mobile device Android-mobilenhed - + Apple mobile device Apple-mobilenhed - + Unknown device Ukendt enhed - + Remove button Fjern - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Ryd seneste historik - - - + + + Source path Kildesti @@ -1404,12 +1419,12 @@ - + Empty Trash Tøm papirkurv - + Location Placering @@ -1509,7 +1524,7 @@ Søger... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Type - + Time accessed Adgangstidspunkt - + Time modified Ændringstidspunkt - + Time created Oprettelsestidspunkt - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Ikonstørrelse @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 element valgt @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Handling fejlede! @@ -2529,191 +2554,191 @@ Målmappe er inde i kildemappe! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Annuller - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Vil du køre %1 eller vise dens indhold? - + It is an executable text file. Det er en eksekverbar tekstfil. - - - + + + Run button Kør - - + + Run in terminal button Kør i terminal - + Display button Visning - + Do you want to run %1? Vil du køre %1? - + It is an executable file. Det er en eksekverbar fil. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Slet %1 elementer permanent? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Slet - + Permanently delete %1? Slet %1 permanent? - - + + This action cannot be undone Handlingen kan ikke fortrydes - + Are you sure you want to empty %1 item? Er du sikker på, at du vil tømme %1 element? - + Are you sure you want to empty %1 items? Er du sikker på, at du vil tømme %1 elementer? - + Empty Tøm - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Kunne ikke gendanne %1 fil, målmappen er skrivebeskyttet - + Failed to restore %1 files, the target folder is read-only Kunne ikke gendanne %1 filer, målmappen er skrivebeskyttet - + "%1" already exists, please use another name. "%1" findes allerede. Vælg venligst et andet navn. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Annuller - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 som denne genvej referer til er blevet ændret eller flyttet - + Do you want to delete this shortcut? Vil du slette denne genvej? - + This file is not executable, do you want to add the execute permission and run? Filen er ikke eksekverbar, vil du tilføje eksekverbar-tilladelsen og køre? - + The selected files contain system file/directory, and it cannot be deleted De valgte filer indeholder systemfil/-mappe og kan ikke slettes @@ -2841,276 +2866,278 @@ Indtast adgangskode for at dekryptere disken - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Andre - + Close Luk - + Close current tab Luk nuværende faneblad - + Back Tilbage - + Forward Fremad - + Switch to next tab Skift til næste faneblad - + Switch to previous tab Skift til forrige faneblad - + Next file Næste fil - + Previous file Forrige fil - + Switch tab by specified number between 1 to 8 Skifte faneblad med angivet nummer mellem 1 og 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Ændringstidspunkt: %1 - + Original folder Original mappe - + Contains: %1 Indeholder: %1 - + Original file Original fil - + Size: %1 Størrelse: %1 - + Target folder Målmappe - - + In data statistics ... - + Target file Målfil @@ -3445,37 +3466,37 @@ - + Keep both button Behold begge - + Skip button Spring over - - + + Replace button Erstat - + Do not ask again Spørg ikke igen - + Retry button Prøv igen - + Merge button Sammenføj @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Annuller - + Remove button Fjern @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mine mapper - + Disks Diske @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Enhedstype - + Total space Samlet plads - + File system Filsystem - + Contains Indeholder - + Free space Ledig plads - + %1 items %1 elementer - + %1 item %1 element @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Størrelse - + Dimension Dimension - + Duration Varighed - + Type Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Indsæt - Cu&t - + Cut + Klip - &Copy - + Copy + Kopiér dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Åbn - Rena&me - + Rename + Omdøb - &Delete - + Delete + Slet @@ -4557,11 +4579,6 @@ Open in terminal Åbn i terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Send til - - Bluetooth - - - - + Create link Opret link - + Send to desktop Send til skrivebord @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Åbn - + Open in new window Åbn i nyt vindue - + Open in new tab Åbn i nyt faneblad - + Cancel sharing Annuller deling - - P&roperties - + + Properties + Egenskaber dfmplugin_myshares::MyShares - + My Shares Mine shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Størrelse - + Contains Indeholder - + Type Type - + Location Placering - + Time created Oprettelsestidspunkt - + Time accessed Adgangstidspunkt - + Time modified Ændringstidspunkt - + Hide this file Skjul filen - - + + %1 item %1 element - + %1 items %1 elementer @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Grundlæggende info - + Computer name - + Version Version - + Edition - + OS build - + Type Type - + Processor Processor - + Memory Hukommelse @@ -4873,14 +4890,6 @@ %1 fil(er), %2 mappe(r) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Egenskaber dfmplugin_recent::Recent - + + Recent Seneste @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Sti - + Last access Sidste adgang - + Recent Seneste @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Søg: - + File Type: Filtype: - + File Size: Filstørrelse: - + Time Modified: Ændringstidspunkt: - + Time Accessed: - + Time Created: - + Reset Nulstil - + All subdirectories Alle undermapper - + Current directory Nuværende mappe - + Application Program - + Video Video - + Audio Lyd - + Image Billede - + Archive Arkiv - + Text Tekst - + Executable Eksekverbar - + Backup file Sikkerhedskopifil - + Today I dag - + Yesterday I går - + This week Denne uge - + Last week Sidste uge - + This month Denne måned - + Last month Sidste måned - + This year I år - + Last year Sidste år @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Søg - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Sti @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Åbn fil placering - + Select all Vælg alle - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Mærkat - + + Bookmark + + + + Other Andre - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Computere på LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Åbn @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Mærkat @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Åbn fil placering @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Opret forbindelse til server - - - + + + Clear History Ryd historik - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Annuller - + Connect button Opret forbindelse - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Kildesti - + Time deleted Sletningstidspunkt @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Gendan - + Restore all Gendan alle - + Empty trash - + Source path Kildesti - + Time deleted Sletningstidspunkt @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papirkurv @@ -5529,17 +5526,17 @@ Papirkurv - + item element - + items elementer - + Contains %1 %2 Indeholder %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Størrelse - + Contains Indeholder - + Type Type - + Location Placering - + Time created Oprettelsestidspunkt - + Time accessed Adgangstidspunkt - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Næste - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Filboks @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Adgangskode - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Adgangskode - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Annuller - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Slet - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault Filboks + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortér efter - + Display as Vis som - + Name Navn - + Time modified Ændringstidspunkt - + Size Størrelse - + Type Type - + Icon Ikon - + List Liste - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Gem @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Gem - + Open button Åbn @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_de.ts b/translations/dde-file-manager_de.ts index 6afc636dd9..65198755cb 100644 --- a/translations/dde-file-manager_de.ts +++ b/translations/dde-file-manager_de.ts @@ -15,104 +15,99 @@ Application - + File Manager Dateimanager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Dateimanager ist ein leistungsstarkes und einfach zu bedienendes Dateiverwaltungswerkzeug, das mit Suchen, Kopieren, Papierkorb, Komprimieren/Dekomprimieren, Dateieigenschaften und anderen nützlichen Funktionen ausgestattet ist. - DesktopMain + DAttachedProtocolDevice - - Desktop - Desktop + + %1 on %2 + %1 auf %2 - DeviceList + DeepinStorage - - Disks - Laufwerke + + + %1 Volume + %1 Laufwerk - DiskMountPlugin + DesktopMain - - Disk - Laufwerk + + Desktop + Desktop + + + DiskControlWidget - - Open - Öffnen + + Disks + Laufwerke - - Eject all - Alle auswerfen + + The device was not safely removed + Das Gerät wurde nicht sicher entfernt - - - DockItemDataManager - - The device has been safely removed - Das Gerät wurde sicher entfernt + + Click "Safely Remove" and then disconnect it next time + Klicke auf „Sicher entfernen“ und trenne die Verbindung dann beim nächsten Mal - - eject - auswerfen + + Disk is busy, cannot unmount now + Laufwerk wird verwendet, es kann jetzt nicht ausgehängt werden - - unmount - aushängen + + The device is busy, cannot eject now + Das Gerät ist beschäftigt, kann jetzt nicht ausgeworfen werden + + + DiskMountPlugin - - - remove - entfernen + + Disk + Laufwerk - - Operation failed - Operation fehlgeschlagen + + Open + Öffnen - - Device (%1) is busy, cannot %2 now. - + + Eject all + Alle auswerfen FileDialogHandle - + All Files Alle Dateien - - FileOperateBaseWorker - - - The file name or the path is too long! - Der Dateiname oder der Pfad ist zu lang! - - MimeTypeDisplayManager - + Unknown Unbekannt @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Dies geschieht, wenn Sie sich das erste Mal an einem Computer anmelden. - + The identity sent by the remote computer is Die vom Remote-Computer gesendete Identität ist - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Wenn Sie absolut sicher sein wollen, dass es sicher ist, fortzufahren, wenden Sie sich an den Systemadministrator. - - - + + + System Disk Systemlaufwerk - + Data Disk Datenlaufwerk - + Blank %1 Disc Leere %1 Disc - - - + + + Unknown Unbekannt - + %1 Drive %1 Laufwerk - + %1 Encrypted %1 verschlüsselt - - + %1 Volume %1 Laufwerk - + + Scanning the device, stop it? - + Unmount failed Aushängen fehlgeschlagen - + Cannot stop scanning device - - + %1 on %2 %1 auf %2 @@ -219,6 +213,7 @@ + Home Home @@ -228,6 +223,7 @@ + Desktop Desktop @@ -237,6 +233,7 @@ + Videos Videos @@ -246,6 +243,7 @@ + Music Musik @@ -255,6 +253,7 @@ + Pictures Bilder @@ -264,6 +263,7 @@ + Documents Dokumente @@ -273,6 +273,7 @@ + Downloads Downloads @@ -281,6 +282,7 @@ + Trash Papierkorb @@ -291,11 +293,12 @@ + Recent Zuletzt - + @@ -303,12 +306,12 @@ Automatisches Einhängen - + Open after auto mount - Nach automatischem Einhängen öffnen + Nach automatischem Einbinden öffnen @@ -316,46 +319,47 @@ %1 Aufgaben in Bearbeitung - + %1 item %1 Element - + %1 items %1 Elemente - + Unable to find the original file Die Originaldatei kann nicht gefunden werden - - + + File has been moved or deleted Datei wurde verschoben oder gelöscht - - + + + You do not have permission to access this folder Sie haben keine Berechtigung, um auf diesen Ordner zuzugreifen - - + + You do not have permission to traverse files in it Sie haben nicht die Berechtigung zum Durchqueren der enthaltenen Dateien - - + + Folder is empty Ordner ist leer - + Loading... Wird geladen ... @@ -404,7 +408,7 @@ - + Built-in disks Eingebaute Laufwerke @@ -412,6 +416,7 @@ + Computer Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN Computer im LAN @@ -428,16 +434,15 @@ - + Loop partitions - Loop-Partitionen + - - + Mounted sharing folders Eingehängte Freigabeordner @@ -445,6 +450,7 @@ + My shares Meine Freigaben @@ -452,7 +458,7 @@ - + Network Netzwerk @@ -460,7 +466,7 @@ - + Mounted partitions and discs Eingehängte Partitionen und Datenträger @@ -468,7 +474,7 @@ - + Partitions Partitionen @@ -476,7 +482,7 @@ - + Quick access Schnellzugriff @@ -484,7 +490,7 @@ - + Tag Schlagwort @@ -492,7 +498,7 @@ - + Added tags Hinzugefügte Schlagwörter @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Eingehängte Samba-Freigaben weiterhin anzeigen @@ -551,7 +557,7 @@ Show crumb bar clickable area - Anklickbaren Bereich der Krümelleiste anzeigen + @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Stopp - + Shortcut Verknüpfung - + This system wallpaper is locked. Please contact your admin. Dieses Hintergrundbild des Systems ist gesperrt. Bitte kontaktieren Sie Ihren Administrator. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Kopie) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Kopie %1) @@ -901,26 +909,33 @@ Bit + Access denied Zugriff verweigert + Confirm button Bestätigen + + + The device has been safely removed + Das Gerät wurde sicher entfernt + - - + + - - - + + + Open in new window In neuem Fenster öffnen @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab In neuem Tab öffnen @@ -953,8 +968,8 @@ - - + + Properties Eigenschaften @@ -990,7 +1005,7 @@ Neue Datei - + Create symlink Symbolische Verknüpfung erstellen @@ -1077,70 +1092,70 @@ Zur Disc hinzufügen - + Are you sure you want to erase all data on the disc? Sind Sie sicher, dass Sie alle Daten auf der Disc löschen möchten? - + Erase button Löschen - + This action cannot be undone Diese Aktion kann nicht rückgängig gemacht werden - + How do you want to use this disc? Wie möchten Sie diese Disc verwenden? - + Burn image button Abbild brennen - + Burn files button Dateien brennen - + %1 is a duplicate file. %1 ist eine doppelte Datei. - + Insufficient disc space. Zu wenig Festplattenspeicher. - + Lost connection to drive. Verbindung zum Laufwerk verloren. - + The CD/DVD drive is not ready. Try another disc. Das CD/DVD-Laufwerk ist nicht bereit. Versuchen Sie eine andere CD. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Das CD/DVD-Laufwerk ist beschäftigt. Beenden Sie das Programm und schließen Sie das Laufwerk erneut an. - + Invalid volume name Ungültiger Volumenname - + Unknown error Unbekannter Fehler @@ -1179,42 +1194,42 @@ Elemente: %1 - + Orange Orange - + Red Rot - + Purple Lila - + Navy-blue Dunkelblau - + Azure Blau - + Green Grün - + Yellow Gelb - + Gray Grau @@ -1290,76 +1305,76 @@ - + User directory Benutzerverzeichnis - + Local disk Lokales Laufwerk - + Removable disk Wechseldatenträger - + DVD DVD - + Network shared directory Freigegebenes Netzwerkverzeichnis - - + + Android mobile device Android-Mobilgerät - + Apple mobile device Apple-Mobilgerät - + Unknown device Unbekanntes Gerät - + Remove button Entfernen - + Do you want to remove this item? Möchten Sie dieses Element entfernen? - + Do yout want to remove %1 items? Möchten Sie %1 Elemente entfernen? - + It does not delete the original files Die Originaldateien werden dabei nicht gelöscht. - + Clear recent history Kürzlichen Verlauf löschen - - - + + + Source path Quellpfad @@ -1404,12 +1419,12 @@ Elemente im Papierkorb können nicht geöffnet werden, bitte stellen Sie die Elemente zuerst wieder her - + Empty Trash Papierkorb leeren - + Location Speicherort @@ -1509,7 +1524,7 @@ Wird gesucht ... - + My Vault Mein Tresor @@ -1686,7 +1701,7 @@ Device disconnected - Gerät getrennt + @@ -1696,17 +1711,17 @@ Success - Erfolg + Failed - Fehlgeschlagen + - + Sidebar - Seitenleiste + @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - Nicht autorisiert - - - - - In trial period - In der Testphase - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized Nicht autorisiert - - + + In trial period In der Testphase @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Neue Sammlung @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Schreibtisch organisieren - + Desktop options Schreibtischoptionen - + Organize by Organisieren nach - + Custom collection Benutzerdefinierte Sammlung - + Type Typ - + Time accessed Zugriffszeit - + Time modified Änderungszeit - + Time created Erstellungszeit - + Create a collection Eine Sammlung erstellen + + + Display Size + Anzeigegröße + + + + Smaller + Kleiner + + + + Normal + Normal + + + + Larger + Größer + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Schreibtischoptionen - + Auto arrange icons Symbole automatisch anordnen @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Anzeigegröße + + + Icon size Symbolgröße @@ -2298,7 +2323,7 @@ When login - Beim Anmelden + Bei der Anmeldung @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Der Dateimanager wird auf eine neue Version aktualisiert, bei der die laufenden Aufgaben beendet werden. Möchten Sie jetzt aktualisieren? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Die Schreibtischdienste werden auf eine neue Version aktualisiert, wobei die laufenden Aufgaben beendet werden. Möchten Sie jetzt aktualisieren? - + Update button Aktualisieren - + Cancel button Abbrechen @@ -2360,7 +2385,7 @@ - + %1 item selected %1 Element ausgewählt @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operation fehlgeschlagen! @@ -2529,191 +2554,191 @@ Zielordner befindet sich im Quellordner! - + The passphrase is needed to access encrypted data on %1. Die Passphrase wird für den Zugriff auf verschlüsselte Daten auf %1 benötigt. - - - - - - - - + + + + + + + + Cancel button Abbrechen - + Format button Formatieren - + To access the device, you must format the disk first. Are you sure you want to format it now? Um auf das Gerät zugreifen zu können, müssen Sie das Laufwerk zuerst formatieren. Sind Sie sicher, dass Sie es jetzt formatieren wollen? - + Do you want to run %1 or display its content? Möchten Sie %1 ausführen oder den Inhalt anzeigen? - + It is an executable text file. Es ist eine ausführbare Textdatei. - - - + + + Run button Ausführen - - + + Run in terminal button Im Terminal ausführen - + Display button Anzeige - + Do you want to run %1? Möchten Sie %1 ausführen? - + It is an executable file. Es ist eine ausführbare Datei. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 Elemente endgültig löschen? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Löschen - + Permanently delete %1? %1 endgültig löschen? - - + + This action cannot be undone Diese Aktion kann nicht rückgängig gemacht werden - + Are you sure you want to empty %1 item? Sind Sie sicher, dass Sie %1 Element löschen möchten? - + Are you sure you want to empty %1 items? Sind Sie sicher, dass Sie %1 Elemente löschen möchten? - + Empty Leeren - + Do you want to delete %1? Möchten Sie %1 löschen? - + Do you want to delete the selected %1 items? Möchten Sie die ausgewählten %1 Elemente löschen? - + Failed to restore %1 file, the target folder is read-only %1 Datei konnte nicht wiederhergestellt werden. Der Zielordner ist schreibgeschützt - + Failed to restore %1 files, the target folder is read-only %1 Dateien konnten nicht wiederhergestellt werden. Der Zielordner ist schreibgeschützt - + "%1" already exists, please use another name. "%1" existiert bereits, bitte verwenden Sie einen anderen Namen. - + Device or resource busy Gerät oder Ressource belegt - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Diese Datei wird versteckt, wenn der Dateiname mit '.' beginnt. Möchten Sie sie verstecken? - + Hide Ausblenden - + Cancel Abbrechen - + Unable to access %1 Zugriff auf %1 nicht möglich - + %1 that this shortcut refers to has been changed or moved %1 worauf sich diese Verknüpfung bezieht wurde verschoben oder entfernt. - + Do you want to delete this shortcut? Möchten Sie diese Verknüpfung löschen? - + This file is not executable, do you want to add the execute permission and run? Diese Datei ist nicht ausführbar, möchten Sie die entsprechenden Berechtigungen hinzufügen und die Datei dann ausführen? - + The selected files contain system file/directory, and it cannot be deleted Die ausgewählten Dateien enthalten Systemdateien/Ordner und können nicht gelöscht werden @@ -2841,278 +2866,280 @@ Passwort eingeben, um das Laufwerk zu entschlüsseln - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - Datei öffnen: + - + Click - Klick + - + Double click - Doppelklick + - + New window and tab - Neues Fenster und Tab + - + Open from default window: - Vom Standardfenster aus öffnen: + - - + + Computer - Computer + - - + + Home - - + + Desktop - - + + Videos - Videos + - - + + Music - Musik + - - + + Pictures - Bilder + - - + + Documents - Dokumente + - - + + Downloads - Downloads + - + Open in new tab: - In neuem Tab öffnen + - + Current Directory - Aktuelles Verzeichnis + - + Files and folders - Dateien und Ordner + - + Show hidden files - Versteckte Dateien anzeigen + - + Show file extensions - Dateierweiterungen anzeigen + - + Mix sorting of files and folders - Gemischte Sortierung von Dateien und Ordnern + - + Workspace - Arbeitsfläche + - + View - Ansicht + - + Default size: - Standardgröße: + - + Extra small - Extra klein + - + Small - Klein + - + Medium - Mittel + - + Large - Groß + - + Extra large - Extra groß - - - - Tree - Baum + - + Default view: - Standardansicht: + - + Icon - Symbol + - + List - Liste - - - - Restore default view mode for all directories - Standard-Ansichtsmodus für alle Verzeichnisse wiederherstellen - - - - Restore default view mode - Standard-Ansichtsmodus wiederherstellen + - + Thumbnail preview - Miniaturansichtsvorschau + - + Compressed file preview - Vorschau der komprimierten Datei + - + Text preview - Textvorschau + - + Document preview - Dokumentvorschau + - + Image preview - Bildvorschau + - + Video preview - Videovorschau + - + Music preview - Musikvorschau + - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - Erweitert + - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - Einhängen + - + Auto mount - Automatisch einhängen + - + Open after auto mount - Nach dem automatischen Einhängen öffnen + + + + + Show item counts and sizes in the path of mounted MTP devices + - + Merge the entries of Samba shared folders - Einträge von gemeinsamen Samba-Ordnern zusammenführen + - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - Dateiauswahldialog des Dateimanagers verwenden + - + Ask for my confirmation when deleting files - Beim Löschen von Dateien nach meiner Bestätigung fragen + @@ -3274,56 +3301,51 @@ - Switch to tree view - Zur Baumansicht wechseln - - - Others Andere - + Close Schließen - + Close current tab Aktuellen Tab schließen - + Back Zurück - + Forward Weiterleiten - + Switch to next tab Zu nächstem Tab wechseln - + Switch to previous tab Zu vorherigem Tab wechseln - + Next file Nächste Datei - + Previous file Vorherige Datei - + Switch tab by specified number between 1 to 8 Tab unter Verwendung der Tasten 1 bis 8 wechseln @@ -3394,43 +3416,42 @@ - + Time modified: %1 Änderungszeit: %1 - + Original folder Ursprungsordner - + Contains: %1 Enthält: %1 - + Original file Ursprungsdatei - + Size: %1 Größe: %1 - + Target folder Zielordner - - + In data statistics ... - In der Datenstatistik ... + - + Target file Zieldatei @@ -3445,37 +3466,37 @@ Bitte warten - + Keep both button Beide behalten - + Skip button Überspringen - - + + Replace button Ersetzen - + Do not ask again Nicht erneut nachfragen - + Retry button Wiederholen - + Merge button Zusammenführen @@ -3489,7 +3510,7 @@ Geben Sie ein Passwort ein, um freigegebene Ordner zu schützen - + Set a password on the shared folder for non-anonymous access Legen Sie ein Passwort für den freigegebenen Ordner für nicht anonymen Zugriff fest @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Abbrechen - + Remove button Entfernen @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Computer - + Computer display items - + Hide built-in disks on the Computer page - Eingebaute Laufwerke auf der Seite Computer ausblenden + - + Hide loop partitions on the Computer page - + Show file system on disk icon - Dateisystem auf Laufwerkssymbol anzeigen + - + Hide My Directories on the Computer page - Meine Verzeichnisse auf der Seite Computer ausblenden + - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password Falsches Passwort - + Rename failed Umbenennen fehlgeschlagen - + The device is busy and cannot be renamed now Das Gerät ist beschäftigt und kann jetzt nicht umbenannt werden - + Format failed Formatieren fehlgeschlagen - + The device is busy and cannot be formatted now Das Gerät ist beschäftigt und kann jetzt nicht formatiert werden - + Mount error Fehler beim Einhängen - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel Abbrechen - + Enable Now Jetzt aktivieren @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Meine Verzeichnisse - + Disks Laufwerke @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Gerätetyp - + Total space Gesamter Speicher - + File system Dateisystem - + Contains Enthält - + Free space Freier Speicher - + %1 items %1 Elemente - + %1 item %1 Element @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 auf %2 @@ -3968,27 +3990,27 @@ Größe - + Dimension Abmessungen - + Duration Dauer - + Type Typ - + Accessed Zugegriffen - + Modified Geändert @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - Fehler beim Umbenennen einer Datei + - + Failed to create the directory Fehler beim Erstellen des Verzeichnisses - + Failed to create the file Fehler beim Erstellen der Datei - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - &Einfügen + Paste + Einfügen - Cu&t - &Ausschneiden + Cut + Ausschneiden - &Copy - &Kopieren + Copy + Kopieren dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Öffnen + Open + Öffnen - Rena&me - &Umbenennen + Rename + Umbenennen - &Delete - &Löschen + Delete + Löschen @@ -4557,11 +4579,6 @@ Open in terminal Im Terminal öffnen - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Senden an - - Bluetooth - Bluetooth - - - + Create link Verknüpfung erstellen - + Send to desktop An Desktop senden @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Teilen + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Öffnen + + Open + Öffnen - + Open in new window In neuem Fenster öffnen - + Open in new tab In neuem Tab öffnen - + Cancel sharing Freigabe abbrechen - - P&roperties - &Eigenschaften + + Properties + Eigenschaften dfmplugin_myshares::MyShares - + My Shares Meine Freigaben @@ -4683,7 +4700,7 @@ Keine zu brennenden Dateien - + Unable to burn. Not enough free space on the target disk. Das Brennen ist nicht möglich. Nicht genügend freier Speicherplatz auf dem Zieldatenträger. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Größe - + Contains Enthält - + Type Typ - + Location Speicherort - + Time created Erstellungszeit - + Time accessed Zugriffszeit - + Time modified Änderungszeit - + Hide this file Diese Datei verstecken - - + + %1 item %1 Element - + %1 items %1 Elemente @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Für die Sicherheit von Geheimnissen - + For Government Für Regierung - + For Enterprise Für Unternehmen - + Bit Bit - + Available Verfügbar @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Grundlegende Informationen - + Computer name Computername - + Version Version - + Edition Edition - + OS build - + Type Typ - + Processor Prozessor - + Memory Arbeitsspeicher @@ -4874,14 +4891,6 @@ %1 Datei(en), %2 Ordner - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - %1 sind nicht erlaubt - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - &Eigenschaften + Properties + Eigenschaften dfmplugin_recent::Recent - + + Recent Zuletzt @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Pfad - + Last access Letzter Zugriff - + Recent Zuletzt @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Suchen: - + File Type: Dateityp: - + File Size: Dateigröße: - + Time Modified: Änderungszeit: - + Time Accessed: Zugriffszeit: - + Time Created: Erstellungszeit: - + Reset Zurücksetzen - + All subdirectories Alle Unterverzeichnisse - + Current directory Aktuelles Verzeichnis - + Application Anwendung - + Video Video - + Audio Audio - + Image Bild - + Archive Archiv - + Text Text - + Executable Ausführbare Datei - + Backup file Sicherungsdatei - + Today Heute - + Yesterday Gestern - + This week Diese Woche - + Last week Letzte Woche - + This month Diesen Monat - + Last month Letzten Monat - + This year Dieses Jahr - + Last year Letztes Jahr @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Suchen - - - Auto index internal disk - Interne Festplatte automatisch indexieren - - - - Index external storage device after connected to computer - - - - - Full-Text search - Volltextsuche - dfmplugin_search::SearchHelper - + Path Pfad @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Dateiort öffnen - + Select all Alles auswählen - + Path Pfad @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Schnellzugriff - + Partitions Partitionen - + Network Netzwerk - + Tag Schlagwort - + + Bookmark + Lesezeichen + + + Other Andere - + Unknown Group Unbekannte Gruppe + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Computer im LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Öffnen + Open + Öffnen @@ -5184,8 +5191,8 @@ - P&roperties - &Eigenschaften + Properties + Eigenschaften @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Schlagwort @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Dateiort öffnen @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Mit Server verbinden - - - + + + Clear History Verlauf löschen - + Unfavorite Entfavorisieren - - Error - Fehler - - - - Unable to favorite illegitimate url! - - - - + Cancel button Abbrechen - + Connect button Verbinden - + Charset Encoding Zeichensatzkodierung - + Default - Standard + - + My Favorites Meine Favoriten - + No favorites yet Noch keine Favoriten - + Favorite Favorit @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Quellpfad - + Time deleted Löschzeit @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Wiederherstellen - + Restore all Alle wiederherstellen - + Empty trash Papierkorb leeren - + Source path Quellpfad - + Time deleted Löschzeit @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papierkorb @@ -5530,17 +5527,17 @@ Papierkorb - + item Element - + items Elemente - + Contains %1 %2 Enthält %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Größe - + Contains Enthält - + Type Typ - + Location Speicherort - + Time created Erstellungszeit - + Time accessed Zugriffszeit - + Time locked Sperrzeit @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Dateitresor verschlüsseln @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Verschlüsseln - + Failed to create file vault: %1 Fehler beim Erstellen des Dateitresors: %1 - + OK OK @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Tresor-Passwort festlegen @@ -6097,7 +6094,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 Zeichen, enthält A-Z, a-z, 0-9 und Symbole @@ -6132,8 +6129,8 @@ Weiter - - + + Passwords do not match Passwörter stimmen nicht überein @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Dateitresor @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault Tresor @@ -6201,7 +6198,7 @@ Tresor nicht verfügbar, weil cryfs nicht installiert ist! - + A task is in progress, so it cannot perform your operation Eine Aufgabe ist in Bearbeitung, sodass Ihre Operation nicht ausgeführt werden kann @@ -6209,122 +6206,99 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mein Tresor - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Abbrechen - - - - Delete - Löschen - - - - Delete File Vault - Dateitresor löschen - - - - Failed to delete file vault - - - - - OK - OK - - - - Once deleted, the files in it will be permanently deleted - - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - - - - + Password Passwort - + Password hint: %1 Passworthinweis: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Abbrechen - - - - Delete - Löschen + + Input the 32-digit recovery key + Geben Sie den 32-stelligen Wiederherstellungsschlüssel ein + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Dateitresor löschen - - Wrong password - Falsches Passwort + + Once deleted, the files in it will be permanently deleted + Einmal gelöscht, werden die darin enthaltenen Dateien endgültig gelöscht - - Failed to delete file vault - + + Cancel + button + Abbrechen - - OK - OK + + Use Key + button + Schlüssel verwenden - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Geben Sie den 32-stelligen Wiederherstellungsschlüssel ein + + Delete + button + Löschen - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Wird entfernt ... - + + OK + button OK - - Delete File Vault - Dateitresor löschen + + Wrong password + Falsches Passwort + + + + Wrong recovery key + Falscher Wiederherstellungsschlüssel + + + + Failed to delete file vault + Fehler beim Löschen des Dateitresors - + Deleted successfully Erfolgreich gelöscht + + + Failed to delete + Fehler beim Löschen + dfmplugin_vault::VaultVisibleManager @@ -6334,10 +6308,16 @@ Mein Tresor - + File Vault Dateitresor + + + + Vault + Tresor + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name Name - + Time modified Änderungszeit - + Size Größe - + Type Typ @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 sind nicht erlaubt @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortieren nach - + Display as Anzeigen als - + Name Name - + Time modified Änderungszeit - + Size Größe - + Type Typ - + Icon Symbol - + List Liste - - - Tree - Baum - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Speichern @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Speichern - + Open button Öffnen @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Verfügbare Größen: - + Custom Size Benutzerdefinierte Größe - + Device Pixel Ratio: Geräte-Pixel-Verhältnis: - + Theme: Thema: - + Light Hell - + Dark Dunkel - + Mode: Modus - + Normal Normal - + Disabled Deaktiviert - + Hovered - Schwebend + - + Pressed Gedrückt - + Palette Palette - + Current mode icon does not support the palette Das Symbol für den aktuellen Modus unterstützt die Palette nicht - + Foreground: Vordergrund - + Background: Hintergrund - + Highlight: Hervorheben - + HighlightForeground: Vordergrund hervorheben: - + Background Color: Hintergrundfarbe: - + White Weiß - + Black Schwarz - + Transparent Transparent - + Custom Benutzerdefiniert @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: Interpret - + Album: Album: - + unknown artist unbekannter Interpret - + unknown album unbekanntes Album diff --git a/translations/dde-file-manager_el.ts b/translations/dde-file-manager_el.ts index f6104cfb74..f74f2285ed 100644 --- a/translations/dde-file-manager_el.ts +++ b/translations/dde-file-manager_el.ts @@ -15,104 +15,99 @@ Application - + File Manager Διαχειριστής αρχείων - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Επιφάνεια Εργασίας + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Ένταση - DiskMountPlugin + DesktopMain - - Disk - Δίσκος + + Desktop + Επιφάνεια Εργασίας + + + DiskControlWidget - - Open - Άνοιγμα + + Disks + Δίσκοι - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + Ο δίσκος είναι απασχολημένος, δεν μπορεί να αποσυνδεθεί τώρα - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Δίσκος - - Operation failed - + + Open + Άνοιγμα - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Άγνωστο @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Δίσκος Συστήματος - + Data Disk Δίσκος Δεδομένων - + Blank %1 Disc - - - + + + Unknown Άγνωστο - + %1 Drive - + %1 Encrypted - - + %1 Volume %1 Ένταση - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Αρχική @@ -228,6 +223,7 @@ + Desktop Επιφάνεια Εργασίας @@ -237,6 +233,7 @@ + Videos Βίντεο @@ -246,6 +243,7 @@ + Music Μουσική @@ -255,6 +253,7 @@ + Pictures Εικόνες @@ -264,6 +263,7 @@ + Documents Έγγραφα @@ -273,6 +273,7 @@ + Downloads Λήψεις @@ -281,6 +282,7 @@ + Trash Κάδος @@ -291,11 +293,12 @@ + Recent Πρόσφατα - + @@ -303,7 +306,7 @@ Αυτόματη σύνδεση - + @@ -316,46 +319,47 @@ %1 εργασίες σε εξέλιξη - + %1 item %1 αντικείμενο - + %1 items %1 αντικείμενα - + Unable to find the original file - - + + File has been moved or deleted Το αρχείο έχει μετακινηθεί ή διεγράφη - - + + + You do not have permission to access this folder Δεν έχετε άδεια πρόσβασης σε αυτό το φάκελλο - - + + You do not have permission to traverse files in it - - + + Folder is empty Ο φάκελλος είναι άδειος - + Loading... Φόρτωση... @@ -404,7 +408,7 @@ - + Built-in disks Ενσωματωμένοι δίσκοι @@ -412,6 +416,7 @@ + Computer Υπολογιστής @@ -419,8 +424,9 @@ - - + + + Computers in LAN Υπολογιστές στο LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network Δίκτυο @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Συντόμευση - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Απαγορεύεται η πρόσβαση + Confirm button Επαλήθευση + + + The device has been safely removed + + - - + + - - - + + + Open in new window Άνοιγμα σε νέο παράθυρο @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Άνοιγμα σε νέα καρτέλα @@ -953,8 +968,8 @@ - - + + Properties Ιδιότητες @@ -990,7 +1005,7 @@ Νέο Αρχείο - + Create symlink Δημιουργία συμβολικού συνδέσμου @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Διαγραφή - + This action cannot be undone Αυτή η ενέργεια δεν μπορεί να αναιρεθεί - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Άγνωστο σφάλμα @@ -1179,42 +1194,42 @@ Αντικείμενα: %1 - + Orange Πορτοκαλί - + Red Κόκκινο - + Purple Μωβ - + Navy-blue Navy-blue - + Azure Azure - + Green Πράσινο - + Yellow Κίτρινο - + Gray Γκρι @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Τοπικός δίσκος - + Removable disk Αφαιρούμενος δίσκος - + DVD DVD - + Network shared directory Φάκελλος δικτυακά κοινοποιημένος - - + + Android mobile device Φορητή συσκευή Android - + Apple mobile device Φορητή συσκευή Apple - + Unknown device Άγνωστη συσκευή - + Remove button Αφαίρεση - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Εκκαθάριση πρόσφατου ιστορικού - - - + + + Source path Μονοπάτι πηγής @@ -1404,12 +1419,12 @@ - + Empty Trash Άδειασμα κάδου - + Location Τοποθεσία @@ -1509,7 +1524,7 @@ Αναζήτηση - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Τύπος - + Time accessed - + Time modified Χρόνος τροποποίησης - + Time created Χρόνος δημιουργίας - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Μέγεθος εικονιδίων @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 επιλεγμένο αντικείμενο @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Η λειτουργία απέτυχε! @@ -2529,191 +2554,191 @@ Ο φάκελος προορισμού είναι μέσα στον αρχικό φάκελο - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Άκυρο - + Format button Διαμόρφωση - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Θέλετε να εκτελέσετε το %1 ή να εμφανιστούν τα περιεχόμενά του; - + It is an executable text file. Είναι ένα εκτελέσιμο αρχείο κειμένου, - - - + + + Run button Εκτέλεση - - + + Run in terminal button Εκτέλεση στο terminal - + Display button Εμφάνιση - + Do you want to run %1? Θέλετε να εκτελέσετε το %1; - + It is an executable file. Είναι ένα εκτελέσιμο αρχείο. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Οριστική διαγραφή %1 αντικειμένων; - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Διαγραφή - + Permanently delete %1? Οριστική διαγραφή του %1; - - + + This action cannot be undone Αυτή η ενέργεια δεν μπορεί να αναιρεθεί - + Are you sure you want to empty %1 item? Είστε βέβαιος, ότι θέλετε να αδειάσετε %1 αντικείμενο; - + Are you sure you want to empty %1 items? Είστε βέβαιος, ότι θέλετε να αδειάσετε %1 αντικείμενα; - + Empty Άδειασμα - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. Το "%1" υπάρχει ήδη, παρακαλούμε χρησιμοποιήστε άλλο όνομα. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Άκυρο - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 το ότι αυτή η συντόμευση αναφέρεται στο ότι έχει αλλάξει ή μετακινηθεί - + Do you want to delete this shortcut? Θέλετε να διαγραφεί αυτή η συντόμευση; - + This file is not executable, do you want to add the execute permission and run? Αυτό το αρχείο δεν είναι εκτελέσιμο, θέλετε να προσθέσετε άδεια εκτέλεσης και να το τρέξετε; - + The selected files contain system file/directory, and it cannot be deleted Τα επιλεγμένα αρχεία, περιέχουν, αρχείο/φάκελο συστήματος και δεν μπορεί να διαγραφεί @@ -2841,276 +2866,278 @@ Εισαγωγή κωδικού ασφαλείας για αποκρυπτογράφηση δίσκου - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Άλλα - + Close Κλείσιμο - + Close current tab Κλείσιμο τρέχουσας καρτέλας - + Back Πίσω - + Forward Εμπρός - + Switch to next tab Αλλαγή στην επόμενη καρτέλα - + Switch to previous tab Αλλαγή στην προηγούμενη καρτέλα - + Next file Επόμενο αρχείο - + Previous file Προηγούμενο αρχείο - + Switch tab by specified number between 1 to 8 Αλλάξτε την καρτέλα με τον καθορισμένο αριθμό μεταξύ 1 και 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Αρχικός φάκελλος - + Contains: %1 - + Original file Αρχικό αρχείο - + Size: %1 Μέγεθος: %1 - + Target folder Φάκελλος προορισμού - - + In data statistics ... - + Target file Αρχείο προορισμού @@ -3445,37 +3466,37 @@ - + Keep both button Διατήρηση και των δύο - + Skip button Παράλειψη - - + + Replace button Αντικατάσταση - + Do not ask again Να μην ερωτηθείτε ξανά - + Retry button Επανάληψη - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Άκυρο - + Remove button Αφαίρεση @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Υπολογιστής - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Υπολογιστής - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Οι Φάκελοί μου - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Τύπος συσκευής - + Total space Συνολικός χώρος - + File system - + Contains Περιέχει - + Free space Ελεύθερος χώρος - + %1 items %1 αντικείμενα - + %1 item %1 αντικείμενο @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Μέγεθος - + Dimension - + Duration - + Type Τύπος - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Επικόλληση - Cu&t - + Cut + Αποκοπή - &Copy - + Copy + Αντιγραφή dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Άνοιγμα - Rena&me - + Rename + Μετονομασία - &Delete - + Delete + Διαγραφή @@ -4557,11 +4579,6 @@ Open in terminal Άνοιγμα στο terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Αποστολή σε - - Bluetooth - - - - + Create link Δημιουργία συνδέσμου - + Send to desktop Αποστολή στην επιφάνεια εργασίας @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Άνοιγμα - + Open in new window Άνοιγμα σε νέο παράθυρο - + Open in new tab Άνοιγμα σε νέα καρτέλα - + Cancel sharing Ακύρωση κοινοποίησης - - P&roperties - + + Properties + Ιδιότητες dfmplugin_myshares::MyShares - + My Shares Οι κοινοποιήσεις μου @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Μέγεθος - + Contains Περιέχει - + Type Τύπος - + Location Τοποθεσία - + Time created Χρόνος δημιουργίας - + Time accessed - + Time modified Χρόνος τροποποίησης - + Hide this file - - + + %1 item %1 αντικείμενο - + %1 items %1 αντικείμενα @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Υπολογιστής - + Basic Info Βασικές Πληροφορίες - + Computer name - + Version Έκδοση - + Edition - + OS build - + Type Τύπος - + Processor Επεξεργαστής - + Memory Μνήμη @@ -4873,14 +4890,6 @@ %1 αρχείο(α), %2 αρχείο(α) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Ιδιότητες dfmplugin_recent::Recent - + + Recent Πρόσφατα @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Μονοπάτι - + Last access Τελευταία πρόσβαση - + Recent Πρόσφατα @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Εύρεση: - + File Type: Τύπος Αρχείου: - + File Size: Μέγεθος Αρχείου: - + Time Modified: Ώρα Μορφοποίησης: - + Time Accessed: - + Time Created: - + Reset Επαναφορά - + All subdirectories Όλοι οι υποφάκελλοι - + Current directory Τρέχων Φάκελος - + Application Εφαρμογές - + Video Βίντεο - + Audio Ήχοι - + Image Εικόνες - + Archive Αρχείο - + Text Κείμενο - + Executable Εκτελέσιμο - + Backup file Αρχείο εφεδρικού αντιγράφου ασφαλείας - + Today Σήμερα - + Yesterday Χτες - + This week Αυτήν τη εβδομάδα - + Last week Τελευταία εβδομάδα - + This month Αυτόν το μήνα - + Last month Τελευταίο μήνα - + This year Αυτό τον χρόνο - + Last year Τελευταίος χρόνος @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Εύρεση - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Μονοπάτι @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Άνοιγμα τοποθεσίας αρχείου - + Select all Επιλογή όλων - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other Άλλο - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Υπολογιστές στο LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Άνοιγμα @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Άνοιγμα τοποθεσίας αρχείου @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Άκυρο - + Connect button Σύνδεση - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Μονοπάτι πηγής - + Time deleted Ο χρόνος διαγράφηκε @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Ανάκτηση - + Restore all Ανάκτηση όλων - + Empty trash - + Source path Μονοπάτι πηγής - + Time deleted Ο χρόνος διαγράφηκε @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Κάδος @@ -5529,17 +5526,17 @@ Κάδος - + item αντικείμενο - + items αντικείμενα - + Contains %1 %2 Περιέχει:%1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Μέγεθος - + Contains Περιέχει - + Type Τύπος - + Location Τοποθεσία - + Time created Χρόνος δημιουργίας - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Κωδικός - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Κωδικός - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Άκυρο - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Διαγραφή - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ταξινόμηση κατά - + Display as Εμφάνιση ως - + Name Όνομα - + Time modified Χρόνος τροποποίησης - + Size Μέγεθος - + Type Τύπος - + Icon Εικονίδιο - + List Λίστα - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Αποθήκευση @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Αποθήκευση - + Open button Άνοιγμα @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_en_AU.ts b/translations/dde-file-manager_en_AU.ts index f5e7a623cd..58ad3f5b7b 100644 --- a/translations/dde-file-manager_en_AU.ts +++ b/translations/dde-file-manager_en_AU.ts @@ -15,104 +15,99 @@ Application - + File Manager File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Desktop + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - + + Desktop + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Computer @@ -420,8 +425,9 @@ - - + + + Computers in LAN @@ -429,7 +435,7 @@ - + Loop partitions @@ -437,8 +443,7 @@ - - + Mounted sharing folders @@ -446,6 +451,7 @@ + My shares @@ -453,7 +459,7 @@ - + Network @@ -461,7 +467,7 @@ - + Mounted partitions and discs @@ -469,7 +475,7 @@ - + Partitions @@ -477,7 +483,7 @@ - + Quick access @@ -485,7 +491,7 @@ - + Tag @@ -493,7 +499,7 @@ - + Added tags @@ -508,7 +514,7 @@ - + Keep showing the mounted Samba shares @@ -842,15 +848,16 @@ + - - + + - + Cancel button @@ -858,28 +865,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -902,26 +910,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -930,12 +945,12 @@ - - + + - - - + + + Open in new tab @@ -954,8 +969,8 @@ - - + + Properties Properties @@ -991,7 +1006,7 @@ - + Create symlink @@ -1078,70 +1093,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1180,42 +1195,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1291,76 +1306,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1405,12 +1420,12 @@ - + Empty Trash - + Location @@ -1510,7 +1525,7 @@ - + My Vault @@ -1705,7 +1720,7 @@ - + Sidebar @@ -1888,29 +1903,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1974,7 +1974,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1982,50 +1982,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2046,12 +2066,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2156,7 +2176,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Icon size @@ -2326,23 +2351,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2362,7 +2387,7 @@ - + %1 item selected @@ -2401,10 +2426,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2513,15 +2538,15 @@ - - + + OK button - + Operation failed! @@ -2531,191 +2556,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2843,276 +2868,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3276,56 +3303,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3396,43 +3418,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3447,37 +3468,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3491,7 +3512,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3517,18 +3538,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3786,38 +3807,39 @@ dfmplugin_computer::Computer - + + Computer Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3825,42 +3847,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3868,28 +3890,28 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3897,12 +3919,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3910,42 +3932,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3953,7 +3975,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3972,27 +3994,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4388,7 +4410,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4421,28 +4443,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4459,17 +4481,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4477,17 +4499,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4561,11 +4583,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4583,22 +4600,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4606,43 +4618,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4686,7 +4703,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4694,58 +4711,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4766,27 +4783,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4794,48 +4811,48 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4878,14 +4895,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4905,14 +4914,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Properties dfmplugin_recent::Recent - + + Recent @@ -4920,17 +4930,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4961,127 +4971,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5089,31 +5099,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5121,17 +5115,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5139,41 +5133,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5188,7 +5195,7 @@ - P&roperties + Properties @@ -5223,7 +5230,7 @@ dfmplugin_tag::Tag - + Tag @@ -5231,7 +5238,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5281,66 +5288,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5480,12 +5477,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5493,27 +5490,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5521,7 +5518,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5534,17 +5531,17 @@ - + item - + items - + Contains %1 %2 @@ -5726,42 +5723,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5991,7 +5988,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6012,19 +6009,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6075,7 +6072,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6101,7 +6098,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6136,8 +6133,8 @@ - - + + Passwords do not match @@ -6145,7 +6142,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6195,7 +6192,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6205,7 +6202,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6213,120 +6210,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6338,10 +6312,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6354,22 +6334,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6385,7 +6365,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6401,50 +6381,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6457,7 +6432,7 @@ filedialog_core::FileDialog - + Save button @@ -6466,13 +6441,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6510,112 +6485,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6647,22 +6622,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_en_GB.ts b/translations/dde-file-manager_en_GB.ts index 2ea6af32f7..d9f88212b9 100644 --- a/translations/dde-file-manager_en_GB.ts +++ b/translations/dde-file-manager_en_GB.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_eo.ts b/translations/dde-file-manager_eo.ts index 81bf36e747..63459e7593 100644 --- a/translations/dde-file-manager_eo.ts +++ b/translations/dde-file-manager_eo.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Disko + + Desktop + + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Disko - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Domo @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash Korbeto @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Nuligi - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Forigi - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Malpleni - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Nuligi - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Nuligi - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,18 +4495,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete - + Delete + Forigi @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Nuligi - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Korbeto @@ -5529,17 +5526,17 @@ Korbeto - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Nuligi - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Forigi - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name Nomo - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_es.ts b/translations/dde-file-manager_es.ts index 5918209584..8b80ef55c5 100644 --- a/translations/dde-file-manager_es.ts +++ b/translations/dde-file-manager_es.ts @@ -15,104 +15,99 @@ Application - + File Manager Administrador de archivos - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Administrador de archivos de Deepin es una herramienta de gestión de archivos potente y fácil de usar, incluye funciones de búsqueda, copia, papelera, compresión, descompresión, mostrar propiedades y otras características muy útiles. - DesktopMain + DAttachedProtocolDevice - - Desktop - Escritorio + + %1 on %2 + %1 en %2 - DeviceList + DeepinStorage - - Disks - Discos + + + %1 Volume + Volumen %1 - DiskMountPlugin + DesktopMain - - Disk - Disco + + Desktop + Escritorio + + + DiskControlWidget - - Open - Abrir + + Disks + Discos - - Eject all - Expulsar todo + + The device was not safely removed + El dispositivo no fue retirado de forma segura - - - DockItemDataManager - - The device has been safely removed - El dispositivo ha sido retirado de forma segura + + Click "Safely Remove" and then disconnect it next time + Clic en «Extraer del equipo» y luego desconéctelo - - eject - Expulsar + + Disk is busy, cannot unmount now + El disco está en uso, no se puede desmontar ahora - - unmount - Desmontar + + The device is busy, cannot eject now + El dispositivo, no se puede expulsar ahora + + + DiskMountPlugin - - - remove - Remover + + Disk + Disco - - Operation failed - La operación fallo + + Open + Abrir - - Device (%1) is busy, cannot %2 now. - El dispositivo (%1) está ocupado, no puede %2 ahora. + + Eject all + Expulsar todo FileDialogHandle - + All Files Todos los archivos - - FileOperateBaseWorker - - - The file name or the path is too long! - ¡El nombre del archivo o la ruta son demasiado largos! - - MimeTypeDisplayManager - + Unknown Desconocido @@ -128,89 +123,88 @@ QObject - + need authorization to access Necesita autorización para acceder - + Can't verify the identity of %1. No se puede verificar la identidad de %1. - + This happens when you log in to a computer the first time. Esto sucede cuando inicia sesión en un equipo por primera vez. - + The identity sent by the remote computer is La identidad enviada por el equipo remoto es - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Si quiere verificar que es seguro continuar, comuníquese con el administrador del sistema. - - - + + + System Disk Disco del sistema - + Data Disk Disco de datos - + Blank %1 Disc Disco %1 en blanco - - - + + + Unknown Desconocido - + %1 Drive %1 unidad - + %1 Encrypted %1 Cifrado - - + %1 Volume Volumen %1 - + + Scanning the device, stop it? Disco bajo escaneo, ¿desea detenerlo? - + Unmount failed Error al desmontar - + Cannot stop scanning device No se puede detener el dispositivo de escaneo - - + %1 on %2 %1 en %2 @@ -219,6 +213,7 @@ + Home Carpeta personal @@ -228,6 +223,7 @@ + Desktop Escritorio @@ -237,6 +233,7 @@ + Videos Vídeos @@ -246,6 +243,7 @@ + Music Música @@ -255,6 +253,7 @@ + Pictures Imágenes @@ -264,6 +263,7 @@ + Documents Documentos @@ -273,6 +273,7 @@ + Downloads Descargas @@ -281,6 +282,7 @@ + Trash Papelera @@ -291,11 +293,12 @@ + Recent Reciente - + @@ -303,7 +306,7 @@ Montar unidades automáticamente - + @@ -316,46 +319,47 @@ %1 tareas en progreso - + %1 item %1 elemento - + %1 items %1 elementos - + Unable to find the original file No se puede encontrar el archivo original - - + + File has been moved or deleted El archivo ha sido movido o borrado - - + + + You do not have permission to access this folder No tienes permiso para acceder a esta carpeta - - + + You do not have permission to traverse files in it No tiene permiso para recorrer los archivos en él - - + + Folder is empty La carpeta está vacía - + Loading... Cargando... @@ -404,7 +408,7 @@ - + Built-in disks Discos integrados @@ -412,6 +416,7 @@ + Computer Equipo @@ -419,8 +424,9 @@ - - + + + Computers in LAN Equipos en LAN @@ -428,7 +434,7 @@ - + Loop partitions Partición virtual @@ -436,8 +442,7 @@ - - + Mounted sharing folders Carpetas compartidas montadas @@ -445,6 +450,7 @@ + My shares Uso compartido @@ -452,7 +458,7 @@ - + Network Red @@ -460,7 +466,7 @@ - + Mounted partitions and discs Particiones y discos montados @@ -468,7 +474,7 @@ - + Partitions Particiones @@ -476,7 +482,7 @@ - + Quick access Acceso rápido @@ -484,7 +490,7 @@ - + Tag Etiqueta @@ -492,7 +498,7 @@ - + Added tags Etiquetas añadidas @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Seguir mostrando recursos compartidos Samba montados @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Detener - + Shortcut Enlace - + This system wallpaper is locked. Please contact your admin. Este fondo de pantalla del sistema está bloqueado. Póngase en contacto con su administrador - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Copiar) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (Copiar %1) @@ -901,26 +909,33 @@ bits + Access denied Acceso denegado + Confirm button Confirmar + + + The device has been safely removed + El dispositivo ha sido retirado de forma segura + - - + + - - - + + + Open in new window Abrir en una ventana nueva @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Abrir en una nueva pestaña @@ -953,8 +968,8 @@ - - + + Properties Propiedades @@ -990,7 +1005,7 @@ Nuevo archivo - + Create symlink Crear enlace simbólico @@ -1077,70 +1092,70 @@ Añadir al disco - + Are you sure you want to erase all data on the disc? ¿Está seguro de que desea borrar todos los datos del disco? - + Erase button Borrar - + This action cannot be undone Esta acción no se puede deshacer - + How do you want to use this disc? ¿Cómo quiere usar este disco? - + Burn image button Grabar una imagen - + Burn files button Grabar archivos - + %1 is a duplicate file. %1 es un archivo duplicado. - + Insufficient disc space. Espacio en disco insuficiente. - + Lost connection to drive. Se perdió la conexión con la unidad. - + The CD/DVD drive is not ready. Try another disc. La unidad de CD / DVD no está lista. Probar con otro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. La unidad de CD / DVD está en uso. Cierre el programa que esta usando la unidad e inténtelo de nuevo. - + Invalid volume name Nombre de volumen inválido - + Unknown error Error desconocido @@ -1179,42 +1194,42 @@ Elementos: %1 - + Orange Naranja - + Red Rojo - + Purple Púrpura - + Navy-blue Azul - + Azure Cian - + Green Verde - + Yellow Amarillo - + Gray Gris @@ -1290,76 +1305,76 @@ No puede acceder - + User directory Carpeta de usuario - + Local disk Disco local - + Removable disk Disco extraíble - + DVD DVD - + Network shared directory Carpeta compartida de red - - + + Android mobile device Dispositivo móvil Android - + Apple mobile device Dispositivo móvil Apple - + Unknown device Dispositivo desconocido - + Remove button Quitar - + Do you want to remove this item? ¿Desea eliminar este elemento? - + Do yout want to remove %1 items? ¿Desea eliminar %1 elementos? - + It does not delete the original files No borrar archivos originales - + Clear recent history Borrar historial reciente - - - + + + Source path Ruta de origen @@ -1404,12 +1419,12 @@ No se pueden abrir elementos en la papelera, primero restáurelos - + Empty Trash Vaciar papelera - + Location Ubicación @@ -1509,7 +1524,7 @@ Buscando... - + My Vault Mi bóveda @@ -1686,27 +1701,27 @@ Device disconnected - Dispositivo desconectado + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - ID=%1, Fecha y hora=%2, Grabadora=%3, Tipo de disco=%4, Resultado=%5, Usuario=%6, Nombre de archivo=%7, Tamaño de archivo=%8, Tipo de archivo=%9 + Success - Exitoso + Failed - Fallido + - + Sidebar - Panel lateral + @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - No autorizado - - - - - In trial period - En periodo de prueba - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized No autorizado - - + + In trial period En periodo de prueba @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nueva colección @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizar escritorio - + Desktop options Opciones de escritorio - + Organize by Organizar por - + Custom collection Colección personalizada - + Type Tipo - + Time accessed Fecha de acceso - + Time modified Fecha de modificación - + Time created Fecha de creación - + Create a collection Crear una colección + + + Display Size + Tamaño de pantalla + + + + Smaller + Pequeña + + + + Normal + Normal + + + + Larger + Grande + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opciones de escritorio - + Auto arrange icons Organizar iconos automáticamente @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Tamaño de pantalla + + + Icon size Tamaño de icono @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? El Gestor de Archivos se actualizará a una nueva versión, durante la cual se finalizarán las tareas en curso. ¿Desea actualizar ahora? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Los servicios de escritorio se actualizarán a una nueva versión, durante la cual se finalizarán las tareas en curso. ¿Desea actualizar ahora? - + Update button Actualizar - + Cancel button Cancelar @@ -2360,7 +2385,7 @@ - + %1 item selected %1 elemento seleccionado @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Aceptar - + Operation failed! ¡La operación falló! @@ -2529,191 +2554,191 @@ ¡La carpeta de destino está dentro de la carpeta de origen! - + The passphrase is needed to access encrypted data on %1. La frase de contraseña es necesaria para acceder a los datos encriptados en %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formatear - + To access the device, you must format the disk first. Are you sure you want to format it now? Para acceder al dispositivo, primero debe formatear el disco. ¿Está seguro de que quiere formatearlo ahora? - + Do you want to run %1 or display its content? ¿Desea ejecutar %1 o mostrar su contenido? - + It is an executable text file. Es un archivo de texto ejecutable. - - - + + + Run button Ejecutar - - + + Run in terminal button Ejecutar en terminal - + Display button Mostrar - + Do you want to run %1? ¿Desea ejecutar %1? - + It is an executable file. Es un archivo ejecutable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? No se pueden mover los %1 elementos seleccionados a la papelera. ¿Quieres eliminarlos permanentemente? - + Permanently delete %1 items? ¿Borrar permanentemente %1 elementos? - + Cannot move "%1" to the trash. Do you want to permanently delete it? No se pueden mover los %1 elementos seleccionados a la papelera. ¿Quieres eliminarlos permanentemente? - - - + + + Delete button Borrar - + Permanently delete %1? ¿Borrar permanentemente %1? - - + + This action cannot be undone Esta acción no se puede deshacer - + Are you sure you want to empty %1 item? ¿Seguro desea vaciar %1 elemento de la papelera? - + Are you sure you want to empty %1 items? ¿Seguro desea vaciar %1 elementos de la papelera? - + Empty Vaciar - + Do you want to delete %1? ¿Desea borrar %1? - + Do you want to delete the selected %1 items? ¿Desea borrar los %1 elementos seleccionados? - + Failed to restore %1 file, the target folder is read-only No se pudo restaurar el archivo %1, la carpeta de destino es de solo lectura. - + Failed to restore %1 files, the target folder is read-only Fallo al restaurar %1 archivos, la carpeta de destino es de solo lectura - + "%1" already exists, please use another name. «%1» ya existe, por favor use otro nombre. - + Device or resource busy Dispositivo o recurso ocupado - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este archivo será ocultado si el nombre del archivo comienza con «.». ¿Quiere ocultarlo? - + Hide Ocultar - + Cancel Cancelar - + Unable to access %1 No se puede acceder a %1 - + %1 that this shortcut refers to has been changed or moved Este enlace hace referencia a «%1» pero no se pudo encontrar - + Do you want to delete this shortcut? ¿Quiere borrar este enlace? - + This file is not executable, do you want to add the execute permission and run? Este archivo no es ejecutable, ¿desea añadir el permiso de ejecución y ejecutar? - + The selected files contain system file/directory, and it cannot be deleted Los archivos seleccionados contienen archivos/carpetas del sistema, y no pueden ser borrados @@ -2841,278 +2866,280 @@ Introduzca la contraseña para descifrar el disco - - dfmbase::RightValueWidget - - - Copy complete info - Copiar toda la información - - dfmbase::SettingBackend - + Always open folder in new window - Abrir siempre la carpeta en una nueva ventana + - + Open file: - Abrir archivo: + - + Click - Clic + - + Double click - Doble clic + - + New window and tab - Nueva ventana y pestaña + - + Open from default window: - Abrir en la ventana predeterminada: + - - + + Computer - Equipo + - - + + Home - Carpeta personal + - - + + Desktop - Escritorio + - - + + Videos - Vídeos + - - + + Music - Música + - - + + Pictures - Imágenes + - - + + Documents - Documentos + - - + + Downloads - Descargas + - + Open in new tab: - Abrir en una nueva pestaña: + - + Current Directory - Carpeta actual + - + Files and folders - Archivos y carpetas + - + Show hidden files - Mostrar archivos ocultos + - + Show file extensions - Mostrar extensión + - + Mix sorting of files and folders - Mezclar orden de archivos y carpetas + - + Workspace - Espacio de trabajo + - + View - Ver + - + Default size: - Tamaño por defecto: + - + Extra small - Muy pequeño + - + Small - Pequeño + - + Medium - Mediano + - + Large - Grande + - + Extra large - Muy grande + - - Tree - Árbol - - - + Default view: - Vista predeterminada: + - + Icon - Icono + - + List - Lista - - - - Restore default view mode for all directories - Restaurar el modo de vista predeterminado para todos los directorios - - - - Restore default view mode - Restaurar el modo de vista predeterminado + - + Thumbnail preview - Miniaturas + - + Compressed file preview - Previsualización de archivos comprimidos + - + Text preview - Previsualización del texto + - + Document preview - Previsualización del documento + - + Image preview - Previsualización de la imagen + - + Video preview - Previsualización del vídeo + - + Music preview - Previsualización de la música + - + The remote environment shows thumbnail previews - Mostrar miniaturas en el entorno remoto. + - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Activar la vista previa de miniaturas puede hacer que el directorio remoto se cargue lentamente o que la operación se congele + - + Advanced - Avanzado + + + + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + - + Mount - Montar + - + Auto mount - Montar unidades automáticamente + - + Open after auto mount - Abrir después de montar automáticamente + - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - Combinar entradas de las carpetas compartidas Samba + - + Switching the entry display may lead to failed mounting - El cambio de la pantalla de entrada puede provocar un montaje fallido + - + Use the file chooser dialog of File Manager - Usar el diálogo del selector de archivos del administrador de archivos + - + Ask for my confirmation when deleting files - Solicitar mi confirmación al borrar archivos + @@ -3274,56 +3301,51 @@ - Switch to tree view - Cambiar a vista de árbol - - - Others Otros - + Close Cerrar - + Close current tab Cerrar pestaña actual - + Back Volver - + Forward Adelante - + Switch to next tab Cambiar a siguiente pestaña - + Switch to previous tab Cambiar a pestaña anterior - + Next file Próximo archivo - + Previous file Archivo previo - + Switch tab by specified number between 1 to 8 Cambiar la pestaña por el número especificado entre 1 y 8 @@ -3394,43 +3416,47 @@ Crear archivo de destino %1 Error de información al mostrar conflicto ¡Función de información! - + Time modified: %1 Fecha de modificación: %1 - + + In data statistics + En estadísticas de datos + + + Original folder Carpeta original - + Contains: %1 Contiene: %1 - + Original file Archivo original - + Size: %1 Tamaño: %1 - + Target folder Carpeta de destino - - + In data statistics ... - En estadísticas de datos + - + Target file Archivo de destino @@ -3445,37 +3471,37 @@ Espere por favor - + Keep both button Mantener ambos - + Skip button Omitir - - + + Replace button Reemplazar - + Do not ask again No volver a preguntar - + Retry button Reintentar - + Merge button Combinar @@ -3489,7 +3515,7 @@ Introduzca una contraseña para proteger las carpetas compartidas - + Set a password on the shared folder for non-anonymous access Establecer una contraseña en la carpeta compartida para el acceso no anónimo @@ -3515,18 +3541,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? No se pudo localizar el directorio de acceso rápido, ¿eliminarlo? - + Cancel button Cancelar - + Remove button Quitar @@ -3784,80 +3810,81 @@ dfmplugin_computer::Computer - + + Computer Equipo - + Computer display items - Mostrar elementos del equipo + - + Hide built-in disks on the Computer page - Ocultar discos integrados + - + Hide loop partitions on the Computer page - Ocultar particiones de bucle + - + Show file system on disk icon - Mostrar etiquetas del tipo de partición + - + Hide My Directories on the Computer page - Ocultar mis directorios + - + Hide 3rd party entries on the Computer page - Ocultar entradas de terceros + dfmplugin_computer::ComputerController - + Unlock device failed Error al desbloquear dispositivo - + Wrong password Contraseña incorrecta - + Rename failed Error al renombrar - + The device is busy and cannot be renamed now El dispositivo está ocupado y no se puede renombrar ahora - + Format failed Error al formatear - + The device is busy and cannot be formatted now El dispositivo está ocupado y no se puede formatear ahora - + Mount error Error de montaje - + Cannot access %1 No puede acceder %1 @@ -3865,27 +3892,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Equipo - + %1 is read-only. Do you want to enable read and write permissions for it? %1 es de solo lectura. ¿Desea habilitar los permisos de lectura y escritura para él? - + Once enabled, read/write permission will be granted permanently Una vez habilitado, el permiso de lectura/escritura se otorgará de forma permanente - + Cancel Cancelar - + Enable Now Activar ahora @@ -3893,12 +3920,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mis carpetas - + Disks Discos @@ -3906,42 +3933,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Información básica - + Device type Tipo de dispositivo - + Total space Espacio total - + File system Sistema de archivos - + Contains Contiene - + Free space Espacio libre - + %1 items %1 elementos - + %1 item %1 elemento @@ -3949,7 +3976,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 en %2 @@ -3968,27 +3995,27 @@ Tamaño - + Dimension Dimensiones - + Duration Duración - + Type Tipo - + Accessed Accedido - + Modified Modificado @@ -4258,7 +4285,7 @@ Failed to move the file %1 to trash - Error al mover el archivo %1 a la papelera + @@ -4335,7 +4362,7 @@ Copy or Cut File failed! - ¡Error al copiar o cortar el archivo! + @@ -4365,7 +4392,7 @@ Failed to move the file %1 to trash, cause: %2 - Error al mover el archivo %1 a la papelera, causa: %2 + @@ -4384,8 +4411,8 @@ - Copy or Cut File failed, cause: %1 - Error al copiar o cortar el archivo, causa: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4444,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Error al renombrar el archivo - + Failed to create the directory Error al crear la capeta - + Failed to create the file Error al crear el archivo - + link file error Fallo el enlace del archivo - - + + Failed to modify file permissions - Error al modificar los permisos del archivo + @@ -4455,36 +4482,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - &Pegar + Paste + Pegar - Cu&t - Co&tar + Cut + Cortar - &Copy - &Copiar + Copy + Copiar dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Abrir + Open + Abrir - Rena&me - Reno&mbrar + Rename + Renombrar - &Delete - &Borrar + Delete + Borrar @@ -4557,11 +4584,6 @@ Open in terminal Abrir en la terminal - - - Reverse select - Selección inversa - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4601,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar a - - Bluetooth - Bluetooth - - - + Create link Crear enlace - + Send to desktop Enviar al escritorio @@ -4602,43 +4619,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Compartir + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Abrir + + Open + Abrir - + Open in new window Abrir en una ventana nueva - + Open in new tab Abrir en una nueva pestaña - + Cancel sharing Dejar de compartir - - P&roperties - P&ropiedades + + Properties + Propiedades dfmplugin_myshares::MyShares - + My Shares Uso compartido @@ -4683,7 +4705,7 @@ No hay archivos para grabar - + Unable to burn. Not enough free space on the target disk. No se puede grabar. No hay suficiente espacio libre en el disco de destino. @@ -4691,58 +4713,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Información básica - + Size Tamaño - + Contains Contiene - + Type Tipo - + Location Ubicación - + Time created Fecha de creación - + Time accessed Fecha de acceso - + Time modified Fecha de modificación - + Hide this file Ocultar - - + + %1 item %1 elemento - + %1 items %1 elementos @@ -4763,27 +4785,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Para la seguridad secreta - + For Government Para el gobierno - + For Enterprise Para empresas - + Bit bits - + Available Disponible @@ -4791,47 +4813,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Equipo - + Basic Info Información básica - + Computer name Nombre del equipo - + Version Versión - + Edition Edición - + OS build Compilación del OS - + Type Tipo - + Processor Procesador - + Memory Memoria @@ -4874,14 +4896,6 @@ %1 archivo(s), %2 carpeta(s) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - %1 no están permitidos - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4915,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - P&ropiedades + Properties + Propiedades dfmplugin_recent::Recent - + + Recent Reciente @@ -4916,17 +4931,17 @@ dfmplugin_recent::RecentManager - + Path Ruta - + Last access Ultimo acceso - + Recent Reciente @@ -4957,127 +4972,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Buscar - + File Type: Tipo de archivo: - + File Size: Tamaño del archivo: - + Time Modified: Fecha de modificación: - + Time Accessed: Fecha de acceso: - + Time Created: Fecha de creación: - + Reset Reiniciar - + All subdirectories Subcarpetas - + Current directory Carpeta actual - + Application Aplicación - + Video Vídeo - + Audio Audio - + Image Imagen - + Archive Archivo - + Text Texto - + Executable Ejecutable - + Backup file Archivo de respaldo - + Today Hoy - + Yesterday Ayer - + This week Esta semana - + Last week La semana pasada - + This month Este mes - + Last month El mes pasado - + This year Este año - + Last year El año pasado @@ -5085,31 +5100,15 @@ dfmplugin_search::Search - - + Search Buscar - - - Auto index internal disk - Autoindexar disco interno - - - - Index external storage device after connected to computer - Indexar unidades externas después de conectar al equipo - - - - Full-Text search - Buscar texto completo - dfmplugin_search::SearchHelper - + Path Ruta @@ -5117,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir ubicación del archivo - + Select all Seleccionar todo - + Path Ruta @@ -5135,42 +5134,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Acceso rápido - + Partitions Particiones - + Network Red - + Tag Etiqueta - + + Bookmark + Marcadores + + + Other Otros - + Unknown Group Grupo desconocido + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Equipos en LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Abrir + Open + Abrir @@ -5184,8 +5196,8 @@ - P&roperties - P&ropiedades + Properties + Propiedades @@ -5219,7 +5231,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5227,7 +5239,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir ubicación del archivo @@ -5277,66 +5289,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Conectarse al servidor - - - + + + Clear History Borrar historial - + Unfavorite Quitar favorito - - Error - Error - - - - Unable to favorite illegitimate url! - ¡No se puede marcar la URL invalida como favorita! - - - + Cancel button Cancelar - + Connect button Conectar - + Charset Encoding Codificación de caracteres - + Default Por defecto - + My Favorites Mis favoritos: - + No favorites yet Aun no hay favoritos - + Favorite Agregar favorito @@ -5476,12 +5478,12 @@ dfmplugin_trash::TrashHelper - + Source Path Ruta de origen - + Time deleted Fecha de borrado @@ -5489,27 +5491,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar todo - + Empty trash Vaciar papelera - + Source path Ruta de origen - + Time deleted Fecha de borrado @@ -5517,7 +5519,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papelera @@ -5530,17 +5532,17 @@ Papelera - + item elemento - + items elementos - + Contains %1 %2 Contiene %1 %2 @@ -5722,42 +5724,42 @@ dfmplugin_vault::BasicWidget - + Basic info Información básica - + Size Tamaño - + Contains Contiene - + Type Tipo - + Location Ubicación - + Time created Fecha de creación - + Time accessed Fecha de acceso - + Time locked Fecha de bloqueo @@ -5988,7 +5990,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Cifrar la bóveda de archivos @@ -6009,19 +6011,19 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue - - - + + + Encrypt Cifrar - + Failed to create file vault: %1 Error al crear la bóveda de archivos: %1 - + OK Aceptar @@ -6072,7 +6074,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Establecer la contraseña de la bóveda @@ -6098,7 +6100,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols 8 o más caracteres, contener A-Z, a-z, 0-9, y símbolos @@ -6133,8 +6135,8 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue Siguiente - - + + Passwords do not match Las contraseñas no coinciden @@ -6142,7 +6144,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultActiveStartView - + File Vault Bóveda de archivos @@ -6192,7 +6194,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultHelper - + Vault Bóveda @@ -6202,7 +6204,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue ¡La bóveda no está disponible porque cryfs no está instalado! - + A task is in progress, so it cannot perform your operation Tarea en progreso, no se puede realizar su operación @@ -6210,122 +6212,99 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_vault::VaultPropertyDialog - + My Vault Mi bóveda - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Cancelar - - - - Delete - Borrar - - - - Delete File Vault - Borrar bóveda de archivos - - - - Failed to delete file vault - Error al borrar la bóveda de archivos - - - - OK - Aceptar - - - - Once deleted, the files in it will be permanently deleted - Una vez borrados, estos archivos no pueden ser recuperados - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Una vez borrados, estos archivos no pueden ser recuperados - - - + Password Contraseña - + Password hint: %1 Indicio de contraseña: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Cancelar - - - - Delete - Borrar + + Input the 32-digit recovery key + Introduzca la clave de recuperación de 32 dígitos + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Borrar bóveda de archivos - - Wrong password - Contraseña incorrecta + + Once deleted, the files in it will be permanently deleted + Una vez borrados, estos archivos no pueden ser recuperados - - Failed to delete file vault - Error al borrar la bóveda de archivos + + Cancel + button + Cancelar - - OK - Aceptar + + Use Key + button + Usar clave - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Introduzca la clave de recuperación de 32 dígitos + + Delete + button + Borrar - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Quitando... - + + OK + button Aceptar - - Delete File Vault - Borrar bóveda de archivos + + Wrong password + Contraseña incorrecta - + + Wrong recovery key + Clave de recuperación incorrecta + + + + Failed to delete file vault + Error al borrar la bóveda de archivos + + + Deleted successfully Borrado correctamente + + + Failed to delete + Error al borrar + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6314,16 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue Mi bóveda - + File Vault Bóveda de archivos + + + + Vault + Bóveda + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6336,22 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_workspace::FileViewModel - + Name Nombre - + Time modified Fecha de modificación - + Size Tamaño - + Type Tipo @@ -6382,7 +6367,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 no están permitidos @@ -6398,50 +6383,45 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Mostrar como - + Name Nombre - + Time modified Fecha de modificación - + Size Tamaño - + Type Tipo - + Icon Icono - + List Lista - - - Tree - Árbol - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6434,7 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue filedialog_core::FileDialog - + Save button Guardar @@ -6463,13 +6443,13 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue filedialog_core::FileDialogStatusBar - + Save button Guardar - + Open button Abrir @@ -6507,112 +6487,112 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue plugin_filepreview::DDciIconPreview - + Available sizes: Tamaños disponibles: - + Custom Size Tamaño personalizado - + Device Pixel Ratio: Proporción de píxeles del dispositivo: - + Theme: Tema: - + Light Claro - + Dark Oscuro - + Mode: Modo: - + Normal Normal - + Disabled Deshabilitado - + Hovered Al pasar por encima - + Pressed Al pulsar - + Palette Paleta - + Current mode icon does not support the palette El modo del icono actual no es compatible con la paleta - + Foreground: Primer plano: - + Background: Segundo plano: - + Highlight: Destacado: - + HighlightForeground: Destacar en primer plano: - + Background Color: Color de fondo: - + White Blanco - + Black Negro - + Transparent Transparente - + Custom Personalizado @@ -6644,24 +6624,24 @@ borre los archivos de ese directorio e intente desbloquear la caja fuerte de nue plugin_filepreview::MusicMessageView - + Artist: Artista: - + Album: Álbum: - + unknown artist Artista desconocido - + unknown album Álbum desconocido - \ No newline at end of file + diff --git a/translations/dde-file-manager_et.ts b/translations/dde-file-manager_et.ts index 8e9968e496..1b1bd79a2f 100644 --- a/translations/dde-file-manager_et.ts +++ b/translations/dde-file-manager_et.ts @@ -15,104 +15,99 @@ Application - + File Manager Failihaldur - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Töölaud + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Ketas + + Desktop + Töölaud + + + DiskControlWidget - - Open - Ava + + Disks + Kettad - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Ketas - - Operation failed - + + Open + Ava - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Tundmatu @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Süsteemiketas - + Data Disk Andmeketas - + Blank %1 Disc - - - + + + Unknown Tundmatu - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Kodu @@ -228,6 +223,7 @@ + Desktop Töölaud @@ -237,6 +233,7 @@ + Videos Videod @@ -246,6 +243,7 @@ + Music Muusika @@ -255,6 +253,7 @@ + Pictures Pildid @@ -264,6 +263,7 @@ + Documents Dokumendid @@ -273,6 +273,7 @@ + Downloads Allalaadimised @@ -281,6 +282,7 @@ + Trash Prügikast @@ -291,11 +293,12 @@ + Recent Hiljutine - + @@ -303,7 +306,7 @@ Automaatne ühendamine - + @@ -316,46 +319,47 @@ %1 ülesannet on töös - + %1 item %1 kirje - + %1 items %1 kirjet - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty Kaust on tühi - + Loading... Laadimine... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Arvuti @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Silt @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Otsetee - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bitt + Access denied + Confirm button Kinnita + + + The device has been safely removed + + - - + + - - - + + + Open in new window Ava uues aknas @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Ava uues aknas @@ -953,8 +968,8 @@ - - + + Properties Omadused @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Kustuta - + This action cannot be undone Seda tegevust ei saa tühistada - + How do you want to use this disc? - + Burn image button Kirjuta pilt - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Tundmatu tõrge @@ -1179,42 +1194,42 @@ Kirjeid: %1 - + Orange Oraanž - + Red Punane - + Purple Violetne - + Navy-blue - + Azure Azure - + Green Roheline - + Yellow Kollane - + Gray Hall @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Kohalik ketas - + Removable disk Eemaldatav ketas - + DVD DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device Apple mobiilne seade - + Unknown device Tundmatu seade - + Remove button Eemalda - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash Tühjenda prügikast - + Location Asukoht @@ -1509,7 +1524,7 @@ Otsimine... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Liik - + Time accessed - + Time modified Muutmise aeg - + Time created Loomise kellaaeg - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Ikooni suurus @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 kirjet valitud @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Tegevus ebaõnnestus! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Loobu - + Format button Vorming - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button Käivita - - + + Run in terminal button Käivita terminalis - + Display button Vaade - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Kustuta - + Permanently delete %1? Kas kustutada jäädavalt %1? - - + + This action cannot be undone Seda tegevust ei saa tühistada - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Tühi - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Loobu - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? Kas sa soovid seda otseteed kustutada? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Muud - + Close Sulge - + Close current tab - + Back Tagasi - + Forward Edasi - + Switch to next tab - + Switch to previous tab - + Next file Järgmine fail - + Previous file Eelmine fail - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Algne kaust - + Contains: %1 Sisaldab: %1 - + Original file Algne fail - + Size: %1 Suurus: %1 - + Target folder Sihtkaust - - + In data statistics ... - + Target file Sihtfail @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button Jätka - - + + Replace button Asenda - + Do not ask again Ära küsi uuesti - + Retry button Proovi uuesti - + Merge button Liida @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Loobu - + Remove button Eemalda @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Arvuti - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Arvuti - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Minu kaustad - + Disks Kettad @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space Kogumaht - + File system Failisüsteem - + Contains Sisaldab - + Free space Vaba ruumi - + %1 items %1 kirjet - + %1 item %1 kirje @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Suurus - + Dimension Mõõdud - + Duration Kestus - + Type Liik - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Aseta - Cu&t - + Cut + Lõika - &Copy - + Copy + Kopeerimine dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Ava - Rena&me - + Rename + Nimeta ümber - &Delete - + Delete + Kustuta @@ -4557,11 +4579,6 @@ Open in terminal Ava terminalis - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Saada - - Bluetooth - - - - + Create link Loo link - + Send to desktop Saada töölauale @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Ava - + Open in new window Ava uues aknas - + Open in new tab Ava uues aknas - + Cancel sharing Tühista jagamine - - P&roperties - + + Properties + Omadused dfmplugin_myshares::MyShares - + My Shares Minu jagamised @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Suurus - + Contains Sisaldab - + Type Liik - + Location Asukoht - + Time created Loomise kellaaeg - + Time accessed - + Time modified Muutmise aeg - + Hide this file Peida see fail - - + + %1 item %1 kirje - + %1 items %1 kirjet @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bitt - + Available Saadaval @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Arvuti - + Basic Info Põhiinfo - + Computer name - + Version Versioon - + Edition - + OS build - + Type Liik - + Processor Protsessor - + Memory Mälu @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Omadused dfmplugin_recent::Recent - + + Recent Hiljutine @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Asukoht - + Last access Viimane ligipääs - + Recent Hiljutine @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Otsi: - + File Type: Faili liik: - + File Size: Faili suurus: - + Time Modified: Muutmise aeg: - + Time Accessed: - + Time Created: - + Reset Taasta - + All subdirectories Kõik alamkaustad - + Current directory Praegune kaust - + Application Rakendus - + Video Video - + Audio Heli - + Image Pilt - + Archive Arhiiv - + Text Tekst - + Executable Käivitatav - + Backup file Varukoopia fail - + Today Täna - + Yesterday Eile - + This week See nädal - + Last week Viimane nädal - + This month See kuu - + Last month Eelmine kuu - + This year See aasta - + Last year Viimane aasta @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Otsi - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Asukoht @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Ava faili asukoht - + Select all Vali kõik - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Silt - + + Bookmark + + + + Other Muu - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Ava @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Silt @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Ava faili asukoht @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Loobu - + Connect button Ühenda - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted Kustutamise aeg @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Taasta - + Restore all Taasta kõik - + Empty trash - + Source path - + Time deleted Kustutamise aeg @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Prügikast @@ -5529,17 +5526,17 @@ Prügikast - + item kirje - + items kirjet - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Suurus - + Contains Sisaldab - + Type Liik - + Location Asukoht - + Time created Loomise kellaaeg - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Järgmine - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Parool - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Parool - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Loobu - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Kustuta - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sorteeri - + Display as Näita kui - + Name Nimi - + Time modified Muutmise aeg - + Size Suurus - + Type Liik - + Icon Ikoon - + List Nimekiri - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Salvesta @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Salvesta - + Open button Ava @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_fa.ts b/translations/dde-file-manager_fa.ts index 834fe22772..ce3f17379a 100644 --- a/translations/dde-file-manager_fa.ts +++ b/translations/dde-file-manager_fa.ts @@ -15,104 +15,99 @@ Application - + File Manager فایل منیجر - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. مدیر فایل یک برنامه قدرتمند برای مدیریت فایلها، با قابلیت جستجو، کپی کردن، دارای زباله دان، فشرده سازی و استخراج فایل، نمایش مشخصات فایلها و دیگر قابلیت‌های سودمند است. - DesktopMain + DAttachedProtocolDevice - - Desktop - دسکتاپ + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 حجم - DiskMountPlugin + DesktopMain - - Disk - دیسک + + Desktop + دسکتاپ + + + DiskControlWidget - - Open - باز کردن + + Disks + دیسک ها - - Eject all - خارج کردن همه + + The device was not safely removed + دستگاه به شکل ایمن جدا نشد - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + دفعه دیگر، روی «جدا کردن امن» کلیک کنید و سپس آن را جدا کنید. - - eject - + + Disk is busy, cannot unmount now + دیسک مشغول است ، اکنون نمی توانید آن را جدا کنید - - unmount - + + The device is busy, cannot eject now + دستگاه مشغول است، امکان خارج کردن آن وجود ندارد + + + DiskMountPlugin - - - remove - + + Disk + دیسک - - Operation failed - + + Open + باز کردن - - Device (%1) is busy, cannot %2 now. - + + Eject all + خارج کردن همه FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown ناشناخته @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk دیسک سیستم - + Data Disk دیسک داده - + Blank %1 Disc خالی %1 دیسک - - - + + + Unknown ناشناخته - + %1 Drive %1 درایو - + %1 Encrypted %1 رمزگذاری شده - - + %1 Volume %1 حجم - + + Scanning the device, stop it? در حال جستجوی دستگاه، متوقف شود؟ - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home خانه @@ -228,6 +223,7 @@ + Desktop دسکتاپ @@ -237,6 +233,7 @@ + Videos ویدئو ها @@ -246,6 +243,7 @@ + Music موسیقی @@ -255,6 +253,7 @@ + Pictures تصاویر @@ -264,6 +263,7 @@ + Documents اسناد @@ -273,6 +273,7 @@ + Downloads دانلودها @@ -281,6 +282,7 @@ + Trash زباله دان @@ -291,11 +293,12 @@ + Recent اخیر - + @@ -303,7 +306,7 @@ سوار کردن خودکار - + @@ -316,46 +319,47 @@ %1 کار در حال انجام است - + %1 item %1 مورد - + %1 items %1 مورد - + Unable to find the original file - - + + File has been moved or deleted فایل منتقل شده یا حذف شده است - - + + + You do not have permission to access this folder شما اجازه دسترسی به این پوشه را ندارید - - + + You do not have permission to traverse files in it - - + + Folder is empty پوشه خالی است - + Loading... در حال بارگذاری... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer رایانه @@ -419,8 +424,9 @@ - - + + + Computers in LAN رایانه های در LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag برچسب @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button توقف - + Shortcut میانبر - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ بیت + Access denied دسترسی رد شد + Confirm button تایید + + + The device has been safely removed + دستگاه به شکل ایمن جدا شد + - - + + - - - + + + Open in new window باز کردن درپنجره جدید @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab باز کردن در زبانه جدید @@ -953,8 +968,8 @@ - - + + Properties خصوصیات @@ -990,7 +1005,7 @@ - + Create symlink ایجاد symlink @@ -1077,70 +1092,70 @@ افزودن به دیسک - + Are you sure you want to erase all data on the disc? آیا مطمئن هستید که می خواهید تمام داده های موجود در دیسک را پاک کنید؟ - + Erase button پاک کردن - + This action cannot be undone این عملکرد قابل برگشت نیست - + How do you want to use this disc? چگونه می خواهید از این دیسک استفاده کنید؟ - + Burn image button رایت کردن ایمیج - + Burn files button رایت کردن فایل - + %1 is a duplicate file. %1 یک فایل تکراری است . - + Insufficient disc space. فضای دیسک کافی نیست. - + Lost connection to drive. اتصال به درایو از بین رفته است. - + The CD/DVD drive is not ready. Try another disc. درایو CD / DVD آماده نیست. دیسک دیگری را امتحان کنید. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. درایو CD / DVD مشغول است. از برنامه ایی که در حال استفاده از درایو است خارج شده و درایو را دو باره قرار دهید. - + Invalid volume name - + Unknown error خطای ناشناخته @@ -1179,42 +1194,42 @@ موارد:%1 - + Orange نارنجی - + Red قرمز - + Purple بنفش - + Navy-blue آبی-دریا - + Azure لاجوردی - + Green سبز - + Yellow زرد - + Gray خاکستری @@ -1290,76 +1305,76 @@ - + User directory - + Local disk دیسک محلی - + Removable disk دیسک قابل جابجایی - + DVD DVD - + Network shared directory دایرکتوری مشترک شبکه - - + + Android mobile device دستگاه تلفن همراه اندروید - + Apple mobile device دستگاه موبایل اپل - + Unknown device دستگاه ناشناخته - + Remove button برچیدن - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history پاک کردن تاریخ اخیر - - - + + + Source path مسیر منبع @@ -1404,12 +1419,12 @@ - + Empty Trash خالی کردن زباله دان - + Location مکان @@ -1509,7 +1524,7 @@ در حال جستجو... - + My Vault کیف من @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized مجاز نیست - - + + In trial period در بازه آزمایشی - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type نوع - + Time accessed زمان دسترسی - + Time modified زمان تغییر یافتن - + Time created زمان ایجاد شدن - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size اندازه آیکون @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 مورد انتخاب شده @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button باشه - + Operation failed! عملیاتی انجام نشد! @@ -2529,191 +2554,191 @@ پوشه هدف درون پوشه منبع قرار دارد! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button لغو - + Format button فرمت - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? آیا می خواهید %1 را اجرا کنید یا محتوای آن را نمایش دهید؟ - + It is an executable text file. این یک فایل متنی قابل اجرا است. - - - + + + Run button اجرا - - + + Run in terminal button اجرا در ترمینال - + Display button نمایش - + Do you want to run %1? آیا می خواهید %1 را اجرا کنید ؟ - + It is an executable file. این یک فایل قابل اجرا است. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? به صورت دائمی %1 را حذف می کنید؟ - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button حذف - + Permanently delete %1? به صورت دائمی %1 را حذف می کنید؟ - - + + This action cannot be undone این عملکرد قابل برگشت نیست - + Are you sure you want to empty %1 item? آیا مطمئن هستید که می خواهید %1 مورد را خالی کنید؟ - + Are you sure you want to empty %1 items? Are you sure you want to empty %1 items? - + Empty خالی - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only بازیابی %1 فایل انجام نشد ، پوشه هدف فقط خواندنی است - + Failed to restore %1 files, the target folder is read-only بازیابی %1 فایل انجام نشد ، پوشه هدف فقط خواندنی است - + "%1" already exists, please use another name. "%1" در حال حاضر وجود دارد ، لطفاً از نام دیگری استفاده کنید. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel لغو - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 که این میانبر به آن اشاره دارد تغییر یافته یا جابجا شده است - + Do you want to delete this shortcut? آیا می خواهید این میانبر را حذف کنید؟ - + This file is not executable, do you want to add the execute permission and run? این فایل قابل اجرا نیست ، آیا می خواهید مجوز اجرای را اضافه کنید و آن را اجرا کنید؟ - + The selected files contain system file/directory, and it cannot be deleted فایل های انتخاب شده حاوی فایل / فهرست سیستم هستند و نمی توان آن را حذف کرد @@ -2841,276 +2866,278 @@ برای رمزگشایی دیسک ، رمز ورود را وارد کنید - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others سایرین - + Close بستن - + Close current tab بستن زبانه جاری - + Back بازگشت - + Forward جلو - + Switch to next tab رفتن به زبانه بعدی - + Switch to previous tab رفتن به زبانه قبلی - + Next file فایل بعدی - + Previous file فایل قبلی - + Switch tab by specified number between 1 to 8 زبانه را با شماره مشخص شده بین 1 تا 8 تغییر دهید @@ -3394,43 +3416,42 @@ - + Time modified: %1 زمان ویرایش: %1 - + Original folder پوشه اصلی - + Contains: %1 شامل: %1 - + Original file فایل اصلی - + Size: %1 اندازه: %1 - + Target folder پوشه هدف - - + In data statistics ... - + Target file فایل هدف @@ -3445,37 +3466,37 @@ - + Keep both button هر دو را نگه دار - + Skip button پرش - - + + Replace button جایگزین - + Do not ask again دوباره نپرس - + Retry button دوباره امتحان کنید - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button لغو - + Remove button برچیدن @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer رایانه - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer رایانه - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories دایرکتوری های من - + Disks دیسک ها @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type نوع دستگاه - + Total space فضای کل - + File system فایل سیستم - + Contains شامل - + Free space فضای خالی - + %1 items %1 مورد - + %1 item %1 مورد @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ حجم - + Dimension ابعاد - + Duration مدت - + Type نوع - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + چسباندن - Cu&t - + Cut + برش - &Copy - + Copy + کپی dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + باز کردن - Rena&me - + Rename + تغییرنام - &Delete - + Delete + حذف @@ -4557,11 +4579,6 @@ Open in terminal باز کردن در ترمینال - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to ارسال به - - Bluetooth - - - - + Create link ایجاد لینک - + Send to desktop ارسال به دسکتاپ @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + باز کردن - + Open in new window باز کردن درپنجره جدید - + Open in new tab باز کردن در زبانه جدید - + Cancel sharing لغو اشتراک گذاری - - P&roperties - + + Properties + خصوصیات dfmplugin_myshares::MyShares - + My Shares اشتراک گذاری ها من @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. امکان رایت دیسک نیست. فضای کافی روی دیسک وجود ندارد. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size حجم - + Contains شامل - + Type نوع - + Location مکان - + Time created زمان ایجاد شدن - + Time accessed زمان دسترسی - + Time modified زمان تغییر یافتن - + Hide this file مخفی کردن این فایل - - + + %1 item %1 مورد - + %1 items %1 مورد @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit بیت - + Available در دسترس @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer رایانه - + Basic Info اطلاعات پایه - + Computer name - + Version نسخه - + Edition - + OS build - + Type نوع - + Processor پردازنده - + Memory حافظه @@ -4873,14 +4890,6 @@ %1 فایل ، %2 پوشه - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + خصوصیات dfmplugin_recent::Recent - + + Recent اخیر @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path مسیر - + Last access آخرین دسترسی - + Recent اخیر @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: جستجو: - + File Type: نوع فایل: - + File Size: حجم فایل: - + Time Modified: زمان تغییر یافتن: - + Time Accessed: - + Time Created: - + Reset باز نشاندن - + All subdirectories کلیه زیرشاخه ها - + Current directory دایرکتوری کنونی - + Application برنامه - + Video ویدئو - + Audio صوت - + Image تصویر - + Archive بایگانی - + Text متن - + Executable قابل اجرا - + Backup file فایل پشتیبان - + Today امروز - + Yesterday دیروز - + This week این هفته - + Last week هفته گذشته - + This month این ماه - + Last month ماه گذشته - + This year امسال - + Last year سال گذشته @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search جستجو - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path مسیر @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location باز کردن مکان فایل - + Select all انتخاب همه - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag برچسب - + + Bookmark + + + + Other سایر - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + رایانه های در LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + باز کردن @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag برچسب @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location باز کردن مکان فایل @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server اتصال به سرور - - - + + + Clear History پاک کردن تاریخچه - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button لغو - + Connect button اتصال - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path مسیر منبع - + Time deleted زمان حذف شد @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore بازیابی - + Restore all بازگرداندن همه - + Empty trash - + Source path مسیر منبع - + Time deleted زمان حذف شد @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash زباله دان @@ -5529,17 +5526,17 @@ زباله دان - + item مورد - + items موارد - + Contains %1 %2 شامل %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size حجم - + Contains شامل - + Type نوع - + Location مکان - + Time created زمان ایجاد شدن - + Time accessed زمان دسترسی - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK باشه @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ بعدی - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault فایل والت @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault کیف من - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + کلمه عبور - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - کلمه عبور - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + لغو - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + حذف - - Failed to delete file vault + + Removing... - + + OK - + button + باشه - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + کلید بازیابی نادرست است - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ کیف من - + File Vault فایل والت + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by مرتب سازی بر اساس - + Display as نمایش به عنوان - + Name اسم - + Time modified زمان تغییر یافتن - + Size حجم - + Type نوع - + Icon آیکون - + List لیست - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button ذخیره @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button ذخیره - + Open button باز کردن @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_fi.ts b/translations/dde-file-manager_fi.ts index 1384957e68..58f9085a95 100644 --- a/translations/dde-file-manager_fi.ts +++ b/translations/dde-file-manager_fi.ts @@ -15,104 +15,99 @@ Application - + File Manager Tiedostohallinta - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Tiedostohallinta on tehokas ja helppokäyttöinen tiedostojen hallintatyökalu, joka sisältää etsinnän, kopioinnin, roskakorin, pakkaamisen/purkamisen, tiedosto-ominaisuudet ja muut hyödylliset toiminnot. - DesktopMain + DAttachedProtocolDevice - - Desktop - Työpöytä + + %1 on %2 + %1 / %2 - DeviceList + DeepinStorage - - Disks - Levyt + + + %1 Volume + %1 Levy - DiskMountPlugin + DesktopMain - - Disk - Levy + + Desktop + Työpöytä + + + DiskControlWidget - - Open - Avaa + + Disks + Levyt - - Eject all - Irroita kaikki + + The device was not safely removed + Laitetta ei poistettu turvallisesti - - - DockItemDataManager - - The device has been safely removed - Laite on poistettu turvallisesti + + Click "Safely Remove" and then disconnect it next time + Napsauta ensin "Poista turvallisesti" ja irrota se sitten - - eject - poista + + Disk is busy, cannot unmount now + Levy on varattu, ei voi irrottaa - - unmount - irrota + + The device is busy, cannot eject now + Laite on varattu, eikä sitä voi avata + + + DiskMountPlugin - - - remove - poista + + Disk + Levy - - Operation failed - Toimenpide epäonnistui + + Open + Avaa - - Device (%1) is busy, cannot %2 now. - Laite (%1) on varattu, %2 ei onnistu juuri nyt. + + Eject all + Irroita kaikki FileDialogHandle - + All Files Kaikki tiedostot - - FileOperateBaseWorker - - - The file name or the path is too long! - Tiedostonimi tai polku on liian pitkä! - - MimeTypeDisplayManager - + Unknown Tuntematon @@ -128,89 +123,88 @@ QObject - + need authorization to access pääsyyn tarvitaan lupa - + Can't verify the identity of %1. Henkilöllisyyttä %1 ei voida vahvistaa. - + This happens when you log in to a computer the first time. Näin tapahtuu, kun kirjaudut tietokoneeseen ensimmäisen kerran. - + The identity sent by the remote computer is Etätietokoneen lähettämät tunnistetiedot ovat - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jos haluat olla täysin varma, että on turvallista jatkaa, ota yhteyttä järjestelmänvalvojaan. - - - + + + System Disk Järjestelmä - + Data Disk Kiintolevy - + Blank %1 Disc Tyhjä %1 levy - - - + + + Unknown Tuntematon - + %1 Drive %1 asema - + %1 Encrypted %1 salattu - - + %1 Volume %1 Levy - + + Scanning the device, stop it? Skannaa laitetta, pysäytä se? - + Unmount failed Irrotus epäonnistui - + Cannot stop scanning device Laitteen skannausta ei voi pysäyttää - - + %1 on %2 %1 / %2 @@ -219,6 +213,7 @@ + Home Koti @@ -228,6 +223,7 @@ + Desktop Työpöytä @@ -237,6 +233,7 @@ + Videos Videot @@ -246,6 +243,7 @@ + Music Musiikki @@ -255,6 +253,7 @@ + Pictures Kuvat @@ -264,6 +263,7 @@ + Documents Asiakirjat @@ -273,6 +273,7 @@ + Downloads Lataukset @@ -281,6 +282,7 @@ + Trash Roskakori @@ -291,11 +293,12 @@ + Recent Historia - + @@ -303,7 +306,7 @@ Liitä automaattisesti - + @@ -316,46 +319,47 @@ %1 käynnissä olevaa tehtävää - + %1 item %1 kohde - + %1 items %1 kohdetta - + Unable to find the original file Alkuperäistä tiedostoa ei löydy - - + + File has been moved or deleted Tiedosto on siirretty tai poistettu - - + + + You do not have permission to access this folder Sinulla ei ole oikeutta käyttää tätä kansiota - - + + You do not have permission to traverse files in it Sinulla ei ole käyttöoikeutta tiedostoihin - - + + Folder is empty Kansio on tyhjä - + Loading... Lataa... @@ -404,7 +408,7 @@ - + Built-in disks Kiinteät levyt @@ -412,6 +416,7 @@ + Computer Tietokone @@ -419,8 +424,9 @@ - - + + + Computers in LAN Lähiverkossa @@ -428,7 +434,7 @@ - + Loop partitions Silmukkaosiot @@ -436,8 +442,7 @@ - - + Mounted sharing folders Asetetut jakokansiot @@ -445,6 +450,7 @@ + My shares Jaetut kansiot @@ -452,7 +458,7 @@ - + Network Verkko @@ -460,7 +466,7 @@ - + Mounted partitions and discs Kiinnitetyt osiot ja levyt @@ -468,7 +474,7 @@ - + Partitions Osiot @@ -476,7 +482,7 @@ - + Quick access Nopea pääsy @@ -484,7 +490,7 @@ - + Tag Tunniste @@ -492,7 +498,7 @@ - + Added tags Lisätyt tunnisteet @@ -501,13 +507,13 @@ Vault - Holvi + Tietovarasto - + Keep showing the mounted Samba shares Näytä käyttöönotetut Samba-jaetut kansiot @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Seis - + Shortcut Pikakuvake - + This system wallpaper is locked. Please contact your admin. Järjestelmän taustakuva on lukittu. Ota yhteyttä järjestelmänvalvojaasi. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopio) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopio %1) @@ -901,26 +909,33 @@ Bitti + Access denied Pääsy evätty + Confirm button Vahvista + + + The device has been safely removed + Laite on poistettu turvallisesti + - - + + - - - + + + Open in new window Avaa uudessa ikkunassa @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Avaa uudessa välilehdessä @@ -953,8 +968,8 @@ - - + + Properties Ominaisuudet @@ -990,7 +1005,7 @@ Uusi tiedosto - + Create symlink Luo symlinkki @@ -1077,70 +1092,70 @@ Lisää levylle - + Are you sure you want to erase all data on the disc? Haluatko varmasti poistaa kaikki levyllä olevat tiedot? - + Erase button Tyhjennä - + This action cannot be undone Tätä toimintoa ei voi peruuttaa - + How do you want to use this disc? Miten haluat käyttää tätä levyä? - + Burn image button Kirjoita levykuva - + Burn files button Kirjoita tiedostot - + %1 is a duplicate file. %1 on tiedoston kaksoiskappale. - + Insufficient disc space. Levytila ei riitä. - + Lost connection to drive. Asemaan kadonnut yhteys. - + The CD/DVD drive is not ready. Try another disc. CD/DVD-asema ei ole valmis. Kokeile toista levyä. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD-asema on varattu. Poistu ohjelmasta aseman avulla ja kytke asema uudelleen. - + Invalid volume name Virheellinen taltion nimi - + Unknown error Tuntematon virhe @@ -1179,42 +1194,42 @@ Kohdetta: %1 - + Orange Oranssi - + Red Punainen - + Purple Violetti - + Navy-blue Sininen - + Azure Taivaansininen - + Green Vihreä - + Yellow Keltainen - + Gray Harmaa @@ -1290,76 +1305,76 @@ Ei oikeuksia - + User directory Käyttäjän hakemisto - + Local disk Paikallinen levy - + Removable disk Irroitettava levy - + DVD DVD - + Network shared directory Lähiverkon jaettu hakemisto - - + + Android mobile device Android mobiililaite - + Apple mobile device Apple mobiililaite - + Unknown device Tuntematon laite - + Remove button Poista - + Do you want to remove this item? Haluatko poistaa tämän kohteen? - + Do yout want to remove %1 items? Haluatko poistaa %1 kohdetta? - + It does not delete the original files Se ei poista alkuperäisiä tiedostoja - + Clear recent history Tyhjennä historia - - - + + + Source path Lähteen polku @@ -1404,12 +1419,12 @@ Roskakorin kohteita ei voi avata, palauta se ensin - + Empty Trash Tyhjennä roskakori - + Location Sijainti @@ -1509,14 +1524,14 @@ Etsitään... - + My Vault - Minun holvi + Minun tietovarasto Create Vault - Luo holvi + Luo tietovarasto @@ -1556,7 +1571,7 @@ Delete File Vault - Poista tiedostoholvi + Poista tietovarasto @@ -1686,27 +1701,27 @@ Device disconnected - Laite irrotettu + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - ID=%1, Päivämäärä=%2, Poltin=%3, Levytyyppi=%4, Tulos=%5, Käyttäjä=%6, Tiedosto=%7, Koko=%8, Tyyppi=%9 + Success - Onnistui + Failed - Epäonnistui + - + Sidebar - Sivupalkki + @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - Ei hyväksytty - - - - - In trial period - Koeaika - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized Ei hyväksytty - - + + In trial period Koeaika @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Uusi kokoelma @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Järjestä työpöytä - + Desktop options Työpöydän asetukset - + Organize by Järjestä - + Custom collection Mukautettu kokoelma - + Type Tyyppi - + Time accessed Käytetty - + Time modified Muokattu - + Time created Luotu - + Create a collection Luo kokoelma + + + Display Size + Näytön koko + + + + Smaller + Pienempi + + + + Normal + Normaali + + + + Larger + Suurempi + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Työpöydän asetukset - + Auto arrange icons Järjestä kuvakkeet automaattisesti @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Näytön koko + + + Icon size Kuvakkeen koko @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Tiedostonhallinta päivitetään uuteen versioon, jonka aikana käynnissä olevat tehtävät lopetetaan. Haluatko päivittää nyt? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Työpöydän palvelut päivitetään uuteen versioon, jonka aikana käynnissä olevat tehtävät lopetetaan. Haluatko päivittää nyt? - + Update button Päivitä - + Cancel button Peruuta @@ -2360,7 +2385,7 @@ - + %1 item selected %1 kohde valittuna @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Toimenpide epäonnistui! @@ -2529,191 +2554,191 @@ Kohdekansio on lähdekansion sisällä! - + The passphrase is needed to access encrypted data on %1. Salasanaa tarvitaan salattujen tietojen käyttämiseen kohteessa %1. - - - - - - - - + + + + + + + + Cancel button Peruuta - + Format button Alusta - + To access the device, you must format the disk first. Are you sure you want to format it now? Laitteen käyttämiseksi sinun on ensin alustettava levy. Haluatko varmasti alustaa sen nyt? - + Do you want to run %1 or display its content? Haluatko suorittaa %1 :n tai näyttää sen sisällön? - + It is an executable text file. On suoritettava tekstitiedosto. - - - + + + Run button Suorita - - + + Run in terminal button Suorita päätteessä - + Display button Näyttö - + Do you want to run %1? Haluatko suorittaa %1? - + It is an executable file. On suoritettava tiedosto. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Valittua %1 ei voi siirtää roskakoriin. Haluatko poistaa ne pysyvästi? - + Permanently delete %1 items? Poista kohteet %1 pysyvästi? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Valittua "%1" ei voi siirtää roskakoriin. Haluatko poistaa pysyvästi? - - - + + + Delete button Poista - + Permanently delete %1? Poista %1 pysyvästi? - - + + This action cannot be undone Tätä toimintoa ei voi peruuttaa - + Are you sure you want to empty %1 item? Haluatko varmasti tyhjentää %1 kohteen? - + Are you sure you want to empty %1 items? Haluatko varmasti tyhjentää %1 kohdetta? - + Empty Tyhjennä - + Do you want to delete %1? Haluatko poistaa kohteen %1? - + Do you want to delete the selected %1 items? Haluatko poistaa valitut %1 kohdetta? - + Failed to restore %1 file, the target folder is read-only Tiedoston %1 palauttaminen epäonnistui, kohdekansio on vain luku -tilassa - + Failed to restore %1 files, the target folder is read-only Tiedostojen %1 palauttaminen epäonnistui, kohdekansio on vain luku -tilassa - + "%1" already exists, please use another name. "%1" on jo olemassa, käytä toista nimeä. - + Device or resource busy Laite tai resurssi varattu - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Tämä tiedosto piilotetaan, jos tiedoston nimen alussa on '.'. Haluatko piilottaa sen? - + Hide Piilota - + Cancel Peruuta - + Unable to access %1 Ei oikeuksia %1 - + %1 that this shortcut refers to has been changed or moved %1 pikakuvakkeen kohde on muutettu tai siirretty - + Do you want to delete this shortcut? Haluatko poistaa tämän pikakuvakkeen? - + This file is not executable, do you want to add the execute permission and run? Tätä tiedostoa ei voi suorittaa, haluatko lisätä suoritusluvan ja suorittaa? - + The selected files contain system file/directory, and it cannot be deleted Valitut tiedostot sisältävät järjestelmätiedoston / hakemiston, ei voi poistaa @@ -2841,278 +2866,280 @@ Syötä salasana levyn salaamiseksi - - dfmbase::RightValueWidget - - - Copy complete info - Kopioi täydelliset tiedot - - dfmbase::SettingBackend - + Always open folder in new window - Avaa kansio aina uudessa ikkunassa + - + Open file: - Avaa tiedosto: + - + Click - Paina + - + Double click - Paina kahdesti + - + New window and tab - Uusi ikkuna ja välilehti + - + Open from default window: - Avaa oletuksena ikkunassa: + - - + + Computer - Tietokone + - - + + Home - Koti + - - + + Desktop - Työpöytä + - - + + Videos - Video + - - + + Music - Musiikki + - - + + Pictures - Kuvat + - - + + Documents - Asiakirjat + - - + + Downloads - Lataukset + - + Open in new tab: - Avaa uudessa välilehdessä: + - + Current Directory - Nykyinen kansio + - + Files and folders - Tiedostot ja kansiot + - + Show hidden files - Näytä piilotiedostot + - + Show file extensions - Näytä tiedostopäätteet + - + Mix sorting of files and folders - Sekoita tiedostojen ja kansioiden lajittelu + - + Workspace - Työtila + - + View - Näytä + - + Default size: - Oletuskoko: + - + Extra small - Pienin + - + Small - Pieni + - + Medium - Keskikoko + - + Large - Suuri + - + Extra large - Suurin - - - - Tree - Puu + - + Default view: - Oletusnäkymä: + - + Icon - Kuvake + - + List - Lista - - - - Restore default view mode for all directories - Palauta oletusnäkymät kaikille hakemistoille + - - Restore default view mode - Palauta oletusnäkymä - - - + Thumbnail preview - Pikkukuvan esikatselu + - + Compressed file preview - Pakatun tiedoston esikatselu + - + Text preview - Tekstin esikatselu + - + Document preview - Asiakirjan esikatselu + - + Image preview - Kuvan esikatselu + - + Video preview - Videon esikatselu + - + Music preview - Musiikin esikuuntelu + - + The remote environment shows thumbnail previews - Lähiverkossa olevien pikkukuvien esikatselu + - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Pikkukuvien esikatselun käyttäminen lähiverkossa voi aiheuttaa hidasta latautumista tai jumittumista verkon nopeudesta riippuen. + - + Advanced - Lisäasetukset + + + + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + - + Mount - Liitä + - + Auto mount - Liitä automaattisesti + - + Open after auto mount - Avaa liittämisen jälkeen + + + + + Show item counts and sizes in the path of mounted MTP devices + - + Merge the entries of Samba shared folders - Yhdistä Samba jaossa kansioiden tiedot + - + Switching the entry display may lead to failed mounting - Näytön liitännän vaihtaminen voi johtaa epäonnistumiseen + - + Use the file chooser dialog of File Manager - Käytä tiedostonhallinnan valintaikkunaa + - + Ask for my confirmation when deleting files - Pyydä vahvistukseni tiedostoja poistettaessa + @@ -3274,56 +3301,51 @@ - Switch to tree view - Vaihda puunäkymään - - - Others Muut - + Close Sulje - + Close current tab Sulje nykyinen välilehti - + Back Takaisin - + Forward Eteenpäin - + Switch to next tab Siirry seuraavaan välilehteen - + Switch to previous tab Vaihda edelliseen välilehteen - + Next file Seuraava tiedosto - + Previous file Edellinen tiedosto - + Switch tab by specified number between 1 to 8 Vaihda välilehteä määrätyllä numerolla 1 ja 8 väliltä @@ -3394,43 +3416,42 @@ kohdetiedoston luonti %1. Info epäonnistui, näytä ristiriidan info-toiminto! - + Time modified: %1 Muokattu: %1 - + Original folder Alkuperäinen kansio - + Contains: %1 Sisältää: %1 - + Original file Alkuperäinen tiedosto - + Size: %1 Koko: %1 - + Target folder Kohde kansio - - + In data statistics ... - Datan tilastossa ... + - + Target file Kohde tiedosto @@ -3445,37 +3466,37 @@ Odota - + Keep both button Pidä molemmat - + Skip button Ohita - - + + Replace button Korvaa - + Do not ask again Älä kysy uudestaan - + Retry button Uudelleen - + Merge button Liitä @@ -3489,7 +3510,7 @@ Kirjoita salasana jaettujen kansioiden suojaamiseksi - + Set a password on the shared folder for non-anonymous access Aseta salasana jaetulle kansiolle ei-anonyymiä käyttöä varten @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Valitettavasti pikahakemistoa ei löydy, poistetaanko se? - + Cancel button Peruuta - + Remove button Poista @@ -3784,80 +3805,81 @@ dfmplugin_computer::Computer - + + Computer Tietokone - + Computer display items - Tietokoneen näytön kohteet + - + Hide built-in disks on the Computer page - Tietokone näkymässä piilota kiintolevyt + - + Hide loop partitions on the Computer page - Tietokone näkymässä piilota osiot + - + Show file system on disk icon - Näytä kuvake järjestelmän asemasta + - + Hide My Directories on the Computer page - Tietokone näkymässä piilota kotikansiot + - + Hide 3rd party entries on the Computer page - Tietokone näkymässä piilota 3:nen osapuolen kohteet + dfmplugin_computer::ComputerController - + Unlock device failed Lukituksen avaaminen epäonnistui - + Wrong password Väärä salasana - + Rename failed Nimeäminen epäonnistui - + The device is busy and cannot be renamed now Laite on varattu, eikä sitä voi nyt nimetä uudelleen - + Format failed Alustaminen epäonnistui - + The device is busy and cannot be formatted now Laite on varattu, eikä sitä voi nyt alustaa - + Mount error Liitoksen virhe - + Cannot access %1 Ei oikeuksia %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Tietokone - + %1 is read-only. Do you want to enable read and write permissions for it? %1 on vain luettavissa. Haluatko antaa sille luku-/kirjoitusoikeudet? - + Once enabled, read/write permission will be granted permanently Kun tämä on käytössä, luku-/kirjoitusoikeus myönnetään pysyvästi - + Cancel Peruuta - + Enable Now Ota käyttöön @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Omat hakemistot - + Disks Levyt @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Perustiedot - + Device type Laitetyyppi - + Total space Kokonaistila - + File system Tiedostojärjestelmä - + Contains Sisältää - + Free space Vapaa tila - + %1 items %1 kohdetta - + %1 item %1 kohde @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 / %2 @@ -3968,27 +3990,27 @@ Koko - + Dimension Mitat - + Duration Kesto - + Type Tyyppi - + Accessed Käytetty - + Modified Muokattu @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - Tiedoston %1 siirto roskakoriin epäonnistui + @@ -4335,7 +4357,7 @@ Copy or Cut File failed! - Tiedoston kopio tai leikkaus epäonnistui! + @@ -4365,7 +4387,7 @@ Failed to move the file %1 to trash, cause: %2 - Tiedoston %1 siirto roskakoriin epäonnistui, syy: %2 + @@ -4384,8 +4406,8 @@ - Copy or Cut File failed, cause: %1 - Kopio tai leikkaus epäonnistui, syy %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4439,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Tiedoston nimeämisen virhe - + Failed to create the directory Kansion luominen epäonnistui - + Failed to create the file Tiedoston luominen epäonnistui - + link file error linkkitiedoston virhe - - + + Failed to modify file permissions - Tiedoston käyttöoikeuksien muutos epäonnistui + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - &Liitä + Paste + Liitä - Cu&t - Lei&kkaa + Cut + Leikkaa - &Copy - &Kopioi + Copy + Kopioi dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Avaa + Open + Avaa - Rena&me - Ni&meä + Rename + Nimeä uudelleen - &Delete - &Poista + Delete + Poista @@ -4557,11 +4579,6 @@ Open in terminal Avaa päätteessä - - - Reverse select - Käänteinen valinta - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Lähetä - - Bluetooth - Bluetooth - - - + Create link Luo linkki - + Send to desktop Lähetä työpöydälle @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Jaa + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Avaa + + Open + Avaa - + Open in new window Avaa uudessa ikkunassa - + Open in new tab Avaa uudessa välilehdessä - + Cancel sharing Peruuta jakaminen - - P&roperties - Lisäas&etukset + + Properties + Ominaisuudet dfmplugin_myshares::MyShares - + My Shares Jaetut kansiot @@ -4683,7 +4700,7 @@ Ei tallennettavia tiedostoja - + Unable to burn. Not enough free space on the target disk. Polttaminen ei onnistu. Kohdelevyllä ei ole riittävästi vapaata tilaa. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Perustiedot - + Size Koko - + Contains Sisältää - + Type Tyyppi - + Location Sijainti - + Time created Luotu - + Time accessed Käytetty - + Time modified Muokattu - + Hide this file Piilota tämä tiedosto - - + + %1 item %1 kohde - + %1 items %1 kohdetta @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Salauksen turvallisuus - + For Government Valtioille - + For Enterprise Yrityksille - + Bit Bitti - + Available Saatavilla @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Tietokone - + Basic Info Perustiedot - + Computer name Tietokoneen nimi - + Version Versio - + Edition Versio - + OS build OS versio - + Type Tyyppi - + Processor Suoritin - + Memory Muisti @@ -4874,14 +4891,6 @@ %1 tiedostoa, %2 kansiota - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - %1 eivät ole sallittuja - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - Lisäas&etukset + Properties + Ominaisuudet dfmplugin_recent::Recent - + + Recent Historia @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Polku - + Last access Viimeisin käyttö - + Recent Historia @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Etsi: - + File Type: Tiedoston tyyppi: - + File Size: Tiedoston koko: - + Time Modified: Muokattu: - + Time Accessed: Käytetty: - + Time Created: Luotu: - + Reset Nollaa - + All subdirectories Kaikki alihakemistot - + Current directory Nykyinen hakemisto - + Application Sovellus - + Video Video - + Audio Ääni - + Image Kuva - + Archive Arkisto - + Text Teksti - + Executable Suoritettava - + Backup file Varmuuskopio - + Today Tänään - + Yesterday Eilen - + This week Tämä viikko - + Last week Viime viikko - + This month Tässä kuussa - + Last month Viime kuussa - + This year Tämä vuosi - + Last year Viime vuosi @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Haku - - - Auto index internal disk - Indeksoi kiintolevy automaattisesti - - - - Index external storage device after connected to computer - Indeksoi ulkoinen tallennusväline kytkettäessä tietokoneeseen - - - - Full-Text search - Täysi tekstihaku - dfmplugin_search::SearchHelper - + Path Polku @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Avaa tiedoston sijainti - + Select all Valitse kaikki - + Path Polku @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Nopea pääsy - + Partitions Osiot - + Network Verkko - + Tag Tunniste - + + Bookmark + Kirjamerkki + + + Other Muut - + Unknown Group Tuntematon ryhmä + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Lähiverkossa + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Avaa + Open + Avaa @@ -5184,8 +5191,8 @@ - P&roperties - Lisäas&etukset + Properties + Ominaisuudet @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Tunniste @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Avaa tiedoston sijainti @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Yhdistä palvelimeen - - - + + + Clear History Tyhjennä historia - + Unfavorite Suosikkin poisto - - Error - Virhe - - - - Unable to favorite illegitimate url! - URL-osoitetta ei voi lisätä suosikkeihin! - - - + Cancel button Peruuta - + Connect button Yhdistä - + Charset Encoding Merkistökoodaus - + Default Oletus - + My Favorites Suosikkini - + No favorites yet Ei vielä suosikkeja - + Favorite Suosikki @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Lähteen polku - + Time deleted Aika poistettu @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Palauta - + Restore all Palauta kaikki - + Empty trash Tyhjennä roskakori - + Source path Lähteen polku - + Time deleted Aika poistettu @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Roskakori @@ -5530,17 +5527,17 @@ Roskakori - + item kohde - + items kohdetta - + Contains %1 %2 Sisältää %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Perustiedot - + Size Koko - + Contains Sisältää - + Type Tyyppi - + Location Sijainti - + Time created Luotu - + Time accessed Käytetty - + Time locked Lukittu aika @@ -5840,7 +5837,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Failed to unlock file vault - Tiedostoholvin lukituksen poisto epäonnistui + Varaston lukituksen poistaminen epäonnistui @@ -5929,7 +5926,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Unlock File Vault - Avaa tiedostoholvin lukitus + Avaa tiedostovaraston lukitus @@ -5982,15 +5979,15 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Failed to unlock file vault - Tiedostoholvin lukituksen poisto epäonnistui + Varaston lukituksen poistaminen epäonnistui dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault - Salaa tiedostoholvi + Salaa tiedostovarasto @@ -6009,19 +6006,19 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. - - - + + + Encrypt Salaa - + Failed to create file vault: %1 Varaston luominen epäonnistui: %1 - + OK OK @@ -6072,9 +6069,9 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password - Aseta holvin salasana + Aseta tietovaraston salasana @@ -6084,7 +6081,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Key encryption - Salaus avaimella + Salakirjoitus avaimella @@ -6098,7 +6095,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 merkkiä, sisältäen A-Z-, a-z-, 0-9 ja erikoismerkit @@ -6133,8 +6130,8 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Seuraava - - + + Passwords do not match Salasanat eivät täsmää @@ -6142,7 +6139,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultActiveStartView - + File Vault Tiedostoholvi @@ -6172,7 +6169,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. My Vault - Minun holvi + Minun tietovarasto @@ -6180,7 +6177,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Vault - Holvi + Tietovarasto @@ -6192,9 +6189,9 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultHelper - + Vault - Holvi + Tietovarasto @@ -6202,7 +6199,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. Tietovarasto ei ole käytettävissä, koska cryfs ei ole asennettu! - + A task is in progress, so it cannot perform your operation Tehtävä on käynnissä, joten se ei voi suorittaa toimintaa @@ -6210,135 +6207,118 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_vault::VaultPropertyDialog - + My Vault - Minun holvi - - - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Peruuta - - - - Delete - Poista - - - - Delete File Vault - Poista tiedostoholvi - - - - Failed to delete file vault - Tiedostoholvin poisto epäonnistui - - - - OK - OK - - - - Once deleted, the files in it will be permanently deleted - Kun poistettu, siinä olevat tiedostot poistetaan pysyvästi + Minun tietovarasto dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Kun poistettu, siinä olevat tiedostot poistetaan pysyvästi - - - + Password Salasana - + Password hint: %1 Salasanavihje: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Peruuta - - - - Delete - Poista + + Input the 32-digit recovery key + Anna 32-numeroinen palautusavain + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault - Poista tiedostoholvi + Poista tietovarasto - - Wrong password - Väärä salasana + + Once deleted, the files in it will be permanently deleted + Tiedostot poistetaan pysyvästi - - Failed to delete file vault - Tiedostoholvin poisto epäonnistui + + Cancel + button + Peruuta - - OK - OK + + Use Key + button + Käytä avainta - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Anna 32-numeroinen palautusavain + + Delete + button + Poista - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Poistetaan... - + + OK + button OK - - Delete File Vault - Poista tiedostoholvi + + Wrong password + Väärä salasana + + + + Wrong recovery key + Väärä palautusavain + + + + Failed to delete file vault + Varaston poistaminen epäonnistui - + Deleted successfully Poistettu onnistuneesti + + + Failed to delete + Poistaminen epäonnistui + dfmplugin_vault::VaultVisibleManager My Vault - Minun holvi + Minun tietovarasto - + File Vault Tiedostoholvi + + + + Vault + Tietovarasto + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6331,22 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_workspace::FileViewModel - + Name Nimi - + Time modified Muokattu - + Size Koko - + Type Tyyppi @@ -6382,7 +6362,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 eivät ole sallittuja @@ -6398,50 +6378,45 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Järjestä - + Display as Näytä - + Name Nimi - + Time modified Muokattu - + Size Koko - + Type Tyyppi - + Icon Kuvake - + List Lista - - - Tree - Puu - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. filedialog_core::FileDialog - + Save button Tallenna @@ -6463,13 +6438,13 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. filedialog_core::FileDialogStatusBar - + Save button Tallenna - + Open button Avaa @@ -6507,112 +6482,112 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. plugin_filepreview::DDciIconPreview - + Available sizes: Saatavilla olevat koot: - + Custom Size Mukautettu koko - + Device Pixel Ratio: Laitteen pikselisuhde: - + Theme: Teema: - + Light Vaalea - + Dark Tumma - + Mode: Moodi: - + Normal Normaali - + Disabled Poistettu - + Hovered Leijuva - + Pressed Painettu - + Palette Paletti - + Current mode icon does not support the palette Nykyisen tilan kuvake ei tue palettia - + Foreground: Etuala: - + Background: Tausta: - + Highlight: Korostus: - + HighlightForeground: Korosta etualalla: - + Background Color: Taustan väri: - + White Valkoinen - + Black Musta - + Transparent Läpikuultava - + Custom Mukautettu @@ -6644,22 +6619,22 @@ tyhjennä kansion tiedostot ja yritä avata lukitus uudelleen. plugin_filepreview::MusicMessageView - + Artist: Artisti: - + Album: Albumi: - + unknown artist tuntematon artisti - + unknown album tuntematon albumi diff --git a/translations/dde-file-manager_fil.ts b/translations/dde-file-manager_fil.ts index a662934747..0a8b0ee154 100644 --- a/translations/dde-file-manager_fil.ts +++ b/translations/dde-file-manager_fil.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_fr.ts b/translations/dde-file-manager_fr.ts index ecedda270f..0aa96ef88f 100644 --- a/translations/dde-file-manager_fr.ts +++ b/translations/dde-file-manager_fr.ts @@ -15,104 +15,99 @@ Application - + File Manager Gestionnaire de fichiers - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Le gestionnaire de fichiers est un outil de gestion de fichiers puissant et facile à utiliser, doté de fonctions de recherche, copie, suppression, compression/décompression, propriétés de fichier et autres fonctions utiles. - DesktopMain + DAttachedProtocolDevice - - Desktop - Bureau + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Disque + + Desktop + Bureau + + + DiskControlWidget - - Open - Ouvrir + + Disks + Disques - - Eject all - Tout éjecter + + The device was not safely removed + Le périphérique n'a pas été retiré en toute sécurité - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Cliquez sur "Supprimer en toute sécurité" et ensuite déconnectez-le - - eject - + + Disk is busy, cannot unmount now + Le disque est occupé, et ne peut donc pas être démonté maintenant - - unmount - + + The device is busy, cannot eject now + L'appareil est occupé et ne peut pas être éjecté maintenant + + + DiskMountPlugin - - - remove - + + Disk + Disque - - Operation failed - + + Open + Ouvrir - - Device (%1) is busy, cannot %2 now. - + + Eject all + Tout éjecter FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Inconnu @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Cela se produit lorsque vous vous connectez à un ordinateur pour la première fois. - + The identity sent by the remote computer is L'identité envoyée par l'ordinateur distant est - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Si vous voulez être absolument sûr de pouvoir continuer en toute sécurité, contactez l'administrateur système. - - - + + + System Disk Disque système - + Data Disk Disque de données - + Blank %1 Disc Disque %1 vierge - - - + + + Unknown Inconnu - + %1 Drive %1 Drive - + %1 Encrypted %1 Chiffré - - + %1 Volume %1 Volume - + + Scanning the device, stop it? Scanner l'appareil, l'arrêter ? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Accueil @@ -228,6 +223,7 @@ + Desktop Bureau @@ -237,6 +233,7 @@ + Videos Vidéos @@ -246,6 +243,7 @@ + Music Musique @@ -255,6 +253,7 @@ + Pictures Images @@ -264,6 +263,7 @@ + Documents Documents @@ -273,6 +273,7 @@ + Downloads Téléchargements @@ -281,6 +282,7 @@ + Trash Corbeille @@ -291,11 +293,12 @@ + Recent Récent - + @@ -303,7 +306,7 @@ Montage automatique - + @@ -316,46 +319,47 @@ %1 tâches en cours - + %1 item %1 élément - + %1 items %1 éléments - + Unable to find the original file Impossible de trouver le fichier d'origine - - + + File has been moved or deleted Le fichier a été déplacé ou supprimé - - + + + You do not have permission to access this folder Vous n'êtes pas autorisé à accéder à ce dossier - - + + You do not have permission to traverse files in it Vous n'êtes pas autorisé à parcourir les fichiers qu'il contient - - + + Folder is empty Le dossier est vide - + Loading... Chargement... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Ordinateur @@ -419,8 +424,9 @@ - - + + + Computers in LAN Ordinateurs dans le réseau local @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Continuer à afficher les partages Samba montés @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Arrêter - + Shortcut Raccourci - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Accès refusé + Confirm button Confirmer + + + The device has been safely removed + L'appareil a été retiré en toute sécurité + - - + + - - - + + + Open in new window Ouvrir dans une nouvelle fenêtre @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Ouvrir dans un nouvel onglet @@ -953,8 +968,8 @@ - - + + Properties Propriétés @@ -990,7 +1005,7 @@ Nouveau fichier - + Create symlink Créer un lien symbolique @@ -1077,70 +1092,70 @@ Ajouter au disque - + Are you sure you want to erase all data on the disc? Voulez-vous vraiment effacer toutes les données du disque ? - + Erase button Effacer - + This action cannot be undone Cette action ne peut pas être annulée - + How do you want to use this disc? Comment voulez-vous utiliser ce disque ? - + Burn image button Graver l'image - + Burn files button Graver les fichiers - + %1 is a duplicate file. %1 est un fichier en double. - + Insufficient disc space. Espace disque insuffisant. - + Lost connection to drive. Perte de connexion du lecteur. - + The CD/DVD drive is not ready. Try another disc. Le lecteur de CD / DVD n'est pas prêt. Essayer un autre disque. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Le lecteur de CD/DVD est occupé. Quitter le programme à l'aide du lecteur et réinsérer le lecteur. - + Invalid volume name - + Unknown error Erreur inconnue @@ -1179,42 +1194,42 @@ Éléments : %1 - + Orange Orange - + Red Rouge - + Purple Violet - + Navy-blue Bleu marine - + Azure Azure - + Green Vert - + Yellow Jaune - + Gray Gris @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Disque local - + Removable disk Disque amovible - + DVD DVD - + Network shared directory Répertoire partagé du réseau - - + + Android mobile device Appareil mobile Android - + Apple mobile device Appareil mobile Apple - + Unknown device Appareil inconnu - + Remove button Supprimer - + Do you want to remove this item? Voulez-vous supprimer cet élément  ? - + Do yout want to remove %1 items? Voulez-vous supprimer %1 éléments  ? - + It does not delete the original files Il ne supprime pas les fichiers originaux - + Clear recent history Effacer l'historique récent - - - + + + Source path Source @@ -1404,12 +1419,12 @@ Impossible d'ouvrir des éléments de la corbeille, veuillez d'abord les restaurer - + Empty Trash Vider la corbeille - + Location Emplacement @@ -1509,7 +1524,7 @@ Recherche en cours... - + My Vault Mon coffre-fort @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Non autorisé - - + + In trial period En période d'essai - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Type - + Time accessed Temps d'accès - + Time modified Heure de modification - + Time created Heure de création - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Taille des icônes @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 élément sélectionné @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! L'opération a échoué ! @@ -2529,191 +2554,191 @@ Le dossier cible se trouve dans le dossier source ! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Annuler - + Format button Formater - + To access the device, you must format the disk first. Are you sure you want to format it now? Pour accéder au périphérique, vous devez d'abord formater le disque. Voulez-vous vraiment le formater maintenant ? - + Do you want to run %1 or display its content? Voulez-vous exécuter %1 ou afficher son contenu ? - + It is an executable text file. Il s'agit d'un fichier texte exécutable. - - - + + + Run button Exécuter - - + + Run in terminal button Exécuter dans le terminal - + Display button Afficher - + Do you want to run %1? Voulez-vous exécuter %1 ? - + It is an executable file. Il s'agit d'un fichier exécutable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Supprimer définitivement %1 éléments ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Supprimer - + Permanently delete %1? Supprimer définitivement %1 ? - - + + This action cannot be undone Cette action ne peut pas être annulée - + Are you sure you want to empty %1 item? Voulez-vous vraiment vider %1 élément ? - + Are you sure you want to empty %1 items? Voulez-vous vraiment vider %1 éléments ? - + Empty Vide - + Do you want to delete %1? Voulez-vous supprimer %1 ? - + Do you want to delete the selected %1 items? Voulez-vous supprimer les %1 éléments sélectionnés ? - + Failed to restore %1 file, the target folder is read-only Impossible de restaurer le fichier %1, le dossier cible est en lecture seule - + Failed to restore %1 files, the target folder is read-only Impossible de restaurer les fichiers %1, le dossier cible est en lecture seule - + "%1" already exists, please use another name. "%1" existe déjà, veuillez utiliser un autre nom. - + Device or resource busy Périphérique ou ressource occupé - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Ce fichier sera masqué si le nom du fichier commence par ".". Voulez-vous le cacher ? - + Hide - + Cancel Annuler - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 auquel ce raccourci fait référence a été modifié ou déplacé - + Do you want to delete this shortcut? Voulez-vous supprimer ce raccourci ? - + This file is not executable, do you want to add the execute permission and run? Ce fichier n'est pas exécutable, voulez-vous ajouter l'autorisation d'exécution et exécuter ? - + The selected files contain system file/directory, and it cannot be deleted Les fichiers sélectionnés contiennent un fichier/répertoire système et ne peuvent pas être supprimés @@ -2841,276 +2866,278 @@ Saisir le mot de passe pour décrypter le disque - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Autres - + Close Fermer - + Close current tab Fermer l'onglet actuel - + Back Retour - + Forward Transférer - + Switch to next tab Passer à l'onglet suivant - + Switch to previous tab Passer à l'onglet précédent - + Next file Fichier suivant - + Previous file Fichier précédent - + Switch tab by specified number between 1 to 8 Basculer l'onglet par numéro spécifié entre 1 et 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Heure de modification : %1 - + Original folder Dossier d'origine - + Contains: %1 Contient : %1 - + Original file Fichier d'origine - + Size: %1 Taille : %1 - + Target folder Dossier cible - - + In data statistics ... - + Target file Fichier cible @@ -3445,37 +3466,37 @@ Veuillez attendre, s'il vous plaît - + Keep both button Conserver les deux - + Skip button Ignorer - - + + Replace button Remplacer - + Do not ask again Ne plus demander - + Retry button Réessayer - + Merge button Fusionner @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Annuler - + Remove button Supprimer @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Ordinateur - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Ordinateur - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Dossiers - + Disks Disques @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Type d'appareil - + Total space Espace total - + File system Système de fichiers - + Contains Contient - + Free space Espace libre - + %1 items %1 éléments - + %1 item %1 élément @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Taille - + Dimension Dimension - + Duration Durée - + Type Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Coller - Cu&t - + Cut + Couper - &Copy - + Copy + Copier dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Ouvrir - Rena&me - + Rename + Renommer - &Delete - + Delete + Supprimer @@ -4557,11 +4579,6 @@ Open in terminal Ouvrir dans le terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Envoyer à - - Bluetooth - - - - + Create link Créer un lien - + Send to desktop Envoyer sur le bureau @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Ouvrir - + Open in new window Ouvrir dans une nouvelle fenêtre - + Open in new tab Ouvrir dans un nouvel onglet - + Cancel sharing Annuler le partage - - P&roperties - + + Properties + Propriétés dfmplugin_myshares::MyShares - + My Shares Mes partages @@ -4683,7 +4700,7 @@ Aucun fichier à graver - + Unable to burn. Not enough free space on the target disk. Impossible de graver. Espace libre insuffisant sur le disque cible. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Taille - + Contains Contient - + Type Type - + Location Emplacement - + Time created Heure de création - + Time accessed Temps d'accès - + Time modified Heure de modification - + Hide this file Masquer ce fichier - - + + %1 item %1 élément - + %1 items %1 éléments @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Disponible @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Ordinateur - + Basic Info Info de base - + Computer name Nom de l'ordinateur - + Version Version - + Edition Édition - + OS build Version du système d'exploitation - + Type Type - + Processor Processeur - + Memory Mémoire @@ -4874,14 +4891,6 @@ %1 fichier(s), %2 dossier(s) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Propriétés dfmplugin_recent::Recent - + + Recent Récent @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Chemin - + Last access Dernier accès - + Recent Récent @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Rechercher : - + File Type: Type de fichier : - + File Size: Taille du fichier : - + Time Modified: Heure de modification : - + Time Accessed: Temps d'accès : - + Time Created: Heure de création : - + Reset Réinitialiser - + All subdirectories Tous les sous-répertoires - + Current directory Répertoire actuel - + Application Application - + Video Vidéo - + Audio Audio - + Image Image - + Archive Archive - + Text Texte - + Executable Exécutable - + Backup file Fichier de sauvegarde - + Today Aujourd'hui - + Yesterday Hier - + This week Cette semaine - + Last week La semaine dernière - + This month Ce mois-ci - + Last month Le mois dernier - + This year Cette année - + Last year L'année dernière @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Rechercher - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Chemin @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Ouvrir l'emplacement du fichier - + Select all Tout sélectionner - + Path @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Tag - + + Bookmark + + + + Other Autre - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Ordinateurs dans le réseau local + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Ouvrir @@ -5184,7 +5191,7 @@ - P&roperties + Properties @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Tag @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Ouvrir l'emplacement du fichier @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Se connecter au serveur - - - + + + Clear History Effacer l'historique - + Unfavorite Défavorisé - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Annuler - + Connect button Se connecter - + Charset Encoding - + Default - + My Favorites Mes favoris - + No favorites yet Pas encore de favoris - + Favorite Favori @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Chemin source - + Time deleted Heure de suppression @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurer - + Restore all Tout restaurer - + Empty trash - + Source path Source - + Time deleted Heure de suppression @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Corbeille @@ -5530,17 +5527,17 @@ Corbeille - + item élément - + items éléments - + Contains %1 %2 Contient %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Taille - + Contains Contient - + Type Type - + Location Emplacement - + Time created Heure de création - + Time accessed Temps d'accès - + Time locked Temps verrouillé @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Crypter le coffre-fort des fichiers @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Crypter - + Failed to create file vault: %1 Échec de la création du coffre-fort de fichiers : %1 - + OK OK @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Définir le mot de passe du coffre-fort @@ -6097,7 +6094,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caractères, contient A-Z, a-z, 0-9 et symboles @@ -6132,8 +6129,8 @@ Suivant - - + + Passwords do not match Les mots de passe ne correspondent pas @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Coffre-fort @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6201,7 +6198,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6209,121 +6206,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mon coffre-fort - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Mot de passe - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Question secrète de mot de passe : %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Saisir la clé de récupération à 32 chiffres + + + dfmplugin_vault::VaultRemovePages - - Password - Mot de passe + + Delete File Vault + Supprimer le coffre-fort - - Password hint: %1 - Question secrète de mot de passe : %1 + + Once deleted, the files in it will be permanently deleted + Une fois supprimés, les fichiers qu'il contient seront définitivement effacés - + Cancel - - - - - Delete - + button + Annuler - - Delete File Vault - + + Use Key + button + Utiliser la clé - - Wrong password - + + Delete + button + Supprimer - - Failed to delete file vault - + + Removing... + Suppression... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Saisir la clé de récupération à 32 chiffres + + Wrong password + Mauvais mot de passe - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Clé de récupération incorrecte - - OK - + + Failed to delete file vault + Échec de la suppression du coffre-fort de fichiers - - Delete File Vault - + + Deleted successfully + Supprimé avec succès - - Deleted successfully - + + Failed to delete + Échec de la suppression @@ -6334,10 +6308,16 @@ Mon coffre-fort - + File Vault Coffre-fort + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 ne sont pas autorisés @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Trier par - + Display as Afficher en tant que - + Name Nom - + Time modified Heure de modification - + Size Taille - + Type Type - + Icon Icône - + List Liste - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Enregistrer @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Enregistrer - + Open button Ouvrir @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_gl_ES.ts b/translations/dde-file-manager_gl_ES.ts index 8185788b41..5af44234dd 100644 --- a/translations/dde-file-manager_gl_ES.ts +++ b/translations/dde-file-manager_gl_ES.ts @@ -15,104 +15,99 @@ Application - + File Manager Xestor do ficheiro - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Xestor de ficheiros é unha ferramenta de xestión de ficheiros poderosa e fácil de usar, que inclúe busca, copia, lixo, compresión / descompresión, propiedade de ficheiros e outras funcións útiles. - DesktopMain + DAttachedProtocolDevice - - Desktop - Escritorio + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Disco + + Desktop + Escritorio + + + DiskControlWidget - - Open - Abrir + + Disks + Discos - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + O disco está ocupado e non se pode desmontar agora - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Disco - - Operation failed - + + Open + Abrir - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Descoñecido @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Disco do sistema - + Data Disk Disco de datos - + Blank %1 Disc %1 Disco en branco - - - + + + Unknown Descoñecido - + %1 Drive %1 Drive - + %1 Encrypted %1 encriptado - - + %1 Volume %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Inicio @@ -228,6 +223,7 @@ + Desktop Escritorio @@ -237,6 +233,7 @@ + Videos Vídeos @@ -246,6 +243,7 @@ + Music Música @@ -255,6 +253,7 @@ + Pictures Imaxes @@ -264,6 +263,7 @@ + Documents Documentos @@ -273,6 +273,7 @@ + Downloads Descargas @@ -281,6 +282,7 @@ + Trash Papeleira @@ -291,11 +293,12 @@ + Recent Recente - + @@ -303,7 +306,7 @@ Montar automaticamente - + @@ -316,46 +319,47 @@ %1 tarefas en progreso - + %1 item %1 elemento - + %1 items %1 elementos - + Unable to find the original file - - + + File has been moved or deleted O ficheiro foi movido ou eliminado - - + + + You do not have permission to access this folder Non tes permiso para acceder a este cartafol - - + + You do not have permission to traverse files in it - - + + Folder is empty Cartafol baleiro - + Loading... Cargando... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Computador @@ -419,8 +424,9 @@ - - + + + Computers in LAN Computadores na rede local @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Etiqueta @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Atallo - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Acceso denegado + Confirm button Confirmar + + + The device has been safely removed + + - - + + - - - + + + Open in new window Abrir nunha xanela nova @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Abrir nunha lapela nova @@ -953,8 +968,8 @@ - - + + Properties Propiedades @@ -990,7 +1005,7 @@ Novo ficheiro - + Create symlink Crear ligazón simbólica @@ -1077,70 +1092,70 @@ Engadir ao disco - + Are you sure you want to erase all data on the disc? Está seguro de que quere borrar todos os datos do disco? - + Erase button Borrar - + This action cannot be undone Esta acción non se pode desfacer - + How do you want to use this disc? Como quere usar este disco? - + Burn image button Imaxe gravada - + Burn files button Ficheiros gravados - + %1 is a duplicate file. %1 é un ficheiro duplicado. - + Insufficient disc space. Espazo do disco insuficiente. - + Lost connection to drive. Perdeu a conexión para dirixir. - + The CD/DVD drive is not ready. Try another disc. A unidade de CD / DVD non está lista. Proba con outro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. A unidade de CD / DVD está ocupada. Saia do programa usando a unidade e volva a introducir a unidade. - + Invalid volume name - + Unknown error Erro descoñecido @@ -1179,42 +1194,42 @@ Elemento: %1 - + Orange Laranxa - + Red Vermello - + Purple Morado - + Navy-blue Azul marino - + Azure Azul - + Green Verde - + Yellow Amarelo - + Gray Gris @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Disco local - + Removable disk Disco extraíbel - + DVD DVD - + Network shared directory Cartafol compartido - - + + Android mobile device Móbil Android - + Apple mobile device Dispositivo móbil de Apple - + Unknown device Dispositivo descoñecido - + Remove button Eliminar - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Limpar o historial recente - - - + + + Source path Ruta orixe @@ -1404,12 +1419,12 @@ - + Empty Trash Baleirar o lixo - + Location Localización @@ -1509,7 +1524,7 @@ Buscando... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tipo - + Time accessed Tempo accedido - + Time modified Hora de modificación - + Time created Hora de creación - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Tamaño da icona @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 elemento seleccionado @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Aceptar - + Operation failed! Faiou a operación! @@ -2529,191 +2554,191 @@ O cartafol destino está no cartafol orixe! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formato - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Queres executar %1 ou amosar o seu contido? - + It is an executable text file. É un ficheiro de texto executable. - - - + + + Run button Executar - - + + Run in terminal button Executar no terminal - + Display button Amosar - + Do you want to run %1? Tes a certeza de querer executar %1? - + It is an executable file. É un ficheiro executable. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Eliminar permanentemente %1 elementos? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Eliminar - + Permanently delete %1? Eliminar permanentemente %1? - - + + This action cannot be undone Esta acción non se pode desfacer - + Are you sure you want to empty %1 item? Está seguro de que quere vaciar %1 elemento? - + Are you sure you want to empty %1 items? Está seguro de que quere vaciar %1 elementos? - + Empty Vacía - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Erro ao restaurar o ficheiro% 1, o cartafol de destino é de só lectura - + Failed to restore %1 files, the target folder is read-only Erro ao restaurar os ficheiros% 1, o cartafol de destino é de só lectura - + "%1" already exists, please use another name. "%1" xa existe, por favor emprega outro nome. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este ficheiro estará oculto se o nome do ficheiro comeza con '.' .Queres ocultalo? - + Hide - + Cancel Cancelar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 que este atallo cambiouse ou foi movido - + Do you want to delete this shortcut? Queres eliminar este atallo? - + This file is not executable, do you want to add the execute permission and run? Este ficheiro non é executable, quere engadir o permiso de execución e executalo? - + The selected files contain system file/directory, and it cannot be deleted Os ficheiros seleccionados conteñen ficheiros/cartafoles do sistema, e non poden ser eliminados @@ -2841,276 +2866,278 @@ Contraseña de entrada para descifrar o disco - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Outros - + Close Pechar - + Close current tab Pechar a lapela actual - + Back Atrás - + Forward Avanzar - + Switch to next tab Cambiar á nova lapela - + Switch to previous tab Cambiar á lapela previa - + Next file Seguinte ficheiro - + Previous file Ficheiro anterior - + Switch tab by specified number between 1 to 8 Ir á lapela especificado cun número entre 1 e 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Tempo modificado: %1 - + Original folder Cartafol orixinal - + Contains: %1 Contén: %1 - + Original file Ficheiro orixinal - + Size: %1 Tamaño: %1 - + Target folder Cartafol de destino - - + In data statistics ... - + Target file Ficheiro de destino @@ -3445,37 +3466,37 @@ - + Keep both button Manter ambos - + Skip button Saltar - - + + Replace button Substituír - + Do not ask again Non preguntar de novo - + Retry button Volver a intentar - + Merge button Fusionar @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Cancelar - + Remove button Eliminar @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Computador - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Os meus directorios - + Disks Discos @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tipo de dispositivo - + Total space Espazo total - + File system Sistema de ficheiros - + Contains Contén - + Free space Espazo libre - + %1 items %1 elementos - + %1 item %1 elemento @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Tamaño - + Dimension Dimensión - + Duration Duración - + Type Tipo - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Pegar - Cu&t - + Cut + Cortar - &Copy - + Copy + Copiar dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Abrir - Rena&me - + Rename + Renomear - &Delete - + Delete + Eliminar @@ -4557,11 +4579,6 @@ Open in terminal Abrir no termial - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar a - - Bluetooth - - - - + Create link Crear ligazón - + Send to desktop Enviar ao escritorio @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Abrir - + Open in new window Abrir nunha xanela nova - + Open in new tab Abrir nunha lapela nova - + Cancel sharing Cancelar compartición - - P&roperties - + + Properties + Propiedades dfmplugin_myshares::MyShares - + My Shares As miñas comparticións @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. Non se pode gravar. Non hai espazo libre no disco de destino. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Tamaño - + Contains Contén - + Type Tipo - + Location Localización - + Time created Hora de creación - + Time accessed Tempo accedido - + Time modified Hora de modificación - + Hide this file Agochar este ficheiro - - + + %1 item %1 elemento - + %1 items %1 elementos @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Dispoñible @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computador - + Basic Info Info. básica - + Computer name - + Version Versión - + Edition - + OS build - + Type Tipo - + Processor Procesador - + Memory Memoria @@ -4873,14 +4890,6 @@ % 1 ficheiro (s),% 2 cartafol (s) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Propiedades dfmplugin_recent::Recent - + + Recent Recente @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Ruta - + Last access Último acceso - + Recent Recente @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Buscar: - + File Type: Tipo de ficheiro: - + File Size: Tamaño do ficheiro: - + Time Modified: Tempo modificado: - + Time Accessed: - + Time Created: - + Reset Restablecer - + All subdirectories Todos os subdirectorios - + Current directory Directorio actual - + Application Aplicativo - + Video Vídeo - + Audio Audio - + Image Imaxe - + Archive Arquivo - + Text Texto - + Executable Executable - + Backup file Ficheiro de copia de seguranza - + Today Hoxe - + Yesterday Onte - + This week Esta semana - + Last week Última semana - + This month Este mes - + Last month Último mes - + This year Este ano - + Last year Último ano @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Buscar - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Ruta @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir localización do ficheiro - + Select all Seleccionar todo - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etiqueta - + + Bookmark + + + + Other Outros - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Computadores na rede local + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Abrir @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir localización do ficheiro @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Conectar ao servidor - - - + + + Clear History Borrar o historial - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Cancelar - + Connect button Conectar - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Ruta orixe - + Time deleted Data de eliminación @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar todo - + Empty trash - + Source path Ruta orixe - + Time deleted Data de eliminación @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papeleira @@ -5529,17 +5526,17 @@ Papeleira - + item Elemento - + items Elementos - + Contains %1 %2 Contén %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Tamaño - + Contains Contén - + Type Tipo - + Location Localización - + Time created Hora de creación - + Time accessed Tempo accedido - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK Aceptar @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Seguinte - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Bóveda de ficheiros @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Contrasinal - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Contrasinal - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Cancelar - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Eliminar - - Failed to delete file vault + + Removing... - + + OK - + button + Aceptar - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault Bóveda de ficheiros + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Amosar como - + Name Nome - + Time modified Hora de modificación - + Size Tamaño - + Type Tipo - + Icon Icona - + List Listaxe - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Gardar @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Gardar - + Open button Abrir @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_he.ts b/translations/dde-file-manager_he.ts index 81d6466a5d..d4ed3d3391 100644 --- a/translations/dde-file-manager_he.ts +++ b/translations/dde-file-manager_he.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ %1 משימות בתהליך - + %1 item - + %1 items קובצי %1 - + Unable to find the original file - - + + File has been moved or deleted הקובץ שונה או הוסר - - + + + You do not have permission to access this folder אין לך הרשאה לגשת לתיקייה זו - - + + You do not have permission to traverse files in it - - + + Folder is empty התיקייה ריקה - + Loading... טוען... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut קיצור־דרך - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window פתח בחלון חדש @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab פתח בכרטיסייה חדשה @@ -953,8 +968,8 @@ - - + + Properties מאפיינים @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ פריטים: %1 - + Orange - + Red אדום - + Purple סגול - + Navy-blue - + Azure תכלת - + Green ירוק - + Yellow צהוב - + Gray אפור @@ -1290,76 +1305,76 @@ - + User directory - + Local disk דיסק מקומי - + Removable disk דיסק נשלף - + DVD - + Network shared directory - - + + Android mobile device מכשיר אנדרואיד נייד - + Apple mobile device מכשיר אפל נייד - + Unknown device מכשיר לא מזוהה - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash רוקן את סל המחזור - + Location מיקום @@ -1509,7 +1524,7 @@ מחפש... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_hi_IN.ts b/translations/dde-file-manager_hi_IN.ts index 005597cdee..51cb690c9b 100644 --- a/translations/dde-file-manager_hi_IN.ts +++ b/translations/dde-file-manager_hi_IN.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - डेस्कटॉप + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 वॉल्यूम - DiskMountPlugin + DesktopMain - - Disk - डिस्क + + Desktop + डेस्कटॉप + + + DiskControlWidget - - Open - खोलें + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + डिस्क - - Operation failed - + + Open + खोलें - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume %1 वॉल्यूम - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop डेस्कटॉप @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer कंप्यूटर @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ बिट + Access denied + Confirm button पुष्टि करें + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties विशेषताएँ @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type प्रकार - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size आइकन का आकार @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button रद्द करें - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button डिस्प्ले - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel रद्द करें - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button रद्द करें - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer कंप्यूटर - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer कंप्यूटर - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type प्रकार - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + खोलें - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + खोलें - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + विशेषताएँ dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type प्रकार - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit बिट - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer कंप्यूटर - + Basic Info - + Computer name - + Version संस्करण - + Edition - + OS build - + Type प्रकार - + Processor प्रोसेसर - + Memory मेमोरी @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + विशेषताएँ dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + खोलें @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button रद्द करें - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type प्रकार - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + रद्द करें - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type प्रकार - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button खोलें @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_hr.ts b/translations/dde-file-manager_hr.ts index da615272fb..2e542982bd 100644 --- a/translations/dde-file-manager_hr.ts +++ b/translations/dde-file-manager_hr.ts @@ -15,104 +15,99 @@ Application - + File Manager Upravitelj datotekama - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Upravitelj datotekama je alat za upravljanje datotekama, sa pretragom kopiranjem, smećem, kompresijom/dekompresijom, svojstvima datoteke i ostalim funkcijama upravljanja datotekama. - DesktopMain + DAttachedProtocolDevice - - Desktop - Radna površina + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Radna površina + + + DiskControlWidget - - Open - Otvori + + Disks + Diskovi - - Eject all - Izbaci sve + + The device was not safely removed + Uređaj nije sigurno uklonjen - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Klikni "Sigurno ukloni" i odspoji ga slijedeći put - - eject - + + Disk is busy, cannot unmount now + Disk je zauzet, ne mogu sada odmontirati - - unmount - + + The device is busy, cannot eject now + Uređaj je zauzet, ne mogu sada izbaciti + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Otvori - - Device (%1) is busy, cannot %2 now. - + + Eject all + Izbaci sve FileDialogHandle - + All Files - Sve datoteke - - - - FileOperateBaseWorker - - - The file name or the path is too long! MimeTypeDisplayManager - + Unknown Nepoznato @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Disk sustava - + Data Disk Podatkovni disk - + Blank %1 Disc - Prazan %1 Diski + - - - + + + Unknown Nepoznato - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? Skeniram uređaj, prestati? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Dom @@ -228,6 +223,7 @@ + Desktop Radna površina @@ -237,6 +233,7 @@ + Videos Video zapisi @@ -246,6 +243,7 @@ + Music Glazba @@ -255,6 +253,7 @@ + Pictures Slike @@ -264,6 +263,7 @@ + Documents Dokumenti @@ -273,6 +273,7 @@ + Downloads Preuzimanja @@ -281,6 +282,7 @@ + Trash Smeće @@ -291,11 +293,12 @@ + Recent Nedavno - + @@ -303,7 +306,7 @@ Samomontiranje - + @@ -316,46 +319,47 @@ %1 zadataka u tijeku - + %1 item %1 stavka - + %1 items %1 stavki - + Unable to find the original file - - + + File has been moved or deleted Datoteka je premještena ili obrisana - - + + + You do not have permission to access this folder Nemate dozvole za pristup ovoj mapi - - + + You do not have permission to traverse files in it - - + + Folder is empty Mapa je prazna - + Loading... Učitavam... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Računalo @@ -419,8 +424,9 @@ - - + + + Computers in LAN Računala u LAN-u @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,15 +458,15 @@ - + Network - Mreža + - + Mounted partitions and discs @@ -468,23 +474,23 @@ - + Partitions - Particije + - + Quick access - Brzi pristup + - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Zaustavi - + Shortcut Prečac - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Pristup odbijen + Confirm button Potvrdi + + + The device has been safely removed + Uređaj je sigurno uklonjen + - - + + - - - + + + Open in new window Otvori u novom prozoru @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Otvori u novoj kartici @@ -953,8 +968,8 @@ - - + + Properties Svojstva @@ -967,7 +982,7 @@ New Text - Novi tekst + @@ -990,7 +1005,7 @@ Nova datoteka - + Create symlink Stvori simboličku vezu @@ -1077,72 +1092,72 @@ Dodaj na disk - + Are you sure you want to erase all data on the disc? Jeste li sigurni da želite izbrisati sve podatke na disku? - + Erase button Izbriši - + This action cannot be undone - + How do you want to use this disc? Kako želite koristiti ovaj disk? - + Burn image button Snimi sliku - + Burn files button Snimi datoteke - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error - Nepoznata greška + @@ -1179,42 +1194,42 @@ Stavke: %1 - + Orange Narančasto - + Red Crveno - + Purple - + Navy-blue - + Azure - + Green Zeleno - + Yellow Žuto - + Gray Sivo @@ -1240,7 +1255,7 @@ Hide button - Sakrij + @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Lokalni disk - + Removable disk Uklonjivi disk - + DVD DVD - + Network shared directory Mrežni dijeljeni direktorij - - + + Android mobile device Android mobilni uređaj - + Apple mobile device Apple mobilni uređaj - + Unknown device Nepoznati uređaj - + Remove button Ukloni - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Očisti nedavnu povijest - - - + + + Source path Izvorna putanja @@ -1404,12 +1419,12 @@ - + Empty Trash Isprazni smeće - + Location Lokacija @@ -1509,7 +1524,7 @@ Pretražujem... - + My Vault @@ -1541,17 +1556,17 @@ 5 minutes - 5 minuta + 10 minutes - 10 minuta + 20 minutes - 20 minuta + @@ -1561,27 +1576,27 @@ File not found - Datoteka nije pronađena + File already exists - Datoteka već postoji + File is a directory - Datoteka je direktorij + File is not a directory - Datoteka nije direktorij + File is a directory that isn't empty - Datoteka je direktorij koji nije prazan + @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1734,7 +1749,7 @@ Refresh - Osvježi + @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - + + In trial period U probnom periodu - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tip - + Time accessed - + Time modified Vrijeme promjene - + Time created Vrijeme stvaranja - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Veličina ikone @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 stavka odabrana @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button U redu - + Operation failed! Operacija nije uspjela! @@ -2529,191 +2554,191 @@ Ciljana mapa je unutar izvorne mape! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Otkaži - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Želiš li pokrenuti %1 ili prikazati sadržaj? - + It is an executable text file. To je izvršna tekstualna datoteka. - - - + + + Run button Pokreni - - + + Run in terminal button Pokreni u terminalu - + Display button Prikaži - + Do you want to run %1? - + It is an executable file. To je izvršna tekstualna datoteka. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Trajno obriši %1 stavki? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Obriši - + Permanently delete %1? Trajno obriši %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Isprazni - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" već postoji, molim koristi drugo ime. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Otkaži - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 na što se ovaj prečac odnosi je promjenjeno ili premješteno - + Do you want to delete this shortcut? Želite li izbrisati ovaj prečac? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted Odabrane datoteke sadrže mapu/direktorij sustava, i ne može biti izbrisan @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - Računalo + - - + + Home - Osobna mapa + - - + + Desktop - Radna površina + - - + + Videos - - + + Music - Glazba + - - + + Pictures - Slike + - - + + Documents - Dokumenti + - - + + Downloads - Preuzimanja + - + Open in new tab: - Otvori u novoj kartici: + - + Current Directory - Trenutni direktorij + - + Files and folders - Datoteke i mape + - + Show hidden files - Pokaži skrivene datoteke + - + Show file extensions - + Mix sorting of files and folders - + Workspace - Radni prostor + - + View - Pogled + - + Default size: - Zadana veličina: + - + Extra small - Izuzetno malo + - + Small - Malo + - + Medium - Srednje + - + Large - Veliko + - + Extra large - Izuzetno veliko - - - - Tree - + Default view: - Zadana veličina: + - + Icon - Ikona - - - - List - Popis - - - - Restore default view mode for all directories - - Restore default view mode + + List - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - Napredno + + + + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + - + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Ostali - + Close Zatvori - + Close current tab Zatvori trenutnu karticu - + Back Natrag - + Forward Naprijed - + Switch to next tab Prebaci na slijedeću karticu - + Switch to previous tab Prebaci na prethodnu karticu - + Next file Slijedeća datoteka - + Previous file Prethodna datoteka - + Switch tab by specified number between 1 to 8 Prebacuj između kartica pomoću određenih brojeva između 1 do 8 @@ -3378,7 +3400,7 @@ Recent - Nedavno + @@ -3394,43 +3416,42 @@ - + Time modified: %1 Vrijeme izmjene:%1 - + Original folder Izvorna mapa - + Contains: %1 Sadrži:%1 - + Original file Izvorna datoteka - + Size: %1 Veličina: %1 - + Target folder Ciljana mapa - - + In data statistics ... - + Target file Ciljana datoteka @@ -3445,37 +3466,37 @@ Molim pričekajte - + Keep both button Zadrži oboje - + Skip button Preskoči - - + + Replace button Zamijeni - + Do not ask again Ne pitaj ponovno - + Retry button Pokušajte ponovno - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Otkaži - + Remove button Ukloni @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Računalo - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - Pogrešna lozinka + - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Računalo - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - Otkaži + - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moji direktoriji - + Disks Diskovi @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tip uređaja - + Total space Ukupan prostor - + File system Datotečni sustav - + Contains Sadrži - + Free space Slobodan prostor - + %1 items %1 stavki - + %1 item %1 stavka @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Veličina - + Dimension Dimenzija - + Duration Trajanje - + Type Tip - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Zalijepi - Cu&t - + Cut + Izreži - &Copy - + Copy + Kopiraj dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Otvori - Rena&me - + Rename + Preimenuj - &Delete - + Delete + Obriši @@ -4557,11 +4579,6 @@ Open in terminal Otvori u terminalu - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Pošalji za - - Bluetooth - - - - + Create link Stvori vezu - + Send to desktop Pošalji na radnu površinu @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Otvori - + Open in new window Otvori u novom prozoru - + Open in new tab Otvori u novoj kartici - + Cancel sharing Otkaži djeljenje - - P&roperties - + + Properties + Svojstva dfmplugin_myshares::MyShares - + My Shares Moja djeljenja @@ -4682,7 +4699,7 @@ Nema datoteka za snimanje - + Unable to burn. Not enough free space on the target disk. Snimanje nije moguće. Nema dovoljno mjesta na ciljanom disku. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Veličina - + Contains Sadrži - + Type Tip - + Location Lokacija - + Time created Vrijeme stvaranja - + Time accessed - + Time modified Vrijeme promjene - + Hide this file Sakrij ovu datoteku - - + + %1 item %1 stavka - + %1 items %1 stavki @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Dostupno @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Računalo - + Basic Info Osnovne informacije - + Computer name Ime računala - + Version Inačica - + Edition Izdanje - + OS build - + Type Tip - + Processor Procesor - + Memory Memorija @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Svojstva dfmplugin_recent::Recent - + + Recent Nedavno @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Putanja - + Last access Zadnji pristup - + Recent Nedavno @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Traži: - + File Type: Vrsta datoteke: - + File Size: Veličina datoteke: - + Time Modified: Vrijeme izmjene: - + Time Accessed: Vrijeme pristupanja: - + Time Created: Vrijeme stvaranja: - + Reset - + All subdirectories Svi poddirektoriji - + Current directory Trenutni direktorij - + Application - + Video Video - + Audio Audio - + Image Slika - + Archive Arhiva - + Text Tekst - + Executable Izvršna - + Backup file - + Today Danas - + Yesterday Jučer - + This week Ovaj tjedan - + Last week Prošli tjedan - + This month Ovaj mjesec - + Last month Prošli mjesec - + This year Ove godine - + Last year Prošle godine @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Traži - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Putanja @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otvori lokaciju datoteke - + Select all Odaberi sve - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other Ostalo - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Računala u LAN-u + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Otvori @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otvori lokaciju datoteke @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Spoji na poslužitelj - - - + + + Clear History Obriši povijest - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Otkaži - + Connect button Spoji se - + Charset Encoding - + Default - + My Favorites Moji favoriti - + No favorites yet Još nema favorita - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Izvorna putanja - + Time deleted Vrijeme brisanja @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Vrati - + Restore all Vrati sve - + Empty trash - + Source path Izvorna putanja - + Time deleted Vrijeme brisanja @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Smeće @@ -5529,17 +5526,17 @@ Smeće - + item Stavka - + items stavke - + Contains %1 %2 Sadrži %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Veličina - + Contains Sadrži - + Type Tip - + Location Lokacija - + Time created Vrijeme stvaranja - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK U redu @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Slijedeće - - + + Passwords do not match Lozinke se ne podudaraju @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Lozinka - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Lozinka - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Otkaži - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Obriši - - Failed to delete file vault - + + Removing... + Uklanjam... - + + OK - + button + U redu - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - + + Wrong password + Pogrešna lozinka - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortiraj po - + Display as Prikaži kao - + Name Ime - + Time modified Vrijeme promjene - + Size Veličina - + Type Tip - + Icon Ikona - + List Popis - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Spremi @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Spremi - + Open button Otvori @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_hu.ts b/translations/dde-file-manager_hu.ts index 6b8558aae4..0e5942082e 100644 --- a/translations/dde-file-manager_hu.ts +++ b/translations/dde-file-manager_hu.ts @@ -15,104 +15,99 @@ Application - + File Manager Fájlkezelő - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. A Fájlkezelő egy hatékony és könnyen használható fájlkezelő eszköz, amely kereséssel, másolással, kukával, tömörítéssel / kicsomagolással, fájl tulajdonságokkal és egyéb hasznos funkciókkal rendelkezik. - DesktopMain + DAttachedProtocolDevice - - Desktop - Asztal + + %1 on %2 + %1 itt: %2 - DeviceList + DeepinStorage - - Disks - Lemezek + + + %1 Volume + %1 kötet - DiskMountPlugin + DesktopMain - - Disk - Lemez + + Desktop + Asztal + + + DiskControlWidget - - Open - Megnyitás + + Disks + Lemezek - - Eject all - Az összes kiadása + + The device was not safely removed + Az eszközt nem sikerült biztonságosan eltávolítani - - - DockItemDataManager - - The device has been safely removed - Az eszköz biztonságosan eltávolítva + + Click "Safely Remove" and then disconnect it next time + Kattintson a "Biztonságos eltávolítás" gombra, majd csatlakoztassa le később - - eject - Kiadás + + Disk is busy, cannot unmount now + A lemez használatban van, jelenleg nem választható le - - unmount - Leválasztás + + The device is busy, cannot eject now + Az eszköz használatban van, jelenleg nem választható le + + + DiskMountPlugin - - - remove - Eltávolítás + + Disk + Lemez - - Operation failed - A művelet sikertelen + + Open + Megnyitás - - Device (%1) is busy, cannot %2 now. - + + Eject all + Az összes kiadása FileDialogHandle - + All Files Összes Fájl - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Ismeretlen @@ -128,89 +123,88 @@ QObject - + need authorization to access A hozzáféréshez engedélyre van szükség - + Can't verify the identity of %1. Nem sikerült ellenőrizni a %1 azonosságát. - + This happens when you log in to a computer the first time. Ez akkor történik, amikor először jelentkezik be a számítógépre. - + The identity sent by the remote computer is A távoli számítógép által küldött azonosság - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Ha teljesen biztos akar lenni abban, hogy biztonságos a folytatás, vegye fel a kapcsolatot a rendszergazdával. - - - + + + System Disk Rendszerlemez - + Data Disk Adatlemez - + Blank %1 Disc Üres %1 lemez - - - + + + Unknown Ismeretlen - + %1 Drive %1 meghajtó - + %1 Encrypted %1 titkosítva - - + %1 Volume %1 kötet - + + Scanning the device, stop it? Az eszköz ellenőrzése, biztos benne hogy leállítja? - + Unmount failed A leválasztás sikertelen - + Cannot stop scanning device Az ellenőrzést nem lehet leállítani - - + %1 on %2 %1 itt: %2 @@ -219,6 +213,7 @@ + Home Saját mappa @@ -228,6 +223,7 @@ + Desktop Asztal @@ -237,6 +233,7 @@ + Videos Videók @@ -246,6 +243,7 @@ + Music Zene @@ -255,6 +253,7 @@ + Pictures Képek @@ -264,6 +263,7 @@ + Documents Dokumentumok @@ -273,6 +273,7 @@ + Downloads Letöltések @@ -281,6 +282,7 @@ + Trash Kuka @@ -291,11 +293,12 @@ + Recent Legutóbbi - + @@ -303,7 +306,7 @@ Automatikus csatolás - + @@ -316,46 +319,47 @@ %1 feladat folyamatban - + %1 item %1 elem - + %1 items %1 elem - + Unable to find the original file Nem található az eredeti fájl - - + + File has been moved or deleted A fájl törölve lett vagy át lett helyezve - - + + + You do not have permission to access this folder Nincs jogosultsága a mappához való hozzáféréséhez - - + + You do not have permission to traverse files in it Nincs jogosultsága a belső fájlok bejárására - - + + Folder is empty A mappa üres - + Loading... Betöltés... @@ -404,7 +408,7 @@ - + Built-in disks A beépített lemezek elrejtése @@ -412,6 +416,7 @@ + Computer Számítógép @@ -419,8 +424,9 @@ - - + + + Computers in LAN Számítógépek a vezetékes hálózatban @@ -428,7 +434,7 @@ - + Loop partitions Hurok partíciók @@ -436,8 +442,7 @@ - - + Mounted sharing folders Csatolt megosztási mappák @@ -445,6 +450,7 @@ + My shares Megosztásaim @@ -452,7 +458,7 @@ - + Network Hálózat @@ -460,7 +466,7 @@ - + Mounted partitions and discs Csatolt partíciók és lemezek @@ -468,7 +474,7 @@ - + Partitions Partíciók @@ -476,7 +482,7 @@ - + Quick access Gyors hozzáférés @@ -484,7 +490,7 @@ - + Tag Címke @@ -492,7 +498,7 @@ - + Added tags Hozzáadott címkék @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Mutassa folyamatosan a Samba megosztásokat @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Leállítás - + Shortcut Parancsikon - + This system wallpaper is locked. Please contact your admin. Ez a rendszer háttérkép zárolva van. Kérjük forduljon a rendszergazdához. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (másolás) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese ( %1 másolása) @@ -901,26 +909,33 @@ Bit + Access denied Hozzáférés megtagadva + Confirm button Megerősítés + + + The device has been safely removed + Az eszköz biztonságosan eltávolítva + - - + + - - - + + + Open in new window Megnyitás új ablakban @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Megnyitás új fülön @@ -953,8 +968,8 @@ - - + + Properties Tulajdonságok @@ -990,7 +1005,7 @@ Új fájl - + Create symlink Szimbolikus hivatkozás létrehozása @@ -1077,70 +1092,70 @@ Lemezre írás - + Are you sure you want to erase all data on the disc? Biztosan törölni kíván minden adatot a lemezről? - + Erase button Törlés - + This action cannot be undone Ez a művelet nem vonható vissza - + How do you want to use this disc? Milyen módon kívánja használni ezt a lemezt? - + Burn image button Kép írása - + Burn files button Fájlok írása - + %1 is a duplicate file. %1 egy duplikált fájl. - + Insufficient disc space. Nem elegendő lemezterület. - + Lost connection to drive. Megszűnt a kapcsolat a meghajtóval. - + The CD/DVD drive is not ready. Try another disc. CD/DVD meghajtó nem áll készen. Próbáljon meg egy másik lemezt. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD meghajtó használatban van. Lépjen ki a meghajtót használó programból és próbálja újra. - + Invalid volume name Érvénytelen kötetnév - + Unknown error Ismeretlen hiba @@ -1179,42 +1194,42 @@ Elem: %1 - + Orange Narancs - + Red Piros - + Purple Lila - + Navy-blue Sötétkék - + Azure Égszínkék - + Green Zöld - + Yellow Sárga - + Gray Szürke @@ -1290,76 +1305,76 @@ Nem lehet elérni - + User directory Felhasználói mappa - + Local disk Helyi lemez - + Removable disk Eltávolítható lemez - + DVD DVD - + Network shared directory Hálózaton megosztott mappa - - + + Android mobile device Android mobil eszköz - + Apple mobile device Apple® mobil eszköz - + Unknown device Ismeretlen eszköz - + Remove button Eltávolítás - + Do you want to remove this item? Biztosan el szeretné távolítani ezt az elemet? - + Do yout want to remove %1 items? Biztosan el szeretne távolítani %1 elemet? - + It does not delete the original files Nem törli az eredeti fájlokat - + Clear recent history Előzmények törlése - - - + + + Source path Forrás útvonal @@ -1404,12 +1419,12 @@ Nem sikerült megnyitni a kukában lévő elemeket, először állítsa vissza - + Empty Trash Kuka ürítése - + Location Hely @@ -1509,7 +1524,7 @@ Keresés... - + My Vault Saját tároló @@ -1704,7 +1719,7 @@ Sikertelen - + Sidebar Oldalsáv @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nem engedélyezett - - - In trial period - A próbaidőszakban - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - Nem engedélyezett - - - - + + In trial period A próbaidőszakban @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Új gyűjtemény @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Asztal rendezése - + Desktop options Asztal beállítások - + Organize by Rendezés e szerint - + Custom collection Egyéni gyűjtemény - + Type Típus - + Time accessed Hozzáférés ideje - + Time modified Módosítási idő - + Time created Létrehozási idő - + Create a collection Hozzon létre egy gyűjteményt + + + Display Size + Megjelenítési méret + + + + Smaller + Kisebb + + + + Normal + Normál + + + + Larger + bb + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Asztal beállítások - + Auto arrange icons Ikonok automatikus elrendezése @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Megjelenítési méret + + + Icon size Ikon méret @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? A Fájlkezelő új verzióra frissül, amely során a folyamatban lévő feladatok megszakadnak. Szeretné most frissíteni? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Az asztali szolgáltatások új verzióra frissülnek, melynek során a folyamatban lévő feladatok megszakadnak. Szeretné most frissíteni? - + Update button Frissítés - + Cancel button Mégsem @@ -2360,7 +2385,7 @@ - + %1 item selected %1 elem kiválasztva @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Hibás művelet! @@ -2529,191 +2554,191 @@ A cél mappa a forrás mappán belül található - + The passphrase is needed to access encrypted data on %1. A jelszó a titkosított adatok eléréséhez szükséges a(z) %1 helyen. - - - - - - - - + + + + + + + + Cancel button Mégsem - + Format button Formázás - + To access the device, you must format the disk first. Are you sure you want to format it now? Az eszköz eléréséhez először meg kell formáznia a lemezt. Biztosan formázni szeretné most? - + Do you want to run %1 or display its content? Futtatja a %1 -et, vagy megjeleníti annak tartalmát? - + It is an executable text file. Ez egy futtatható szöveges fájl. - - - + + + Run button Futtatás - - + + Run in terminal button Futtatás terminálban - + Display button Megjelenítés - + Do you want to run %1? Futtatni szeretné a %1? - + It is an executable file. Ez egy futtatható fájl. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? A kijelölt %1 elem nem helyezhető át a kukába. Szeretné véglegesen törölni őket? - + Permanently delete %1 items? Véglegesen törli a %1 elemet? - + Cannot move "%1" to the trash. Do you want to permanently delete it? A "%1" elem nem helyezhető át a kukába. Szeretné véglegesen törölni? - - - + + + Delete button Törlés - + Permanently delete %1? Véglegesen törli a %1-et? - - + + This action cannot be undone Ez a művelet nem vonható vissza - + Are you sure you want to empty %1 item? Biztosan ki akarja üríteni a %1 elemet? - + Are you sure you want to empty %1 items? Biztosan ki akarja üríteni a %1 elemet? - + Empty Üres - + Do you want to delete %1? Biztosan törölni szeretné a %1 fájlt? - + Do you want to delete the selected %1 items? Biztosan törölni szeretné a kijelölt %1 elemet? - + Failed to restore %1 file, the target folder is read-only Nem sikerült visszaállítani a %1 fájlt, a célmappa csak olvasható - + Failed to restore %1 files, the target folder is read-only Nem sikerült visszaállítani a %1 fájlokat, a célmappa csak olvasható - + "%1" already exists, please use another name. A "%1" már használatban van, kérjük válasszon egy másik nevet. - + Device or resource busy Az eszköz vagy az erőforrás foglalt - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Ez a fájl el lesz rejtve, ha a fájl neve ponttal "." karakterrel kezdődik. El akarja rejteni? - + Hide Elrejtés - + Cancel Mégsem - + Unable to access %1 Nem sikerült elérni a %1 fájlt - + %1 that this shortcut refers to has been changed or moved A %1 -re mutató parancsikon meg lett változtatva vagy át lett helyezve - + Do you want to delete this shortcut? Biztosan törölni szeretné ezt a parancsikont? - + This file is not executable, do you want to add the execute permission and run? Ez a fájl nem futtatható, hozzá akarja adni a végrehajtási engedélyt és utána futtni? - + The selected files contain system file/directory, and it cannot be deleted A kiválasztott fájlok rendszerfájlokat/mappákat tartalmaznak és nem lehet őket törölni @@ -2841,276 +2866,278 @@ Adja meg a jelszavát a lemez titkosításának feloldásához - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window Mindig új ablakban nyissa meg - + Open file: Fájl megnyitása: - + Click Kattintás - + Double click Dupla kattintás - + New window and tab Új ablak és fül - + Open from default window: Megnyitás alapértelmezett ablakban: - - + + Computer Számítógép - - + + Home Saját mappa - - + + Desktop Asztal - - + + Videos Videók - - + + Music Zenék - - + + Pictures Képek - - + + Documents Dokumentumok - - + + Downloads Letöltések - + Open in new tab: Megnyitás új fülön: - + Current Directory Jelenlegi mappa - + Files and folders Fájlok és mappák - + Show hidden files Rejtett fájlok megjelenítése - + Show file extensions Fájlkiterjesztések megjelenítése - + Mix sorting of files and folders Fájlok és mappák rendezése vegyesen - + Workspace Munkaterület - + View Nézet - + Default size: Alapértelmezett méret: - + Extra small Nagyon kicsi - + Small Kicsi - + Medium Közepes - + Large Nagy - + Extra large Nagyon nagy - - Tree - - - - + Default view: Alapértelmezett nézet: - + Icon Ikon - + List Lista - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview Miniatűr előnézete - + Compressed file preview Tömörített fájl előnézete - + Text preview Szöveg előnézete - + Document preview Dokumentum előnézete - + Image preview Kép előnézete - + Video preview Videó előnézete - + Music preview Zenei előnézete - + The remote environment shows thumbnail previews A távoli környezet miniatűr előnézeteket jelenít meg - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Az miniatűr előnézetek bekapcsolása a távoli könyvtár lassú betöltését vagy a művelet lefagyását okozhatja - + Advanced Haladó - + + Search + Keresés + + + + Auto index internal disk + Belső lemez automatikus indexelése + + + + Index external storage device after connected to computer + Külső tároló eszközök indexelése a számítógéphez való csatlakoztatás után + + + + Full-Text search + Teljes szöveg keresése + + + Mount Csatolás - + Auto mount Automatikus csatolás - + Open after auto mount Megnyitás automatikus csatolás után - + + Show item counts and sizes in the path of mounted MTP devices + Elemszámok és méretek megjelenítése a csatlakoztatott MTP -eszközök elérési útvonalában + + + Merge the entries of Samba shared folders Egyesítse a Samba megosztott mappáinak bejegyzéseit - + Switching the entry display may lead to failed mounting A belépési képernyő megváltoztatása sikertelen csatoláshoz vezethet - + Use the file chooser dialog of File Manager Használja a Fájlkezelő fájlválasztó párbeszédpanelét - + Ask for my confirmation when deleting files Kérjen megerősítést a fájlok törlésekor @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Egyebek - + Close Bezárás - + Close current tab Jelenlegi lap bezárása - + Back Vissza - + Forward Előre - + Switch to next tab Váltás a következő lapra - + Switch to previous tab Váltás az előző lapra - + Next file Következő fájl - + Previous file Előző fájl - + Switch tab by specified number between 1 to 8 Váltás a lapok között, megadott számmal, 1 és 8 között @@ -3394,43 +3416,42 @@ A %1 célfájl létrehozása sikertelen. Ütközés az információs funkcióban! - + Time modified: %1 Módosítási idő: %1 - + Original folder Eredeti mappa - + Contains: %1 Tartalmazza: %1 - + Original file Eredeti fájl - + Size: %1 Méret: %1 - + Target folder Cél mappa - - + In data statistics ... Adatstatisztika - + Target file Cél fájl @@ -3445,37 +3466,37 @@ Kérjük várjon - + Keep both button Mindkettő megtartása - + Skip button Kihagyás - - + + Replace button Csere - + Do not ask again Ne kérdezze újra - + Retry button Újra - + Merge button Egyesítés @@ -3489,7 +3510,7 @@ Adjon meg egy jelszót a megosztott mappák védelméhez - + Set a password on the shared folder for non-anonymous access Állítson be egy jelszót a megosztási mappában, a nem névtelen hozzáférésekhez @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Sajnáljuk, a gyors hozzáférés mappa nem található, eltávolítsuk? - + Cancel button Mégsem - + Remove button Eltávolítás @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Számítógép - + Computer display items Számítógépes megjelenítő elemek - + Hide built-in disks on the Computer page A beépített lemezek elrejtése a Számítógép oldalon - + Hide loop partitions on the Computer page A hurok partíciók elrejtése a Számítógép oldalon - + Show file system on disk icon Fájlrendszer megjelenítése a lemezen ikonokon - + Hide My Directories on the Computer page Saját könyvtárak elrejtése a Számítógép oldalon - + Hide 3rd party entries on the Computer page Harmadik fél bejegyzéseinek elrejtése a Számítógép oldalon @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Az eszköz feloldása sikertelen - + Wrong password Helytelen jelszó - + Rename failed Az átnevezés sikertelen - + The device is busy and cannot be renamed now Az eszköz használatban van, jelenleg nem nevezhető át - + Format failed A formázás sikertelen - + The device is busy and cannot be formatted now Az eszköz használatban van, jelenleg nem formázható - + Mount error Csatolási hiba - + Cannot access %1 Nem lehet elérni a %1 fájlt @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Számítógép - + %1 is read-only. Do you want to enable read and write permissions for it? - A %1 csak olvasható. Szeretné engedélyezni az olvasási és írási jogosultságokat?  + A %1 csak olvasható. Szeretné engedélyezni az olvasási és írási jogosultságokat? - + Once enabled, read/write permission will be granted permanently Ha egyszer engedélyezi az olvasási/írási jogosultságokat, akkor azokat véglegesen megkapja - + Cancel Mégsem - + Enable Now Engedélyezés most @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Saját könyvtáram - + Disks Lemezek @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Alapvető információk - + Device type Eszköztípus - + Total space Teljes tárhely - + File system Fájlrendszer - + Contains Tartalmak - + Free space Szabad tárhely - + %1 items %1 elem - + %1 item %1 elem @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 itt: %2 @@ -3968,27 +3990,27 @@ Méret - + Dimension Méret - + Duration Időtartam - + Type Típus - + Accessed Elérve - + Modified Módosítva @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - A(z) %1 fájl kukába helyezése sikertelen + A(z) %1 fájlt a kukába helyezése sikertelen @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 A fájl másolása vagy kivágása sikertelen, oka: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Fájl átnevezési hiba - + Failed to create the directory A mappa létrehozása sikertelen - + Failed to create the file A fájl létrehozása sikertelen - + link file error Link fájl hiba - - + + Failed to modify file permissions A fájlengedélyeket módosítása sikertelen @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Beillesztés - Cu&t - + Cut + Kivágás - &Copy - + Copy + Másolás dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Megnyitás - Rena&me - + Rename + Átnevezés - &Delete - + Delete + Törlés @@ -4557,11 +4579,6 @@ Open in terminal Megnyitás terminálban - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Küldés a - - Bluetooth - - - - + Create link Hivatkozás létrehozása - + Send to desktop Küldés az asztalra @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Megosztás + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Megnyitás - + Open in new window Megnyitás új ablakban - + Open in new tab Megnyitás új fülön - + Cancel sharing Megosztás törlése - - P&roperties - + + Properties + Tulajdonságok dfmplugin_myshares::MyShares - + My Shares Megosztásaim @@ -4683,7 +4700,7 @@ Nincsenek írható fájlok - + Unable to burn. Not enough free space on the target disk. Nem sikerült megírni. Nincs elég szabad hely a céllemezen. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Alapvető információk - + Size Méret - + Contains Tartalmak - + Type Típus - + Location Hely - + Time created Létrehozási idő - + Time accessed Hozzáférés ideje - + Time modified Módosítási idő - + Hide this file Fájl elrejtése - - + + %1 item %1 elem - + %1 items %1 elem @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security A titkok biztonságáért - + For Government A kormány számára - + For Enterprise Vállalatok számára - + Bit Bit - + Available Elérhető @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Számítógép - + Basic Info Alapvető információk - + Computer name Számítógép neve - + Version Verzió: - + Edition Kiadás - + OS build Operációs rendszer verziója - + Type Típus - + Processor Processzor - + Memory Memória @@ -4874,14 +4891,6 @@ %1 fájl, %2 mappa - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Tulajdonságok dfmplugin_recent::Recent - + + Recent Legutóbbi @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Elérési útvonal - + Last access Utolsó hozzáférés - + Recent Legutóbbi @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Keresés: - + File Type: Fájltípus: - + File Size: Fájlméret: - + Time Modified: Módosítás időpontja: - + Time Accessed: Hozzáférési idő: - + Time Created: Létrehozás ideje: - + Reset Visszaállítás - + All subdirectories Minden alkönyvtár - + Current directory Jelenlegi mappa - + Application Alkalmazás - + Video Videó - + Audio Audió - + Image Kép - + Archive Tömörített - + Text Szöveg - + Executable Futtatható - + Backup file Biztonsági mentési fájl - + Today Ma - + Yesterday Tegnap - + This week Ezen a héten - + Last week Múlthéten - + This month Ebben a hónapban - + Last month Múlt hónapban - + This year Ebben az évben - + Last year Múlt évben @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Keresés - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Elérési útvonal @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Fájl helyének megnyitása - + Select all Összes kijelölése - + Path Elérési útvonal @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Gyors hozzáférés - + Partitions Partíciók - + Network Hálózat - + Tag Címke - + + Bookmark + Könyvjelzők + + + Other Egyéb - + Unknown Group Ismeretlen csoport + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Számítógépek a vezetékes hálózatban + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Megnyitás @@ -5184,8 +5191,8 @@ - P&roperties - + Properties + Tulajdonságok @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Címke @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Fájl helyének megnyitása @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Csatlakozás kiszolgálóhoz - - - + + + Clear History Előzmények törlése - + Unfavorite Kedvencek visszavonása - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Mégsem - + Connect button Csatlakozás - + Charset Encoding Karakterkészlet kódolás - + Default Alapértelmezett - + My Favorites Kedvenceim - + No favorites yet Még nincsenek kedvencek - + Favorite Kedvencek @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Forrás elérési útvonal - + Time deleted Törlési idő @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Visszaállítás - + Restore all Összes visszaállítása - + Empty trash Kuka ürítése - + Source path Forrás elérési útvonal - + Time deleted Törlési idő @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Kuka @@ -5530,17 +5527,17 @@ Kuka - + item elem - + items elem - + Contains %1 %2 Tartalmazza %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Alapvető információk - + Size Méret - + Contains Tartalmak - + Type Típus - + Location Hely - + Time created Létrehozási idő - + Time accessed Hozzáférés ideje - + Time locked Az idő zárolva @@ -5774,7 +5771,7 @@ The %1 directory is occupied, please clear the files in this directory and try to unlock the safe again. A % 1 könyvtár foglalt, -kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra feloldani a széf zárolását.  +kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra feloldani a széf zárolását. @@ -5988,7 +5985,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Fájl tároló titkosítása @@ -6009,19 +6006,19 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f - - - + + + Encrypt Titkosítás - + Failed to create file vault: %1 Nem sikerült létrehozni a % 1 fájltárolót - + OK OK @@ -6072,7 +6069,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Tároló jelszó beállítása @@ -6098,7 +6095,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 karakter, tartalmazhatja A-Z, a-z, 0-9 és szimbólumokat @@ -6133,8 +6130,8 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f Következő - - + + Passwords do not match A jelszavak nem egyeznek @@ -6142,7 +6139,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultActiveStartView - + File Vault Fájl tároló @@ -6192,7 +6189,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultHelper - + Vault Tároló @@ -6202,7 +6199,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f A Tároló nem érhető el, mert a cryf nincs telepítve! - + A task is in progress, so it cannot perform your operation Egy feladat folyamatban van, ezért nem tudja végrehajtani a műveletet @@ -6210,122 +6207,99 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_vault::VaultPropertyDialog - + My Vault Saját tároló - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Mégsem - - - - Delete - Törlés - - - - Delete File Vault - Fájl tároló törlése - - - - Failed to delete file vault - A fájl tároló törlése sikertelen - - - - OK - OK - - - - Once deleted, the files in it will be permanently deleted - A törlés után a benne lévő fájlok véglegesen törlődnek - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - A törlés után a benne lévő fájlok véglegesen törlődnek - - - + Password Jelszó - + Password hint: %1 Jelszó emlékeztető: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Mégsem - - - - Delete - Törlés + + Input the 32-digit recovery key + Írja be a 32 jegyű helyreállítási kulcsot + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Fájl tároló törlése - - Wrong password - Helytelen jelszó + + Once deleted, the files in it will be permanently deleted + A törlés után a benne lévő fájlok véglegesen törlődnek - - Failed to delete file vault - A fájl tároló törlése sikertelen + + Cancel + button + Mégsem - - OK - OK + + Use Key + button + Kulcs használata - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Írja be a 32 jegyű helyreállítási kulcsot + + Delete + button + Törlés - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Eltávolítás... - + + OK + button OK - - Delete File Vault - Fájl tároló törlése + + Wrong password + Helytelen jelszó + + + + Wrong recovery key + Helytelen helyreállítási kulcs - + + Failed to delete file vault + A fájl tároló törlése sikertelen + + + Deleted successfully Sikeresen törölve + + + Failed to delete + A törlés sikertelen + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6309,16 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f Saját tároló - + File Vault Fájl tároló + + + + Vault + Tároló + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6331,22 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_workspace::FileViewModel - + Name Név - + Time modified Módosítási idő - + Size Méret - + Type Típus @@ -6382,7 +6362,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_workspace::IconItemEditor - + %1 are not allowed A %1 nem engedélyezett @@ -6398,50 +6378,45 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Rendezés - + Display as Megtekintés mint - + Name Név - + Time modified Módosítási idő - + Size Méret - + Type Típus - + Icon Ikon - + List Lista - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f filedialog_core::FileDialog - + Save button Mentés @@ -6463,13 +6438,13 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f filedialog_core::FileDialogStatusBar - + Save button Mentés - + Open button Megnyitás @@ -6507,112 +6482,112 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f plugin_filepreview::DDciIconPreview - + Available sizes: Elérhető méretek: - + Custom Size Egyéni méret - + Device Pixel Ratio: Eszköz pixelaránya: - + Theme: Téma: - + Light Világos - + Dark Sötét - + Mode: Mód: - + Normal Normál - + Disabled Letiltva - + Hovered Lebegő - + Pressed Megnyomott - + Palette Paletta - + Current mode icon does not support the palette A jelenlegi mód ikonja nem támogatja a palettát - + Foreground: Előtér: - + Background: Háttér: - + Highlight: Kiemelés: - + HighlightForeground: Előtér kiemelése: - + Background Color: Háttér színe: - + White Fehér - + Black Fekete - + Transparent Áttetsző - + Custom Egyéni @@ -6644,24 +6619,24 @@ kérjük törölje a fájlokat ebben a könyvtárban, és próbálja meg újra f plugin_filepreview::MusicMessageView - + Artist: Előadó: - + Album: Album: - + unknown artist Ismeretlen előadó - + unknown album Ismeretlen album - \ No newline at end of file + diff --git a/translations/dde-file-manager_hy.ts b/translations/dde-file-manager_hy.ts index 4234e0372c..32b7a70a90 100644 --- a/translations/dde-file-manager_hy.ts +++ b/translations/dde-file-manager_hy.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_id.ts b/translations/dde-file-manager_id.ts index 2e99f2f72f..7ffa30c48e 100644 --- a/translations/dde-file-manager_id.ts +++ b/translations/dde-file-manager_id.ts @@ -15,104 +15,99 @@ Application - + File Manager Manajer Berkas - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Manajer Berkas adalah alat pengelolaan berkas yang kuat dan mudah digunakan, dilengkapi dengan fitur pencarian, penyalinan, tempat sampah, kompresi/dekompresi, properti berkas, dan fungsi-fungsi lain yang berguna. - DesktopMain + DAttachedProtocolDevice - - Desktop - Desktop + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + 1% Volume - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Desktop + + + DiskControlWidget - - Open - Buka + + Disks + Disk - - Eject all - Keluarkan Semua + + The device was not safely removed + Perangkat tidak dilepas dengan aman. - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Klik "Lepaskan dengan Aman" dan kemudian putuskan koneksi perangkat tersebut lain kali. - - eject - + + Disk is busy, cannot unmount now + Disk sedang sibuk, tidak dapat dicabut sekarang. - - unmount - + + The device is busy, cannot eject now + Perangkat sedang sibuk, tidak dapat dikeluarkan sekarang. + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Buka - - Device (%1) is busy, cannot %2 now. - + + Eject all + Keluarkan Semua FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Tidak diketahui @@ -128,89 +123,88 @@ QObject - + need authorization to access Perlu otorisasi untuk mengakses - + Can't verify the identity of %1. Tidak dapat memverifikasi identitas %1. - + This happens when you log in to a computer the first time. Ini terjadi ketika kamu masuk ke komputer untuk pertama kalinya. - + The identity sent by the remote computer is Identitas yang dikirim oleh komputer remote adalah - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jika kamu ingin benar-benar yakin bahwa aman untuk melanjutkan, hubungi administrator sistem. - - - + + + System Disk Diska Sistem - + Data Disk Diska Data - + Blank %1 Disc - - - + + + Unknown Tidak diketahui - + %1 Drive - + %1 Encrypted - - + %1 Volume 1% Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Rumah @@ -228,6 +223,7 @@ + Desktop Desktop @@ -237,6 +233,7 @@ + Videos Video @@ -246,6 +243,7 @@ + Music Musik @@ -255,6 +253,7 @@ + Pictures Gambar @@ -264,6 +263,7 @@ + Documents Dokumen @@ -273,6 +273,7 @@ + Downloads Unduhan @@ -281,6 +282,7 @@ + Trash Tong sampah @@ -291,11 +293,12 @@ + Recent Baru ini - + @@ -303,7 +306,7 @@ Kaitkan otomatis - + @@ -316,46 +319,47 @@ %1 tugas-tugas sedang berlangsung - + %1 item %1 item - + %1 items %1 item - + Unable to find the original file - - + + File has been moved or deleted Berkas telah dipindahkan atau dihapus - - + + + You do not have permission to access this folder Anda tidak punya hak akses untuk mengakses folder ini - - + + You do not have permission to traverse files in it - - + + Folder is empty Folder kosong - + Loading... Memuat... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Komputer @@ -419,8 +424,9 @@ - - + + + Computers in LAN Komputer dalam LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Pintasan - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Akses ditolak + Confirm button Pastikan + + + The device has been safely removed + + - - + + - - - + + + Open in new window Bukan di jendela baru @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Buka di tab baru @@ -953,8 +968,8 @@ - - + + Properties Properti @@ -990,7 +1005,7 @@ Berkas Baru - + Create symlink Buat symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Hapus - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ Butir: %1 - + Orange Jingga - + Red Merah - + Purple Ungu - + Navy-blue Biru angkatan laut - + Azure Biru langit - + Green Hijau - + Yellow Kuning - + Gray Abu-abu @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Diska lokal - + Removable disk Diska yang bisa dilepas - + DVD DVD - + Network shared directory Direktori berbagi jaringan - - + + Android mobile device Perangkat mobil Android - + Apple mobile device Perangkat mobil Apple - + Unknown device Perangkat tidak diketahui - + Remove button Hapus - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Bersihkan riwayat saat ini - - - + + + Source path Jalur sumber @@ -1404,12 +1419,12 @@ - + Empty Trash Kosongkan Tong sampah - + Location Lokasi @@ -1509,7 +1524,7 @@ Mencari... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tipe - + Time accessed - + Time modified Waktu dimodifikasi - + Time created Tanggal dibuat - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Ukuran ikon @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 item dipilih @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operasi gagal! @@ -2529,191 +2554,191 @@ Folder target berada di dalam folder sumber! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Batal - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Apakah Anda ingin menjalankan %1 atau menampilkan kontennya? - + It is an executable text file. Ini merupakan berkas teks bisa dieksekusi. - - - + + + Run button Jalankan - - + + Run in terminal button Jalankan di terminal - + Display button Tampilkan - + Do you want to run %1? Apakah Anda ingin menjalankan %1? - + It is an executable file. Ini merupakan berkas yang bisa dieksekusi. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Menghapus permanen %1 item? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Hapus - + Permanently delete %1? Menghapus permanen %1 item? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Kosong - + Do you want to delete %1? Apakah Anda ingin menghapus %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" sudah ada, silakan gunakan nama lain. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Batal - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 bahwa pintasan ini mengacu telah berubah atau dipindahkan - + Do you want to delete this shortcut? Apakah Anda yakin untuk menghapus jalan pintas ini? - + This file is not executable, do you want to add the execute permission and run? Berkas ini bukan eksekusi, apakah anda ingin tambah ijin eksekusi dan jalan? - + The selected files contain system file/directory, and it cannot be deleted Berkas yang terpilih merupakan berkas/direktori sistem, tidak dapat menyalin @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Lainnya - + Close Tutup - + Close current tab Tutup tab saat ini - + Back Kembali - + Forward Teruskan - + Switch to next tab Alih ke tab selanjutnya - + Switch to previous tab Alih ke tab sebelumnya - + Next file Berkas sleanjutnya - + Previous file Berkas sbeelumnya - + Switch tab by specified number between 1 to 8 Beralih tab dengan nomor tertentu di antara 1 sampai dengan 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Folder asli - + Contains: %1 - + Original file Berkas asli - + Size: %1 Ukuran: %1 - + Target folder Folder tujuan - - + In data statistics ... - + Target file Berkas tujuan @@ -3445,37 +3466,37 @@ Mohon tunggu - + Keep both button Simpan keduanya - + Skip button Lewati - - + + Replace button Ganti - + Do not ask again Jangan tanya lagi - + Retry button Coba lagi - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Batal - + Remove button Hapus @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Komputer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Komputer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Direktori Saya - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tipe perangkat - + Total space Total ruang - + File system - + Contains Mengandung - + Free space Ruang kosong - + %1 items %1 item - + %1 item %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Ukuran - + Dimension Dimensi - + Duration Durasi - + Type Tipe - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Tempel - Cu&t - + Cut + Potong - &Copy - + Copy + Salin dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Buka - Rena&me - + Rename + Ganti nama - &Delete - + Delete + Hapus @@ -4557,11 +4579,6 @@ Open in terminal Buka di terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Kirim ke - - Bluetooth - - - - + Create link Buat tautan - + Send to desktop Kirim ke desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Buka - + Open in new window Bukan di jendela baru - + Open in new tab Buka di tab baru - + Cancel sharing Batalkan berbagi - - P&roperties - + + Properties + Properti dfmplugin_myshares::MyShares - + My Shares Berbagiku @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Ukuran - + Contains Mengandung - + Type Tipe - + Location Lokasi - + Time created Tanggal dibuat - + Time accessed - + Time modified Waktu dimodifikasi - + Hide this file - - + + %1 item %1 item - + %1 items %1 item @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Tersedia @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Komputer - + Basic Info Info Dasar - + Computer name - + Version Versi - + Edition Edisi - + OS build - + Type Tipe - + Processor Prosesor - + Memory Memori @@ -4873,14 +4890,6 @@ %1 berkas, %2 folder - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Properti dfmplugin_recent::Recent - + + Recent Baru ini @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Jejak - + Last access Akses terakhir - + Recent Baru ini @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Cari: - + File Type: Tipe Berkas: - + File Size: Ukuran Berkas: - + Time Modified: Waktu Modifikasi: - + Time Accessed: - + Time Created: - + Reset Setel Ulang - + All subdirectories Semua subdirektori - + Current directory Direktori saat ini - + Application Aplikasi - + Video Video - + Audio Audio - + Image Gambar - + Archive Arsip - + Text teks - + Executable Dapat dijalankan - + Backup file - + Today Sekarang - + Yesterday Kemarin - + This week Minggu ini - + Last week Minggu kemarin - + This month Bulan ini - + Last month Bulan lalu - + This year Tahun ini - + Last year Tahun lalu @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Cari - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Jejak @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Buka lokasi berkas - + Select all Pilih semua - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other Lainnya - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Komputer dalam LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Buka @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Buka lokasi berkas @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History Bersihkan Riwayat - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Batal - + Connect button Sambung - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Jejak Sumber - + Time deleted Waktu dihapus @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Kembalikan - + Restore all Kembalikan semua - + Empty trash - + Source path Jalur sumber - + Time deleted Waktu dihapus @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Tong sampah @@ -5529,17 +5526,17 @@ Tong sampah - + item item - + items item - + Contains %1 %2 Mengandung %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Ukuran - + Contains Mengandung - + Type Tipe - + Location Lokasi - + Time created Tanggal dibuat - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Selanjutnya - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,121 +6205,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Sandi lewat - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Sandi lewat - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Batal - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Hapus - - Failed to delete file vault - + + Removing... + Menghapus... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - + + Wrong password + Kata sandi salah - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully - + + Failed to delete + Gagal untuk menghapus @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Urutkan berdasar - + Display as Tampilkan sebagai - + Name Nama - + Time modified Waktu dimodifikasi - + Size Ukuran - + Type Tipe - + Icon Ikon - + List Daftar - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Simpan @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Simpan - + Open button Buka @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_it.ts b/translations/dde-file-manager_it.ts index fb55f3337e..d3ee01e90a 100644 --- a/translations/dde-file-manager_it.ts +++ b/translations/dde-file-manager_it.ts @@ -15,105 +15,100 @@ Application - + File Manager Gestore File - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Gestore File di Deepin è uno strumento di gestione file con funzionalità di ricerca, copia, compressione/decompressione, dettagli dei file ed altre funzionalità. Localizzazione italiana a cura di Massimo A. Carofano. - DesktopMain + DAttachedProtocolDevice - - Desktop - Desktop + + %1 on %2 + %1 su %2 - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + Volume %1 - DiskMountPlugin + DesktopMain - - Disk - Disco + + Desktop + Desktop + + + DiskControlWidget - - Open - Apri + + Disks + Dischi - - Eject all - Espelli tutto + + The device was not safely removed + Il dispositivo non è stato rimosso in sicurezza - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Clicca su "Rimozione sicura" e rimuovilo solo successivamente - - eject - + + Disk is busy, cannot unmount now + Disco occupato, impossibile smontare - - unmount - + + The device is busy, cannot eject now + Disco occupato, impossibile espellerlo ora + + + DiskMountPlugin - - - remove - + + Disk + Disco - - Operation failed - + + Open + Apri - - Device (%1) is busy, cannot %2 now. - + + Eject all + Espelli tutto FileDialogHandle - + All Files Tutti i file - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Sconosciuto @@ -129,89 +124,88 @@ Localizzazione italiana a cura di Massimo A. Carofano. QObject - + need authorization to access need authorization to access - + Can't verify the identity of %1. Impossibile verificare l'identità di %1. - + This happens when you log in to a computer the first time. Questo accade quando effettui l'accesso ad un computer per la prima volta. - + The identity sent by the remote computer is L'identità inviata dal computer remoto è - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Se desideri essere sicuro, contatta l'admin di sistema. - - - + + + System Disk Disco di sistema - + Data Disk Disco dati - + Blank %1 Disc Cancella disco %1 - - - + + + Unknown Sconosciuto - + %1 Drive Dispositivo %1 - + %1 Encrypted %1 Crittografato - - + %1 Volume Volume %1 - + + Scanning the device, stop it? Scansione del dispositivo in corso, interromperla? - + Unmount failed Smontaggio fallito - + Cannot stop scanning device Impossibile interrompere la scansione del dispositivo - - + %1 on %2 %1 su %2 @@ -220,6 +214,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Home Home @@ -229,6 +224,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Desktop Desktop @@ -238,6 +234,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Videos Video @@ -247,6 +244,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Music Musica @@ -256,6 +254,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Pictures Immagini @@ -265,6 +264,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Documents Documenti @@ -274,6 +274,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Downloads Download @@ -282,6 +283,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Trash Cestino @@ -292,11 +294,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Recent File Recenti - + @@ -304,7 +307,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Monta automaticamente - + @@ -317,46 +320,47 @@ Localizzazione italiana a cura di Massimo A. Carofano. 1% operazioni in corso - + %1 item %1 oggetto - + %1 items %1 oggetti - + Unable to find the original file Impossibile trovare il file di origine - - + + File has been moved or deleted Il file è stato spostato o eliminato - - + + + You do not have permission to access this folder Non hai i permessi per accedere a questa cartella - - + + You do not have permission to traverse files in it Non hai i permessi per modificare i file contenuti - - + + Folder is empty Cartella vuota - + Loading... Caricamento... @@ -405,7 +409,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Built-in disks Dischi interni @@ -413,6 +417,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Computer Computer @@ -420,8 +425,9 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + + Computers in LAN Computer in LAN @@ -429,7 +435,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Loop partitions Partizioni loop @@ -437,8 +443,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + Mounted sharing folders Cartelle condivise montate @@ -446,6 +451,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. + My shares Le mie condivisioni @@ -453,7 +459,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Network Network @@ -461,7 +467,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Mounted partitions and discs Partizioni e dischi montati @@ -469,7 +475,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Partitions Partizioni @@ -477,7 +483,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Quick access Accesso rapido @@ -485,7 +491,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Tag Tag @@ -493,7 +499,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Added tags Tag aggiunti @@ -508,7 +514,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Keep showing the mounted Samba shares Continua a mostrare le condivisioni Samba montate @@ -842,15 +848,16 @@ Localizzazione italiana a cura di Massimo A. Carofano. + - - + + - + Cancel button @@ -858,28 +865,29 @@ Localizzazione italiana a cura di Massimo A. Carofano. + Stop button Stop - + Shortcut Scorciatoia - + This system wallpaper is locked. Please contact your admin. Lo sfondo di sistema è bloccato, contatta il tuo Admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copia) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copia %1) @@ -902,26 +910,33 @@ Localizzazione italiana a cura di Massimo A. Carofano. Bit + Access denied Accesso negato + Confirm button Conferma + + + The device has been safely removed + Il dispositivo è stato rimosso in sicurezza + - - + + - - - + + + Open in new window Apri in una nuova finestra @@ -930,12 +945,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + - - - + + + Open in new tab Apri in una nuova scheda @@ -954,8 +969,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + Properties Proprietà @@ -991,7 +1006,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Nuovo file - + Create symlink Crea symlink @@ -1078,70 +1093,70 @@ Localizzazione italiana a cura di Massimo A. Carofano. Aggiungi al disco - + Are you sure you want to erase all data on the disc? Sicuro di voler eliminare tutti i dati presenti sul disco? - + Erase button Elimina - + This action cannot be undone Questa azione non può esser annullata - + How do you want to use this disc? Come vuoi utilizzare questo disco? - + Burn image button Scrivi immagine - + Burn files button Scrivi file - + %1 is a duplicate file. %1 è un file duplicato. - + Insufficient disc space. Spazio insufficiente su disco - + Lost connection to drive. Connessione al disco persa. - + The CD/DVD drive is not ready. Try another disc. Il CD/DVD non è pronto. Prova con un altro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Il CD/DVD è occupato. Esci dal programma che sta utilizzando il lettore, inserendo nuovamente il disco. - + Invalid volume name Nome volume non valido - + Unknown error Errore sconosciuto @@ -1180,42 +1195,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. Elementi: %1 - + Orange Arancione - + Red Rosso - + Purple Viola - + Navy-blue Blu Navy - + Azure Azzurro - + Green Verde - + Yellow Giallo - + Gray Grigio @@ -1291,76 +1306,76 @@ Localizzazione italiana a cura di Massimo A. Carofano. Accesso non consentito - + User directory Cartella Utente - + Local disk Disco locale - + Removable disk Disco rimovibile - + DVD DVD - + Network shared directory Directory condivisa di rete - - + + Android mobile device Dispositivo Mobile Android - + Apple mobile device Dispositivo Mobile Apple - + Unknown device Dispositivo sconosciuto - + Remove button Rimuovi - + Do you want to remove this item? Desideri eliminare questo elemento? - + Do yout want to remove %1 items? Vuoi rimuovere %1 elementi? - + It does not delete the original files Non cancellare i file originali - + Clear recent history Pulisci cronologia - - - + + + Source path Percorso @@ -1405,12 +1420,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. Impossibile aprire i file nel cestino, ripristinali prima di procedere - + Empty Trash Svuota cestino - + Location Percorso @@ -1510,7 +1525,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Ricerca... - + My Vault Il mio Vault @@ -1705,7 +1720,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Fallito - + Sidebar Barra laterale @@ -1888,29 +1903,14 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nessuna autorizzazione - - - In trial period - Periodo di prova - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - Nessuna autorizzazione - - - - + + In trial period Periodo di prova @@ -1974,7 +1974,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::CustomMode - + New Collection Nuova collezione @@ -1982,50 +1982,70 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizza il desktop - + Desktop options Opzioni desktop - + Organize by Organizzato da - + Custom collection Collezione personalizzata - + Type Tipo - + Time accessed Ultimo accesso - + Time modified Ultima modifica - + Time created Data creazione - + Create a collection Crea una collezione + + + Display Size + Dimensioni display + + + + Smaller + Piccolo + + + + Normal + Normale + + + + Larger + Grande + ddplugin_organizer::ItemEditor @@ -2046,12 +2066,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::OptionsWindow - + Desktop options Opzioni desktop - + Auto arrange icons Disponi automaticamente le icone @@ -2156,7 +2176,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. ddplugin_organizer::SizeSlider - + + Display size + Dimensioni schermo + + + Icon size Dimensione icone @@ -2325,23 +2350,23 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? File Manager verrà aggiornato a una nuova versione, durante la quale le attività in corso verranno terminate. Vuoi aggiornare adesso? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? I servizi desktop verranno aggiornati a una nuova versione, durante la quale le attività in corso verranno terminate. Vuoi aggiornare adesso? - + Update button Aggiorna - + Cancel button Annulla @@ -2361,7 +2386,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + %1 item selected %1 oggetto selezionato @@ -2400,10 +2425,10 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmbase::DialogManager - - - - + + + + Confirm button @@ -2512,15 +2537,15 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - + + OK button OK - + Operation failed! Operazione fallita! @@ -2530,191 +2555,191 @@ Localizzazione italiana a cura di Massimo A. Carofano. La cartella di destinazione è all'interno di quella originaria! - + The passphrase is needed to access encrypted data on %1. La passphrase è necessaria per accedere ai dati crittografati su %1. - - - - - - - - + + + + + + + + Cancel button Annulla - + Format button Formatta - + To access the device, you must format the disk first. Are you sure you want to format it now? Per accedere al dispositivo dovresti prima formattare il disco. Sicuro di volerlo formattare? - + Do you want to run %1 or display its content? Vuoi eseguire %1 o visualizzarne il contenuto? - + It is an executable text file. E' un file eseguibile di testo. - - - + + + Run button Esegui - - + + Run in terminal button Esegui nel Terminale - + Display button Visualizza - + Do you want to run %1? Desideri eseguire %1? - + It is an executable file. È un file eseguibile. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Impossibile spostare gli elementi %1 selezionati nel cestino. Vuoi eliminarli definitivamente? - + Permanently delete %1 items? Elimina definitivamente %1? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Impossibile spostare "%1" nel cestino. Vuoi eliminarlo definitivamente? - - - + + + Delete button Elimina - + Permanently delete %1? Elimina definitivamente %1? - - + + This action cannot be undone Questa azione non può esser annullata - + Are you sure you want to empty %1 item? Sicuro di voler eliminare %1 oggetto? - + Are you sure you want to empty %1 items? Sicuro di eliminare %1 oggetti? - + Empty Vuoto - + Do you want to delete %1? Desideri cancellare %1? - + Do you want to delete the selected %1 items? Desideri eliminare i %1 elementi selezionati? - + Failed to restore %1 file, the target folder is read-only Ripristino di %1 file fallito, la destinazione è di tipo sola lettura - + Failed to restore %1 files, the target folder is read-only Ripristino di %1 file fallito, la destinazione è di tipo sola lettura - + "%1" already exists, please use another name. "%1" esiste già, usa un altro nome. - + Device or resource busy Risorse occupate - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Il file sarà nascosto se il suo nome inizierà per punto '.', desideri confermarlo? - + Hide Nascondi - + Cancel Annulla - + Unable to access %1 Impossibile accedere a %1 - + %1 that this shortcut refers to has been changed or moved %1 questa scorciatoia è stata modificata o spostata - + Do you want to delete this shortcut? Desideri eliminare questa scorciatoia? - + This file is not executable, do you want to add the execute permission and run? Il file non è eseguibile, desideri impostare i relativi permessi ed eseguire? - + The selected files contain system file/directory, and it cannot be deleted La selezione contiene files e cartelle di sistema, quindi non possono esser eliminati. @@ -2842,276 +2867,278 @@ Localizzazione italiana a cura di Massimo A. Carofano. Inserisci la password per decifrare il Disco - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window Apri sempre le cartelle in una nuova finestra - + Open file: Apri file: - + Click Click - + Double click Doppio Click - + New window and tab Nuova finestra e scheda - + Open from default window: Apri dalla finestra di default: - - + + Computer Computer - - + + Home Home - - + + Desktop Desktop - - + + Videos Video - - + + Music Musica - - + + Pictures Immagini - - + + Documents Documenti - - + + Downloads Download - + Open in new tab: Apri in una nuova scheda - + Current Directory Directory attuale - + Files and folders File e cartelle - + Show hidden files Mostra file nascosti - + Show file extensions Mostra le estensioni - + Mix sorting of files and folders Ordina assieme file e cartelle - + Workspace Spazio di lavoro - + View Visualizza - + Default size: Dimensioni di default: - + Extra small Molto piccola - + Small Piccola - + Medium Media - + Large Grande - + Extra large Molto grande - - Tree - - - - + Default view: Vista di default: - + Icon Icona - + List Lista - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview Anteprime in miniatura - + Compressed file preview Anteprima file compressi - + Text preview Anteprima testo - + Document preview Anteprima documenti - + Image preview Anteprima immagini - + Video preview Anteprima video - + Music preview Anteprima musica - + The remote environment shows thumbnail previews L'ambiente remoto mostra le anteprima in miniatura - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Abilitare le anteprime delle immagini potrebbe causare un caricamento lento delle cartelle remote - + Advanced Avanzate - + + Search + Ricerca + + + + Auto index internal disk + Indicizza il disco interno + + + + Index external storage device after connected to computer + Indicizza i dispositivi esterni dopo la loro connessione al computer + + + + Full-Text search + Ricerca in tutto il testo + + + Mount Monta - + Auto mount Monta automaticamente - + Open after auto mount Apri dopo l'auto-mount - + + Show item counts and sizes in the path of mounted MTP devices + Mostra il numero e le dimensioni degli elementi nel percorso dei dispositivi MTP montati + + + Merge the entries of Samba shared folders Unisci le voci delle cartelle condivise Samba - + Switching the entry display may lead to failed mounting La commutazione del display di ingresso potrebbe portare al mancato montaggio - + Use the file chooser dialog of File Manager Usa il form di dialog del File Manager - + Ask for my confirmation when deleting files Chiedi la conferma in caso di eliminazione @@ -3275,56 +3302,51 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Switch to tree view - - - - Others Altro - + Close Chiudi - + Close current tab Chiudi scheda attuale - + Back Indietro - + Forward Avanti - + Switch to next tab Passa alla scheda successiva - + Switch to previous tab Torna alla scheda precedente - + Next file Prossimo file - + Previous file File precedente - + Switch tab by specified number between 1 to 8 Cambia scheda specificando un numero tra 1 e 8 @@ -3395,43 +3417,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. create target file %1 Info failed in show conflict Info function! - + Time modified: %1 Ultima modifica: %1 - + Original folder Cartella di origine - + Contains: %1 Contiene: %1 - + Original file File originario - + Size: %1 Dimensione: %1 - + Target folder Cartella di destinazione - - + In data statistics ... Nelle statistiche dei dati... - + Target file File di destinazione @@ -3446,37 +3467,37 @@ Localizzazione italiana a cura di Massimo A. Carofano. Attendere prego - + Keep both button Mantieni entrambi - + Skip button Salta - - + + Replace button Sostituisci - + Do not ask again Non chiederlo nuovamente - + Retry button Riprova - + Merge button Unisci @@ -3490,7 +3511,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Inserisci una password per proteggere le cartelle - + Set a password on the shared folder for non-anonymous access Impostare una password sulla cartella condivisa per l'accesso non anonimo @@ -3516,18 +3537,18 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Spiacenti, non riesco a individuare la directory di accesso rapido, rimuoverla? - + Cancel button Annulla - + Remove button Rimuovi @@ -3785,37 +3806,38 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::Computer - + + Computer Computer - + Computer display items Mostra elementi - + Hide built-in disks on the Computer page Nascondi i dischi integrati nella pagina Computer - + Hide loop partitions on the Computer page Nascondi le partizioni loop nella pagina Computer - + Show file system on disk icon Mostra il file system nell'icona del Disco - + Hide My Directories on the Computer page Nascondi le mie directory nella pagina Computer - + Hide 3rd party entries on the Computer page Hide 3rd party entries on the Computer page @@ -3823,42 +3845,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ComputerController - + Unlock device failed Unlock device failed - + Wrong password Password errata - + Rename failed Ridenominazione fallita - + The device is busy and cannot be renamed now Impossibile ridenominare dato che il dspositivo è occupato - + Format failed Formattazione fallita - + The device is busy and cannot be formatted now Il dispositivo è occupato e non può essere formattato ora - + Mount error Errore di montaggio - + Cannot access %1 Impossibile accedere a %1 @@ -3866,27 +3888,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? %1 è di sola lettura. Vuoi abilitare le autorizzazioni di lettura e scrittura per questo? - + Once enabled, read/write permission will be granted permanently Una volta abilitati, i permessi di lettura/scrittura diverranno permanenti - + Cancel Annulla - + Enable Now Abilita ora @@ -3894,12 +3916,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ComputerItemWatcher - + My Directories Preferiti - + Disks Dischi @@ -3907,42 +3929,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::DeviceBasicWidget - + Basic info Info di base - + Device type Tipo dispositivo - + Total space Spazio totale - + File system File system - + Contains Contiene - + Free space Spazio libero - + %1 items %1 oggetti - + %1 item %1 oggetto @@ -3950,7 +3972,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 su %2 @@ -3969,27 +3991,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. Dimensione - + Dimension Dimensioni - + Duration Durata - + Type Tipo - + Accessed Accesso effettuato - + Modified Modificato @@ -4259,7 +4281,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Failed to move the file %1 to trash - Spostamento file %1 fallita + @@ -4336,7 +4358,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Copy or Cut File failed! - Copia o taglio del file fallito! + @@ -4366,7 +4388,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Failed to move the file %1 to trash, cause: %2 - Spostamento nel cestino del file %1 fallito, causa: %2 + @@ -4385,8 +4407,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - Copy or Cut File failed, cause: %1 - Copia o taglio del file fallito, causa: %1 + Copy or Cut File failed,cause: %1 + @@ -4418,30 +4440,30 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Errore ridenominazione file - + Failed to create the directory Creazione Impossibile creare la directory - + Failed to create the file Creazione file fallita - + link file error Errore collegamento file - - + + Failed to modify file permissions - Modifica permessi file fallita + @@ -4456,36 +4478,36 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Incolla - Cu&t - + Cut + Taglia - &Copy - + Copy + Copia dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Apri - Rena&me - + Rename + Rinomina - &Delete - + Delete + Elimina @@ -4558,11 +4580,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. Open in terminal Apri nel Terminale - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4580,22 +4597,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_menu::SendToMenuScenePrivate - + Send to Invia a - - Bluetooth - - - - + Create link Crea collegamento - + Send to desktop Invia al desktop @@ -4603,43 +4615,48 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_menu::ShareMenuScenePrivate - + Share Condividi + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Apri - + Open in new window Apri in una nuova finestra - + Open in new tab Apri in una nuova scheda - + Cancel sharing Annulla condivisione - - P&roperties - + + Properties + Proprietà dfmplugin_myshares::MyShares - + My Shares Condivisi @@ -4684,7 +4701,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Nessun file da scrivere - + Unable to burn. Not enough free space on the target disk. Scrittura non possibile. Spazio disponibile sul disco di destinazione non sufficiente. @@ -4692,58 +4709,58 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::BasicWidget - + Basic info Info di base - + Size Dimensione - + Contains Contiene - + Type Tipo - + Location Percorso - + Time created Data creazione - + Time accessed Ultimo accesso - + Time modified Ultima modifica - + Hide this file Nascondi questo file - - + + %1 item %1 oggetto - + %1 items %1 oggetti @@ -4764,27 +4781,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Per la sicurezza dei segreti - + For Government Per il governo - + For Enterprise Per Impresa - + Bit Bit - + Available Disponibile @@ -4792,47 +4809,47 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Info base - + Computer name Nome Computer - + Version Versione - + Edition Edizione - + OS build OS - + Type Tipo - + Processor Processore - + Memory Memoria @@ -4875,14 +4892,6 @@ Localizzazione italiana a cura di Massimo A. Carofano. %1 file(s), %2 cartella(e) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4902,14 +4911,15 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Proprietà dfmplugin_recent::Recent - + + Recent File Recenti @@ -4917,17 +4927,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_recent::RecentManager - + Path Percorso - + Last access Ultimo accesso - + Recent File Recenti @@ -4958,127 +4968,127 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_search::AdvanceSearchBarPrivate - + Search: Cerca: - + File Type: Tipo file: - + File Size: Dimensione file: - + Time Modified: Ultima modifica: - + Time Accessed: Ultimo accesso: - + Time Created: Data creazione: - + Reset Reset - + All subdirectories Tutte le sottocartelle - + Current directory Cartella corrente - + Application Applicazioni - + Video Video - + Audio Audio - + Image Immagini - + Archive Archivio - + Text Testo - + Executable Eseguibile - + Backup file Backup del file - + Today Oggi - + Yesterday Ieri - + This week Questa settimana - + Last week La settimana scorsa - + This month Questo mese - + Last month Il mese scorso - + This year Quest'anno - + Last year L'anno scorso @@ -5086,31 +5096,15 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_search::Search - - + Search Cerca - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Percorso @@ -5118,17 +5112,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_search::SearchMenuScene - + Open file location Apri la cartella del file - + Select all Seleziona tutto - + Path Percorso @@ -5136,42 +5130,55 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_sidebar::SideBarWidget - + Quick access Accesso rapido - + Partitions Partizioni - + Network Rete - + Tag Tag - + + Bookmark + Preferiti + + + Other Altro - + Unknown Group Gruppo sconosciuto + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Computer in LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Apri @@ -5185,8 +5192,8 @@ Localizzazione italiana a cura di Massimo A. Carofano. - P&roperties - + Properties + Proprietà @@ -5220,7 +5227,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_tag::Tag - + Tag Tag @@ -5228,7 +5235,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_tag::TagDirMenuScene - + Open file location Apri la cartella del file @@ -5278,66 +5285,56 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Connetti al Server - - - + + + Clear History Cancella cronologia - + Unfavorite Togli dai preferiti - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Annulla - + Connect button Connetti - + Charset Encoding Codifica di caratteri - + Default Default - + My Favorites I miei preferiti - + No favorites yet Non ancora preferito - + Favorite Aggiungi ai preferiti @@ -5477,12 +5474,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_trash::TrashHelper - + Source Path Percorso fonte - + Time deleted Data eliminazione @@ -5490,27 +5487,27 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_trash::TrashMenuScenePrivate - + Restore Ripristina - + Restore all Ripristina tutto - + Empty trash Svuota cestino - + Source path Percorso - + Time deleted Data eliminazione @@ -5518,7 +5515,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_trashcore::TrashCore - + Trash Cestino @@ -5531,17 +5528,17 @@ Localizzazione italiana a cura di Massimo A. Carofano. Cestino - + item Oggetto - + items Oggetti - + Contains %1 %2 Contiene %1 %2 @@ -5723,42 +5720,42 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_vault::BasicWidget - + Basic info Info di base - + Size Dimensione - + Contains Contiene - + Type Tipo - + Location Percorso - + Time created Data creazione - + Time accessed Ultimo accesso - + Time locked Data blocco @@ -5989,7 +5986,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Encrypt File Vault @@ -6010,19 +6007,19 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. - - - + + + Encrypt Crittografa - + Failed to create file vault: %1 Creazione file vault fallita: %1 - + OK OK @@ -6073,7 +6070,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Imposta la password Vault @@ -6099,7 +6096,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caratteri, che contenga A-Z, a-z, 0-9 e simboli @@ -6134,8 +6131,8 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente.Prosegui - - + + Passwords do not match La password non corrisponde @@ -6143,7 +6140,7 @@ pulisci i files in questa directory e prova a sbloccarla nuovamente. dfmplugin_vault::VaultActiveStartView - + File Vault File di recupero Vault @@ -6194,7 +6191,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_vault::VaultHelper - + Vault Vault @@ -6204,7 +6201,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Vault not available because cryfs not installed! - + A task is in progress, so it cannot perform your operation Un'attività è in corso, quindi non può eseguire l'operazione @@ -6212,122 +6209,99 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_vault::VaultPropertyDialog - + My Vault Il mio Vault - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Annulla - - - - Delete - Elimina - - - - Delete File Vault - Elimina File Vault - - - - Failed to delete file vault - Rimozione file vault fallita - - - - OK - Ok - - - - Once deleted, the files in it will be permanently deleted - Una volta rimosso, i file contenuti saranno eliminati - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Una volta rimosso, i file contenuti saranno eliminati - - - + Password Password - + Password hint: %1 Suggerimento password: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Annulla - - - - Delete - Elimina + + Input the 32-digit recovery key + Inserisci la chiave di 32 caratteri + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Elimina File Vault - - Wrong password - Password errata + + Once deleted, the files in it will be permanently deleted + Una volta rimosso, i file contenuti saranno eliminati - - Failed to delete file vault - Rimozione file vault fallita + + Cancel + button + Annulla - - OK - Ok + + Use Key + button + Usa la chiave - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Inserisci la chiave di 32 caratteri + + Delete + button + Elimina - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Rimozione... - + + OK - Ok + button + OK - - Delete File Vault - Elimina File Vault + + Wrong password + Password errata + + + + Wrong recovery key + Password di recupero errata - + + Failed to delete file vault + Rimozione file vault fallita + + + Deleted successfully Rimozione riuscita + + + Failed to delete + Eliminazione file fallita + dfmplugin_vault::VaultVisibleManager @@ -6337,10 +6311,16 @@ Localizzazione italiana a cura di Massimo A. Carofano. Il mio Vault - + File Vault File di recupero Vault + + + + Vault + Vault + dfmplugin_workspace::FileOperatorHelper @@ -6353,22 +6333,22 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_workspace::FileViewModel - + Name Nome - + Time modified Ultima modifica - + Size Dimensione - + Type Tipo @@ -6384,7 +6364,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 non ammessi @@ -6400,50 +6380,45 @@ Localizzazione italiana a cura di Massimo A. Carofano. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordina per - + Display as Visualizza come - + Name Nome - + Time modified Ultima modifica - + Size Dimensione - + Type Tipo - + Icon Icona - + List Lista - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6456,7 +6431,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. filedialog_core::FileDialog - + Save button Salva @@ -6465,13 +6440,13 @@ Localizzazione italiana a cura di Massimo A. Carofano. filedialog_core::FileDialogStatusBar - + Save button Salva - + Open button Apri @@ -6509,112 +6484,112 @@ Localizzazione italiana a cura di Massimo A. Carofano. plugin_filepreview::DDciIconPreview - + Available sizes: Dimensioni disponibili: - + Custom Size Dimensione personalizzata - + Device Pixel Ratio: Rapporto del dispositivo - + Theme: Tema: - + Light Chiaro - + Dark Scuro - + Mode: Modalità: - + Normal Normale - + Disabled Disattivato - + Hovered Al passaggio - + Pressed Premendo - + Palette Tavolozza colori - + Current mode icon does not support the palette L'attuale modalità delle icone non supporta la tavolozza colori - + Foreground: Primo piano: - + Background: Sfondo: - + Highlight: Evidenziato: - + HighlightForeground: Evidenze in primo piano: - + Background Color: Colore sfondo: - + White Bianco - + Black Nero - + Transparent Trasparente - + Custom Personalizzato @@ -6646,22 +6621,22 @@ Localizzazione italiana a cura di Massimo A. Carofano. plugin_filepreview::MusicMessageView - + Artist: Artista: - + Album: Album: - + unknown artist artisca sconosciuto - + unknown album album sconosciuto diff --git a/translations/dde-file-manager_ja.ts b/translations/dde-file-manager_ja.ts index bc31444f1c..a75a435b0a 100644 --- a/translations/dde-file-manager_ja.ts +++ b/translations/dde-file-manager_ja.ts @@ -15,104 +15,99 @@ Application - + File Manager ファイル マネージャー - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ファイル マネージャーは、検索やコピー、ゴミ箱、圧縮/伸張、ファイルプロパティ、その他の便利な機能を備えた、強力で使いやすいファイル管理ツールです。 - DesktopMain + DAttachedProtocolDevice - - Desktop - デスクトップ + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 ボリューム - DiskMountPlugin + DesktopMain - - Disk - ディスク + + Desktop + デスクトップ + + + DiskControlWidget - - Open - 開く + + Disks + ディスク - - Eject all - すべて取り出す + + The device was not safely removed + デバイスが安全に取り外されませんでした - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + 次回は "安全に取り出す" をクリックしてから切断してください - - eject - + + Disk is busy, cannot unmount now + ディスクがビジー状態のため、現在マウントを解除できません - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + ディスク - - Operation failed - + + Open + 開く - - Device (%1) is busy, cannot %2 now. - + + Eject all + すべて取り出す FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown 不明 @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. これは、コンピューターに初めてログインしたときに発生します。 - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk システムディスク - + Data Disk データディスク - + Blank %1 Disc - - - + + + Unknown 不明 - + %1 Drive - + %1 Encrypted %1 暗号化済み - - + %1 Volume %1 ボリューム - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home ホーム @@ -228,6 +223,7 @@ + Desktop デスクトップ @@ -237,6 +233,7 @@ + Videos ビデオ @@ -246,6 +243,7 @@ + Music ミュージック @@ -255,6 +253,7 @@ + Pictures ピクチャー @@ -264,6 +263,7 @@ + Documents ドキュメント @@ -273,6 +273,7 @@ + Downloads ダウンロード @@ -281,6 +282,7 @@ + Trash ゴミ箱 @@ -291,11 +293,12 @@ + Recent 最近使ったファイル - + @@ -303,7 +306,7 @@ 自動マウント - + @@ -316,46 +319,47 @@ %1タスクが進行中 - + %1 item %1 項目 - + %1 items %1 項目 - + Unable to find the original file - - + + File has been moved or deleted ファイルは移動または削除されました - - + + + You do not have permission to access this folder このフォルダーにアクセスする権限がありません - - + + You do not have permission to traverse files in it - - + + Folder is empty フォルダーは空です - + Loading... 読み込み中... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer コンピューター @@ -419,8 +424,9 @@ - - + + + Computers in LAN LAN内コンピューター @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut ショートカット - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ ビット + Access denied アクセス拒否 + Confirm button 確定 + + + The device has been safely removed + デバイスが安全に取り出されました + - - + + - - - + + + Open in new window 新規ウィンドウで開く @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab 新規タブで開く @@ -953,8 +968,8 @@ - - + + Properties プロパティ @@ -990,7 +1005,7 @@ 新しいファイル - + Create symlink シンボリックリンクの作成 @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone この操作は取り消せません - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange オレンジ - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow 黄色 - + Gray グレー @@ -1290,76 +1305,76 @@ - + User directory - + Local disk ローカルディスク - + Removable disk リムーバブルディスク - + DVD DVD - + Network shared directory ネットワーク共有ディレクトリ - - + + Android mobile device Android モバイルデバイス - + Apple mobile device Apple モバイルデバイス - + Unknown device 不明なデバイス - + Remove button 削除 - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history 最近の履歴を消去 - - - + + + Source path 元のパス @@ -1404,12 +1419,12 @@ - + Empty Trash ゴミ箱を空にする - + Location 場所 @@ -1509,7 +1524,7 @@ 検索中... - + My Vault FileVault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized 未認証 - - + + In trial period トライアル期間 - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type 種類 - + Time accessed アクセス日時 - + Time modified 更新日時 - + Time created 作成日時 - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size アイコンサイズ @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 項目を選択中 @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! 操作に失敗しました。 @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button キャンセル - + Format button フォーマット - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? %1 を実行またはコンテンツ表示してよろしいですか? - + It is an executable text file. これは実行可能なテキストファイルです。 - - - + + + Run button 実行 - - + + Run in terminal button ターミナルで実行 - + Display button 表示 - + Do you want to run %1? %1を実行しますか? - + It is an executable file. これは実行可能なファイルです。 - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? 本当に %1 項目を削除してよろしいですか? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Delete - + Permanently delete %1? 本当に %1 を削除してよろしいですか? - - + + This action cannot be undone この操作は取り消せません - + Are you sure you want to empty %1 item? %1 項目を完全に削除してもよろしいですか? - + Are you sure you want to empty %1 items? %1 項目を完全に削除してもよろしいですか? - + Empty 完全に削除 - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only %1ファイルの復元に失敗しました。対象のフォルダーは読み取り専用です - + Failed to restore %1 files, the target folder is read-only %1ファイルの復元に失敗しました。対象のフォルダーは読み取り専用です - + "%1" already exists, please use another name. "%1" はすでに使われてます。他の名前を入力してください。 - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel キャンセル - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? このショートカットを削除しますか? - + This file is not executable, do you want to add the execute permission and run? このファイルは実行できません。実行権限を追加して実行しますか? - + The selected files contain system file/directory, and it cannot be deleted 選択中のファイルはシステムファイル/ディレクトリを含んでいるため削除できません。 @@ -2841,276 +2866,278 @@ ファイルを復号化するためのパスワードを入力してください - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others その他 - + Close 閉じる - + Close current tab 現在のタブを閉じる - + Back 戻る - + Forward 進む - + Switch to next tab 次のタブへ切り替え - + Switch to previous tab 前のタブへ切り替え - + Next file 次のファイルへ - + Previous file 前のファイルへ - + Switch tab by specified number between 1 to 8 1〜8番目の特定のタブに切り替える @@ -3394,43 +3416,42 @@ - + Time modified: %1 更新日時: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 サイズ: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button どちらも保持 - + Skip button スキップ - - + + Replace button 置き換え - + Do not ask again 再度確認しない - + Retry button 再試行 - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button キャンセル - + Remove button 削除 @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer コンピューター - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer コンピューター - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories マイディレクトリ - + Disks ディスク @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type デバイスの種類 - + Total space すべての容量 - + File system - + Contains ファイル数 - + Free space 空き容量 - + %1 items %1 項目 - + %1 item %1 項目 @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ サイズ - + Dimension - + Duration - + Type 種類 - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + 貼り付け - Cu&t - + Cut + 切り取り - &Copy - + Copy + コピー dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + 開く - Rena&me - + Rename + 名前を変更 - &Delete - + Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal ターミナルで開く - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to 送る - - Bluetooth - - - - + Create link リンクの作成 - + Send to desktop デスクトップへ送る @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + 開く - + Open in new window 新規ウィンドウで開く - + Open in new tab 新規タブで開く - + Cancel sharing 共有をやめる - - P&roperties - + + Properties + プロパティ dfmplugin_myshares::MyShares - + My Shares 共有 @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size サイズ - + Contains ファイル数 - + Type 種類 - + Location 場所 - + Time created 作成日時 - + Time accessed アクセス日時 - + Time modified 更新日時 - + Hide this file - - + + %1 item %1 項目 - + %1 items %1 項目 @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit ビット - + Available 利用可能 @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer コンピューター - + Basic Info 基本情報 - + Computer name - + Version バージョン - + Edition エディション - + OS build - + Type 種類 - + Processor プロセッサ - + Memory メモリ @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + プロパティ dfmplugin_recent::Recent - + + Recent 最近使ったファイル @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path パス - + Last access 最後のアクセス - + Recent 最近使ったファイル @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: 検索: - + File Type: ファイルの種類: - + File Size: ファイルサイズ: - + Time Modified: 更新日時: - + Time Accessed: アクセス日時: - + Time Created: 作成日時: - + Reset リセット - + All subdirectories すべてのサブディレクトリ - + Current directory カレントディレクトリ - + Application アプリケーション - + Video ビデオ - + Audio オーディオ - + Image 画像 - + Archive アーカイブ - + Text テキスト - + Executable 実行可能 - + Backup file バックアップファイル - + Today 今日 - + Yesterday 昨日 - + This week 今週 - + Last week 先週 - + This month 今月 - + Last month 先月 - + This year 今年 - + Last year 昨年 @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search 検索 - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path パス @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all すべて選択 - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other その他 - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + LAN内コンピューター + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + 開く @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server サーバーに接続 - - - + + + Clear History 履歴を消去 - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button キャンセル - + Connect button 接続 - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path 元のパス - + Time deleted 削除日時 @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore 元に戻す - + Restore all すべて元に戻す - + Empty trash - + Source path 元のパス - + Time deleted 削除日時 @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash ゴミ箱 @@ -5529,17 +5526,17 @@ ゴミ箱 - + item 項目 - + items 項目 - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size サイズ - + Contains ファイル数 - + Type 種類 - + Location 場所 - + Time created 作成日時 - + Time accessed アクセス日時 - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault FileVaultを暗号化 @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 FileVaultの作成に失敗しました: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password FileVaultのパスワードを設定 @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault FileVault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,121 +6205,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault FileVault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + パスワード - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password - パスワード + + Delete File Vault + FileVaultを削除 - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + キャンセル - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Delete - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK - + + Failed to delete file vault + FileVaultの削除に失敗しました - - Delete File Vault + + Deleted successfully - - Deleted successfully - + + Failed to delete + 削除に失敗しました @@ -6333,10 +6307,16 @@ FileVault - + File Vault FileVault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 並べ替え - + Display as 表示 - + Name 名前 - + Time modified 更新日時 - + Size サイズ - + Type 種類 - + Icon アイコン - + List リスト - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button 保存 @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button 保存 - + Open button 開く @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ka.ts b/translations/dde-file-manager_ka.ts index 5b0400bebe..39ea3d7b10 100644 --- a/translations/dde-file-manager_ka.ts +++ b/translations/dde-file-manager_ka.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_kab.ts b/translations/dde-file-manager_kab.ts index 4745037d35..60c9bfe2f8 100644 --- a/translations/dde-file-manager_kab.ts +++ b/translations/dde-file-manager_kab.ts @@ -15,104 +15,99 @@ Application - + File Manager Amsefrek n ifuyla - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Amsefrak n yifuyla d afecku n usefrek n yifuyla yelhan i isehlen i useqdec, deg-s unadi, anɣal, iḍumman, askussem/asefruri, taɣara n ufaylu akked tmahilin-nniḍen. - DesktopMain + DAttachedProtocolDevice - - Desktop - Tanarit + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - + + Desktop + Tanarit + + + DiskControlWidget - - Open - + + Disks + Iḍebsiyen - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Arussin @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown Arussin - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Agejdan @@ -228,6 +223,7 @@ + Desktop Tanarit @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash Taqecwalt @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Aselkim @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Ur yettusireg ara - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Teɣzi n tignit @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Aselkim - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Aselkim - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks Iḍebsiyen @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Aselkim - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Taqecwalt @@ -5529,17 +5526,17 @@ Taqecwalt - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_km_KH.ts b/translations/dde-file-manager_km_KH.ts index 91612ccf84..1269da72c0 100644 --- a/translations/dde-file-manager_km_KH.ts +++ b/translations/dde-file-manager_km_KH.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - ផ្ទៃតុ + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 កម្រិតសំឡេង - DiskMountPlugin + DesktopMain - - Disk - ថាស + + Desktop + ផ្ទៃតុ + + + DiskControlWidget - - Open - បើក + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + ថាស - - Operation failed - + + Open + បើក - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume %1 កម្រិតសំឡេង - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop ផ្ទៃតុ @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash ធុងសំរាម @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer កំុព្យូទ័រ @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab បើកនៅក្នុងផ្ទាំងថ្មី @@ -953,8 +968,8 @@ - - + + Properties Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size ទំហំIcon @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button លុប - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab ប្តូរទៅផ្ទាំងមុន - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer កំុព្យូទ័រ - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer កំុព្យូទ័រ - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,18 +4495,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + បើក - Rena&me + Rename - &Delete - + Delete + លុប @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + បើក - + Open in new window - + Open in new tab បើកនៅក្នុងផ្ទាំងថ្មី - + Cancel sharing - - P&roperties - + + Properties + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer កំុព្យូទ័រ - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + បើក @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path ទីតាំងប្រភព - + Time deleted ពេលលុប @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted ពេលលុប @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash ធុងសំរាម @@ -5529,17 +5526,17 @@ ធុងសំរាម - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + លុប - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button បើក @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_kn_IN.ts b/translations/dde-file-manager_kn_IN.ts index bdd2c3c681..07f52a1f3d 100644 --- a/translations/dde-file-manager_kn_IN.ts +++ b/translations/dde-file-manager_kn_IN.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ko.ts b/translations/dde-file-manager_ko.ts index 61e34cd7aa..038df8f750 100644 --- a/translations/dde-file-manager_ko.ts +++ b/translations/dde-file-manager_ko.ts @@ -15,104 +15,99 @@ Application - + File Manager 파일 관리자 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 파일 관리자는 검색, 복사, 휴지통, 압축/압축해제, 파일 속성 및 기타 유용한 기능을 갖춘 강력하고 사용하기 쉬운 파일 관리 도구입니다. - DesktopMain + DAttachedProtocolDevice - - Desktop - 바탕화면 + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 볼륨 - DiskMountPlugin + DesktopMain - - Disk - 디스크 + + Desktop + 바탕화면 + + + DiskControlWidget - - Open - 열기 + + Disks + 디스크 - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + 디스크가 사용 중이므로, 지금 마운트 해제할 수 없습니다 - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + 디스크 - - Operation failed - + + Open + 열기 - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown 알 수 없음 @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk 시스템 디스크 - + Data Disk 데이터 디스크 - + Blank %1 Disc 빈 %1 디스크 - - - + + + Unknown 알 수 없음 - + %1 Drive %1 드라이브 - + %1 Encrypted %1 암호화 - - + %1 Volume %1 볼륨 - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop 바탕화면 @@ -237,6 +233,7 @@ + Videos 동영상 @@ -246,6 +243,7 @@ + Music 음악 @@ -255,6 +253,7 @@ + Pictures 사진 @@ -264,6 +263,7 @@ + Documents 문서 @@ -273,6 +273,7 @@ + Downloads 다운로드 @@ -281,6 +282,7 @@ + Trash 휴지통 @@ -291,11 +293,12 @@ + Recent 최근 사용한 파일 - + @@ -303,7 +306,7 @@ 자동 마운트 - + @@ -316,46 +319,47 @@ %1개의 작업이 진행중 - + %1 item %1 항목 - + %1 items %1개의 항목 - + Unable to find the original file - - + + File has been moved or deleted 파일이 이동되었거나 삭제됨 - - + + + You do not have permission to access this folder 이 폴더에 접근할 권한이 없습니다 - - + + You do not have permission to traverse files in it - - + + Folder is empty 폴더가 비어있습니다 - + Loading... 불러오는 중... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer 컴퓨터 @@ -419,8 +424,9 @@ - - + + + Computers in LAN 내부 네트워크 @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag 태그 @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut 바로가기 - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ 비트 + Access denied 접근 거부 + Confirm button 확정 + + + The device has been safely removed + + - - + + - - - + + + Open in new window 새 창에서 열기 @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab 새 탭에서 열기 @@ -953,8 +968,8 @@ - - + + Properties 속성 @@ -990,7 +1005,7 @@ - + Create symlink 심볼릭링크 생성 @@ -1077,70 +1092,70 @@ 디스크에 추가 - + Are you sure you want to erase all data on the disc? 디스크의 모든 데이터를 지우시겠습니까? - + Erase button 지우기 - + This action cannot be undone 이 작업은 취소할 수 없습니다 - + How do you want to use this disc? 이 디스크를 어떻게 사용하시겠습니까? - + Burn image button 이미지 굽기 - + Burn files button 파일 굽기 - + %1 is a duplicate file. %1은(는) 중복 파일입니다. - + Insufficient disc space. 디스크 공간이 부족합니다. - + Lost connection to drive. 드라이브 연결이 끊어졌습니다. - + The CD/DVD drive is not ready. Try another disc. CD/DVD 드라이브가 준비되지 않았습니다. 다른 디스크를 사용해 보십시오. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD 드라이브가 사용 중입니다. 드라이브를 사용하여 프로그램을 종료하고 드라이브를 다시 삽입하십시오. - + Invalid volume name - + Unknown error 알 수 없는 오류 @@ -1179,42 +1194,42 @@ 항목: %1 - + Orange 주황색 - + Red 빨강색 - + Purple 보라색 - + Navy-blue 감청색 - + Azure 하늘색 - + Green 초록색 - + Yellow 노란색 - + Gray 회색 @@ -1290,76 +1305,76 @@ - + User directory - + Local disk 로컬 디스크 - + Removable disk 제거 가능한 디스크 - + DVD DVD - + Network shared directory 네트워크 공유 디렉토리 - - + + Android mobile device 안드로이드 모바일 장치 - + Apple mobile device 애플 모바일 장치 - + Unknown device 알 수 없는 장치 - + Remove button 제거 - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history 최근 기록 지우기 - - - + + + Source path 원본 경로 @@ -1404,12 +1419,12 @@ - + Empty Trash 휴지통 비우기 - + Location 위치 @@ -1509,7 +1524,7 @@ 검색중... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type 종류 - + Time accessed 액세스한 시간 - + Time modified 수정된 시간 - + Time created 생성된 시간 - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size 아이콘 크기 @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 항목 선택됨 @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button 승인 - + Operation failed! 작업이 실패했습니다! @@ -2529,191 +2554,191 @@ 대상 폴더가 원본 폴더 안에 있습니다! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button 취소 - + Format button 포맷 - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? %1을(를) 실행하거나 내용을 표시 하시겠습니까? - + It is an executable text file. 실행 가능한 텍스트 파일입니다. - - - + + + Run button 실행 - - + + Run in terminal button 터미널에서 실행 - + Display button 표시 - + Do you want to run %1? %1을(를) 실행하시겠습니까? - + It is an executable file. 실행 파일입니다. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1개의 항목을 완전히 삭제하시겠습니까? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button 삭제 - + Permanently delete %1? %1을(를) 완전히 삭제하시겠습니까? - - + + This action cannot be undone 이 작업은 취소할 수 없습니다 - + Are you sure you want to empty %1 item? %1 항목을 비우시겠습니까? - + Are you sure you want to empty %1 items? %1개의 항목을 비우시겠습니까? - + Empty 비우기 - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only %1 파일 복원 실패, 대상 폴더가 읽기 전용입니다 - + Failed to restore %1 files, the target folder is read-only %1개의 파일 복원 실패, 대상 폴더가 읽기 전용입니다 - + "%1" already exists, please use another name. "%1"이(가) 이미 존재합니다. 다른 이름을 사용하십시오. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? 파일 이름이 '.'로 시작하면이 파일이 숨겨집니다. 숨기시겠습니까? - + Hide - + Cancel 취소 - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 바로가기가 가리키는 파일이 변경 또는 이동되었습니다. - + Do you want to delete this shortcut? 이 바로가기를 삭제하시겠습니까? - + This file is not executable, do you want to add the execute permission and run? 이 파일은 실행 파일이 아닙니다. 실행 권한을 추가하고 실행 하시겠습니까? - + The selected files contain system file/directory, and it cannot be deleted 선택한 파일에 시스템 파일/디렉토리가 포함되어 있으며, 삭제할 수 없습니다 @@ -2841,276 +2866,278 @@ 디스크를 해독하기 위한 비밀번호 입력 - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others 기타 - + Close 닫기 - + Close current tab 현재 탭 닫기 - + Back 뒤로 - + Forward 정방향 - + Switch to next tab 다음 탭으로 전환 - + Switch to previous tab 이전 탭으로 전환 - + Next file 다음 파일 - + Previous file 이전 파일 - + Switch tab by specified number between 1 to 8 1에서 8 사이의 지정된 번호로 탭 전환 @@ -3394,43 +3416,42 @@ - + Time modified: %1 수정된 시간: %1 - + Original folder 원본 폴더 - + Contains: %1 내용: %1 - + Original file 원본 파일 - + Size: %1 크기: %1 - + Target folder 대상 폴더 - - + In data statistics ... - + Target file 대상 파일 @@ -3445,37 +3466,37 @@ - + Keep both button 둘 다 유지 - + Skip button 건너뛰기 - - + + Replace button 바꾸기 - + Do not ask again 다시 묻지 않기 - + Retry button 재시도 - + Merge button 합치기 @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button 취소 - + Remove button 제거 @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer 컴퓨터 - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer 컴퓨터 - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories 내 디렉토리 - + Disks 디스크 @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type 장치 유형 - + Total space 총 공간 - + File system 파일 시스템 - + Contains 포함 - + Free space 여유 공간 - + %1 items %1개의 항목 - + %1 item %1 항목 @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ 크기 - + Dimension 크기 - + Duration 기간 - + Type 종류 - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + 붙여넣기 - Cu&t - + Cut + 잘라내기 - &Copy - + Copy + 복사 dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + 열기 - Rena&me - + Rename + 이름 변경 - &Delete - + Delete + 삭제 @@ -4557,11 +4579,6 @@ Open in terminal 터미널에서 열기 - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to 전송 - - Bluetooth - - - - + Create link 링크 생성 - + Send to desktop 바탕화면으로 전송 @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + 열기 - + Open in new window 새 창에서 열기 - + Open in new tab 새 탭에서 열기 - + Cancel sharing 공유 취소 - - P&roperties - + + Properties + 속성 dfmplugin_myshares::MyShares - + My Shares 내 공유 @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. 굽기를 할 수 없습니다. 대상 디스크에 여유 공간이 부족합니다. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size 크기 - + Contains 포함 - + Type 종류 - + Location 위치 - + Time created 생성된 시간 - + Time accessed 액세스한 시간 - + Time modified 수정된 시간 - + Hide this file 이 파일 숨기기 - - + + %1 item %1 항목 - + %1 items %1개의 항목 @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit 비트 - + Available 사용 가능 @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer 컴퓨터 - + Basic Info 기본 정보 - + Computer name - + Version 버전 - + Edition - + OS build - + Type 종류 - + Processor 프로세서 - + Memory 메모리 @@ -4873,14 +4890,6 @@ 파일(%1개), 폴더(%2개) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + 속성 dfmplugin_recent::Recent - + + Recent 최근 사용한 파일 @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path 경로 - + Last access 마지막 액세스 - + Recent 최근 사용한 파일 @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: 검색: - + File Type: 파일 형식: - + File Size: 파일 크기: - + Time Modified: 수정된 시간: - + Time Accessed: - + Time Created: - + Reset 재설정 - + All subdirectories 모든 하위 디렉토리 - + Current directory 현재 디렉토리 - + Application 응용프로그램 - + Video 동영상 - + Audio 오디오 - + Image 이미지 - + Archive 압축파일 - + Text 텍스트 - + Executable 실행가능 - + Backup file 백업 파일 - + Today 오늘 - + Yesterday 어제 - + This week 이번 주 - + Last week 지난 주 - + This month 이번 달 - + Last month 지난 달 - + This year 올해 - + Last year 작년 @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search 검색 - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path 경로 @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location 파일 위치 열기 - + Select all 모두 선택 - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag 태그 - + + Bookmark + + + + Other 다른 사용자 - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + 내부 네트워크 + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + 열기 @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag 태그 @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location 파일 위치 열기 @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server 서버에 연결 - - - + + + Clear History 기록 지우기 - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button 취소 - + Connect button 연결 - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path 원본 경로 - + Time deleted 삭제된 시간 @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore 복원 - + Restore all 전부 복원 - + Empty trash - + Source path 원본 경로 - + Time deleted 삭제된 시간 @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash 휴지통 @@ -5529,17 +5526,17 @@ 휴지통 - + item 항목 - + items 항목 - + Contains %1 %2 %1 %2 포함 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size 크기 - + Contains 포함 - + Type 종류 - + Location 위치 - + Time created 생성된 시간 - + Time accessed 액세스한 시간 - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK 승인 @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ 다음 - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault 파일 보관소 @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + 비밀번호 - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - 비밀번호 - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + 취소 - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + 삭제 - - Failed to delete file vault + + Removing... - + + OK - + button + 승인 - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault 파일 보관소 + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 정렬 기준: - + Display as 다음으로 표시 - + Name 이름 - + Time modified 수정된 시간 - + Size 크기 - + Type 종류 - + Icon 아이콘 - + List 목록 - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button 저장 @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button 저장 - + Open button 열기 @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ku.ts b/translations/dde-file-manager_ku.ts index b006bf9254..132bc2bf80 100644 --- a/translations/dde-file-manager_ku.ts +++ b/translations/dde-file-manager_ku.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,24 +6617,24 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album - \ No newline at end of file + diff --git a/translations/dde-file-manager_ku_IQ.ts b/translations/dde-file-manager_ku_IQ.ts index f6690580a7..33361025a5 100644 --- a/translations/dde-file-manager_ku_IQ.ts +++ b/translations/dde-file-manager_ku_IQ.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ky.ts b/translations/dde-file-manager_ky.ts index e4110610eb..fd96eecba5 100644 --- a/translations/dde-file-manager_ky.ts +++ b/translations/dde-file-manager_ky.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ky@Arab.ts b/translations/dde-file-manager_ky@Arab.ts index 2a5279171d..5e0fea14ee 100644 --- a/translations/dde-file-manager_ky@Arab.ts +++ b/translations/dde-file-manager_ky@Arab.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_lt.ts b/translations/dde-file-manager_lt.ts index 8cf8b6f511..10637faef0 100644 --- a/translations/dde-file-manager_lt.ts +++ b/translations/dde-file-manager_lt.ts @@ -15,104 +15,99 @@ Application - + File Manager Failų tvarkytuvė - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Failų tvarkytuvė yra galingas ir lengvas naudoti failų tvarkymo įrankis, kurio ypatybės yra paieška, kopijavimas, šiukšlinė, glaudinimas/išglaudinimas, failų savybės bei kitos naudingos funkcijos. - DesktopMain + DAttachedProtocolDevice - - Desktop - Darbalaukis + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 tomas - DiskMountPlugin + DesktopMain - - Disk - Diskas + + Desktop + Darbalaukis + + + DiskControlWidget - - Open - Atverti + + Disks + Diskai - - Eject all - Išstumti visus + + The device was not safely removed + - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + Diskas yra užimtas, dabar negalima atjungti - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Diskas - - Operation failed - + + Open + Atverti - - Device (%1) is busy, cannot %2 now. - + + Eject all + Išstumti visus FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Nežinoma @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Sistemos diskas - + Data Disk Duomenų diskas - + Blank %1 Disc Tuščias %1 diskas - - - + + + Unknown Nežinoma - + %1 Drive %1 diskas - + %1 Encrypted Šifruotas %1 - - + %1 Volume %1 tomas - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Namai @@ -228,6 +223,7 @@ + Desktop Darbalaukis @@ -237,6 +233,7 @@ + Videos Vaizdo įrašai @@ -246,6 +243,7 @@ + Music Muzika @@ -255,6 +253,7 @@ + Pictures Paveikslai @@ -264,6 +263,7 @@ + Documents Dokumentai @@ -273,6 +273,7 @@ + Downloads Atsiuntimai @@ -281,6 +282,7 @@ + Trash Šiukšlinė @@ -291,11 +293,12 @@ + Recent Paskiausiai naudoti - + @@ -303,7 +306,7 @@ Automatiškai prijungti - + @@ -316,46 +319,47 @@ %1 užduotys eigoje - + %1 item %1 elementas - + %1 items %1 elementai - + Unable to find the original file - - + + File has been moved or deleted Failas buvo perkeltas arba ištrintas - - + + + You do not have permission to access this folder Jūs neturite leidimų gauti prieigą prie šio aplanko - - + + You do not have permission to traverse files in it - - + + Folder is empty Aplankas tuščias - + Loading... Įkeliama... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Kompiuteris @@ -419,8 +424,9 @@ - - + + + Computers in LAN Kompiuteriai vietiniame (LAN) tinkle @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Žymė @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Šaukinys - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bitų + Access denied Prieiga atmesta + Confirm button Patvirtinti + + + The device has been safely removed + Įrenginys saugiai pašalintas + - - + + - - - + + + Open in new window Atverti naujame lange @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Atverti naujoje kortelėje @@ -953,8 +968,8 @@ - - + + Properties Savybės @@ -990,7 +1005,7 @@ Naujas failas - + Create symlink Sukurti simbolinę nuorodą @@ -1077,70 +1092,70 @@ Pridėti į diską - + Are you sure you want to erase all data on the disc? Ar tikrai norite ištrinti visus diske esančius duomenis? - + Erase button Ištrinti - + This action cannot be undone Šio veiksmo negalima bus atšaukti - + How do you want to use this disc? Kaip norite naudoti diską? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. Trūksta vietos diske. - + Lost connection to drive. Prarastas ryšys su disku. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Nežinoma klaida @@ -1179,42 +1194,42 @@ Elementai: %1 - + Orange Oranžinė - + Red Raudona - + Purple Purpurinė - + Navy-blue Tamsiai mėlyna - + Azure Žydra - + Green Žalia - + Yellow Geltona - + Gray Pilka @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Vietinis diskas - + Removable disk Keičiamasis diskas - + DVD DVD - + Network shared directory Bendrinamas tinklo katalogas - - + + Android mobile device Android mobilusis įrenginys - + Apple mobile device Apple mobilusis įrenginys - + Unknown device Nežinomas įrenginys - + Remove button Šalinti - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Išvalyti paskiausią istoriją - - - + + + Source path Šaltinio kelias @@ -1404,12 +1419,12 @@ - + Empty Trash Išvalyti šiukšlinę - + Location Vieta @@ -1509,7 +1524,7 @@ Ieškoma... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tipas - + Time accessed Prieigos laikas - + Time modified Modifikavimo laikas - + Time created Sukūrimo laikas - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Piktogramų dydis @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected Pažymėtas %1 elementas @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Gerai - + Operation failed! Operacija nepavyko! @@ -2529,191 +2554,191 @@ Paskirties aplankas yra šaltinio aplanko viduje! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Atsisakyti - + Format button Formatuoti - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Jūs norite vykdyti %1 ar rodyti jo turinį? - + It is an executable text file. Tai yra vykdomasis tekstinis failas. - - - + + + Run button Vykdyti - - + + Run in terminal button Vykdyti terminale - + Display button Rodyti - + Do you want to run %1? Ar norite vykdyti %1? - + It is an executable file. Tai yra vykdomasis failas. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Ištrinti %1 elementus visiems laikams? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Ištrinti - + Permanently delete %1? Ištrinti %1 visiems laikams? - - + + This action cannot be undone Šio veiksmo negalima bus atšaukti - + Are you sure you want to empty %1 item? Ar tikrai norite išvalyti %1 elementą? - + Are you sure you want to empty %1 items? Ar tikrai norite išvalyti %1 elementus(-ų)? - + Empty Išvalyti - + Do you want to delete %1? Ar norite ištrinti %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only Nepavyko atkurti %1 failo, paskirties aplankas yra tik skaitymui - + Failed to restore %1 files, the target folder is read-only Nepavyko atkurti %1 failų, paskirties aplankas yra tik skaitymui - + "%1" already exists, please use another name. "%1" jau yra, prašome naudoti kitą pavadinimą. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Atsisakyti - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, į kurį nurodo šis šaukinys, buvo pakeistas arba perkeltas - + Do you want to delete this shortcut? Ar norite ištrinti šį šaukinį? - + This file is not executable, do you want to add the execute permission and run? Šis failas nėra vykdomasis, ar norite pridėti vykdymo leidimą ir paleisti šį failą? - + The selected files contain system file/directory, and it cannot be deleted Pažymėtuose failuose yra sisteminiai failai/katalogai ir jie negali būti ištrinti @@ -2841,276 +2866,278 @@ Norėdami iššifruoti diską, įveskite slaptažodį - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Kita - + Close Užverti - + Close current tab Užverti esamą kortelę - + Back Atgal - + Forward Pirmyn - + Switch to next tab Perjungti į kitą kortelę - + Switch to previous tab Perjungti į ankstesnę kortelę - + Next file Kitas failas - + Previous file Ankstesnis failas - + Switch tab by specified number between 1 to 8 Perjungti kortelę pagal nurodytą skaičių tarp 1 ir 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Pradinis aplankas - + Contains: %1 - + Original file Pradinis failas - + Size: %1 Dydis: %1 - + Target folder Paskirties aplankas - - + In data statistics ... - + Target file Paskirties failas @@ -3445,37 +3466,37 @@ Palaukite - + Keep both button Palikti abu - + Skip button Praleisti - - + + Replace button Pakeisti - + Do not ask again Daugiau nebeklausti - + Retry button Bandyti dar kartą - + Merge button Sulieti @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Atsisakyti - + Remove button Šalinti @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Kompiuteris - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Kompiuteris - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mano katalogai - + Disks Diskai @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Įrenginio tipas - + Total space Bendra vieta - + File system Failų sistema - + Contains Turi - + Free space Laisva vieta - + %1 items %1 elementai - + %1 item %1 elementas @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Dydis - + Dimension - + Duration Trukmė - + Type Tipas - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Įdėti - Cu&t - + Cut + Iškirpti - &Copy - + Copy + Kopijuoti dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Atverti - Rena&me - + Rename + Pervadinti - &Delete - + Delete + Ištrinti @@ -4557,11 +4579,6 @@ Open in terminal Atverti terminale - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Siųsti į - - Bluetooth - - - - + Create link Sukurti nuorodą - + Send to desktop Siųsti į darbalaukį @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Atverti - + Open in new window Atverti naujame lange - + Open in new tab Atverti naujoje kortelėje - + Cancel sharing Nustoti bendrinti - - P&roperties - + + Properties + Savybės dfmplugin_myshares::MyShares - + My Shares Mano viešiniai @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Dydis - + Contains Turi - + Type Tipas - + Location Vieta - + Time created Sukūrimo laikas - + Time accessed Prieigos laikas - + Time modified Modifikavimo laikas - + Hide this file Slėpti šį failą - - + + %1 item %1 elementas - + %1 items %1 elementai @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bitų - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Kompiuteris - + Basic Info Pagrindinė informacija - + Computer name - + Version Versija - + Edition - + OS build - + Type Tipas - + Processor Procesorius - + Memory Atmintis @@ -4873,14 +4890,6 @@ %1 failų(-ai), %2 aplankų(-ai) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Savybės dfmplugin_recent::Recent - + + Recent Paskiausiai naudoti @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Kelias - + Last access Paskiausia prieiga - + Recent Paskiausiai naudoti @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Ieškoti: - + File Type: Failo tipas: - + File Size: Failo dydis: - + Time Modified: Modifikavimo laikas: - + Time Accessed: - + Time Created: - + Reset Atstatyti - + All subdirectories Visuose pakatalogiuose - + Current directory Dabartiniame kataloge - + Application Programa - + Video Vaizdo įrašas - + Audio Garso įrašas - + Image Paveikslas - + Archive Archyvas - + Text Tekstas - + Executable Vykdomasis - + Backup file Atsarginės kopijos failas - + Today Šiandien - + Yesterday Vakar - + This week Šią savaitę - + Last week Praeitą savaitę - + This month Šį mėnesį - + Last month Praeitą mėnesį - + This year Šiais metais - + Last year Praeitais metais @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Paieška - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Kelias @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Atverti failo vietą - + Select all Žymėti visus - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Žymė - + + Bookmark + + + + Other Kita - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Kompiuteriai vietiniame (LAN) tinkle + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Atverti @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Žymė @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Atverti failo vietą @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Prisijungti prie serverio - - - + + + Clear History Išvalyti istoriją - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Atsisakyti - + Connect button Prisijungti - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Šaltinio kelias - + Time deleted Ištrynimo laikas @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Atkurti - + Restore all Atkurti visus - + Empty trash - + Source path Šaltinio kelias - + Time deleted Ištrynimo laikas @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Šiukšlinė @@ -5529,17 +5526,17 @@ Šiukšlinė - + item elementas - + items elementų - + Contains %1 %2 Turi %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Dydis - + Contains Turi - + Type Tipas - + Location Vieta - + Time created Sukūrimo laikas - + Time accessed Prieigos laikas - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK Gerai @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Kitas - - + + Passwords do not match Slaptažodžiai nesutampa @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Failų slėptuvė @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,121 +6205,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Slaptažodis - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Slaptažodis - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Atsisakyti - - Delete File Vault - + + Use Key + button + Naudoti raktą - - Wrong password - + + Delete + button + Ištrinti - - Failed to delete file vault - + + Removing... + Šalinama... - + + OK - + button + Gerai - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - + + Wrong password + Neteisingas slaptažodis - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully - + + Failed to delete + Nepavyko ištrinti failo @@ -6333,10 +6307,16 @@ - + File Vault Failų slėptuvė + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Rikiuoti pagal - + Display as Rodyti kaip - + Name Pavadinimas - + Time modified Modifikavimo laikas - + Size Dydis - + Type Tipas - + Icon Piktogramos - + List Sąrašas - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Įrašyti @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Įrašyti - + Open button Atverti @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ml.ts b/translations/dde-file-manager_ml.ts index c125d0b5d9..c47a58bb90 100644 --- a/translations/dde-file-manager_ml.ts +++ b/translations/dde-file-manager_ml.ts @@ -15,104 +15,99 @@ Application - + File Manager ഫയൽ മാനേജർ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - ഡെസ്ക്ടോപ്പ് + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - ഡിസ്ക് + + Desktop + ഡെസ്ക്ടോപ്പ് + + + DiskControlWidget - - Open - തുറക്കുക + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + ഡിസ്ക് - - Operation failed - + + Open + തുറക്കുക - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop ഡെസ്ക്ടോപ്പ് @@ -237,6 +233,7 @@ + Videos ചലച്ചിത്രങ്ങൾ @@ -246,6 +243,7 @@ + Music സംഗീതം @@ -255,6 +253,7 @@ + Pictures ചിത്രങ്ങൾ @@ -264,6 +263,7 @@ + Documents രേഖകൾ @@ -273,6 +273,7 @@ + Downloads ഡൗൺലോഡുകൾ @@ -281,6 +282,7 @@ + Trash ചവറ്റുകൊട്ട @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ %1 പ്രവൃത്തികൾ നിലവിൽ നടന്നുകൊണ്ടിരിക്കുന്നുണ്ട് - + %1 item %1 വസ്തു - + %1 items %1 വസ്തുക്കൾ - + Unable to find the original file - - + + File has been moved or deleted ഫയൽ സ്ഥാനം മാറ്റുകയോ നീക്കം ചെയ്യുകയോ ചെയ്തു - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty ഫോൾഡർ കാലിയാണ് - + Loading... ലഭ്യമാക്കുന്നു... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN ലാനിൽ ഉള്ള കമ്പ്യൂട്ടറുകൾ @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button ഉറപ്പാക്കുക + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties സവിശേഷതകൾ @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD ഡിവിഡി - + Network shared directory - - + + Android mobile device ആൻഡ്രോയിഡ് മൊബൈൽ ഉപകരണം - + Apple mobile device ആപ്പിൾ മൊബൈൽ ഉപകരണം - + Unknown device അപരിചിതമായ ഉപകരണം - + Remove button നീക്കം ചെയ്യുക - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash ചവറ്റുകൊട്ട കാലിയാക്കുക - + Location @@ -1509,7 +1524,7 @@ തിരയുന്നു... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type തരം - + Time accessed - + Time modified പുതുക്കിയ സമയം - + Time created നിർമ്മിച്ച സമയം - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button റദ്ദാക്കുക - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? %1 പ്രവർത്തിപ്പിക്കണോ അതോ അതിന്റെ ഉള്ളടക്കം പ്രദർശിപ്പിക്കണോ? - + It is an executable text file. അത് പ്രവർത്തിപ്പിക്കാൻ സാധിക്കുന്ന ഒരു ടെക്സ്റ്റ് ഫയൽ ആണു് - - - + + + Run button പ്രവർത്തിപ്പിക്കുക - - + + Run in terminal button ടെർമിനലിൽ പ്രവർത്തിപ്പിക്കുക - + Display button പ്രദർശിപ്പിക്കുക - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 വസ്തുക്കൾ സ്ഥിരമായി നീക്കം ചെയ്യണോ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button നീക്കം ചെയ്യുക - + Permanently delete %1? %1 സ്ഥിരമായി നീക്കം ചെയ്യണോ? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty കാലിയാക്കുക - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" മുമ്പേതന്നെ ഉപയോഗത്തിലുണ്ട്, ദയവായി മറ്റൊരു പേരു് തിരഞ്ഞെടുക്കുക - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel റദ്ദാക്കുക - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others മറ്റുള്ളവ - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button രണ്ടും നിലനിർത്തുക - + Skip button ഒഴിവാക്കുക - - + + Replace button മാറ്റിവയ്ക്കുക - + Do not ask again ഇനി ചോദിക്കരുത് - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button റദ്ദാക്കുക - + Remove button നീക്കം ചെയ്യുക @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type ഉപകരണത്തിന്റെ തരം - + Total space മൊത്തം സ്ഥലം - + File system - + Contains ഉൾക്കൊള്ളുന്നത് - + Free space - + %1 items %1 വസ്തുക്കൾ - + %1 item %1 വസ്തു @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ വലിപ്പം - + Dimension - + Duration - + Type തരം - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + ഒട്ടിയ്ക്കുക - Cu&t - + Cut + മുറിക്കുക - &Copy - + Copy + പകർത്തുക dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + തുറക്കുക - Rena&me - + Rename + പേര് മാറ്റുക - &Delete - + Delete + നീക്കം ചെയ്യുക @@ -4557,11 +4579,6 @@ Open in terminal ടെർമിനലിൽ തുറക്കുക - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link കണ്ണി ഉണ്ടാക്കുക - + Send to desktop ഡെസ്ക്ടോപ്പിലേക്ക് അയയ്ക്കുക @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + തുറക്കുക - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + സവിശേഷതകൾ dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size വലിപ്പം - + Contains ഉൾക്കൊള്ളുന്നത് - + Type തരം - + Location - + Time created നിർമ്മിച്ച സമയം - + Time accessed - + Time modified പുതുക്കിയ സമയം - + Hide this file - - + + %1 item %1 വസ്തു - + %1 items %1 വസ്തുക്കൾ @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type തരം - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + സവിശേഷതകൾ dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text ടെക്സ്റ്റ് - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all എല്ലാം തിരഞ്ഞെടുക്കുക - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other മറ്റുള്ളവ - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + ലാനിൽ ഉള്ള കമ്പ്യൂട്ടറുകൾ + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + തുറക്കുക @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button റദ്ദാക്കുക - + Connect button ബന്ധിപ്പിക്കുക - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted നീക്കം ചെയ്ത സമയം @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore പുനഃസ്ഥാപിക്കുക - + Restore all എല്ലാം പുനഃസ്ഥാപിക്കുക - + Empty trash - + Source path - + Time deleted നീക്കം ചെയ്ത സമയം @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash ചവറ്റുകൊട്ട @@ -5529,17 +5526,17 @@ ചവറ്റുകൊട്ട - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size വലിപ്പം - + Contains ഉൾക്കൊള്ളുന്നത് - + Type തരം - + Location - + Time created നിർമ്മിച്ച സമയം - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + രഹസ്യവാക്ക് - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - രഹസ്യവാക്ക് - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + റദ്ദാക്കുക - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + നീക്കം ചെയ്യുക - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name പേര് - + Time modified പുതുക്കിയ സമയം - + Size വലിപ്പം - + Type തരം - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button തുറക്കുക @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_mn.ts b/translations/dde-file-manager_mn.ts index 6db24137d0..82993ed0de 100644 --- a/translations/dde-file-manager_mn.ts +++ b/translations/dde-file-manager_mn.ts @@ -15,104 +15,99 @@ Application - + File Manager Файл менежер - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Ажлын тавцан + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - Диск + + Desktop + Ажлын тавцан + + + DiskControlWidget - - Open - Нээх + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Диск - - Operation failed - + + Open + Нээх - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop Ажлын тавцан @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Компьютер @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Бит + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties Төлөв байдал @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Төрөл - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Таних тэмдэгийн хэмжээ @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Компьютер - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Компьютер - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type Төрөл - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Нээх - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Нээх - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + Төлөв байдал dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type Төрөл - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Бит - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Компьютер - + Basic Info Ерөнхий мэдээлэл - + Computer name - + Version Хувилбар - + Edition - + OS build - + Type Төрөл - + Processor Процессор - + Memory Санах ой @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Төлөв байдал dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Хайх: - + File Type: Файлын төрөл: - + File Size: Файлын хэмжээ: - + Time Modified: Өөрчлөгдсөн цаг: - + Time Accessed: - + Time Created: - + Reset Дахин тохируулах - + All subdirectories Бүх дэд хавтаснууд - + Current directory Одоогийн байршил - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Нээх @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type Төрөл - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type Төрөл - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button Нээх @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_mr.ts b/translations/dde-file-manager_mr.ts index f8597614de..989f514773 100644 --- a/translations/dde-file-manager_mr.ts +++ b/translations/dde-file-manager_mr.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ms.ts b/translations/dde-file-manager_ms.ts index 15a555157f..c47741ccd9 100644 --- a/translations/dde-file-manager_ms.ts +++ b/translations/dde-file-manager_ms.ts @@ -4,115 +4,110 @@ Invalid args - Arg tidak sah + Invalid invoker - Penyeru tidak sah + Application - + File Manager Pengurus Fail - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Pengurus Fail merupakan alat pengurusan fail yang mudah digunakan dan hebat, difiturkan dengan fungsi menggelintar, menyalin, tong sampah, pemampatan/penyahmampatan, sifat fail dan lain-lain fungsi berguna. - DesktopMain + DAttachedProtocolDevice - - Desktop - Atas Meja + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + Volum %1 - DiskMountPlugin + DesktopMain - - Disk - Cakera + + Desktop + Atas Meja + + + DiskControlWidget - - Open - Buka + + Disks + Cakera-Cakera - - Eject all - Lenting semua + + The device was not safely removed + Peranti masih tidak selamat ditanggalkan - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Klik "Tanggal secara Selamat" dan kemudian putuskannya di lain masa - - eject - + + Disk is busy, cannot unmount now + Cakera sibuk, tidak dapat ditanggalkan sekarang - - unmount - + + The device is busy, cannot eject now + Peranti masih sibuk, tidak dapat lentingkan sekarang + + + DiskMountPlugin - - - remove - + + Disk + Cakera - - Operation failed - + + Open + Buka - - Device (%1) is busy, cannot %2 now. - + + Eject all + Lenting semua FileDialogHandle - + All Files - Semua Fail - - - - FileOperateBaseWorker - - - The file name or the path is too long! MimeTypeDisplayManager - + Unknown Tidak diketahui @@ -128,97 +123,97 @@ QObject - + need authorization to access - perlu keizinan untuk mencapainya + - + Can't verify the identity of %1. - Tidak dapat mengesahkan identiti %1. + - + This happens when you log in to a computer the first time. Ia berlaku ketika anda mendaftar masuk komputer kali pertama. - + The identity sent by the remote computer is Identiti dihantar yang dihantar komputer jauh ialah - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jika anda tidak pasti selamat diteruskan, hubungi pentadbir sistem. - - - + + + System Disk Cakera Sistem - + Data Disk Cakera Data - + Blank %1 Disc Cakera %1 Kosong - - - + + + Unknown Tidak diketahui - + %1 Drive Pemacu %1 - + %1 Encrypted %1 Disulitkan - - + %1 Volume Volum %1 - + + Scanning the device, stop it? Mengimbas peranti, hentikannya? - + Unmount failed - Gagal ditanggalkan + - + Cannot stop scanning device - Tidak dapat berhenti mengimbas peranti + - - + %1 on %2 - %1 pada %2 + + Home Rumah @@ -228,6 +223,7 @@ + Desktop Desktop @@ -237,6 +233,7 @@ + Videos Video @@ -246,6 +243,7 @@ + Music Muzik @@ -255,6 +253,7 @@ + Pictures Gambar @@ -264,6 +263,7 @@ + Documents Dokumen @@ -273,6 +273,7 @@ + Downloads Muat Turun @@ -281,6 +282,7 @@ + Trash Tong Sampah @@ -291,11 +293,12 @@ + Recent Baru-Baru Ini - + @@ -303,7 +306,7 @@ Auto lekap - + @@ -316,46 +319,47 @@ %1 tugas sedang diproses - + %1 item %1 item - + %1 items %1 item - + Unable to find the original file Tidak menemui fail asal - - + + File has been moved or deleted Fail telah dialih atau dipadamkan - - + + + You do not have permission to access this folder Anda tidak mempunyai keizinan untuk mencapai folder ini - - + + You do not have permission to traverse files in it Anda tiada keizinan untuk rentas fail di dalamnya - - + + Folder is empty Folder kosong - + Loading... Memuatkan... @@ -404,14 +408,15 @@ - + Built-in disks - Cakera terbina-dalam + + Computer Komputer @@ -419,8 +424,9 @@ - - + + + Computers in LAN Komputer dalam LAN @@ -428,63 +434,63 @@ - + Loop partitions - Sekatan berulang + - - + Mounted sharing folders - Folder kongsi dilekap + + My shares - Perkongsian Saya + - + Network - Rangkaian + - + Mounted partitions and discs - Sekatan dan cakera dilekap + - + Partitions - Sekatan + - + Quick access - Capaian pantas + - + Tag Tag @@ -492,22 +498,22 @@ - + Added tags - Tag ditambah + Vault - Bilik Kebal + - + Keep showing the mounted Samba shares Sentiasa tunjuk perkongsian Samba yang terlekap @@ -530,28 +536,28 @@ Extend filename characters - Aksara nama fail lanjutan + Hide built-in disks on the Computer page - Sembunyi cakera terbina-dalam dalam halaman Komputer + Hide loop partitions on the Computer page - Sembunyi sekatan berulang dalam halaman Komputer + Show crumb bar clickable area - Show crumb bar clickable area + @@ -585,7 +591,7 @@ The remote environment shows thumbnail previews - Persekitaran jauh menunjukkan pratonton imej kenit + @@ -606,7 +612,7 @@ Music preview - Pratonton muzik + @@ -753,7 +759,7 @@ Items on sidebar pane - Item dalam anak tetingkap palang sisi + @@ -831,25 +837,26 @@ Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Menghidupkan pratonton imej kenit boleh menyebabkan direktori jauh lambat dimuatkan atau operasi menjadi kaku + Switching the entry display may lead to failed mounting - Mengubah paparan masukan boleh mengakibatkan kegagalan pelekapan + + - - + + - + Cancel button @@ -857,31 +864,32 @@ + Stop button Henti - + Shortcut Pintasan - + This system wallpaper is locked. Please contact your admin. - Kertas dinding sistem terkunci. Sila hubungi pentadbir sistem anda. + - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - (salinan) + - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - (salinan %1) + @@ -901,26 +909,33 @@ Bit + Access denied Capaian dinafikan + Confirm button Sahkan + + + The device has been safely removed + Peranti telah selamat ditanggalkan + - - + + - - - + + + Open in new window Buka dalam tetingkap baharu @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Buka dalam tab baharu @@ -948,13 +963,13 @@ Remove from quick access - Buang daripada capaian pantas + - - + + Properties Sifat @@ -967,7 +982,7 @@ New Text - Teks Baharu + @@ -990,7 +1005,7 @@ Fail Baharu - + Create symlink Cipta pautan simbolik @@ -1077,70 +1092,70 @@ Tambah ke cakera - + Are you sure you want to erase all data on the disc? Anda pasti mahu memadam semua data di dalam cakera? - + Erase button Padam - + This action cannot be undone Tindakan ini tidak boleh dipulihkan - + How do you want to use this disc? Bagaimanakah anda mahu gunakan cakera ini? - + Burn image button Rakam imej - + Burn files button Rakam fail - + %1 is a duplicate file. %1 merupakan fail pendua. - + Insufficient disc space. Ruang cakera tidak mencukupi. - + Lost connection to drive. Sambungan ke pemacu telah terputus. - + The CD/DVD drive is not ready. Try another disc. Pemacu CD/DVD tidak sedia. Cuba cakera yang lain. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Pemacu CD/DVD masih sibuk. Keluar program menggunakan pemacu, dan sisip pemacu sekali lagi. - + Invalid volume name - Nama volum tidak sah + - + Unknown error Ralat tidak diketahui @@ -1179,42 +1194,42 @@ Item: %1 - + Orange Jingga - + Red Merah - + Purple Ungu - + Navy-blue Biru-laut - + Azure Lazuardi - + Green Hijau - + Yellow Kuning - + Gray Kelabu @@ -1287,79 +1302,79 @@ Cannot access - Tidak dapat capai + - + User directory - Direktori pengguna + - + Local disk Cakera setempat - + Removable disk Cakera mudah alih - + DVD DVD - + Network shared directory Direktori terkongsi rangkaian - - + + Android mobile device Peranti mudah alih Android - + Apple mobile device Peranti mudah alih Apple - + Unknown device Peranti tidak diketahui - + Remove button Buang - + Do you want to remove this item? Anda pasti mahu membuang item ini? - + Do yout want to remove %1 items? Anda pasti mahu membuang %1 item? - + It does not delete the original files Ia tidak memadam fail yang asal - + Clear recent history Kosongkan sejarah baru-baru ini - - - + + + Source path Laluan sumber @@ -1404,12 +1419,12 @@ Tidak dapat membuka item dalam tong sampah, sila pulih ia dahulu - + Empty Trash Kosongkan Tong Sampah - + Location Lokasi @@ -1509,14 +1524,14 @@ Menggelintar... - + My Vault Bilik Kebal Saya Create Vault - Cipta Bilik Kebal + @@ -1561,152 +1576,152 @@ File not found - Fail tidak ditemui + File already exists - Fail sudah wujud + File is a directory - Fail merupakan sebuah direktori + File is not a directory - Fail bukan sebuah direktori + File is a directory that isn't empty - Fail ialah sebuah direktori yang ada isi + File is not a regular file - Fail bukanlah sebuah fail nalar + File is not a symbolic link - Fail bukanlah sebuah fail simbolik + File cannot be mounted - Fail tidak dapat dilekapkan + Filename has too many characters - Nama fail mempunyai terlalu banyak aksara + Filename is invalid or contains invalid characters - Nama fail tidak sah atau mengandungi aksara tidak sah + File contains too many symbolic links - Fail mengandungi terlalu banyak pautan simbolik + No space left on drive - Tiada ruang berbaki di dalam pemacu + Invalid argument - Argumen tidak sah + Permission denied - Keizinan dinafikan + Operation (or one of its parameters) not supported - Operasi (atau salah satu parameternya) tidak disokong + File isn't mounted - Fail tidak dilekapkan + File is already mounted - Fail sudah dilekapkan + File was closed - Fail telah ditutup + Operation was cancelled - Operasi telah dibatalkan + Operations are still pending - Operasi masih berlangsung + File is read-only - Fail adalah baca sahaja + Failed to open the file - Gagal membuka fail + Target Trash File Not exist - Fail Sampah Sasaran Tidak Wujud + Operation timed out - Operasi telah tamat masa + File is busy - Fail masih sibuk + Device disconnected - Peranti terputus + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 + Success - Berjaya + Failed - Gagal + - + Sidebar - Palang Sisi + @@ -1866,7 +1881,7 @@ Before file name - Sebelum nama fail + @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Tidak dibenarkan - - + + In trial period Masih dalam percubaan - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1947,17 +1947,17 @@ Collection size - Saiz koleksi + Large area - Kawasan luas + Small area - Kawasan kecil + @@ -1973,57 +1973,77 @@ ddplugin_organizer::CustomMode - + New Collection - Koleksi Baharu + ddplugin_organizer::ExtendCanvasScene - + Organize desktop - Urus atas meja + - + Desktop options - Pilih atas meja + - + Organize by - Diurus oleh + - + Custom collection - Koleksi suai + - + Type Jenis - + Time accessed Masa dicapai - + Time modified Masa diubahsuai - + Time created Masa dicipta - + Create a collection - Cipta satu koleksi + + + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + @@ -2045,14 +2065,14 @@ ddplugin_organizer::OptionsWindow - + Desktop options - Pilihan atas meja + - + Auto arrange icons - Auto susun ikon + @@ -2060,12 +2080,12 @@ Organize desktop - Urus atas meja + Organize by - Diurus oleh + @@ -2134,7 +2154,7 @@ Before file name - Sebelum nama fail + @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Saiz ikon @@ -2165,7 +2190,7 @@ Apps - Apl + @@ -2190,7 +2215,7 @@ Folders - Folder + @@ -2203,7 +2228,7 @@ Apps - Apl + @@ -2228,7 +2253,7 @@ Folders - Folder + @@ -2246,7 +2271,7 @@ Custom Screensaver - Penyelamat Skrin Suai + @@ -2258,7 +2283,7 @@ This system wallpaper is locked. Please contact your admin. - Kertas dinding sistem terkunci. Sila hubungi pentadbir sistem anda. + @@ -2324,26 +2349,26 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - Pengurus Fail akan dikemas kini ke versi baharu, ketika tugasan ini berlangsung akan dihentikan. Anda pasti mahu kemas kini sekarang? + - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - Perkhidmatan atas meja akan dikemas kini ke versi baharu, ketika tugasan ini berlangsung akan dihentikan. Anda pasti mahu kemas kini sekarang? + - + Update button - Kemas Kini + - + Cancel button - Batal + @@ -2360,7 +2385,7 @@ - + %1 item selected %1 item terpilih @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2411,87 +2436,87 @@ Operating failed - Gagal dioperasikan + Mount failed - Gagal dilekapkan + Unmount failed - Gagal ditanggalkan + Unmounting device now... - Kini menanggalkan peranti... + Mounting device now... - Kini melekapkan peranti sekarang... + Erasing device now... - Kini memadam peranti... + Making filesystem for device now... - Kini membuat sistem fail untuk peranti... + Locking device now... - Kini mengunci peranti... + Unlocking device now... - Kini menyahkunci peranti... + The device is busy now - Kini peranti masih sibuk + Anonymous mount is not allowed - Lekapan awanama tidak dibenarkan + Wrong password - Kata laluan salah + Cannot create the mountpoint: the file name is too long - Tidak dapat mencipta titik lekap: nama fail terlalu panjang + Permission denied - Keizinan dinafikan + No such file or directory - Tiada fail atau direktori sebegitu + Error occured while mounting device - Ralat berlaku ketka melekapkan peranti + The device has been blocked and you do not have permission to access it. Please configure its connection policy in Security Center or contact your administrator. - Peranti telah disekat dan anda tiada keizinan untuk mencapainya. Sila konfigur dasar sambungan dalam Pusat Keselamatan atau hubungi pentadbir sistem anda. + @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operasi gagal! @@ -2529,191 +2554,191 @@ Folder sasaran di dalam folder sumber! - + The passphrase is needed to access encrypted data on %1. - Frasa laluan diperlukan untuk mencapai data tersulit dalam %1. + - - - - - - - - + + + + + + + + Cancel button Batal - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? Untuk mencapai peranti, anda mesti format cakera dahulu. Anda pasti mahu memformatnya sekarang? - + Do you want to run %1 or display its content? Anda mahu jalankan %1 atau papar kandungannya? - + It is an executable text file. Ia adalah fail teks bolehlaku. - - - + + + Run button Jalan - - + + Run in terminal button Jalankan dalam terminal - + Display button Papar - + Do you want to run %1? Anda mahu jalankan %1? - + It is an executable file. Ia adalah fail bolehlaku. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - Tidak dapat mengalih %1 item terpilih ke dalam tong sampah. Anda pasti mahu memadamnya secara kekal? + - + Permanently delete %1 items? Padam %1 item secara kekal? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - Tidak dapat mengalih "%1" ke dalam tong sampah. Anda pasti mahu memadamnya secara kekal? + - - - + + + Delete button Padam - + Permanently delete %1? Padam %1 secara kekal? - - + + This action cannot be undone Tindakan ini tidak boleh dipulihkan - + Are you sure you want to empty %1 item? Anda pasti mahu kosongkan %1 item? - + Are you sure you want to empty %1 items? Anda pasti mahu kosongkan %1 item? - + Empty Kosong - + Do you want to delete %1? Anda pasti mahu memadam %1? - + Do you want to delete the selected %1 items? Anda pasti mahu memadam %1 item terpilih? - + Failed to restore %1 file, the target folder is read-only Gagal memulihkan %1 fail, folder sasaran adalah baca-sahaja - + Failed to restore %1 files, the target folder is read-only Gagal memulihkan %1 fail, folder sasaran adalah baca-sahaja - + "%1" already exists, please use another name. "%1" sudah wujud, sila gunakan nama lain. - + Device or resource busy Peranti atau sumber sibuk - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Fail ini akan disembunyikan jika nama fail bermula dengan tanda '.'. Anda pasti mahu menyembunyikannya? - + Hide Sembunyi - + Cancel Batal - + Unable to access %1 - Gagal mencapai %1 + - + %1 that this shortcut refers to has been changed or moved %1 yang mana pintasan rujuk telah berubah atau dialihkan - + Do you want to delete this shortcut? Anda mahu padam pintasan ini? - + This file is not executable, do you want to add the execute permission and run? Fail ini tidak bolehlaku, anda mahu tambah keizinan laku dan jalankan? - + The selected files contain system file/directory, and it cannot be deleted Fail terpilih mengandungi fail/direktori sistem, dan ia tidak boleh dipadamkan @@ -2841,278 +2866,280 @@ Masukkan kata laluan untuk menyahsulit cakera - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - Sentiasa buka folder dalam tetingkap baharu + - + Open file: - Buka fail: + - + Click - Klik + - + Double click - Dwi-klik + - + New window and tab - Tetingkap dan tab baharu + - + Open from default window: - Buka melalui tetingkap lalai: + - - + + Computer - Komputer + - - + + Home - Rumah + - - + + Desktop - Atas Meja + - - + + Videos - Video + - - + + Music - Muzik + - - + + Pictures - Gambar + - - + + Documents - Dokumen + - - + + Downloads - Muat Turun + - + Open in new tab: - Buka dalam tab baharu: + - + Current Directory - Direktori Semasa + - + Files and folders - Fail dan folder + - + Show hidden files - Tunjuk fail tersembunyi + - + Show file extensions - Tunjuk sambungan fail + - + Mix sorting of files and folders - Campur pengisihan fail dan folder + - + Workspace - Ruang Kerja + - + View - Pandangan + - + Default size: - Saiz lalai: + - + Extra small - Lebih kecil + - + Small - Kecil + - + Medium - Sederhana + - + Large - Besar + - + Extra large - Lebih besar - - - - Tree - + Default view: - Pandangan lalai: + - + Icon - Ikon - - - - List - Senarai - - - - Restore default view mode for all directories - - Restore default view mode + + List - + Thumbnail preview - Pratonton imej kecil + - + Compressed file preview - Pratonton fail termampat + - + Text preview - Pratonton teks + - + Document preview - Pratonton dokumen + - + Image preview - Pratonton imej + - + Video preview - Pratonton video + - + Music preview - Pratonton muzik + - + The remote environment shows thumbnail previews - Persekitaran jauh menunjukkan pratonton imej kenit + - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Menghidupkan pratonton imej kenit boleh menyebabkan direktori jauh lambat dimuatkan atau operasi menjadi kaku + - + Advanced - Lanjutan + + + + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + - + Mount - Lekap + - + Auto mount - Auto lekap + - + Open after auto mount - Buka selepas auto lekap + - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - Gabung masukan folder kongsi Samba + - + Switching the entry display may lead to failed mounting - Mengubah paparan masukan boleh mengakibatkan kegagalan pelekapan + - + Use the file chooser dialog of File Manager - Guna dialog pemilih fail bagi Pengurus Fail + - + Ask for my confirmation when deleting files - Tanya pengesahan saya ketika memadam fail + @@ -3155,7 +3182,7 @@ Reverse selection - Pemilihan songsang + @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Lain-lain - + Close Tutup - + Close current tab Tutup tab semasa - + Back Undur - + Forward Maju - + Switch to next tab Beralih ke tab berikutnya - + Switch to previous tab Beralih ke tab terdahulu - + Next file Fail berikutnya - + Previous file Fail terdahulu - + Switch tab by specified number between 1 to 8 Tukar tab dengan menyatakan nombor diantara 1 hingga 8 @@ -3378,7 +3400,7 @@ Recent - Baru-Baru Ini + @@ -3386,51 +3408,50 @@ create source file %1 Info failed in show conflict Info function! - create source file %1 Info failed in show conflict Info function! + create target file %1 Info failed in show conflict Info function! - create target file %1 Info failed in show conflict Info function! + - + Time modified: %1 Masa diubah suai: %1 - + Original folder Folder asal - + Contains: %1 Mengandungi: %1 - + Original file Fail asal - + Size: %1 Saiz: %1 - + Target folder Folder sasaran - - + In data statistics ... - Dalam statistik data ... + - + Target file Fail sasaran @@ -3445,37 +3466,37 @@ Tunggu sebentar - + Keep both button Kekal kedua-duanya - + Skip button Langkau - - + + Replace button Ganti - + Do not ask again Jangan tanya lagi - + Retry button Cuba lagi - + Merge button Gabung @@ -3486,12 +3507,12 @@ Enter a password to protect shared folders - Masukkan satu kata laluan untuk melindungi folder kongsi + - + Set a password on the shared folder for non-anonymous access - Tetapkan satu kata laluan ke atas folder kongsi untuk capaian bukan-awanama + @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - Maaf, gagal mencari direktori ca[aian pantas anda, buang ia? + - + Cancel button Batal - + Remove button Buang @@ -3537,12 +3558,12 @@ Pin to quick access - Cemat ke capaian pantas + Remove from quick access - Buang daripada capaian pantas + @@ -3602,7 +3623,7 @@ The file name or the path is too long. Please shorten the file name or the path and try again. - Nama fail atau laluan terlalu panjang. Sila pendekkan nama fail atau laluan dan cuba sekali lagi. + @@ -3725,7 +3746,7 @@ The file name or the path is too long. Please shorten the file name or the path and try again. - Nama fail atau laluan terlalu panjang. Sila pendekkan nama fail atau laluan dan cuba sekali lagi. + @@ -3784,121 +3805,122 @@ dfmplugin_computer::Computer - + + Computer Komputer - + Computer display items - Item paparan komputer + - + Hide built-in disks on the Computer page - Sembunyi cakera terbina-dalam dalam halaman Komputer + - + Hide loop partitions on the Computer page - Sembunyi sekatan berulang dalam halaman Komputer + - + Show file system on disk icon - Tunjuk sistem fail dalam ikon cakera + - + Hide My Directories on the Computer page - Sembunyi DIrektori Saya dalam halaman Komputer + - + Hide 3rd party entries on the Computer page - Sembunyi masukan pihak ke3 dalam halaman Komputer + dfmplugin_computer::ComputerController - + Unlock device failed - Gagal menyahkunci peranti + - + Wrong password - Katal laluan salah + - + Rename failed - Gagal menamakan semula + - + The device is busy and cannot be renamed now - Peranti masih sibuk dan tidak dapat dinamakan buat masa ini + - + Format failed - Gagal diformat + - + The device is busy and cannot be formatted now - Peranti masih sibuk, tidak dapat diformat buat masa ini + - + Mount error - Ralat lekap + - + Cannot access %1 - Tidak dapat capai %1 + dfmplugin_computer::ComputerEventReceiver - + Computer Komputer - + %1 is read-only. Do you want to enable read and write permissions for it? - %1 adalah baca-sahaja. Anda pasti mahu dayakan keizinan baca dan tulis untuknya? + - + Once enabled, read/write permission will be granted permanently - Setelah didayakan, keizinan baca/tulis akan diberi secara kekal + - + Cancel - Batal + - + Enable Now - Dayakan Sekarang + dfmplugin_computer::ComputerItemWatcher - + My Directories Direktori Saya - + Disks Cakera-Cakera @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - Maklumat asas + - + Device type Jenis peranti - + Total space Jumlah ruang - + File system Sistem fail - + Contains Mengandungi - + Free space Ruang bebas - + %1 items %1 item - + %1 item %1 item @@ -3949,10 +3971,10 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 - %1 pada %2 + @@ -3968,29 +3990,29 @@ Saiz - + Dimension Dimensi - + Duration Jangka masa - + Type Jenis - + Accessed - Dicapai + - + Modified - Diubah suai + @@ -4153,7 +4175,7 @@ Share folder can't be named after the current username - Folder dikongsi tidak boleh dinamakan selepas nama pengguna semasa + @@ -4176,221 +4198,221 @@ Copying %1 - Menyalin %1 + to %1 - ke %1 + Deleting %1 - Memadam %1 + Moving %1 - Mengalih %1 + Trashing %1 - Tong Sampahkan %1 + Restoring %1 - Memulihkan %1 + Permission error - Ralat keizinan + The action is denied - Tindakan dinafikan + Target file %1 already exists - Fail sasaran %1 sudah wujud + Target directory %1 already exists - Direktori sasaran %1 sudah wujud + Failed to open the file %1 - Gagal membuka fail %1 + Failed to read the file %1 - Gagal membaca fail %1 + Failed to write the file %1 - Gagal menulis fail %1 + Failed to create the directory %1 - Gagal mencipta direktori %1 + Failed to delete the file %1 - Gagal memadam fail %1 + Failed to move the file %1 to trash - Gagal mengalih fail %1 ke dalam tong sampah + Failed to move the file %1 - Gagal mengalih fail %1 + Original file %1 does not exist - Fail asal %1 tidak wujud + Failed, the file size of %1 must be less than 4 GB - Gagal, saiz fail %1 mesti lebih kecil daripada 4 GB + Not enough free space on the target disk - Ruang bebas dalam cakera sasaran tidak mencukupi + File %1 integrity was damaged - Integriti fail %1 telah rosak + The target device is read only - Peranti sasaran hanya baca sahaja + Target folder is inside the source folder - Folder sasaran di dalam folder sumber + The action is not supported - Tindakan ini tidak disokong + You do not have permission to traverse files in %1 - Anda tiada keizinan untuk rentas fail di dalam %1 + Restore failed, original path could not be found - Gagal dipulihkan, laluan asal tidak ditemui + Unknown error - Ralat tidak diketahui + Failed to parse the url of trash - Gagal menghurai url tong sampah + Restore failed: the original file does not exist - Gagal dipulihkan: fail asal tidak wujud + Copy or Cut File failed! - Gagal Salin atau Potong Fail! + Failed to open the file %1, cause: %2 - Gagal membuka fail %1, sebab: %2 + Failed to read the file %1, cause: %2 - Gagal membaca fail %1, sebab: %2 + Failed to write the file %1, cause: %2 - Gagal menulis fail %1, sebab: %2 + Failed to create the directory %1, cause: %2 - Gagal mencipta direktori %1, sebab: %2 + Failed to delete the file %1, cause: %2 - Gagal memadam fail %1, sebab: %2 + Failed to move the file %1 to trash, cause: %2 - Gagal mengalih fail %1 ke dalam tong sampah, sebab: %2 + Failed to move the file %1, cause: %2 - Gagal mengalih fail %1, sebab: %2 + File %1 integrity was damaged, cause: %2 - Integriti fail %1 telah rosak, sebab: %2 + Failed to create symlink, cause: %1 - Gagal mencipta pautan simbolik, sebab: %1 + - Copy or Cut File failed, cause: %1 - Gagal Salin atau Potong Fail, sebab: %1 + Copy or Cut File failed,cause: %1 + %1 already exists in target folder - %1 sudah wujud dalam folder sasaran + @@ -4398,7 +4420,7 @@ Original path %1 - Laluan asal %1 + @@ -4406,41 +4428,41 @@ Target path %1 - Laluan sasaran %1 + Original path %1 Target path %2 - Laluan asal %1 Laluan sasaran %2 + dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - Ralat nama semula fail + - + Failed to create the directory - Gagal mencipta direktori + - + Failed to create the file - Gagal mencipta fail + - + link file error - Ralat paut fail + - - + + Failed to modify file permissions - Gagal mengubah suai keizinan fail + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Tampal - Cu&t - + Cut + Potong - &Copy - + Copy + Salin dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Buka - Rena&me - + Rename + Nama Semula - &Delete - + Delete + Padam @@ -4557,11 +4579,6 @@ Open in terminal Buka dalam terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Hantar ke - - Bluetooth - - - - + Create link Cipta pautan - + Send to desktop Hantar ke desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - Kongsi + + + + + Bluetooth + Bluetooth dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Buka - + Open in new window Buka dalam tetingkap baharu - + Open in new tab Buka dalam tab baharu - + Cancel sharing Batal perkongsian - - P&roperties - + + Properties + Sifat dfmplugin_myshares::MyShares - + My Shares Perkongsian Saya @@ -4648,7 +4665,7 @@ It does not support burning UDF discs - Ia tidak menyokong rakaman cakera UDF + @@ -4683,7 +4700,7 @@ Tiada fail dirakam - + Unable to burn. Not enough free space on the target disk. Tidak dapat merakam. Ruang bebas dalam cakera sasaran tidak mencukupi. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - Maklumat asas + - + Size Saiz - + Contains Mengandungi - + Type Jenis - + Location Lokasi - + Time created Masa dicipta - + Time accessed Masa dicapai - + Time modified Masa diubahsuai - + Hide this file Sembunyi fail ini - - + + %1 item %1 item - + %1 items %1 item @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - Untuk Keselamatan Rahsia + - + For Government Untuk pihak Kerajaan - + For Enterprise Untuk pihak Perniagaan - + Bit Bit - + Available Tersedia @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Komputer - + Basic Info Maklumat Asas - + Computer name Nama komputer - + Version Versi - + Edition Edisi - + OS build Binaan OS - + Type Jenis - + Processor Pemproses - + Memory Ingatan @@ -4874,14 +4891,6 @@ %1 fail(s), %2 folder(s) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Sifat dfmplugin_recent::Recent - + + Recent Baru-Baru Ini @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Laluan - + Last access Capaian Terakhir - + Recent Baru-Baru Ini @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Gelintar: - + File Type: Jenis Fail: - + File Size: Saiz Fail: - + Time Modified: Masa Diubahsuai: - + Time Accessed: Masa Dicapai: - + Time Created: Masa Dicipta: - + Reset Tetap Semula - + All subdirectories Semua subdirektori - + Current directory Direktori semasa - + Application Aplikasi - + Video Video - + Audio Audio - + Image Imej - + Archive Arkib - + Text Teks - + Executable Bolehlaku - + Backup file Fail sandar - + Today Hari Ini - + Yesterday Semalam - + This week Minggu ini - + Last week Minggu lepas - + This month Bulan ini - + Last month Bulan lepas - + This year Tahun ini - + Last year Tahun lepas @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Gelintar - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Laluan @@ -5117,60 +5111,73 @@ dfmplugin_search::SearchMenuScene - + Open file location Buka lokasi fail - + Select all Pilih semua - + Path - Laluan + dfmplugin_sidebar::SideBarWidget - + Quick access - Capaian pantas + - + Partitions - Sekatan + - + Network - Rangkaian + - + Tag Tag - + + Bookmark + + + + Other Lain-lain - + Unknown Group - Kumpulan Tidak Diketahui + + + + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Komputer dalam LAN dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Buka @@ -5180,11 +5187,11 @@ Open in new tab - Buka dalam tab baharu + - P&roperties + Properties @@ -5203,23 +5210,23 @@ Unmount - Tanggal + Clear saved password and unmount - Kosongkan kata laluan tersimpan dan tanggalkan + Remove - Buang + dfmplugin_tag::Tag - + Tag Tag @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Buka lokasi fail @@ -5250,7 +5257,7 @@ Remove tag "%1" - Buang tag "%1" + @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Sambung dengan Pelayan - - - + + + Clear History Kosongkan Sejarah - + Unfavorite Nyahgemar - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Batal - + Connect button Sambung - + Charset Encoding - Pengekodan Set Aksara + - + Default - Lalai + - + My Favorites Kegemaran Saya - + No favorites yet Belum ada kegemaran - + Favorite Gemar @@ -5388,12 +5385,12 @@ Minimum of 8 characters. At least 3 types: 0-9, a-z, A-Z and symbols. Different from the username. - Minimum 8 aksara. Sekurang-kurangnya ada 3 jenis: 0-9, a-z, A-Z dan simbol. Berlainan dengan nama pengguna. + Password must be no more than %1 characters - Kata laluan tidak boleh melebihi %1 aksara + @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Laluan Sumber - + Time deleted Masa dipadam @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Pulih - + Restore all Pulih semua - + Empty trash - Kosongkan tong sampah + - + Source path Laluan sumber - + Time deleted Masa dipadam @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Tong Sampah @@ -5530,17 +5527,17 @@ Tong Sampah - + item item - + items item - + Contains %1 %2 Mengandungi %1 %2 @@ -5716,48 +5713,48 @@ Sending files now, please try later. - Menghantar fail sekarang, cuba lagi kemudian. + dfmplugin_vault::BasicWidget - + Basic info - Maklumat asas + - + Size Saiz - + Contains Mengandungi - + Type Jenis - + Location Lokasi - + Time created Masa dicipta - + Time accessed Masa dicapai - + Time locked Masa dikunci @@ -5767,14 +5764,13 @@ Unlock failed - Gagal dinyahkunci + The %1 directory is occupied, please clear the files in this directory and try to unlock the safe again. - DIrektori %1 masih digunakan, -sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. + @@ -5988,7 +5984,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Sulit Bilik Kebal Fail @@ -6009,19 +6005,19 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. - - - + + + Encrypt Sulit - + Failed to create file vault: %1 Gagal mencipta bilik kebal fail: %1 - + OK OK @@ -6072,24 +6068,24 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Tetapkan Kata Laluan Bilik Kebal Encryption method - Kaedah penyulitan + Key encryption - Penyulitan kunci + Transparent encryption - Penyulitan transparen + @@ -6098,7 +6094,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 aksara, terdiri daripada A-Z, a-z, 0-9, dan simbol @@ -6125,7 +6121,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. The file vault will be automatically unlocked when accessed, without verifying the password. Files in it will be inaccessible under other user accounts. - Bilik kebal fail akan dibuka secara automatik ketika dicapai, tanpa perlu pengesahan kata laluan. Fail-fail yang ada di dalamnya tidak boleh dicapai selain daripada pengguna yang sah. + @@ -6133,8 +6129,8 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi.Berikutnya - - + + Passwords do not match Kata laluan tidak sepadan @@ -6142,7 +6138,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. dfmplugin_vault::VaultActiveStartView - + File Vault Kekubah Fail @@ -6180,151 +6176,128 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. Vault - Bilik Kebal + Vault not available because cryfs not installed! - Bilik kebal tidak tersedia kerana cryfs tidak dipasang! + dfmplugin_vault::VaultHelper - + Vault - Bilik Kebal + Vault not available because cryfs not installed! - Vault not available because cryfs not installed! + - + A task is in progress, so it cannot perform your operation - Satu tugasan maslih berlangsung, oleh itu ia tidak dapat menjalankan operasi anda + dfmplugin_vault::VaultPropertyDialog - + My Vault Bilik Kebal Saya - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Kata laluan - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Pembayang kata laluan: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Masukkan kunci pemulihan 32-digit + + + dfmplugin_vault::VaultRemovePages - - Password - Kata laluan + + Delete File Vault + Padam Bilik Kebal Fail - - Password hint: %1 - Pembayang kata laluan: %1 + + Once deleted, the files in it will be permanently deleted + Setelah dipadamkan, fail di dalamnya akan kekal terpadam - + Cancel - - - - - Delete - + button + Batal - - Delete File Vault - + + Use Key + button + Guna Kunci - - Wrong password - + + Delete + button + Padam - - Failed to delete file vault - + + Removing... + Membuang... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Masukkan kunci pemulihan 32-digit + + Wrong password + Kata laluan salah - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Kunci pemulihan salah - - OK - + + Failed to delete file vault + Gagal memadam bilik kebal fail - - Delete File Vault - + + Deleted successfully + Pemadaman berjaya - - Deleted successfully - + + Failed to delete + Gagal dipadamkan @@ -6335,40 +6308,46 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi.Bilik Kebal Saya - + File Vault Kekubah Fail + + + + Vault + + dfmplugin_workspace::FileOperatorHelper Failed to open %1, which may be moved or renamed - Gagal membuka %1, mungkin telah dialih atau dinamakan semula + dfmplugin_workspace::FileViewModel - + Name - Nama + - + Time modified - Masa diubah suai + - + Size - Saiz + - + Type - Jenis + @@ -6382,7 +6361,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 tidak dibenarkan @@ -6398,50 +6377,45 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Isih mengikut - + Display as Papar sebagai - + Name Nama - + Time modified Masa diubahsuai - + Size Saiz - + Type Jenis - + Icon Ikon - + List Senarai - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6428,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. filedialog_core::FileDialog - + Save button Simpan @@ -6463,13 +6437,13 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. filedialog_core::FileDialogStatusBar - + Save button Simpan - + Open button Buka @@ -6507,114 +6481,114 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. plugin_filepreview::DDciIconPreview - + Available sizes: - Saiz tersedia: + - + Custom Size - Saiz Suai + - + Device Pixel Ratio: - Nisbah Piksel Peranti: + - + Theme: - Tema: + - + Light - Cerah + - + Dark - Gelap + - + Mode: - Mod: + - + Normal - Biasa + - + Disabled - Dilumpuhkan + - + Hovered - Terapung + - + Pressed - Ditekan + - + Palette - Palet + - + Current mode icon does not support the palette - Ikon mod semasa tidak menyokong palet + - + Foreground: - Latar Hadapan: + - + Background: - Latar Belakang: + - + Highlight: - Sorot: + - + HighlightForeground: - HighlightForeground: + - + Background Color: - Warna Latar Belakang: + - + White - Putih + - + Black - Hitam + - + Transparent - Lutsinar + - + Custom - Suai + @@ -6622,7 +6596,7 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. Encrypted file, please enter the password - Fail disulitkan, sila masukkan kata laluan + @@ -6644,24 +6618,24 @@ sila kosongkan fail dalam direktori ini dan cuba buka ia sekali lagi. plugin_filepreview::MusicMessageView - + Artist: - Artis: + - + Album: - Album: + - + unknown artist - artis tidak diketahui + - + unknown album - album tidak diketahui + \ No newline at end of file diff --git a/translations/dde-file-manager_nb.ts b/translations/dde-file-manager_nb.ts index 9d22edcf2b..e93e234335 100644 --- a/translations/dde-file-manager_nb.ts +++ b/translations/dde-file-manager_nb.ts @@ -15,104 +15,99 @@ Application - + File Manager Filutforsker - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Skrivebord + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Volum - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Skrivebord + + + DiskControlWidget - - Open - Åpne + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Åpne - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Ukjent @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk Data Disk - + Blank %1 Disc - - - + + + Unknown Ukjent - + %1 Drive - + %1 Encrypted - - + %1 Volume %1 Volum - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Hjem @@ -228,6 +223,7 @@ + Desktop Skrivebord @@ -237,6 +233,7 @@ + Videos Video @@ -246,6 +243,7 @@ + Music Musikk @@ -255,6 +253,7 @@ + Pictures Kilder @@ -264,6 +263,7 @@ + Documents Dokumenter @@ -273,6 +273,7 @@ + Downloads Nedlastninger @@ -281,6 +282,7 @@ + Trash Søppel @@ -291,11 +293,12 @@ + Recent Nylig - + @@ -303,7 +306,7 @@ Automonter - + @@ -316,46 +319,47 @@ %1 oppgaver pågående - + %1 item %1 ting - + %1 items %1 ting - + Unable to find the original file - - + + File has been moved or deleted Filen har blitt flyttet eller slettet - - + + + You do not have permission to access this folder Du har ikke tilgang til denne mappen - - + + You do not have permission to traverse files in it - - + + Folder is empty Mappen er tom - + Loading... Laster... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Datamaskin @@ -419,8 +424,9 @@ - - + + + Computers in LAN Datamaskiner i LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Snarvei - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Tilgang nektet + Confirm button Bekrefte + + + The device has been safely removed + + - - + + - - - + + + Open in new window Åpne i et nytt vindu @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Åpne i ny fane @@ -953,8 +968,8 @@ - - + + Properties Innstillinger @@ -990,7 +1005,7 @@ - + Create symlink Opprett symbolsk lenke @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange Oransje - + Red Rød - + Purple Lilla - + Navy-blue Blå - + Azure Azurblå - + Green Grønn - + Yellow Gul - + Gray Grå @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Lokal disk - + Removable disk Fjernbar disk - + DVD DVD - + Network shared directory Delt nettverksmappe - - + + Android mobile device Android mobil enhet - + Apple mobile device Apple mobil enet - + Unknown device Ukjent enhet - + Remove button Fjerne - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Slett nylig historie - - - + + + Source path Kildesti @@ -1404,12 +1419,12 @@ - + Empty Trash Tøm søppel - + Location Sted @@ -1509,7 +1524,7 @@ Søker... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Type - + Time accessed - + Time modified Tid modifisert - + Time created Tid opprettet - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Ikonstørrelse @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 ting valgt @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operasjonen feilet! @@ -2529,191 +2554,191 @@ Målmappen er inni kildemappen! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Avbryt - + Format button Formatter - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Vil du kjøre %1 eller vise dens innhold? - + It is an executable text file. Det er en kjørbart tekstfil - - - + + + Run button Kjør - - + + Run in terminal button Kjør i terminalen - + Display button Vis - + Do you want to run %1? Vil du kjøre %1? - + It is an executable file. Det er en kjørbar fil. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Permanent slette %1 ting? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Slett - + Permanently delete %1? Slette permanent %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty Tøm - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" eksisterer allerede, Vennligst bruk et annet navn - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Avbryt - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 som denne snarveien refererer til har blitt endret eller flyttet - + Do you want to delete this shortcut? Vil du slette denne snarveien? - + This file is not executable, do you want to add the execute permission and run? Denne filen er ikke kjørbar. Vil du legge til kjøringstillatelse og kjøre den? - + The selected files contain system file/directory, and it cannot be deleted Den valgte filen inneholder en systemfil eller mappe og kan ikke slettes @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Andre - + Close Lukk - + Close current tab Lukk nåværende fane - + Back Tilbake - + Forward Fremover - + Switch to next tab Bytt til neste fane - + Switch to previous tab Bytt til forrige fane - + Next file Neste fil - + Previous file Forrige fil - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 Størrelse: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button Behold begge to - + Skip button Hopp over - - + + Replace button Erstatt - + Do not ask again Ikke spør igjen - + Retry button Prøv igjen - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Avbryt - + Remove button Fjerne @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Datamaskin - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Datamaskin - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mine mapper - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Enhetstype - + Total space Total plass - + File system - + Contains Inneholder - + Free space Ledig plass - + %1 items %1 ting - + %1 item %1 ting @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Størrelse - + Dimension - + Duration - + Type Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Lim inn - Cu&t - + Cut + Klipp ut - &Copy - + Copy + Kopier dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Åpne - Rena&me - + Rename + Endre navn - &Delete - + Delete + Slett @@ -4557,11 +4579,6 @@ Open in terminal Åpne i terminalen - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Send til - - Bluetooth - - - - + Create link Opprett lenke - + Send to desktop Send til skrivebordet @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Åpne - + Open in new window Åpne i et nytt vindu - + Open in new tab Åpne i ny fane - + Cancel sharing Avbryt deling - - P&roperties - + + Properties + Innstillinger dfmplugin_myshares::MyShares - + My Shares Mine Delinger @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Størrelse - + Contains Inneholder - + Type Type - + Location Sted - + Time created Tid opprettet - + Time accessed - + Time modified Tid modifisert - + Hide this file - - + + %1 item %1 ting - + %1 items %1 ting @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Datamaskin - + Basic Info Grunnleggende informasjon - + Computer name - + Version Versjon - + Edition - + OS build - + Type Type - + Processor Prosessor - + Memory Minne @@ -4873,14 +4890,6 @@ %1 fil(er), %2 mapper - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Innstillinger dfmplugin_recent::Recent - + + Recent Nylig @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Sti - + Last access Siste tilgang - + Recent Nylig @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Søk: - + File Type: Filtype: - + File Size: Filstørrelse: - + Time Modified: Sist endret: - + Time Accessed: - + Time Created: - + Reset Nullstill - + All subdirectories Alle undermapper - + Current directory Nåværende mappe - + Application - + Video Video - + Audio Lyd - + Image Bilde - + Archive Arkiv - + Text Tekst - + Executable Kjørbar - + Backup file - + Today I dag - + Yesterday I går - + This week Denne uken - + Last week Forrige uke - + This month Denne måneden - + Last month Forrige måned - + This year I år - + Last year I fjor @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Søk - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Sti @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all Velg alle - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other Andre - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Datamaskiner i LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Åpne @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Avbryt - + Connect button Koble til - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted Tid slettet @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Gjenopprett - + Restore all Gjenopprett alle - + Empty trash - + Source path Kildesti - + Time deleted Tid slettet @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Søppel @@ -5529,17 +5526,17 @@ Søppel - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Størrelse - + Contains Inneholder - + Type Type - + Location Sted - + Time created Tid opprettet - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Passord - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Passord - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Avbryt - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Slett - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sorter etter - + Display as Vis som - + Name Navn - + Time modified Tid modifisert - + Size Størrelse - + Type Type - + Icon Ikon - + List Liste - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Lagre @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Lagre - + Open button Åpne @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ne.ts b/translations/dde-file-manager_ne.ts index bac3c77f01..e5fb4beace 100644 --- a/translations/dde-file-manager_ne.ts +++ b/translations/dde-file-manager_ne.ts @@ -15,104 +15,99 @@ Application - + File Manager फाइल प्रबन्धक - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - डेस्कटप + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + % 1 खण्ड - DiskMountPlugin + DesktopMain - - Disk - डिस्क + + Desktop + डेस्कटप + + + DiskControlWidget - - Open - खोल्नुहोस् + + Disks + डिस्कहरू - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + डिस्क व्यस्त छ, अब अनमाउन्ट गर्न सक्दैन - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + डिस्क - - Operation failed - + + Open + खोल्नुहोस् - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown अज्ञात @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk प्रणाली डिस्क - + Data Disk डाटा डिस्क - + Blank %1 Disc खाली% 1 डिस्क - - - + + + Unknown अज्ञात - + %1 Drive % 1 ड्राइभ - + %1 Encrypted % 1 ईन्क्रिप्टेड - - + %1 Volume % 1 खण्ड - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home होम @@ -228,6 +223,7 @@ + Desktop डेस्कटप @@ -237,6 +233,7 @@ + Videos भिडियोस @@ -246,6 +243,7 @@ + Music म्युजिक @@ -255,6 +253,7 @@ + Pictures पिक्चारहरु @@ -264,6 +263,7 @@ + Documents डोकुमेन्त्स @@ -273,6 +273,7 @@ + Downloads डाउनलोडहरू @@ -281,6 +282,7 @@ + Trash रद्दी टोकरी @@ -291,11 +293,12 @@ + Recent रिसेन्ट - + @@ -303,7 +306,7 @@ स्वत: माउन्ट - + @@ -316,46 +319,47 @@ % 1 कार्यहरू प्रगतिमा छ - + %1 item % 1 वस्तु - + %1 items % 1 वस्तुहरू - + Unable to find the original file - - + + File has been moved or deleted फाईल सारियो वा हटाईयो - - + + + You do not have permission to access this folder तपाईंसँग यो फोल्डर पहुँच गर्न अनुमति छैन - - + + You do not have permission to traverse files in it - - + + Folder is empty फोल्डर खाली छ - + Loading... लोड हुँदैछ ... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer कम्प्युटर @@ -419,8 +424,9 @@ - - + + + Computers in LAN ल्यानमा कम्प्युटरहरू @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag ट्याग @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut सर्टकट - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ बिट + Access denied प्रवेश अस्वीकृत + Confirm button पुष्टि गर्नुहोस् + + + The device has been safely removed + + - - + + - - - + + + Open in new window नयाँ विन्डोमा खोल्नुहोस् @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab नयाँ ट्याबमा खोल्नुहोस्: @@ -953,8 +968,8 @@ - - + + Properties गुणहरू @@ -990,7 +1005,7 @@ - + Create symlink स्य्म्लिंक सिर्जना गर्नुहोस् @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? के तपाईं निश्चित रूपमा डिस्कमा सबै डाटा मेटाउन चाहानुहुन्छ? - + Erase button मेटाउनु - + This action cannot be undone यो कार्य पूर्ववत गर्न सकिदैन - + How do you want to use this disc? तपाईं यो डिस्क कसरी प्रयोग गर्न चाहनुहुन्छ? - + Burn image button छवि बर्न गर्नुहोस् - + Burn files button फाईलहरू बर्न गर्नुहोस् - + %1 is a duplicate file. % 1 डुप्लिकेट फाईल हो। - + Insufficient disc space. अपर्याप्त डिस्क ठाउँ। - + Lost connection to drive. ड्राइभमा जडान हरायो। - + The CD/DVD drive is not ready. Try another disc. CD / DVD ड्राइव तयार छैन। अर्को डिस्क प्रयोग गर्नुहोस्। - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD / DVD ड्राइभ व्यस्त छ। ड्राइभको प्रयोग गरेर कार्यक्रमबाट बाहिर निस्कनुहोस् र फेरि ड्राइभ घुसाउनुहोस्। - + Invalid volume name - + Unknown error अज्ञात त्रुटि @@ -1179,42 +1194,42 @@ आईटमहरू:% 1 - + Orange सुन्तला रंग - + Red रातो - + Purple बैजनी - + Navy-blue नेभी-निलो - + Azure Azure - + Green हरियो - + Yellow पहेंलो - + Gray खैरो @@ -1290,76 +1305,76 @@ - + User directory - + Local disk स्थानीय डिस्क - + Removable disk हटाउन योग्य डिस्क - + DVD DVD - + Network shared directory नेटवर्क साझा निर्देशिका - - + + Android mobile device एन्ड्रोइड मोबाइल उपकरण - + Apple mobile device एप्पल मोबाइल उपकरण - + Unknown device अज्ञात उपकरण - + Remove button हटाउनुहोस् - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history हालको ईतिहास खाली गर्नुहोस् - - - + + + Source path स्रोत मार्ग @@ -1404,12 +1419,12 @@ - + Empty Trash रद्दी टोकरी खाली गर्नुहोस् - + Location स्थान @@ -1509,7 +1524,7 @@ खोजी गर्दै ... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type प्रकार - + Time accessed समय पहुँच गरियो - + Time modified समय परिमार्जित - + Time created समय सिर्जना गरियो - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected % 1 वस्तु चयन गरियो @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button ठिक छ - + Operation failed! सञ्चालन असफल! @@ -2529,191 +2554,191 @@ लक्ष्य फोल्डर स्रोत फोल्डर भित्र छ! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button रद्द गर्नुहोस् - + Format button फरम्याट गर्नुहोस - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? के तपाइँ% 1 चलाउन चाहानुहुन्छ वा यसको सामग्री प्रदर्शन गर्न चाहानुहुन्छ? - + It is an executable text file. यो एक कार्यान्वयन योग्य पाठ फाइल हो। - - - + + + Run button चलाउनुहोस् - - + + Run in terminal button टर्मिनलमा चलाउनुहोस् - + Display button प्रदर्शन - + Do you want to run %1? के तपाइँ % 1 चलाउन चाहानुहुन्छ? - + It is an executable file. यो एक कार्यान्वयन योग्य फाईल हो। - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? स्थायी रूपमा% 1 आईटमहरू हटाउने हो? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button हटाउनुहोस् - + Permanently delete %1? % 1 लाई स्थायी रूपमा हटाउने हो? - - + + This action cannot be undone यो कार्य पूर्ववत गर्न सकिदैन - + Are you sure you want to empty %1 item? के तपाईं % 1 आईटम खाली गर्न निश्चित हुनुहुन्छ? - + Are you sure you want to empty %1 items? के तपाईं% 1 आईटमहरू खाली गर्न निश्चित हुनुहुन्छ? - + Empty खाली - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only % 1 फाईल पुनर्स्थापित गर्न असफल भयो, लक्ष्य फोल्डर पढ्ने मात्र हो - + Failed to restore %1 files, the target folder is read-only % 1 फाईलहरू पुन: भण्डारण गर्न असफल भयो, लक्ष्य फोल्डर पढ्नको लागि मात्र हो - + "%1" already exists, please use another name. "% 1" पहिले नै अवस्थित छ, कृपया अर्को नाम प्रयोग गर्नुहोस्। - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel रद्द गर्नुहोस् - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved % 1 जुन यो सर्टकटले जनाउँछ परिवर्तन गरिएको छ वा सारियो - + Do you want to delete this shortcut? के तपाइँ यो सर्टकट मेटाउन चाहानुहुन्छ? - + This file is not executable, do you want to add the execute permission and run? यो फाईल कार्यान्वयन योग्य छैन, के तपाईं कार्यान्वयन अनुमति थप्न र चलाउन चाहानुहुन्छ? - + The selected files contain system file/directory, and it cannot be deleted चयनित फाईलहरूले प्रणाली फाइल / निर्देशिका समावेश गर्दछ, र यसलाई मेटाउन सकिदैन @@ -2841,276 +2866,278 @@ डिस्क डिक्रिप्ट गर्न इनपुट पासवर्ड - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others अन्य - + Close बन्द - + Close current tab हालको ट्याब बन्द गर्नुहोस् - + Back पछाडि - + Forward अगाडि - + Switch to next tab अर्को ट्याबमा स्विच गर्नुहोस् - + Switch to previous tab अघिल्लो ट्याबमा स्विच गर्नुहोस् - + Next file अर्को फाईल - + Previous file अघिल्लो फाइल - + Switch tab by specified number between 1 to 8 1 देखि 8 बीचमा निर्दिष्ट संख्याबाट ट्याब स्विच गर्नुहोस् @@ -3394,43 +3416,42 @@ - + Time modified: %1 समय परिमार्जित:% 1 - + Original folder मूल फोल्डर - + Contains: %1 समावेश:% 1 - + Original file मूल फाइल - + Size: %1 आकार:% 1 - + Target folder लक्ष्य फोल्डर - - + In data statistics ... - + Target file लक्ष्य फाईल @@ -3445,37 +3466,37 @@ - + Keep both button दुबै राख्नुहोस् - + Skip button छोड्नुहोस् - - + + Replace button बदल्नुहोस् - + Do not ask again फेरि नसोध्नुहोस् - + Retry button पुनःप्रयास गर्नुहोस् - + Merge button मर्ज गर्नुहोस् @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button रद्द गर्नुहोस् - + Remove button हटाउनुहोस् @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer कम्प्युटर - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer कम्प्युटर - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories मेरो निर्देशिका - + Disks डिस्कहरू @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type उपकरण प्रकार - + Total space कुल ठाउँ - + File system फाइल प्रणाली - + Contains समावेश - + Free space खाली ठाउँ - + %1 items % 1 वस्तुहरू - + %1 item % 1 वस्तु @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ आकार - + Dimension आयाम - + Duration अवधि - + Type प्रकार - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + टाँस्नुहोस् - Cu&t - + Cut + काट्नुहोस् - &Copy - + Copy + प्रतिलिपी dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + खोल्नुहोस् - Rena&me - + Rename + नाम बदल्नुहोस् - &Delete - + Delete + हटाउनुहोस् @@ -4557,11 +4579,6 @@ Open in terminal टर्मिनलमा खोल्नुहोस् - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to लाई पठाउनुहोस् - - Bluetooth - - - - + Create link लिंक सिर्जना गर्नुहोस् - + Send to desktop डेस्कटपमा पठाउनुहोस् @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + खोल्नुहोस् - + Open in new window नयाँ विन्डोमा खोल्नुहोस् - + Open in new tab नयाँ ट्याबमा खोल्नुहोस्: - + Cancel sharing साझेदारी रद्द गर्नुहोस् - - P&roperties - + + Properties + गुणहरू dfmplugin_myshares::MyShares - + My Shares मेरो सेयरहरू @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size आकार - + Contains समावेश - + Type प्रकार - + Location स्थान - + Time created समय सिर्जना गरियो - + Time accessed समय पहुँच गरियो - + Time modified समय परिमार्जित - + Hide this file यो फाईल लुकाउनुहोस् - - + + %1 item % 1 वस्तु - + %1 items % 1 वस्तुहरू @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit बिट - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer कम्प्युटर - + Basic Info आधारभूत जानकारी - + Computer name - + Version संस्करण - + Edition - + OS build - + Type प्रकार - + Processor प्रोसेसर - + Memory मेमोरी @@ -4873,14 +4890,6 @@ % 1 फाइल (हरू),% 2 फोल्डर (हरू) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + गुणहरू dfmplugin_recent::Recent - + + Recent रिसेन्ट @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path पथ - + Last access अन्तिम पहुँच - + Recent रिसेन्ट @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: खोजी गर्नुहोस् - + File Type: फाईलको प्रकार: - + File Size: फाईलको आकार: - + Time Modified: समय परिमार्जित: - + Time Accessed: - + Time Created: - + Reset रिसेट गर्नुहोस् - + All subdirectories सबै उपनिर्देशिकाहरू - + Current directory वर्तमान निर्देशिका - + Application अनुप्रयोग - + Video भिडियो - + Audio अडियो - + Image इमेज - + Archive अर्चिवे - + Text टेक्स्ट - + Executable कार्यान्वयन योग्य - + Backup file ब्याकअप फाइल - + Today आज - + Yesterday हिजो - + This week यो हप्ता - + Last week गएको हप्ता - + This month यो महिना - + Last month अघिल्लो महिना - + This year यो वर्ष - + Last year पछिल्लो वर्ष @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search खोजी गर्नुहोस् - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path पथ @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location फाईल स्थान खोल्नुहोस् - + Select all सबै छान्नु - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag ट्याग - + + Bookmark + + + + Other अन्य - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + ल्यानमा कम्प्युटरहरू + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + खोल्नुहोस् @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag ट्याग @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location फाईल स्थान खोल्नुहोस् @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server सर्भरमा जडान गर्नुहोस् - - - + + + Clear History ईतिहास खाली गर्नुहोस् - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button रद्द गर्नुहोस् - + Connect button जडान गर्नुहोस् - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path स्रोत मार्ग - + Time deleted समय हटाइयो @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore पुनर्स्थापना गर्नुहोस् - + Restore all सबै पुनर्स्थापना गर्नुहोस् - + Empty trash - + Source path स्रोत मार्ग - + Time deleted समय हटाइयो @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash रद्दी टोकरी @@ -5529,17 +5526,17 @@ रद्दी टोकरी - + item आईटम - + items वस्तुहरू - + Contains %1 %2 % 1% 2 समावेश गर्दछ @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size आकार - + Contains समावेश - + Type प्रकार - + Location स्थान - + Time created समय सिर्जना गरियो - + Time accessed समय पहुँच गरियो - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ठिक छ @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ अर्को - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault फाईल भल्ट @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + पासवर्ड - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - पासवर्ड - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + रद्द गर्नुहोस् - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + हटाउनुहोस् - - Failed to delete file vault + + Removing... - + + OK - + button + ठिक छ - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault फाईल भल्ट + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by द्वारा क्रमबद्ध गर्नुहोस् - + Display as को रूपमा प्रदर्शन गर्नुहोस् - + Name नाम - + Time modified समय परिमार्जित - + Size आकार - + Type प्रकार - + Icon आइकन - + List सूची - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button बचत गर्नुहोस् @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button बचत गर्नुहोस् - + Open button खोल्नुहोस् @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_nl.ts b/translations/dde-file-manager_nl.ts index 99884d2a57..b91587c312 100644 --- a/translations/dde-file-manager_nl.ts +++ b/translations/dde-file-manager_nl.ts @@ -15,104 +15,99 @@ Application - + File Manager Bestandsbeheerder - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Bestandsbeheer is een programma voor het beheren van bestanden en beschikt over vele mogelijkheden, zoals zoeken, kopiëren, verwijderen, (de)compressie en andere handige functies. - DesktopMain + DAttachedProtocolDevice - - Desktop - Bureaublad + + %1 on %2 + %1 op %2 - DeviceList + DeepinStorage - - Disks - Schijven + + + %1 Volume + Volume %1 - DiskMountPlugin + DesktopMain - - Disk - Schijf + + Desktop + Bureaublad + + + DiskControlWidget - - Open - Openen + + Disks + Schijven - - Eject all - Alles uitwerpen + + The device was not safely removed + Het apparaat is niet veilig verwijderd - - - DockItemDataManager - - The device has been safely removed - Het apparaat is veilig verwijderd + + Click "Safely Remove" and then disconnect it next time + Klik voortaan op ‘Veilig verwijderen’ voordat je het apparaat loskoppelt - - eject - Uitwerpen + + Disk is busy, cannot unmount now + Schijf is in gebruik; je kunt nu niet afkoppelen - - unmount - Afkoppelen + + The device is busy, cannot eject now + Schijf is in gebruik; je kunt nu niet uitwerpen + + + DiskMountPlugin - - - remove - Verwijderen + + Disk + Schijf - - Operation failed - Operatie mislukt + + Open + Openen - - Device (%1) is busy, cannot %2 now. - %1 is bezig; %2 is daardoor niet mogelijk. + + Eject all + Alles uitwerpen FileDialogHandle - + All Files Alle bestanden - - FileOperateBaseWorker - - - The file name or the path is too long! - De bestandsnaam of -locatie is te lang! - - MimeTypeDisplayManager - + Unknown Onbekend @@ -128,89 +123,88 @@ QObject - + need authorization to access need authorization to access - + Can't verify the identity of %1. De identiteit van %1 kan niet worden bevestigd. - + This happens when you log in to a computer the first time. Dit gebeurt als je voor de eerste keer inlogt op een computer. - + The identity sent by the remote computer is De door de andere computer verstuurde identiteit is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Als je wilt bevestigen dat het veilig is om door te gaan, neem dan contact op met de systeembeheerder. - - - + + + System Disk Systeemschijf - + Data Disk Gegevensschijf - + Blank %1 Disc Lege %1-schijf - - - + + + Unknown Onbekend - + %1 Drive %1-schijf - + %1 Encrypted %1 versleuteld - - + %1 Volume Volume %1 - + + Scanning the device, stop it? Wil je het doorzoeken van het apparaat afbreken? - + Unmount failed Ontkoppelen mislukt - + Cannot stop scanning device Het scannen kan niet worden afgebroken - - + %1 on %2 %1 op %2 @@ -219,6 +213,7 @@ + Home Home @@ -228,6 +223,7 @@ + Desktop Bureaublad @@ -237,6 +233,7 @@ + Videos Video's @@ -246,6 +243,7 @@ + Music Muziek @@ -255,6 +253,7 @@ + Pictures Afbeeldingen @@ -264,6 +263,7 @@ + Documents Documenten @@ -273,6 +273,7 @@ + Downloads Downloads @@ -281,6 +282,7 @@ + Trash Prullenbak @@ -291,11 +293,12 @@ + Recent Recent - + @@ -303,7 +306,7 @@ Automatisch aankoppelen - + @@ -316,46 +319,47 @@ Er worden 1% taken uitgevoerd - + %1 item %1 item - + %1 items %1 items - + Unable to find the original file Het oorspronkelijke bestand is niet aangetroffen - - + + File has been moved or deleted Bestand is verplaatst of verwijderd - - + + + You do not have permission to access this folder Je bent niet bevoegd om deze map te openen - - + + You do not have permission to traverse files in it Je bent niet bevoegd om deze map te gebruiken - - + + Folder is empty Map is leeg - + Loading... Bezig met laden… @@ -404,7 +408,7 @@ - + Built-in disks Interne schijven @@ -412,6 +416,7 @@ + Computer Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN Computers op LAN-netwerk @@ -428,7 +434,7 @@ - + Loop partitions Loop-partities @@ -436,8 +442,7 @@ - - + Mounted sharing folders Aangekoppelde gedeelde mappen @@ -445,6 +450,7 @@ + My shares Mijn gedeelde items @@ -452,7 +458,7 @@ - + Network Netwerk @@ -460,7 +466,7 @@ - + Mounted partitions and discs Aangekoppelde partities en schijven @@ -468,7 +474,7 @@ - + Partitions Partities @@ -476,7 +482,7 @@ - + Quick access Snelle toegang @@ -484,7 +490,7 @@ - + Tag Label @@ -492,7 +498,7 @@ - + Added tags Labels toekennen @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Aangekoppelde Samba-mappen blijven tonen @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Afbreken - + Shortcut Snelkoppeling - + This system wallpaper is locked. Please contact your admin. Deze systeemachtergrond is vergrendeld - neem contact op met je beheerder. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopiëren) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopie %1) @@ -901,26 +909,33 @@ Bit + Access denied Toegang geweigerd + Confirm button Oké + + + The device has been safely removed + Het apparaat is veilig verwijderd + - - + + - - - + + + Open in new window Openen in nieuw venster @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Openen op nieuw tabblad @@ -953,8 +968,8 @@ - - + + Properties Eigenschappen @@ -990,7 +1005,7 @@ Nieuw Bestand - + Create symlink Snelkoppeling maken @@ -1077,70 +1092,70 @@ Toevoegen aan schijf - + Are you sure you want to erase all data on the disc? Weet je zeker dat je alle gegevens op deze schijf definitief wilt verwijderen? - + Erase button Wissen - + This action cannot be undone Deze actie kan niet ongedaan worden gemaakt - + How do you want to use this disc? Hoe wil je deze schijf gebruiken? - + Burn image button Schijfbestand branden - + Burn files button Bestanden branden - + %1 is a duplicate file. %1 is een duplicaat. - + Insufficient disc space. Onvoldoende schijfruimte. - + Lost connection to drive. Verbinding met schijf verbroken. - + The CD/DVD drive is not ready. Try another disc. De CD/DVD is niet gereed. Probeer een andere. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. De CD-/DVD-schijf is bezig. Sluit het programma af waarin deze wordt gebruikt en voer de schijf opnieuw in. - + Invalid volume name Ongeldige volumenaam - + Unknown error Onbekende fout @@ -1179,42 +1194,42 @@ Items: %1 - + Orange Oranje - + Red Rood - + Purple Paars - + Navy-blue Marineblauw - + Azure Groenblauw - + Green Groen - + Yellow Geel - + Gray Grijs @@ -1290,76 +1305,76 @@ Geen toegang - + User directory Persoonlijke map - + Local disk Lokale schijf - + Removable disk Verwijderbare schijf - + DVD DVD - + Network shared directory Gedeelde netwerkmap - - + + Android mobile device Mobiel Android-apparaat - + Apple mobile device Mobiel Apple-apparaat - + Unknown device Onbekend apparaat - + Remove button Verwijderen - + Do you want to remove this item? Wil je dit item verwijderen? - + Do yout want to remove %1 items? Wil je %1 items verwijderen? - + It does not delete the original files De oorspronkelijke bestanden worden niet verwijderd - + Clear recent history Recente geschiedenis wissen - - - + + + Source path Bronlocatie @@ -1404,12 +1419,12 @@ Items kunnen niet worden geopend vanuit de prullenbak - zet ze eerst terug. - + Empty Trash Prullenbak legen - + Location Locatie @@ -1509,7 +1524,7 @@ Bezig met zoeken… - + My Vault Mijn kluis @@ -1704,7 +1719,7 @@ Mislukt - + Sidebar Zijbalk @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - Niet toegestaan - - - - - In trial period - In proefperiode - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized Niet toegestaan - - + + In trial period In proefperiode @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nieuwe verzameling @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Bureaublad ordenen - + Desktop options Bureaubladopties - + Organize by Ordenen op - + Custom collection Aangepaste verzameling - + Type Type - + Time accessed Benaderd op - + Time modified Gewijzigd - + Time created Aangemaakt op - + Create a collection Verzameling aanmaken + + + Display Size + Weergavegrootte + + + + Smaller + Kleiner + + + + Normal + Normaal + + + + Larger + Groter + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Bureaubladopties - + Auto arrange icons Automatisch schikken @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Weergavegrootte + + + Icon size Pictogramgrootte @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Bestandsbeheer wordt bijgewerkt naar een nieuwe versie. Tijdens het bijwerken worden de huidige taken afgebroken. Wil je nu bijwerken? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? De bureaubladdiensten worden bijgewerkt naar een nieuwe versie. Tijdens het bijwerken worden de huidige taken afgebroken. Wil je nu bijwerken? - + Update button Bijwerken - + Cancel button Annuleren @@ -2360,7 +2385,7 @@ - + %1 item selected %1 item geselecteerd @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Oké - + Operation failed! Operatie mislukt! @@ -2529,191 +2554,191 @@ De doelmap staat in de hoofdmap! - + The passphrase is needed to access encrypted data on %1. Wachtwoordzin vereist om toegang te krijgen tot gegevens op %1. - - - - - - - - + + + + + + + + Cancel button Annuleren - + Format button Formaat - + To access the device, you must format the disk first. Are you sure you want to format it now? Het apparaat kan pas worden gebruikt als het geformatteerd is. Weet je zeker dat je het nu wilt formatteren? - + Do you want to run %1 or display its content? Wil je %1 uitvoeren of de inhoud ervan tonen? - + It is an executable text file. Dit is een uitvoerbaar tekstbestand. - - - + + + Run button Uitvoeren - - + + Run in terminal button Uitvoeren in terminalvenster - + Display button Tonen - + Do you want to run %1? Weet je zeker dat je %1 wilt uitvoeren? - + It is an executable file. Dit is een uitvoerbaar bestand. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? De %1 geselecteerde items kunnen niet worden verplaatst naar de prullenbak. Wil je ze permanent verwijderen? - + Permanently delete %1 items? %1 items permanent verwijderen? - + Cannot move "%1" to the trash. Do you want to permanently delete it? ‘%1’ kan niet worden verplaatst naar de prullenbak. Wil je het item permanent verwijderen? - - - + + + Delete button Verwijderen - + Permanently delete %1? %1 permanent verwijderen? - - + + This action cannot be undone Deze actie kan niet ongedaan worden gemaakt - + Are you sure you want to empty %1 item? Weet je zeker dat je %1 item wilt verwijderen? - + Are you sure you want to empty %1 items? Weet je zeker dat je %1 items wilt verwijderen? - + Empty Legen - + Do you want to delete %1? Weet je zeker dat je %1 wilt verwijderen? - + Do you want to delete the selected %1 items? Weet je zeker dat je de %1 geselecteerde items wilt verwijderen? - + Failed to restore %1 file, the target folder is read-only Kan %1 bestand niet terugzetten: de doelmap is alleen-lezen - + Failed to restore %1 files, the target folder is read-only Kan %1 bestanden niet terugzetten: de doelmap is alleen-lezen - + "%1" already exists, please use another name. "%1" bestaat al. Kies een andere naam. - + Device or resource busy Het apparaat of de bron is in gebruik - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Dit bestand wordt verborgen als de bestandsnaam begint met '.'. Wilt u het verbergen? - + Hide Verbergen - + Cancel Annuleren - + Unable to access %1 Geen toegang tot %1 - + %1 that this shortcut refers to has been changed or moved %1, dat naar deze snelkoppeling verwijst, is gewijzigd of verplaatst - + Do you want to delete this shortcut? Wil je deze snelkoppeling verwijderen? - + This file is not executable, do you want to add the execute permission and run? Dit bestand is niet uitvoerbaar. Wil je het markeren als uitvoerbaar en uitvoeren? - + The selected files contain system file/directory, and it cannot be deleted De geselecteerde items bevatten systeembestanden of -mappen, en kunnen niet worden verwijderd @@ -2841,276 +2866,278 @@ Voer je wachtwoord in om de schijf te ontgrendelen - - dfmbase::RightValueWidget - - - Copy complete info - Volledige informatie kopiëren - - dfmbase::SettingBackend - + Always open folder in new window Mappen altijd openen in nieuw venster - + Open file: Bestand openen: - + Click Eenmaal klikken - + Double click Dubbelklikken - + New window and tab Nieuw venster en tabblad - + Open from default window: Openen in standaardvenster: - - + + Computer Computer - - + + Home Persoonlijke map - - + + Desktop Bureaublad - - + + Videos Video's - - + + Music Muziek - - + + Pictures Afbeeldingen - - + + Documents Documenten - - + + Downloads Downloads - + Open in new tab: Openen op nieuw tabblad: - + Current Directory Huidige map - + Files and folders Bestanden en mappen - + Show hidden files Verborgen bestanden tonen - + Show file extensions Bestandsextensies tonen - + Mix sorting of files and folders Mappen niet vóór bestanden sorteren - + Workspace Werkruimte - + View Weergave - + Default size: Standaardgrootte: - + Extra small Erg klein - + Small Klein - + Medium Normaal - + Large Groot - + Extra large Erg groot - - Tree - Boomweergave - - - + Default view: Standaardweergave: - + Icon Pictogrammen - + List Lijst - - Restore default view mode for all directories - Standaardweergave van alle mappen herstellen - - - - Restore default view mode - Standaardweergave herstellen - - - + Thumbnail preview Miniatuurvoorbeelden tonen - + Compressed file preview Ingepakte bestanden voorvertonen - + Text preview Tekstbestanden voorvertonen - + Document preview Documenten voorvertonen - + Image preview Afbeeldingen voorvertonen - + Video preview Video's voorvertonen - + Music preview Muziek voorvertonen - + The remote environment shows thumbnail previews De externe omgeving toont miniatuurvoorbeelden - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Let op: miniatuurvoorbeelden kunnen er voor zorgen dat de externe map langzamer laad of de actie bevriest - + Advanced Geavanceerd - + + Search + Zoeken + + + + Auto index internal disk + Interne schijf automatisch indexeren + + + + Index external storage device after connected to computer + Externe schijf indexeren na aankoppelen + + + + Full-Text search + Volledige tekst doorzoeken + + + Mount Aankoppelen - + Auto mount Automatisch aankoppelen - + Open after auto mount Openen na automatisch aankoppelen - + + Show item counts and sizes in the path of mounted MTP devices + Aantal items en groottes tonen op locaties van aangekoppelde mtp-apparaten + + + Merge the entries of Samba shared folders Items van met Samba gedeelde mappen samenvoegen - + Switching the entry display may lead to failed mounting Let op: hierdoor kan het aankoppelen mislukken - + Use the file chooser dialog of File Manager Deepin-bestandskiezer gebruiken - + Ask for my confirmation when deleting files Om bevestiging vragen bij verwijderen van bestanden @@ -3274,56 +3301,51 @@ - Switch to tree view - Overschakelen naar boomweergave - - - Others Overige - + Close Sluiten - + Close current tab Huidig tabblad sluiten - + Back Terug - + Forward Vooruit - + Switch to next tab Overschakelen naar volgend tabblad - + Switch to previous tab Overschakelen naar vorig tabblad - + Next file Volgend bestand - + Previous file Vorig bestand - + Switch tab by specified number between 1 to 8 Schakelen tussen tabbladen met cijfertoetsen 1-8 @@ -3394,43 +3416,42 @@ Het aanmaken van de doelbestandsinformatie van ‘%1’ is mislukt! - + Time modified: %1 Aangepast om: %1 - + Original folder Oorspronkelijke map - + Contains: %1 Bevat: %1 - + Original file Oorspronkelijk bestand - + Size: %1 Grootte: %1 - + Target folder Doelmap - - + In data statistics ... In gegevensstatistieken - + Target file Doelbestand @@ -3445,37 +3466,37 @@ Even geduld… - + Keep both button Beide behouden - + Skip button Overslaan - - + + Replace button Vervangen - + Do not ask again Niet meer vragen - + Retry button Opnieuw - + Merge button Samenvoegen @@ -3489,7 +3510,7 @@ Voer een wachtwoord in om gedeelde mappen te beveiligen - + Set a password on the shared folder for non-anonymous access Stel een wachtwoord in om openbare toegang in te schakelen @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Je snelletoegangsmap is niet aangetroffen. Wil je deze verwijderen? - + Cancel button Annuleren - + Remove button Verwijderen @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Computer - + Computer display items Te tonen items op overzicht - + Hide built-in disks on the Computer page Interne schijven verbergen op overzicht - + Hide loop partitions on the Computer page Loop-partities verbergen op overzicht - + Show file system on disk icon Bestandssyteemlabel tonen op schijfpictogrammen - + Hide My Directories on the Computer page Mijn mappen verbergen op overzicht - + Hide 3rd party entries on the Computer page Externe items verbergen op overzicht @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Het ontgrendelen is mislukt - + Wrong password Onjuist wachtwoord - + Rename failed Naamswijziging mislukt - + The device is busy and cannot be renamed now Schijf is in gebruik; je kunt nu de naam niet wijzigen - + Format failed Formatteren mislukt - + The device is busy and cannot be formatted now Schijf is in gebruik; je kunt nu niet formatteren - + Mount error Aankoppelfout - + Cannot access %1 Geen toegang tot %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computer - + %1 is read-only. Do you want to enable read and write permissions for it? %1 is alleen-lezen. Wil je lees- en schrijfbevoegdheden toekennen? - + Once enabled, read/write permission will be granted permanently Let op: de toekenning is permanent - + Cancel Annuleren - + Enable Now Nu toekennen @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mijn mappen - + Disks Schijven @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Algemene informatie - + Device type Soort apparaat - + Total space Totale ruimte - + File system Bestandssysteem - + Contains Bevat - + Free space Vrije ruimte - + %1 items %1 items - + %1 item %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 op %2 @@ -3968,27 +3990,27 @@ Grootte - + Dimension Afmetingen - + Duration Duur - + Type Type - + Accessed Geopend op/om - + Modified Bewerkt op/om @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - Verwijderen van bestand ‘%1’ mislukt + @@ -4335,7 +4357,7 @@ Copy or Cut File failed! - Kopiëren of knippen mislukt! + @@ -4365,7 +4387,7 @@ Failed to move the file %1 to trash, cause: %2 - Verwijderen van bestand ‘%1’ mislukt. Oorzaak: %2 + @@ -4384,8 +4406,8 @@ - Copy or Cut File failed, cause: %1 - Kopiëren of knippen mislukt. Oorzaak: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4439,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Bestand kan niet van naam worden gewijzigd - + Failed to create the directory Kan map niet aanmaken - + Failed to create the file Aanmaken van bestand mislukt - + link file error Snelkoppelingsfout - - + + Failed to modify file permissions - Wijzigen van bestandsrechten mislukt + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - &Plakken + Paste + Plakken - Cu&t - K&nippen + Cut + Knippen - &Copy - &Kopiëren + Copy + Kopiëren dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Openen + Open + Openen - Rena&me - Naa&m wijzigen + Rename + Naam wijzigen - &Delete - Verwij&deren + Delete + Verwijderen @@ -4557,11 +4579,6 @@ Open in terminal Openen in terminalvenster - - - Reverse select - Selectie omkeren - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Versturen naar - - Bluetooth - Bluetooth - - - + Create link Snelkoppeling maken - + Send to desktop Op bureaublad plaatsen @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Delen + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Openen + + Open + Openen - + Open in new window Openen in nieuw venster - + Open in new tab Openen op nieuw tabblad - + Cancel sharing Delen afbreken - - P&roperties - E&igenschappen + + Properties + Eigenschappen dfmplugin_myshares::MyShares - + My Shares Mijn gedeelde items @@ -4683,7 +4700,7 @@ Geen te branden bestanden - + Unable to burn. Not enough free space on the target disk. Kan niet branden: onvoldoende vrije ruimte op de doelschijf. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Algemene informatie - + Size Grootte - + Contains Bevat - + Type Type - + Location Locatie - + Time created Aangemaakt op - + Time accessed Benaderd op - + Time modified Gewijzigd - + Hide this file Dit bestand verbergen - - + + %1 item %1 item - + %1 items %1 items @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Voor inloggegevensbeveiliging - + For Government Voor overheden - + For Enterprise Voor zakelijk gebruik - + Bit Bit - + Available Beschikbaar @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computer - + Basic Info Basisinformatie - + Computer name Computernaam - + Version Versie - + Edition Versie - + OS build Besturingssysteemversie - + Type Type - + Processor Processor - + Memory Geheugen @@ -4874,14 +4891,6 @@ %1 bestand(en), %2 map(pen) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - %1 is niet toegestaan - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - E&igenschappen + Properties + Eigenschappen dfmplugin_recent::Recent - + + Recent Recent @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Locatie - + Last access Laatst benaderd - + Recent Recent @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Doorzoeken: - + File Type: Bestandssoort: - + File Size: Bestandsgrootte: - + Time Modified: Aangepast om: - + Time Accessed: Benaderd op: - + Time Created: Aangemaakt op: - + Reset Standaardwaarden - + All subdirectories Onderliggende mappen - + Current directory Huidige map - + Application App - + Video Video - + Audio Audio - + Image Afbeelding - + Archive Archief - + Text Tekst - + Executable Uitvoerbaar - + Backup file Backup-bestand - + Today Vandaag - + Yesterday Gisteren - + This week Deze week - + Last week Vorige week - + This month Deze maand - + Last month Vorige maand - + This year Dit jaar - + Last year Vorig jaar @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Zoeken - - - Auto index internal disk - Interne schijf automatisch indexeren - - - - Index external storage device after connected to computer - Externe schijf indexeren na aankoppelen - - - - Full-Text search - Volledige tekst doorzoeken - dfmplugin_search::SearchHelper - + Path Locatie @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Bestandslocatie openen - + Select all Alles selecteren - + Path Locatie @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Snelle toegang - + Partitions Partities - + Network Netwerk - + Tag Label - + + Bookmark + Bladwijzer + + + Other Andere - + Unknown Group Onbekende groep + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Computers op LAN-netwerk + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Openen + Open + Openen @@ -5184,8 +5191,8 @@ - P&roperties - E&igenschappen + Properties + Eigenschappen @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Label @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Bestandslocatie openen @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Verbinden met server - - - + + + Clear History Geschiedenis wissen - + Unfavorite Verwijderen uit favorieten - - Error - Foutmelding - - - - Unable to favorite illegitimate url! - Deze foutieve url kan niet worden toegevoegd! - - - + Cancel button Annuleren - + Connect button Verbinden - + Charset Encoding Tekensetcodering - + Default Standaard - + My Favorites Mijn favorieten - + No favorites yet Je hebt nog geen favorieten - + Favorite Toevoegen aan favorieten @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Bronlocatie - + Time deleted Verwijderd om @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Herstellen - + Restore all Alles herstellen - + Empty trash Prullenbak legen - + Source path Bronlocatie - + Time deleted Verwijderd om @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Prullenbak @@ -5530,17 +5527,17 @@ Prullenbak - + item item - + items items - + Contains %1 %2 Bevat %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Algemene informatie - + Size Grootte - + Contains Bevat - + Type Type - + Location Locatie - + Time created Aangemaakt op - + Time accessed Benaderd op - + Time locked Tijd vergrendeld @@ -5988,7 +5985,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Bestandskluis versleutelen @@ -6009,19 +6006,19 @@ - - - + + + Encrypt Versleutelen - + Failed to create file vault: %1 De bestandskluis kan niet worden aangemaakt: %1 - + OK Oké @@ -6072,7 +6069,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Kluiswachtwoord instellen @@ -6098,7 +6095,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols Minimaal 8 tekens: A-Z, a-z, 0-9 of speciale tekens @@ -6133,8 +6130,8 @@ Volgende - - + + Passwords do not match De wachtwoorden komen niet overeen @@ -6142,7 +6139,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Bestandskluis @@ -6192,7 +6189,7 @@ dfmplugin_vault::VaultHelper - + Vault Kluis @@ -6202,7 +6199,7 @@ De kluis is niet beschikbaar omdat cryfs niet geïnstalleerd is. - + A task is in progress, so it cannot perform your operation De actie kan niet worden uitgevoerd omdat er een actieve taak is @@ -6210,122 +6207,99 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Mijn kluis - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Annuleren - - - - Delete - Verwijderen - - - - Delete File Vault - Bestandskluis vernietigen - - - - Failed to delete file vault - De bestandskluis kan niet worden vernietigd - - - - OK - Oké - - - - Once deleted, the files in it will be permanently deleted - Door het vernietigen worden alle kluisbestanden permanent verwijderd. - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Door het vernietigen worden alle kluisbestanden permanent verwijderd. - - - + Password Wachtwoord - + Password hint: %1 Wachtwoordhint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Annuleren - - - - Delete - Verwijderen + + Input the 32-digit recovery key + Voer de herstelsleutel in + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault - Bestandskluis vernietigen + Standaard bestandskluis - - Wrong password - Onjuist wachtwoord + + Once deleted, the files in it will be permanently deleted + Door het vernietigen worden alle kluisbestanden permanent verwijderd. - - Failed to delete file vault - De bestandskluis kan niet worden vernietigd + + Cancel + button + Annuleren - - OK - Oké + + Use Key + button + Sleutel gebruiken - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Voer de herstelsleutel in + + Delete + button + Verwijderen - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Bezig met verwijderen… - + + OK + button Oké - - Delete File Vault - Bestandskluis vernietigen + + Wrong password + Onjuist wachtwoord + + + + Wrong recovery key + Onjuiste herstelsleutel - + + Failed to delete file vault + De bestandskluis kan niet worden vernietigd + + + Deleted successfully De kluis is vernietigd + + + Failed to delete + De kluis kan niet worden vernietigd + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6309,16 @@ Mijn kluis - + File Vault Bestandskluis + + + + Vault + Kluis + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6331,22 @@ dfmplugin_workspace::FileViewModel - + Name Naam - + Time modified Gewijzigd - + Size Grootte - + Type Type @@ -6382,7 +6362,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 is niet toegestaan @@ -6398,50 +6378,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sorteren op - + Display as Tonen als - + Name Naam - + Time modified Gewijzigd - + Size Grootte - + Type Type - + Icon Pictogram - + List Lijst - - - Tree - Boomweergave - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ filedialog_core::FileDialog - + Save button Opslaan @@ -6463,13 +6438,13 @@ filedialog_core::FileDialogStatusBar - + Save button Opslaan - + Open button Openen @@ -6507,112 +6482,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Beschikbare omvangen: - + Custom Size Eigen omvang - + Device Pixel Ratio: Pixelverhouding: - + Theme: Thema: - + Light Licht - + Dark Donker - + Mode: Modus: - + Normal Normaal - + Disabled Uitgeschakeld - + Hovered Aangewezen - + Pressed Ingedrukt - + Palette Kleurenschema - + Current mode icon does not support the palette Het huidige moduspictogram wordt niet ondersteund door het kleurenschema - + Foreground: Voorgrond: - + Background: Achtergrond: - + Highlight: Markering: - + HighlightForeground: Voorgrond van markering: - + Background Color: Achtergrondkleur: - + White Wit - + Black Zwart - + Transparent Doorzichtig - + Custom Eigen kleur @@ -6644,24 +6619,24 @@ plugin_filepreview::MusicMessageView - + Artist: Artiest: - + Album: Album: - + unknown artist onbekende artiest - + unknown album onbekend album - \ No newline at end of file + diff --git a/translations/dde-file-manager_pa.ts b/translations/dde-file-manager_pa.ts index ba5dcf8510..7ca9640ed9 100644 --- a/translations/dde-file-manager_pa.ts +++ b/translations/dde-file-manager_pa.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - ਡੈਸਕਟਾਪ + + %1 on %2 + - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk - ਡਿਸਕ + + Desktop + ਡੈਸਕਟਾਪ + + + DiskControlWidget - - Open - ਖੋਲ੍ਹੋ + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + ਡਿਸਕ - - Operation failed - + + Open + ਖੋਲ੍ਹੋ - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk ਸਿਸਟਮ ਡਿਸਕ - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home ਘਰ @@ -228,6 +223,7 @@ + Desktop ਡੈਸਕਟਾਪ @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music ਸੰਗੀਤ @@ -255,6 +253,7 @@ + Pictures ਤਸਵੀਰਾਂ @@ -264,6 +263,7 @@ + Documents ਡੌਕੂਮੈਂਟ @@ -273,6 +273,7 @@ + Downloads ਡਾਊਨਲੋਡ @@ -281,6 +282,7 @@ + Trash ਰੱਦੀ @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item %1 ਚੀਜ਼ - + %1 items %1 ਚੀਜ਼ਾਂ - + Unable to find the original file - - + + File has been moved or deleted ਫਾਇਲ ਨੂੰ ਹਿਲਾਇਆ ਜਾਂ ਹਟਾਇਆ ਗਿਆ ਹੈ - - + + + You do not have permission to access this folder ਤੁਹਾਡੇ ਕੋਲ ਇਸ ਫੋਲਡਰ ਲਈ ਪਹੁੰਚ ਨਹੀਂ ਹੈ - - + + You do not have permission to traverse files in it - - + + Folder is empty ਫੋਲਡਰ ਖਾਲੀ ਹੈ - + Loading... ...ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer ਕੰਪਿਊਟਰ @@ -419,8 +424,9 @@ - - + + + Computers in LAN LAN ਵਿੱਚ ਕੰਪਿਊਟਰ @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ ਬਿੱਟ + Access denied + Confirm button ਤਸਦੀਕ ਕਰੋ + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab ਨਵੀਂ ਟੈਬ ਵਿੱਚ ਖੋਲ੍ਹੋ @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink ਸਿਮ-ਲਿੰਕ ਬਣਾਓ @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk ਲੋਕਲ ਡਿਸਕ - + Removable disk ਹਟਾਉਣਯੋਗ ਡਿਸਕ - + DVD - + Network shared directory ਨੈੱਟਵਰਕ ਸਾਂਝੀ ਕੀਤੀ ਡਾਇਰੈਕਟਰੀ - - + + Android mobile device ਐਂਡਰਾਇਡ ਮੋਬਾਈਲ ਡਿਵਾਈਸ - + Apple mobile device - + Unknown device ਅਣਪਛਾਤਾ ਡਿਵਾਈਸ - + Remove button ਹਟਾਓ - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history ਤਾਜ਼ਾ ਅਤੀਤ ਸਾਫ਼ ਕਰੋ - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash ਰੱਦੀ ਖਾਲੀ ਕਰੋ - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type ਕਿਸਮ - + Time accessed - + Time modified ਸੋਧ ਕਰਨ ਦਾ ਵੇਲਾ - + Time created ਬਣਾਉਣ ਵੇਲਾ - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 ਚੀਜ਼ ਚੁਣੀ @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button ਠੀਕ ਹੈ - + Operation failed! ਕਾਰਵਾਈ ਅਸਫ਼ਲ ਹੈ! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button ਰੱਦ ਕਰੋ - + Format button ਫਾਰਮੈਟ ਕਰੋ - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button ਚਲਾਓ - - + + Run in terminal button ਟਰਮੀਨਲ 'ਚ ਚਲਾਓ - + Display button ਵੇਖਾਓ - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 ਚੀਜ਼ਾਂ ਨੂੰ ਪੱਕੇ ਤੌਰ ਉੱਤੇ ਹਟਾਉਣਾ ਹੈ? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button ਹਟਾਓ - + Permanently delete %1? %1 ਨੂੰ ਪੱਕੇ ਤੌਰ ਉੱਤੇ ਹਟਾਉਣਾ ਹੈ? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel ਰੱਦ ਕਰੋ - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted ਚੁਣੀਆਂ ਫਾਇਲਾਂ ਸਿਸਟਮ ਫਾਇਲਾਂ/ਡਾਇਰੈਕਟਰੀ ਰੱਖਦੀਆਂ ਹਨ, ਤੇ ਹਟਾਈਆਂ ਨਹੀਂ ਜਾ ਸਕਦੀਆਂ @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others ਹੋਰ - + Close ਬੰਦ ਕਰੋ - + Close current tab ਮੌਜੂਦਾ ਟੈਬ ਬੰਦ ਕਰੋ - + Back ਪਿੱਛੇ - + Forward - + Switch to next tab ਅਗਲੀ ਟੈਬ ਉੱਤੇ ਜਾਓ - + Switch to previous tab ਪਿਛਲੀ ਟੈਬ ਉੇੱਤੇ ਜਾਓ - + Next file ਅਗਲੀ ਫਾਇਲ - + Previous file ਪਿਛਲੀ ਫਾਇਲ - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button ਦੋਵੇ ਰੱਖੋ - + Skip button ਛੱਡੋ - - + + Replace button ਤਬਦੀਲ ਕਰੋ - + Do not ask again ਮੁੜ ਨਾ ਪੁੱਛੋ - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button ਰੱਦ ਕਰੋ - + Remove button ਹਟਾਓ @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer ਕੰਪਿਊਟਰ - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer ਕੰਪਿਊਟਰ - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space ਖਾਲੀ ਥਾਂ - + %1 items %1 ਚੀਜ਼ਾਂ - + %1 item %1 ਚੀਜ਼ @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ ਆਕਾਰ - + Dimension - + Duration - + Type ਕਿਸਮ - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + ਚੇਪੋ - Cu&t - + Cut + ਕੱਟੋ - &Copy - + Copy + ਕਾਪੀ ਕਰੋ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + ਖੋਲ੍ਹੋ - Rena&me - + Rename + ਨਾਂ ਬਦਲੋ - &Delete - + Delete + ਹਟਾਓ @@ -4557,11 +4579,6 @@ Open in terminal ਟਰਮੀਨਲ 'ਚ ਖੋਲ੍ਹੋ - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop ਡੈਸਕਟਾਪ ਉੱਤੇ ਭੇਜੋ @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + ਖੋਲ੍ਹੋ - + Open in new window - + Open in new tab ਨਵੀਂ ਟੈਬ ਵਿੱਚ ਖੋਲ੍ਹੋ - + Cancel sharing ਸਾਂਝਾ ਕਰਨਾ ਰੱਦ ਕਰੋ - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size ਆਕਾਰ - + Contains - + Type ਕਿਸਮ - + Location - + Time created ਬਣਾਉਣ ਵੇਲਾ - + Time accessed - + Time modified ਸੋਧ ਕਰਨ ਦਾ ਵੇਲਾ - + Hide this file - - + + %1 item %1 ਚੀਜ਼ - + %1 items %1 ਚੀਜ਼ਾਂ @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit ਬਿੱਟ - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer ਕੰਪਿਊਟਰ - + Basic Info ਮੁੱਢਲੀ ਜਾਣਕਾਰੀ - + Computer name - + Version - + Edition - + OS build - + Type ਕਿਸਮ - + Processor ਪਰੋਸੈਸਰ - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path ਮਾਰਗ - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path ਮਾਰਗ @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all ਸਾਰੇ ਚੁਣੋ - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + LAN ਵਿੱਚ ਕੰਪਿਊਟਰ + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + ਖੋਲ੍ਹੋ @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button ਰੱਦ ਕਰੋ - + Connect button ਕਨੈਕਟ ਕਰੋ - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path ਸਰੋਤ ਮਾਰਗ - + Time deleted ਹਟਾਉਣ ਦਾ ਵੇਲਾ @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore ਬਹਾਲ ਕਰੋ - + Restore all - + Empty trash - + Source path - + Time deleted ਹਟਾਉਣ ਦਾ ਵੇਲਾ @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash ਰੱਦੀ @@ -5529,17 +5526,17 @@ ਰੱਦੀ - + item - + items ਚੀਜ਼ਾਂ - + Contains %1 %2 %1 %2 ਰੱਖਦਾ ਹੈ @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size ਆਕਾਰ - + Contains - + Type ਕਿਸਮ - + Location - + Time created ਬਣਾਉਣ ਵੇਲਾ - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK ਠੀਕ ਹੈ @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + ਪਾਸਵਰਡ - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - ਪਾਸਵਰਡ - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + ਰੱਦ ਕਰੋ - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + ਹਟਾਓ - - Failed to delete file vault + + Removing... - + + OK - + button + ਠੀਕ ਹੈ - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by ਲੜੀਬੱਧ - + Display as ਇੰਞ ਵੇਖਾਓ - + Name ਨਾਂ - + Time modified ਸੋਧ ਕਰਨ ਦਾ ਵੇਲਾ - + Size ਆਕਾਰ - + Type ਕਿਸਮ - + Icon ਚਿੰਨ੍ਹ - + List ਸੂਚੀ - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button ਖੋਲ੍ਹੋ @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_pam.ts b/translations/dde-file-manager_pam.ts index 48c0fd8c66..c9738ba0dc 100644 --- a/translations/dde-file-manager_pam.ts +++ b/translations/dde-file-manager_pam.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_pl.ts b/translations/dde-file-manager_pl.ts index b93dba1ace..1a9090c27d 100644 --- a/translations/dde-file-manager_pl.ts +++ b/translations/dde-file-manager_pl.ts @@ -15,104 +15,99 @@ Application - + File Manager Menedżer plików - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Menedżer plików to potężne i łatwe w użyciu narzędzie do zarządzania plikami, wyposażone w wyszukiwanie, kopiowanie, kosz, kompresję/dekompresję, właściwości pliku i inne przydatne funkcje. - DesktopMain + DAttachedProtocolDevice - - Desktop - Pulpit + + %1 on %2 + %1 na %2 - DeviceList + DeepinStorage - - Disks - Dyski + + + %1 Volume + Wolumin %1 - DiskMountPlugin + DesktopMain - - Disk - Dysk + + Desktop + Pulpit + + + DiskControlWidget - - Open - Otwórz + + Disks + Dyski - - Eject all - Wysuń wszystkie + + The device was not safely removed + Urządzenie nie zostało bezpiecznie usunięte - - - DockItemDataManager - - The device has been safely removed - Urządzenie zostało bezpiecznie usunięte + + Click "Safely Remove" and then disconnect it next time + Kliknij „Bezpieczne usuwanie”, a następnie odłącz go następnym razem - - eject - wysunąć + + Disk is busy, cannot unmount now + Dysk jest zajęty, nie można go teraz odmontować - - unmount - odmontować + + The device is busy, cannot eject now + Urządzenie jest zajęte, nie można go teraz wysunąć + + + DiskMountPlugin - - - remove - usunąć + + Disk + Dysk - - Operation failed - Operacja zakończona niepowodzeniem! + + Open + Otwórz - - Device (%1) is busy, cannot %2 now. - Urządzenie (%1) jest zajęte, nie można teraz %2. + + Eject all + Wysuń wszystkie FileDialogHandle - + All Files Wszystkie pliki - - FileOperateBaseWorker - - - The file name or the path is too long! - Nazwa pliku lub ścieżka jest za długa! - - MimeTypeDisplayManager - + Unknown Nieznany @@ -128,89 +123,88 @@ QObject - + need authorization to access need authorization to access - + Can't verify the identity of %1. Nie można zweryfikować %1 - + This happens when you log in to a computer the first time. Występuje to, kiedy zalogujesz się do komputera po raz pierwszy. - + The identity sent by the remote computer is Identyfikator wysłany przed komputer zdalny to - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Jeśli chcesz mieć absolutną pewność, czy można bezpiecznie kontynuować, skontaktuj się z administratorem systemu. - - - + + + System Disk Dysk systemowy - + Data Disk Dysk z danymi - + Blank %1 Disc Pusty dysk %1 - - - + + + Unknown Nieznany - + %1 Drive Napęd %1 - + %1 Encrypted %1 zaszyfrowany - - + %1 Volume Wolumin %1 - + + Scanning the device, stop it? Skanowanie urządzenia, zatrzymać? - + Unmount failed Błąd odmontowania - + Cannot stop scanning device Nie można zatrzymać skanowania urządzenia - - + %1 on %2 %1 na %2 @@ -219,6 +213,7 @@ + Home Katalog domowy @@ -228,6 +223,7 @@ + Desktop Pulpit @@ -237,6 +233,7 @@ + Videos Filmy @@ -246,6 +243,7 @@ + Music Muzyka @@ -255,6 +253,7 @@ + Pictures Zdjęcia @@ -264,6 +263,7 @@ + Documents Dokumenty @@ -273,6 +273,7 @@ + Downloads Pobrane @@ -281,6 +282,7 @@ + Trash Kosz @@ -291,11 +293,12 @@ + Recent Ostatnie - + @@ -303,7 +306,7 @@ Automatyczne montowanie - + @@ -316,46 +319,47 @@ %1 zadań w trakcie wykonywania - + %1 item %1 przedmiot - + %1 items %1 przedmiotów - + Unable to find the original file Brak możliwości znalezienia pierwotnego pliku - - + + File has been moved or deleted Plik został przeniesiony lub usunięty - - + + + You do not have permission to access this folder Nie posiadasz uprawnień dostępu do tego foldera - - + + You do not have permission to traverse files in it Nie posiadasz uprawnień do analizy plików znajdujących się w folderze - - + + Folder is empty Folder jest pusty - + Loading... Wczytywanie... @@ -404,7 +408,7 @@ - + Built-in disks Dyski wbudowane @@ -412,6 +416,7 @@ + Computer Komputer @@ -419,8 +424,9 @@ - - + + + Computers in LAN Komputery w sieci LAN @@ -428,7 +434,7 @@ - + Loop partitions Partycje zapętlone @@ -436,8 +442,7 @@ - - + Mounted sharing folders Zamontowane foldery współdzielone @@ -445,6 +450,7 @@ + My shares Moje współdzielenia @@ -452,7 +458,7 @@ - + Network Sieć @@ -460,7 +466,7 @@ - + Mounted partitions and discs Zamontowane partycje i dyski @@ -468,7 +474,7 @@ - + Partitions Partycje @@ -476,7 +482,7 @@ - + Quick access Szybki dostęp @@ -484,7 +490,7 @@ - + Tag Znacznik @@ -492,7 +498,7 @@ - + Added tags Dodane znaczniki @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Pokaż zamontowane katalogi współdzielone Samba @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Stop - + Shortcut Skrót - + This system wallpaper is locked. Please contact your admin. Tapeta systemu jest zablokowana. Skontaktuj się ze swoim administratorem. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopiuj) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopiuj %1) @@ -901,26 +909,33 @@ Bit + Access denied Odmowa dostępu + Confirm button Potwierdź + + + The device has been safely removed + Urządzenie zostało bezpiecznie usunięte + - - + + - - - + + + Open in new window Otwórz w nowym oknie @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Otwórz w nowej karcie @@ -953,8 +968,8 @@ - - + + Properties Właściwości @@ -990,7 +1005,7 @@ Nowy plik - + Create symlink Utwórz dowiązanie symboliczne @@ -1077,70 +1092,70 @@ Dodaj do dysku - + Are you sure you want to erase all data on the disc? Czy na pewno chcesz usunąć wszystkie dane z dysku? - + Erase button Wymaż - + This action cannot be undone Tej akcji nie można cofnąć - + How do you want to use this disc? Jak chcesz korzystać z tego dysku? - + Burn image button Wypal obraz - + Burn files button Wypal pliki - + %1 is a duplicate file. %1 jest duplikatem pliku. - + Insufficient disc space. Za mało miejsca na dysku. - + Lost connection to drive. Utracono połączenie z dyskiem. - + The CD/DVD drive is not ready. Try another disc. Napęd CD/DVD nie jest gotowy. Wypróbuj inną płytę. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Napęd CD/DVD jest zajęty. Wyjdź z programu korzystającego z napędu, a następnie włóż dysk ponownie. - + Invalid volume name Nieprawidłowa nazwa woluminu - + Unknown error Nieznany błąd @@ -1179,42 +1194,42 @@ Przedmioty: %1 - + Orange Pomarańczowy - + Red Czerwony - + Purple Purpurowy - + Navy-blue Granatowy - + Azure Błękitny - + Green Zielony - + Yellow Żółty - + Gray Szary @@ -1290,76 +1305,76 @@ Brak dostępu - + User directory Katalog użytkownika - + Local disk Dysk lokalny - + Removable disk Dysk wymienny - + DVD DVD - + Network shared directory Współdzielony katalog sieciowy - - + + Android mobile device Urządzenie przenośne Android - + Apple mobile device Urządzenie przenośne Apple - + Unknown device Nieznane urządzenie - + Remove button Usuń - + Do you want to remove this item? Czy chcesz usunąć ten przedmiot? - + Do yout want to remove %1 items? Czy chcesz usunąć %1 przedmiotów? - + It does not delete the original files Ta akcja nie usuwa oryginalnych plików - + Clear recent history Wyczyść ostatnią historię - - - + + + Source path Ścieżka źródłowa @@ -1404,12 +1419,12 @@ Brak możliwości otwierania przedmiotów w koszu, najpierw je przywróć - + Empty Trash Opróżnij kosz - + Location Położenie @@ -1509,9 +1524,9 @@ Wyszukiwanie... - + My Vault - Mój skarbiec + Mój Skarbiec @@ -1556,7 +1571,7 @@ Delete File Vault - Usuń skarbiec plików + Usuń Skarbiec Plików @@ -1704,7 +1719,7 @@ Wystąpił błąd - + Sidebar Pasek boczny @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - Brak autoryzacji + Nieautoryzowany - - - In trial period - W okresie próbnym - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - Brak autoryzacji - - - - + + In trial period W okresie próbnym @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nowa kolekcja @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizuj pulpit - + Desktop options Opcje pulpitu - + Organize by Organizuj według - + Custom collection Kolekcja niestandardowa - + Type Typ - + Time accessed Ostatni dostęp - + Time modified Data modyfikacji - + Time created Data utworzenia - + Create a collection Utwórz kolekcje + + + Display Size + Rozmiar ekranu + + + + Smaller + Mniejsze + + + + Normal + Normalne + + + + Larger + Większe + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opcje pulpitu - + Auto arrange icons Automatyczne sortowanie @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Rozmiar ekranu + + + Icon size Rozmiar ikon @@ -2258,7 +2283,7 @@ This system wallpaper is locked. Please contact your admin. - Ta tapeta systemu jest zablokowana. Skontaktuj się z administratorem. + Tapeta systemu jest zablokowana. Skontaktuj się ze swoim administratorem. @@ -2308,7 +2333,7 @@ Require a password on wakeup - Wymagaj hasło po wybudzeniu + Wymagaj hasło po wybudzeniu komputera @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Menedżer plików zostanie zaktualizowany do najnowszej wersji, wszystkie zadania w trakcie zostaną przerwane. Czy chcesz zaktualizować teraz? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Usługi pulpitu zostaną zaktualizowane do najnowszej wersji, wszystkie zadania w trakcie zostaną przerwane. Czy chcesz zaktualizować teraz? - + Update button Aktualizuj - + Cancel button Anuluj @@ -2360,7 +2385,7 @@ - + %1 item selected Zaznaczono %1 przedmiot @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operacja zakończona niepowodzeniem! @@ -2529,191 +2554,191 @@ Folder docelowy znajduje się wewnątrz foldera źródłowego! - + The passphrase is needed to access encrypted data on %1. Wymagane jest hasło, aby uzyskać dostęp do zaszyfrowanej zawartości na %1. - - - - - - - - + + + + + + + + Cancel button Anuluj - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? Aby uzyskać dostęp do urządzenia, musisz najpierw je sformatować. Czy chcesz zrobić to teraz? - + Do you want to run %1 or display its content? Czy chcesz uruchomić %1 lub wyświetlić jego zawartość? - + It is an executable text file. Jest to wykonywalny plik tekstowy. - - - + + + Run button Uruchom - - + + Run in terminal button Uruchom w terminalu - + Display button Wyświetl - + Do you want to run %1? Czy chcesz uruchomić %1? - + It is an executable file. Jest to plik wykonywalny. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Nie można przenieść %1 zaznaczonych przedmiotów do kosza. Czy chcesz je usunąć permanentnie? - + Permanently delete %1 items? Czy usunąć permanentnie %1 przedmiotów? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Nie można przenieść "%1" do kosza. Czy chcesz go usunąć permanentnie? - - - + + + Delete button Usuń - + Permanently delete %1? Czy usunąć permanentnie %1? - - + + This action cannot be undone Tej akcji nie można cofnąć - + Are you sure you want to empty %1 item? Czy na pewno usunąć permanentnie %1 przedmiot? - + Are you sure you want to empty %1 items? Czy na pewno usunąć permanentnie %1 przedmiotów? - + Empty Opróżnij - + Do you want to delete %1? Czy chcesz usunąć %1? - + Do you want to delete the selected %1 items? Czy chcesz usunąć %1 zaznaczonych przedmiotów? - + Failed to restore %1 file, the target folder is read-only Nie udało się przywrócić %1 pliku, folder docelowy jest tylko-do-odczytu - + Failed to restore %1 files, the target folder is read-only Nie udało się przywrócić %1 plików, folder docelowy jest tylko-do-odczytu - + "%1" already exists, please use another name. "%1" już istnieje, użyj innej nazwy. - + Device or resource busy Urządzenie lub zasoby zajęte - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Plik zostanie ukryty, jeśli jego nazwa będzie zaczynać się od '.'. Czy chcesz go ukryć? - + Hide Ukryj - + Cancel Anuluj - + Unable to access %1 Brak dostępu do %1 - + %1 that this shortcut refers to has been changed or moved %1, do którego odnosi się skrót, został zmieniony lub przeniesiony - + Do you want to delete this shortcut? Czy chcesz usunąć ten skrót? - + This file is not executable, do you want to add the execute permission and run? Ten plik jest niewykonywalny, czy chcesz mu dodać uprawnienia do wykonywania i uruchomić? - + The selected files contain system file/directory, and it cannot be deleted Zaznaczone pliki zawierają pliki/katalogi systemowe i nie mogą zostać usunięte @@ -2841,276 +2866,278 @@ Wprowadź hasło, aby rozszyfrować dysk - - dfmbase::RightValueWidget - - - Copy complete info - Kopiuj pełne informacje - - dfmbase::SettingBackend - + Always open folder in new window Zawsze otwieraj folder w nowym oknie - + Open file: Otwórz plik: - + Click Kliknięcie - + Double click Podwójne kliknięcie - + New window and tab Nowe okno i karta - + Open from default window: Otwórz w domyślnym oknie: - - + + Computer Komputer - - + + Home Katalog domowy - - + + Desktop Pulpit - - + + Videos Filmy - - + + Music Muzyka - - + + Pictures Zdjęcia - - + + Documents Dokumenty - - + + Downloads Pobrane - + Open in new tab: Otwórz w nowej karcie: - + Current Directory Bieżący katalog - + Files and folders Pliki i foldery - + Show hidden files Wyświetl pliki ukryte - + Show file extensions Wyświetl rozszerzenia plików - + Mix sorting of files and folders Wymieszaj sortowanie plików i folderów - + Workspace Obszar roboczy - + View Widok - + Default size: Rozmiar domyślny: - + Extra small Bardzo mały - + Small Mały - + Medium Średni - + Large Duży - + Extra large Bardzo duży - - Tree - Drzewko - - - + Default view: Widok domyślny: - + Icon Ikona - + List Lista - - Restore default view mode for all directories - Przywróć domyślny tryb widoku dla wszystkich katalogów - - - - Restore default view mode - Przywróć domyślny tryb widoku - - - + Thumbnail preview Podgląd miniatur - + Compressed file preview Podgląd plików skompresowanych - + Text preview Podgląd tekstów - + Document preview Podgląd dokumentów - + Image preview Podgląd obrazów - + Video preview Podgląd filmów - + Music preview Podgląd muzyki - + The remote environment shows thumbnail previews W środowisku zdalnym wyświetlane są podglądy miniatur - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Włączenie podglądu miniatur może spowolnić lub kompletnie zawiesić wczytywanie katalogu zdalnego - + Advanced Zaawansowane - + + Search + Szukaj + + + + Auto index internal disk + Automatycznie indeksuj dysk wewnętrzny + + + + Index external storage device after connected to computer + Indeksuj zewnętrzne nośniki danych po podłączeniu + + + + Full-Text search + Wyszukiwanie pełnotekstowe + + + Mount Zamontuj - + Auto mount Automatyczne montowanie - + Open after auto mount Otwórz po automatycznym zamontowaniu - + + Show item counts and sizes in the path of mounted MTP devices + Pokaż liczbę i rozmiar plików w ścieżce montowanych urządzeń MTP + + + Merge the entries of Samba shared folders Scal wpisy współdzielonych folderów Samba - + Switching the entry display may lead to failed mounting Włączenie tej opcji może doprowadzić do błędu montowania - + Use the file chooser dialog of File Manager Używaj okna wyboru plików Menedżera plików - + Ask for my confirmation when deleting files Zapytaj o potwierdzenie podczas usuwania plików @@ -3274,56 +3301,51 @@ - Switch to tree view - Przełącz na widok drzewka - - - Others Inne - + Close Zamknij - + Close current tab Zamknij bieżącą kartę - + Back Cofnij - + Forward Dalej - + Switch to next tab Przełącz na następną kartę - + Switch to previous tab Przełącz na poprzednią kartę - + Next file Następny plik - + Previous file Poprzedni plik - + Switch tab by specified number between 1 to 8 Przełącz kartę poprzez określoną cyfrę pomiędzy 1 a 8 @@ -3394,43 +3416,42 @@ create target file %1 Info failed in show conflict Info function! - + Time modified: %1 Data modyfikacji: %1 - + Original folder Folder oryginalny - + Contains: %1 Zawiera: %1 - + Original file Plik oryginalny - + Size: %1 Rozmiar: %1 - + Target folder Folder docelowy - - + In data statistics ... W statystykach danych... - + Target file Plik docelowy @@ -3445,37 +3466,37 @@ Proszę czekać - + Keep both button Zachowaj oba - + Skip button Pomiń - - + + Replace button Zastąp - + Do not ask again Nie pytaj ponownie - + Retry button Ponów - + Merge button Scal @@ -3489,7 +3510,7 @@ Wprowadź hasło, aby chronić foldery współdzielone - + Set a password on the shared folder for non-anonymous access Ustaw hasło foldera współdzielonego dla użytkowników nieanonimowych @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Przepraszamy, nie udało się znaleźć folderu szybkiego dostępu. Czy chcesz go usunąć? - + Cancel button Anuluj - + Remove button Usuń @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Komputer - + Computer display items Elementy wyświetlane komputera - + Hide built-in disks on the Computer page Ukryj dyski wbudowane na stronie komputera - + Hide loop partitions on the Computer page Ukryj partycje zapętlone na stronie komputera - + Show file system on disk icon Wyświetl system plików na ikonie dysku - + Hide My Directories on the Computer page Ukryj Moje katalogi na stronie komputera - + Hide 3rd party entries on the Computer page Ukryj wpisy stron trzecich na stronie komputera @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed Unlock device failed - + Wrong password Błędne hasło - + Rename failed Zmiana nazwy nie powiodła się - + The device is busy and cannot be renamed now Urządzenie jest zajęte i nie może zostać zmieniona jego nazwa - + Format failed Formatowanie nie powiodło się - + The device is busy and cannot be formatted now Urządzenie jest zajęte i nie może zostać sformatowane - + Mount error Błąd montowania - + Cannot access %1 Brak dostępu do %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Komputer - + %1 is read-only. Do you want to enable read and write permissions for it? %1 jest tylko-do-odczytu. Czy chcesz nadać mu uprawnienia do odczytu i zapisu? - + Once enabled, read/write permission will be granted permanently Po włączeniu, uprawnienia odczytu/zapisu zostaną nadane permanentnie. - + Cancel Anuluj - + Enable Now Włącz teraz @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje katalogi - + Disks Dyski @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Informacje podstawowe - + Device type Typ urządzenia - + Total space Całkowite miejsce - + File system System plików - + Contains Zawiera - + Free space Wolne miejsce - + %1 items %1 przedmiotów - + %1 item %1 przedmiot @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 na %2 @@ -3968,27 +3990,27 @@ Rozmiar - + Dimension Wymiary - + Duration Czas trwania - + Type Typ - + Accessed Ostatni dostęp - + Modified Modyfikacja @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - Nie udało się przenieść pliku %1 do kosza + @@ -4335,7 +4357,7 @@ Copy or Cut File failed! - Błąd kopiowania lub wklejania! + @@ -4365,7 +4387,7 @@ Failed to move the file %1 to trash, cause: %2 - Nie udało się przenieść pliku %1 do kosza, powód: %2 + @@ -4384,8 +4406,8 @@ - Copy or Cut File failed, cause: %1 - Kopiowanie lub wycinanie pliku nie powiodło się, przyczyna: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4439,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Błąd zmiany nazwy pliku - + Failed to create the directory Nie udało się utworzyć katalogu - + Failed to create the file Nie udało się utworzyć pliku - + link file error błąd dowiązania pliku - - + + Failed to modify file permissions - Nie udało się zmodyfikować uprawnień pliku + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - &Paste + Paste + Wklej - Cu&t - Cu&t + Cut + Wytnij - &Copy - &Copy + Copy + Kopiuj dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Open + Open + Otwórz - Rena&me - Rena&me + Rename + Zmień nazwę - &Delete - &Delete + Delete + Usuń @@ -4557,11 +4579,6 @@ Open in terminal Otwórz w terminalu - - - Reverse select - Wybór odwrotny - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Wyślij do - - Bluetooth - Bluetooth - - - + Create link Utwórz dowiązanie - + Send to desktop Wyślij na pulpit @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Udostępnij + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Open + + Open + Otwórz - + Open in new window Otwórz w nowym oknie - + Open in new tab Otwórz w nowej karcie - + Cancel sharing Przestań współdzielić - - P&roperties - P&roperties + + Properties + Właściwości dfmplugin_myshares::MyShares - + My Shares Moje współdzielenia @@ -4683,7 +4700,7 @@ Brak plików do wypalenia - + Unable to burn. Not enough free space on the target disk. Nie można wypalić. Za mało miejsca na dysku docelowym. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Informacje podstawowe - + Size Rozmiar - + Contains Zawiera - + Type Typ - + Location Położenie - + Time created Data utworzenia - + Time accessed Ostatni dostęp - + Time modified Data modyfikacji - + Hide this file Ukryj plik - - + + %1 item %1 przedmiot - + %1 items %1 przedmiotów @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Dla ochrony informacji poufnych - + For Government Dla placówek rządowych - + For Enterprise Dla biznesu - + Bit Bit - + Available Dostępny @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Komputer - + Basic Info Informacje podstawowe - + Computer name Nazwa komputera - + Version Wersja - + Edition Wydanie - + OS build Wersja systemu - + Type Typ - + Processor Procesor - + Memory Pamięć @@ -4874,14 +4891,6 @@ %1 plik(ów), %2 folder(ów) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - %1 są niedozwolone - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - P&roperties + Properties + Właściwości dfmplugin_recent::Recent - + + Recent Ostatnie @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Ścieżka - + Last access Ostatni dostęp - + Recent Ostatnie @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Szukaj: - + File Type: Typ pliku: - + File Size: Rozmiar pliku: - + Time Modified: Data modyfikacji: - + Time Accessed: Ostatni dostęp: - + Time Created: Data utworzenia: - + Reset Resetuj - + All subdirectories Wszystkie podkatalogi - + Current directory Bieżący katalog - + Application Program - + Video Wideo - + Audio Audio - + Image Obraz - + Archive Archiwum - + Text Tekst - + Executable Wykonywalny - + Backup file Plik kopii zapasowej - + Today Dzisiaj - + Yesterday Wczoraj - + This week W tym tygodniu - + Last week W ubiegłym tygodniu - + This month W tym miesiącu - + Last month W ubiegłym miesiącu - + This year W tym roku - + Last year W ubiegłym roku @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Szukaj - - - Auto index internal disk - Automatycznie indeksuj dysk wewnętrzny - - - - Index external storage device after connected to computer - Indeksuj zewnętrzne nośniki danych po podłączeniu - - - - Full-Text search - Wyszukiwanie Full-Text - dfmplugin_search::SearchHelper - + Path Ścieżka @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otwórz położenie pliku - + Select all Zaznacz wszystko - + Path Ścieżka @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Szybki dostęp - + Partitions Partycje - + Network Sieć - + Tag Znacznik - + + Bookmark + Zakładki + + + Other Inne - + Unknown Group Grupa nieznana + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Komputery w sieci LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Open + Open + Otwórz @@ -5184,8 +5191,8 @@ - P&roperties - P&roperties + Properties + Właściwości @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Znacznik @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otwórz położenie pliku @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Połącz się z serwerem - - - + + + Clear History Wyczyść historię - + Unfavorite Usuń z ulubionych - - Error - Błąd - - - - Unable to favorite illegitimate url! - Nie można polubić błędnego adresu URL! - - - + Cancel button Anuluj - + Connect button Połącz - + Charset Encoding Kodowanie znaków - + Default Domyślne - + My Favorites Moje ulubione - + No favorites yet Brak ulubionych - + Favorite Dodaj do ulubionych @@ -5400,7 +5397,7 @@ Password cannot be empty - Hasło nie może być puste + Pole na hasło nie może być puste @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Ścieżka źródłowa - + Time deleted Data usunięcia @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Przywróć - + Restore all Przywróć wszystkie - + Empty trash Opróżnij kosz - + Source path Ścieżka źródłowa - + Time deleted Data usunięcia @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Kosz @@ -5530,17 +5527,17 @@ Kosz - + item przedmiot - + items przedmiotów - + Contains %1 %2 Zawiera %1 %2 @@ -5555,12 +5552,12 @@ File Transfer Successful - Pomyślnie przesłano plik + Przesyłanie pliku powiodło się File Transfer Failed - Wystąpił błąd przesyłania pliku + Przesyłanie pliku nie powiodło się @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Informacje podstawowe - + Size Rozmiar - + Contains Zawiera - + Type Typ - + Location Położenie - + Time created Data utworzenia - + Time accessed Ostatni dostęp - + Time locked Data zablokowania @@ -5891,7 +5888,7 @@ Verify Key button - Weryfikuj klucz + Zweryfikuj klucz @@ -5929,7 +5926,7 @@ Unlock File Vault - Odblokuj skarbiec + Odblokuj Skarbiec @@ -5988,9 +5985,9 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault - Szyfruj skarbiec plików + Zaszyfruj Skarbiec Plików @@ -6009,19 +6006,19 @@ - - - + + + Encrypt - Szyfruj + Zaszyfruj - + Failed to create file vault: %1 Nie udało się utworzyć skarbca plików: %1 - + OK OK @@ -6051,7 +6048,7 @@ No permission, please reselect - Brak uprawnień, wybierz ponownie + Brak permisji, proszę wybrać ponownie @@ -6072,7 +6069,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Ustaw hasło skarbca @@ -6098,7 +6095,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 znaków, zawiera A-Z, a-z, 0-9 i symbole @@ -6133,8 +6130,8 @@ Dalej - - + + Passwords do not match Hasła nie pasują do siebie @@ -6142,9 +6139,9 @@ dfmplugin_vault::VaultActiveStartView - + File Vault - Skarbiec plików + Skarbiec Plików @@ -6172,7 +6169,7 @@ My Vault - Mój skarbiec + Mój Skarbiec @@ -6192,7 +6189,7 @@ dfmplugin_vault::VaultHelper - + Vault Skarbiec @@ -6202,7 +6199,7 @@ Skarbiec jest niedostępny, ponieważ cryfs nie został zainstalowany! - + A task is in progress, so it cannot perform your operation Zadanie jest w trakcie wykonywania, nie można wykonać operacji @@ -6210,134 +6207,117 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - Mój skarbiec + Mój Skarbiec - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Anuluj - - - - Delete - Usuń - - - - Delete File Vault - Usuń skarbiec plików - - - - Failed to delete file vault - Nie udało się usunąć skarbca plików - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - OK + + Password + Hasło - - Once deleted, the files in it will be permanently deleted - Pliki usunięte w tym folderze przepadną na zawsze + + Password hint: %1 + Wskazówka do hasła: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - Pliki usunięte w tym folderze przepadną na zawsze + + Input the 32-digit recovery key + Wprowadź 32 cyfrowy klucz odzyskiwania + + + dfmplugin_vault::VaultRemovePages - - Password - Hasło + + Delete File Vault + Usuń Skarbiec Plików - - Password hint: %1 - Wskazówka do hasła: %1 + + Once deleted, the files in it will be permanently deleted + Pliki usunięte w tym folderze przepadną na zawsze - + Cancel + button Anuluj - - Delete - Usuń - - - - Delete File Vault - Usuń skarbiec plików + + Use Key + button + Użyj klucza - - Wrong password - Błędne hasło + + Delete + button + Usuń - - Failed to delete file vault - Nie udało się usunąć skarbca plików + + Removing... + Przesuwanie... - + + OK + button OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Wprowadź 32 cyfrowy klucz odzyskiwania - - - - dfmplugin_vault::VaultRemoveProgressView - - - Removing... - Usuwanie... + + Wrong password + Błędne hasło - - OK - OK + + Wrong recovery key + nieprawidłowy klucz odzyskiwania - - Delete File Vault - Usuń skarbiec plików + + Failed to delete file vault + Nie udało się usunąć skarbca plików - + Deleted successfully Usunięto pomyślnie + + + Failed to delete + Nie udało się usunąć + dfmplugin_vault::VaultVisibleManager My Vault - Mój skarbiec + Mój Skarbiec - + File Vault - Skarbiec plików + Skarbiec Plików + + + + + Vault + Skarbiec @@ -6351,22 +6331,22 @@ dfmplugin_workspace::FileViewModel - + Name Nazwa - + Time modified Data modyfikacji - + Size Rozmiar - + Type Typ @@ -6382,7 +6362,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 są niedozwolone @@ -6398,50 +6378,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortuj według - + Display as Wyświetl jako - + Name Nazwa - + Time modified Data modyfikacji - + Size Rozmiar - + Type Typ - + Icon Ikona - + List Lista - - - Tree - Drzewko - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ filedialog_core::FileDialog - + Save button Zapisz @@ -6463,13 +6438,13 @@ filedialog_core::FileDialogStatusBar - + Save button Zapisz - + Open button Otwórz @@ -6507,112 +6482,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Dostępne rozmiary: - + Custom Size Rozmiar niestandardowy - + Device Pixel Ratio: Współczynnik pikseli urządzenia: - + Theme: Motyw: - + Light Jasny - + Dark Ciemny - + Mode: Tryb: - + Normal Normalny - + Disabled Wyłączony - + Hovered Najechany - + Pressed Przyciśnięty - + Palette Paleta - + Current mode icon does not support the palette Bieżący tryb ikon nie wspiera palety - + Foreground: Pierwszy plan: - + Background: Tło: - + Highlight: Wyróżnij: - + HighlightForeground: Podkreślenie pierwszego planu: - + Background Color: Kolor tła: - + White Biały - + Black Ciemny - + Transparent Przezroczysty - + Custom Niestandardowy @@ -6644,24 +6619,24 @@ plugin_filepreview::MusicMessageView - + Artist: Wykonawca: - + Album: Album: - + unknown artist wykonawca nieznany - + unknown album album nieznany - \ No newline at end of file + diff --git a/translations/dde-file-manager_pt.ts b/translations/dde-file-manager_pt.ts index 45fe7a91f5..9afc8c5864 100644 --- a/translations/dde-file-manager_pt.ts +++ b/translations/dde-file-manager_pt.ts @@ -15,104 +15,99 @@ Application - + File Manager Gestor de Ficheiros - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. O Gestor de Ficheiros é uma ferramenta de gestão de ficheiros poderosa e fácil de usar, que inclui pesquisar, copiar, eliminar, comprimir/extrair, consultar propriedades dos ficheiros e outras funções úteis. - DesktopMain + DAttachedProtocolDevice - - Desktop - Ambiente de trabalho + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + Volume %1 - DiskMountPlugin + DesktopMain - - Disk - Disco + + Desktop + Ambiente de trabalho + + + DiskControlWidget - - Open - Abrir + + Disks + Discos - - Eject all - Ejectar tudo + + The device was not safely removed + O dispositivo não foi removido em segurança - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Clique em "Remover em segurança" e retire-o da próxima vez - - eject - + + Disk is busy, cannot unmount now + O disco está ocupado, não pode ser desmontado agora - - unmount - + + The device is busy, cannot eject now + O dispositivo está ocupado, não é possível ejectar agora + + + DiskMountPlugin - - - remove - + + Disk + Disco - - Operation failed - + + Open + Abrir - - Device (%1) is busy, cannot %2 now. - + + Eject all + Ejectar tudo FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Desconhecido @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Isto acontece quando se inicia sessão num computador pela primeira vez. - + The identity sent by the remote computer is A identidade enviada pelo computador remoto é - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Se quiser ter a certeza absoluta de que é seguro continuar, contacte o administrador do sistema. - - - + + + System Disk Disco do sistema - + Data Disk Dados do disco - + Blank %1 Disc Disco %1 Vazio - - - + + + Unknown Desconhecido - + %1 Drive Unidade %1 - + %1 Encrypted %1 Encriptado - - + %1 Volume Volume %1 - + + Scanning the device, stop it? A analisar o dispositivo, interromper? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Pasta Pessoal @@ -228,6 +223,7 @@ + Desktop Ambiente de Trabalho @@ -237,6 +233,7 @@ + Videos Vídeos @@ -246,6 +243,7 @@ + Music Música @@ -255,6 +253,7 @@ + Pictures Imagens @@ -264,6 +263,7 @@ + Documents Documentos @@ -273,6 +273,7 @@ + Downloads Transferências @@ -281,6 +282,7 @@ + Trash Lixo @@ -291,11 +293,12 @@ + Recent Recente - + @@ -303,7 +306,7 @@ Montar automaticamente - + @@ -316,46 +319,47 @@ %1 tarefas em andamento - + %1 item %1 item - + %1 items %1 itens - + Unable to find the original file Não foi possível localizar o ficheiro original - - + + File has been moved or deleted O ficheiro foi movido ou eliminado - - + + + You do not have permission to access this folder Não tem autorização para aceder a esta pasta - - + + You do not have permission to traverse files in it Não tem autorização para percorrer ficheiros dentro dele - - + + Folder is empty Esta pasta está vazia - + Loading... A carregar... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Computador @@ -419,8 +424,9 @@ - - + + + Computers in LAN Computadores em rede de área local @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network Rede @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions Partições @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Etiqueta @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Continuar a mostrar as partilhas do Samba montadas @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Parar - + Shortcut Atalho - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copiar) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Acesso negado + Confirm button Confirmar + + + The device has been safely removed + O dispositivo foi removido com segurança + - - + + - - - + + + Open in new window Abrir numa nova janela @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Abrir num novo separador @@ -953,8 +968,8 @@ - - + + Properties Propriedades @@ -990,7 +1005,7 @@ Novo Ficheiro - + Create symlink Criar hiperligação simbólica @@ -1077,70 +1092,70 @@ Adicionar ao disco - + Are you sure you want to erase all data on the disc? Tem a certeza que deseja apagar todos os dados no disco? - + Erase button Apagar - + This action cannot be undone Esta ação não pode ser anulada - + How do you want to use this disc? Como deseja usar este disco? - + Burn image button Gravar imagem - + Burn files button Gravar ficheiros - + %1 is a duplicate file. %1 é um ficheiro duplicado. - + Insufficient disc space. Espaço em disco insuficiente. - + Lost connection to drive. Ligação à unidade perdida. - + The CD/DVD drive is not ready. Try another disc. A unidade de CD/DVD não está pronta. Tente outro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. A unidade de CD/DVD está ocupada. Saia do programa usando a unidade e insira a unidade novamente. - + Invalid volume name - + Unknown error Erro desconhecido @@ -1179,42 +1194,42 @@ Itens: %1 - + Orange Laranja - + Red Vermelho - + Purple Roxo - + Navy-blue Azul-marinho - + Azure Azul - + Green Verde - + Yellow Amarelo - + Gray Cinzento @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Disco local - + Removable disk Disco removível - + DVD DVD - + Network shared directory Pasta de rede partilhada - - + + Android mobile device Dispositivo móvel Android - + Apple mobile device Dispositivo móvel Apple - + Unknown device Dispositivo desconhecido - + Remove button Remover - + Do you want to remove this item? Deseja remover este item? - + Do yout want to remove %1 items? Deseja remover %1 itens? - + It does not delete the original files Não elimina os ficheiros originais - + Clear recent history Eliminar histórico recente - - - + + + Source path Caminho de origem @@ -1404,12 +1419,12 @@ Incapaz de abrir os itens no lixo, restaure-os primeiro - + Empty Trash Esvaziar o lixo - + Location Localização @@ -1509,7 +1524,7 @@ A Procurar... - + My Vault O meu cofre @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Não autorizado - - + + In trial period Em período experimental - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nova coleção @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by Organizar por - + Custom collection Coleção personalizada - + Type Tipo - + Time accessed Duração do acesso - + Time modified Data de Modificação - + Time created Data de criação - + Create a collection Criar uma coleção + + + Display Size + Tamanho de exibição + + + + Smaller + Pequeno + + + + Normal + Normal + + + + Larger + Grande + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Tamanho de exibição + + + Icon size Tamanho dos ícones @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 item selecionado @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Aceitar - + Operation failed! Falha na operação! @@ -2529,191 +2554,191 @@ A pasta de destino está dentro da pasta de origem! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formatar - + To access the device, you must format the disk first. Are you sure you want to format it now? Para aceder ao dispositivo, é necessário formatar primeiro o disco. Tem a certeza que o deseja formatar agora? - + Do you want to run %1 or display its content? Deseja executar %1 ou mostrar o seu conteúdo? - + It is an executable text file. É um ficheiro de texto executável. - - - + + + Run button Executar - - + + Run in terminal button Executar no Terminal - + Display button Visualizar - + Do you want to run %1? Deseja executar %1? - + It is an executable file. É um um ficheiro executável. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Eliminar permanentemente %1 itens? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Eliminar - + Permanently delete %1? Eliminar permanentemente %1? - - + + This action cannot be undone Esta ação não pode ser anulada - + Are you sure you want to empty %1 item? Tem a certeza que deseja eliminar %1 item? - + Are you sure you want to empty %1 items? Tem a certeza que deseja eliminar %1 itens? - + Empty Esvaziar - + Do you want to delete %1? Deseja eliminar %1? - + Do you want to delete the selected %1 items? Deseja eliminar os %1 itens selecionados? - + Failed to restore %1 file, the target folder is read-only Erro ao restaurar o ficheiro %1, a pasta de destino é apenas de leitura - + Failed to restore %1 files, the target folder is read-only Erro ao restaurar ficheiros %1, a pasta de destino é apenas de leitura - + "%1" already exists, please use another name. "%1" já existe, use outro nome. - + Device or resource busy Dispositivo ou recurso ocupado - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este ficheiro ficará oculto se o nome começar com um '.'. Deseja ocultá-lo? - + Hide Ocultar - + Cancel Cancelar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 a que este atalho se refere foi modificado ou movido - + Do you want to delete this shortcut? Tem a certeza que quer eliminar este atalho? - + This file is not executable, do you want to add the execute permission and run? Este ficheiro não é executável, deseja adicionar a autorização de execução e executá-lo? - + The selected files contain system file/directory, and it cannot be deleted Os ficheiros selecionados contêm ficheiros/diretórios de sistema, por isso não podem ser eliminados @@ -2841,276 +2866,278 @@ Inserir a palavra-passe para desencriptar o disco - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Outros - + Close Fechar - + Close current tab Fechar separador atual - + Back Retroceder - + Forward Avançar - + Switch to next tab Alterar para separador seguinte - + Switch to previous tab Alterar para separador anterior - + Next file Ficheiro seguinte - + Previous file Ficheiro anterior - + Switch tab by specified number between 1 to 8 Alternar o tab especificando um número entre 1 a 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Data de modificação: %1 - + Original folder Pasta original - + Contains: %1 Conteúdo: %1 - + Original file Ficheiro original - + Size: %1 Tamanho: %1 - + Target folder Pasta de destino - - + In data statistics ... - + Target file Ficheiro de destino @@ -3445,37 +3466,37 @@ Aguarde - + Keep both button Manter ambos - + Skip button Ignorar - - + + Replace button Substituir - + Do not ask again Não perguntar novamente - + Retry button Repetir - + Merge button Agrupar @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Cancelar - + Remove button Remover @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Computador - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Meus Diretórios - + Disks Discos @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Tipo de dispositivo - + Total space Espaço total - + File system Sistema de ficheiros - + Contains Conteúdo - + Free space Espaço livre - + %1 items %1 itens - + %1 item %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Tamanho - + Dimension Dimensão - + Duration Duração - + Type Tipo - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Colar - Cu&t - + Cut + Cortar - &Copy - + Copy + Copiar dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Abrir - Rena&me - + Rename + Renomear - &Delete - + Delete + Eliminar @@ -4557,11 +4579,6 @@ Open in terminal Abrir no terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar para - - Bluetooth - - - - + Create link Criar ligação - + Send to desktop Enviar para o ambiente de trabalho @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Abrir - + Open in new window Abrir numa nova janela - + Open in new tab Abrir num novo separador - + Cancel sharing Cancelar partilha - - P&roperties - + + Properties + Propriedades dfmplugin_myshares::MyShares - + My Shares Minhas Partilhas @@ -4683,7 +4700,7 @@ Sem ficheiros para gravar - + Unable to burn. Not enough free space on the target disk. Incapaz de gravar. Não existe espaço livre suficiente no disco de destino. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Tamanho - + Contains Conteúdo - + Type Tipo - + Location Localização - + Time created Data de criação - + Time accessed Duração do acesso - + Time modified Data de Modificação - + Hide this file Ocultar este ficheiro - - + + %1 item %1 item - + %1 items %1 itens @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government Para governos - + For Enterprise Para empresas - + Bit Bit - + Available Disponível @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computador - + Basic Info Informação Básica - + Computer name Nome do computador - + Version Versão - + Edition Edição - + OS build Compilação do SO - + Type Tipo - + Processor Processador - + Memory Memória @@ -4874,14 +4891,6 @@ %1 ficheiro(s), %2 pasta(s) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Propriedades dfmplugin_recent::Recent - + + Recent Recente @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Caminho - + Last access O último acesso - + Recent Recente @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Pesquisa: - + File Type: Tipo de ficheiro: - + File Size: Tamanho do ficheiro: - + Time Modified: Data de Modificação: - + Time Accessed: Duração do acesso: - + Time Created: Data de criação: - + Reset Restabelecer - + All subdirectories Todos os subdiretórios - + Current directory Diretório atual - + Application Aplicação - + Video Vídeo - + Audio Áudio - + Image Imagem - + Archive Arquivo - + Text Texto - + Executable Executável - + Backup file Cópia de segurança - + Today Hoje - + Yesterday Ontem - + This week Esta semana - + Last week Na semana passada - + This month Este mês - + Last month No mês passado - + This year Este ano - + Last year No ano passado @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Pesquisa - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Caminho @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir localização do ficheiro - + Select all Selecionar todos - + Path @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etiqueta - + + Bookmark + + + + Other Outro - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Computadores em rede de área local + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Abrir @@ -5184,7 +5191,7 @@ - P&roperties + Properties @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Etiqueta @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir localização do ficheiro @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Ligar-se ao Servidor - - - + + + Clear History Eliminar histórico - + Unfavorite Remover dos favoritos - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Cancelar - + Connect button Ligar - + Charset Encoding - + Default - + My Favorites Meus favoritos - + No favorites yet Ainda sem favoritos - + Favorite Adicionar aos favoritos @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Caminho de origem - + Time deleted Data de eliminação @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar tudo - + Empty trash - + Source path Caminho de origem - + Time deleted Data de eliminação @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Lixo @@ -5530,17 +5527,17 @@ Lixo - + item item - + items itens - + Contains %1 %2 Contém %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Tamanho - + Contains Conteúdo - + Type Tipo - + Location Localização - + Time created Data de criação - + Time accessed Duração do acesso - + Time locked Tempo bloqueado @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Encriptar cofre de ficheiros @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Encriptar - + Failed to create file vault: %1 Falha na criação do cofre de ficheiros: %1 - + OK Aceitar @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Definir palavra-passe do cofre @@ -6097,7 +6094,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caracteres, contém A-Z, a-z, 0-9, e símbolos @@ -6132,8 +6129,8 @@ Seguinte - - + + Passwords do not match As palavras-passe não coincidem @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Cofre de ficheiros @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6201,7 +6198,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6209,121 +6206,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault O meu cofre - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Palavra-passe - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Sugestão de palavra-passe: 1% - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Introduza a chave de recuperação com 32 dígitos + + + dfmplugin_vault::VaultRemovePages - - Password - Palavra-passe + + Delete File Vault + Eliminar cofre de ficheiros - - Password hint: %1 - Sugestão de palavra-passe: 1% + + Once deleted, the files in it will be permanently deleted + Uma vez eliminados, os ficheiros que lá se encontram serão permanentemente eliminados - + Cancel - - - - - Delete - + button + Cancelar - - Delete File Vault - + + Use Key + button + Utilizar chave - - Wrong password - + + Delete + button + Eliminar - - Failed to delete file vault - + + Removing... + A remover... - + + OK - + button + Aceitar - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Introduza a chave de recuperação com 32 dígitos + + Wrong password + Palavra-passe incorreta - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Chave de recuperação incorreta - - OK - + + Failed to delete file vault + Falha ao eliminar o cofre de ficheiros - - Delete File Vault - + + Deleted successfully + Eliminado com sucesso - - Deleted successfully - + + Failed to delete + Falha ao eliminar @@ -6334,10 +6308,16 @@ O meu cofre - + File Vault Cofre de ficheiros + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 não são permitidos @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Mostrar como - + Name Nome - + Time modified Data de Modificação - + Size Tamanho - + Type Tipo - + Icon Ícone - + List Lista - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Guardar @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Guardar - + Open button Abrir @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_pt_BR.ts b/translations/dde-file-manager_pt_BR.ts index 65f8a3621f..1465bc469a 100644 --- a/translations/dde-file-manager_pt_BR.ts +++ b/translations/dde-file-manager_pt_BR.ts @@ -15,104 +15,99 @@ Application - + File Manager Gerenciador de Arquivos - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. O Gerenciador de Arquivos é uma ferramenta poderosa e fácil de usar para manusear os arquivos. - DesktopMain + DAttachedProtocolDevice - - Desktop - Área de Trabalho + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + Volume de %1 - DiskMountPlugin + DesktopMain - - Disk - Disco + + Desktop + Área de Trabalho + + + DiskControlWidget - - Open - Abrir + + Disks + Dispositivos - - Eject all - Ejetar tudo + + The device was not safely removed + O dispositivo não foi removido com segurança - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Clique em "Remover com segurança" e então desconecte-o na próxima vez - - eject - + + Disk is busy, cannot unmount now + O disco está ocupado; impossível desmontá-lo - - unmount - + + The device is busy, cannot eject now + O dispositivo está ocupado; impossível ejetá-lo + + + DiskMountPlugin - - - remove - + + Disk + Disco - - Operation failed - + + Open + Abrir - - Device (%1) is busy, cannot %2 now. - + + Eject all + Ejetar tudo FileDialogHandle - + All Files - Todos os arquivos - - - - FileOperateBaseWorker - - - The file name or the path is too long! MimeTypeDisplayManager - + Unknown Desconhecido @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Isto ocorre quando o login é feito pela primeira vez em um computador - + The identity sent by the remote computer is A identidade enviada pelo computador remoto é - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Para continuar com segurança, contate o administrador do sistema. - - - + + + System Disk Disco do Sistema - + Data Disk Disco de Dados - + Blank %1 Disc %1 Disco Vazio - - - + + + Unknown Desconhecido - + %1 Drive %1 Disco - + %1 Encrypted Criptografado %1 - - + %1 Volume Volume de %1 - + + Scanning the device, stop it? Verificando o dispositivo, parar? - + Unmount failed Falha ao desmontar - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Pasta Pessoal @@ -228,6 +223,7 @@ + Desktop Área de Trabalho @@ -237,6 +233,7 @@ + Videos Vídeos @@ -246,6 +243,7 @@ + Music Músicas @@ -255,6 +253,7 @@ + Pictures Imagens @@ -264,6 +263,7 @@ + Documents Documentos @@ -273,6 +273,7 @@ + Downloads Downloads @@ -281,6 +282,7 @@ + Trash Lixeira @@ -291,11 +293,12 @@ + Recent Recentes - + @@ -303,7 +306,7 @@ Montar automaticamente - + @@ -316,46 +319,47 @@ %1 tarefas em andamento - + %1 item %1 item - + %1 items %1 itens - + Unable to find the original file Impossível encontrar o arquivo original - - + + File has been moved or deleted O arquivo foi movido ou excluído - - + + + You do not have permission to access this folder Você não tem permissão para acessar esta pasta - - + + You do not have permission to traverse files in it Você não tem permissão para mover os arquivos - - + + Folder is empty A pasta está vazia - + Loading... Carregando... @@ -404,14 +408,15 @@ - + Built-in disks - Discos internos + + Computer Computador @@ -419,8 +424,9 @@ - - + + + Computers in LAN Rede @@ -428,7 +434,7 @@ - + Loop partitions Partições de loop @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network Rede @@ -460,15 +466,15 @@ - + Mounted partitions and discs - Discos montados + Partições e discos montados - + Partitions Partições @@ -476,7 +482,7 @@ - + Quick access Acesso rápido @@ -484,7 +490,7 @@ - + Tag Etiqueta @@ -492,7 +498,7 @@ - + Added tags Tags adicionadas @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Continuar exibindo os compartilhamentos montados @@ -537,7 +543,7 @@ Hide built-in disks on the Computer page - Ocultar os discos internos na página Computador + @@ -627,7 +633,7 @@ Extra small - Extrapequeno + Muito pequeno @@ -655,7 +661,7 @@ Extra large - Extragrande + Muito grande @@ -725,7 +731,7 @@ Double click - Duplo clique + Clique duplo @@ -739,7 +745,7 @@ Dialog - Caixa de diálogo + Caixa de Diálogo @@ -753,7 +759,7 @@ Items on sidebar pane - Itens no painel da barra lateral + Items on sidebar pane @@ -836,20 +842,21 @@ Switching the entry display may lead to failed mounting - Alternar a exibição de entrada pode levar a uma falha na montagem + + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Parar - + Shortcut Atalho - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copiar) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (copiar %1) @@ -901,26 +909,33 @@ Bit + Access denied Acesso negado + Confirm button Confirmar + + + The device has been safely removed + O dispositivo foi removido com segurança + - - + + - - - + + + Open in new window Abrir em nova janela @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Abrir em nova aba @@ -953,8 +968,8 @@ - - + + Properties Propriedades @@ -990,7 +1005,7 @@ Novo Arquivo - + Create symlink Criação de atalho @@ -1077,70 +1092,70 @@ Adicionar ao disco - + Are you sure you want to erase all data on the disc? Apagar todos os dados no disco? - + Erase button Apagar - + This action cannot be undone Essa ação não poderá ser revertida - + How do you want to use this disc? Como usar este disco? - + Burn image button Gravar imagem - + Burn files button Gravar arquivos - + %1 is a duplicate file. %1 é um arquivo duplicado. - + Insufficient disc space. Espaço insuficiente em disco. - + Lost connection to drive. Conexão perdida com o dispositivo. - + The CD/DVD drive is not ready. Try another disc. O dispositivo de CD/DVD não está pronto. Tente outro disco. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. O dispositivo de CD/DVD está ocupado. Feche o programa que o está utilizando e insira o disco novamente. - + Invalid volume name - + Unknown error Erro desconhecido @@ -1179,42 +1194,42 @@ Itens: %1 - + Orange Laranja - + Red Vermelha - + Purple Roxa - + Navy-blue Azul marinho - + Azure Azul - + Green Verde - + Yellow Amarela - + Gray Cinza @@ -1290,76 +1305,76 @@ Não é possível acessar - + User directory - + Local disk Disco local - + Removable disk Disco removível - + DVD DVD - + Network shared directory Diretório compartilhado de rede - - + + Android mobile device Dispositivo Móvel Android - + Apple mobile device Dispositivo Móvel Apple - + Unknown device Dispositivo desconhecido - + Remove button Remover - + Do you want to remove this item? Deseja remover este item? - + Do yout want to remove %1 items? Remover %1 itens? - + It does not delete the original files Isto não apaga os arquivos originais - + Clear recent history Limpar o histórico recente - - - + + + Source path Caminho de origem @@ -1404,12 +1419,12 @@ Impossível abrir os itens da lixeira; restaure-os - + Empty Trash Esvaziar Lixeira - + Location Local @@ -1509,7 +1524,7 @@ Pesquisando... - + My Vault Meu Cofre @@ -1686,7 +1701,7 @@ Device disconnected - Dispositivo desconectado + @@ -1696,17 +1711,17 @@ Success - Bem-sucedido + Failed - Falhou + - + Sidebar - Barra Lateral + @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Não autorizado - - - In trial period - Em período de testes - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - Não autorizado - - - - + + In trial period Em período de testes @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Nova coleção @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Organizar automaticamente - + Desktop options Opções da área de trabalho - + Organize by Organizar por - + Custom collection Coleção personalizada - + Type Tipo - + Time accessed Último acesso - + Time modified Última modificação - + Time created Data da criação - + Create a collection Criar uma coleção + + + Display Size + + + + + Smaller + Pequeno + + + + Normal + + + + + Larger + Grande + ddplugin_organizer::ItemEditor @@ -2045,14 +2065,14 @@ ddplugin_organizer::OptionsWindow - + Desktop options Opções da área de trabalho - + Auto arrange icons - Organizar automaticamente + @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Tamanho de exibição + + + Icon size Tamanho do ícone @@ -2165,7 +2190,7 @@ Apps - Aplicativos + @@ -2203,7 +2228,7 @@ Apps - Aplicativos + @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button Atualizar - + Cancel button Cancelar @@ -2360,7 +2385,7 @@ - + %1 item selected %1 item selecionado @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2411,27 +2436,27 @@ Operating failed - A operação falhou + Mount failed - A montagem falhou + Unmount failed - A desmontagem falhou + Unmounting device now... - Desmontando dispositivo... + Mounting device now... - Montando dispositivo... + @@ -2511,15 +2536,15 @@ - - + + OK button Ok - + Operation failed! Operação falhou! @@ -2529,191 +2554,191 @@ A pasta de destino está dentro da pasta de origem! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Cancelar - + Format button Formatar - + To access the device, you must format the disk first. Are you sure you want to format it now? Para acessar o dispositivo, é necessário formatar o disco. Formatá-lo agora? - + Do you want to run %1 or display its content? Executar %1 ou exibir o conteúdo? - + It is an executable text file. O arquivo de texto é executável. - - - + + + Run button Executar - - + + Run in terminal button Executar no Terminal - + Display button Exibir - + Do you want to run %1? Executar %1? - + It is an executable file. O arquivo é executável. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Impossível mover os %1 itens selecionados para a lixeira. Excluí-los permanentemente? - + Permanently delete %1 items? Excluir permanentemente %1 itens? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Excluir - + Permanently delete %1? Excluir permanentemente %1? - - + + This action cannot be undone Essa ação não poderá ser revertida - + Are you sure you want to empty %1 item? Excluir permanentemente %1 item? - + Are you sure you want to empty %1 items? Excluir permanentemente %1 itens? - + Empty Esvaziar - + Do you want to delete %1? Excluir %1? - + Do you want to delete the selected %1 items? Excluir os %1 itens selecionados? - + Failed to restore %1 file, the target folder is read-only Falha ao restaurar %1 arquivo, a pasta de destino é somente leitura - + Failed to restore %1 files, the target folder is read-only Falha ao restaurar %1 arquivos, a pasta de destino é somente leitura - + "%1" already exists, please use another name. "%1" já existe; use outro nome. - + Device or resource busy Dispositivo ou recurso ocupado - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Este arquivo ficará oculto se o nome do arquivo começar com "." (ponto). Ocultá-lo? - + Hide Ocultar - + Cancel Cancelar - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 a que este atalho se refere foi alterado ou movido - + Do you want to delete this shortcut? Excluir este atalho? - + This file is not executable, do you want to add the execute permission and run? Este arquivo não é executável. Adicionar a permissão de execução e executá-lo? - + The selected files contain system file/directory, and it cannot be deleted Os arquivos selecionados contém um arquivo/diretório do sistema, e não podem ser excluídos @@ -2841,276 +2866,278 @@ Insira a senha para descriptografar o disco - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - Abrir arquivo: + - + Click - Clique + - + Double click - Duplo clique + - + New window and tab - Nova janela e aba + - + Open from default window: - - + + Computer - Computador + - - + + Home - - + + Desktop - Área de Trabalho + - - + + Videos - Vídeos + - - + + Music - Músicas + - - + + Pictures - Imagens + - - + + Documents - Documentos + - - + + Downloads - Downloads + - + Open in new tab: - Abrir em nova guia: + - + Current Directory - + Files and folders - Arquivos e pastas + - + Show hidden files - Exibir arquivos ocultos + - + Show file extensions - Exibir extensões de arquivo + - + Mix sorting of files and folders - Classificar aleatoriamente os arquivos e pastas + - + Workspace - Espaço de Trabalho + - + View - + Default size: - Tamanho padrão: + - + Extra small - Extrapequeno + - + Small - Pequeno + - + Medium - Médio + - + Large - Grande + - + Extra large - Extragrande - - - - Tree - + Default view: - + Icon - Ícone - - - - List - Lista - - - - Restore default view mode for all directories - - Restore default view mode + + List - + Thumbnail preview - Pré-visualização em miniatura + - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - Alternar a exibição de entrada pode levar a uma falha na montagem + - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3155,7 +3182,7 @@ Reverse selection - Inverter seleção + @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Outros - + Close Fechar - + Close current tab Fechar aba atual - + Back Voltar - + Forward Avançar - + Switch to next tab Alterar para a próxima aba - + Switch to previous tab Alternar para a aba anterior - + Next file Próximo arquivo - + Previous file Arquivo anterior - + Switch tab by specified number between 1 to 8 Alternar a aba pelo número especificado entre 1 e 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Última modificação: %1 - + Original folder Pasta de origem - + Contains: %1 Contém: %1 - + Original file Arquivo original - + Size: %1 Tamanho: %1 - + Target folder Pasta de destino - - + In data statistics ... - + Target file Arquivo de destino @@ -3445,37 +3466,37 @@ Aguarde - + Keep both button Manter Ambos - + Skip button Ignorar - - + + Replace button Substituir - + Do not ask again Não perguntar novamente - + Retry button - Repetir + Tentar novamente - + Merge button Mesclar @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Impossível localizar o diretório do acesso rápido. Removê-lo? - + Cancel button Cancelar - + Remove button Remover @@ -3778,86 +3799,87 @@ Double click to open it - Duplo clique para abri-lo + Clique duplo para abrí-lo dfmplugin_computer::Computer - + + Computer Computador - + Computer display items - Exibição de itens do computador + - + Hide built-in disks on the Computer page - Ocultar os discos internos na página Computador + - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - Ocultar Meus Diretórios na página Computador + - + Hide 3rd party entries on the Computer page - Ocultar a entradas de terceiros na página Computador + dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password Senha incorreta - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Computador - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - Cancelar + - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Meus Diretórios - + Disks Dispositivos @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Informações Básicas - + Device type Tipo de dispositivo - + Total space Espaço total - + File system Sistema de arquivos - + Contains Contém - + Free space Espaço livre - + %1 items %1 itens - + %1 item %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Tamanho - + Dimension Dimensão - + Duration Duração - + Type Tipo - + Accessed Último acesso - + Modified Última modificação @@ -4320,7 +4342,7 @@ Unknown error - Erro desconhecido + @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Colar - Cu&t - + Cut + Recortar - &Copy - + Copy + Copiar dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Abrir - Rena&me - + Rename + Renomear - &Delete - + Delete + Excluir @@ -4557,11 +4579,6 @@ Open in terminal Abrir no terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Enviar para - - Bluetooth - - - - + Create link Criar atalho - + Send to desktop Área de Trabalho @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share - Compartilhar + + + + + Bluetooth + Bluetooth dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Abrir - + Open in new window Abrir em nova janela - + Open in new tab Abrir em nova aba - + Cancel sharing Cancelar compartilhamento - - P&roperties - + + Properties + Propriedades dfmplugin_myshares::MyShares - + My Shares Compartilhamentos @@ -4683,7 +4700,7 @@ Nenhum arquivo para gravar - + Unable to burn. Not enough free space on the target disk. Impossível gravar. Não há espaço disponível no disco de destino. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Informações Básicas - + Size Tamanho - + Contains Contém - + Type Tipo - + Location Local - + Time created Data da criação - + Time accessed Último acesso - + Time modified Última modificação - + Hide this file Ocultar este arquivo - - + + %1 item %1 item - + %1 items %1 itens @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - Para Governo + Para Governos - + For Enterprise Para Empresas - + Bit Bit - + Available Disponível @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Computador - + Basic Info Informações Básicas - + Computer name Nome do computador - + Version Versão - + Edition Versão - + OS build Build do Sistema - + Type Tipo - + Processor Processador - + Memory Memória @@ -4874,14 +4891,6 @@ %1 arquivo(s), %2 pasta(s) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Propriedades dfmplugin_recent::Recent - + + Recent Recentes @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Caminho - + Last access Último acesso - + Recent Recentes @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Pesquisar: - + File Type: Tipo de Arquivo: - + File Size: Tamanho do Arquivo: - + Time Modified: Última modificação: - + Time Accessed: Último acesso: - + Time Created: Data da Criação: - + Reset Redefinir - + All subdirectories Todas as subpastas - + Current directory Diretório - + Application Aplicativo - + Video Vídeo - + Audio Áudio - + Image Imagem - + Archive Arquivo - + Text Texto - + Executable Executável - + Backup file Arquivo de backup - + Today Hoje - + Yesterday Ontem - + This week Esta semana - + Last week Semana passada - + This month Este mês - + Last month Mês passado - + This year Este Ano - + Last year Ano passado @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Pesquisar - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Caminho @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Abrir local do arquivo - + Select all Selecionar tudo - + Path @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Acesso rápido - + Partitions Partições - + Network Rede - + Tag Etiqueta - + + Bookmark + + + + Other Outros - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Rede + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Abrir @@ -5184,7 +5191,7 @@ - P&roperties + Properties @@ -5213,13 +5220,13 @@ Remove - Remover + dfmplugin_tag::Tag - + Tag Etiqueta @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Abrir local do arquivo @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Conectar-se ao servidor - - - + + + Clear History Limpar histórico - + Unfavorite Desfavorável - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Cancelar - + Connect button Conectar - + Charset Encoding - + Default - Padrão + - + My Favorites Favoritos: - + No favorites yet Ainda sem favoritos - + Favorite Favoritos @@ -5361,7 +5358,7 @@ Repeat password: - Confirmar a nova senha: + Confirmar senha: @@ -5383,7 +5380,7 @@ New password should differ from the current one - A nova senha deve ser diferente da atual + A nova senha deve ser diferente da senha atual @@ -5400,7 +5397,7 @@ Password cannot be empty - A senha não pode estar em branco + A senha não pode ficar em branco @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Caminho de origem - + Time deleted Data/hora da exclusão @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restaurar - + Restore all Restaurar tudo - + Empty trash - Esvaziar lixeira + - + Source path Caminho de origem - + Time deleted Data/hora da exclusão @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Lixeira @@ -5530,17 +5527,17 @@ Lixeira - + item Item - + items itens - + Contains %1 %2 Contém %1 %2 @@ -5644,7 +5641,7 @@ Retry button - Repetir + Tentar novamente @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Informações Básicas - + Size Tamanho - + Contains Contém - + Type Tipo - + Location Local - + Time created Data da criação - + Time accessed Último acesso - + Time locked Tempo bloqueado @@ -5953,7 +5950,7 @@ Wrong password, please try again %1 minutes later - Senha incorreta, tente novamente em %1 minutos + Senha incorreta, por favor, tente novamente em %1 minutos @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Criptografar o Cofre de Arquivo @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Criptografar - + Failed to create file vault: %1 Falha ao criar o cofre de arquivos: %1 - + OK Ok @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Definir a Senha do Cofre @@ -6097,14 +6094,14 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 caracteres; contém A-Z, a-z, 0-9 e símbolos Repeat password - Confirmar a nova senha + Repetir senha @@ -6132,8 +6129,8 @@ Próximo - - + + Passwords do not match As senhas não coincidem @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Cofre de Arquivo @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6201,7 +6198,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6209,121 +6206,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Meu Cofre - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Cancelar - - - - Delete - Excluir - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - Ok + + Password + Senha - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Dica de senha: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Insira a chave de recuperação de 32 dígitos + + + dfmplugin_vault::VaultRemovePages - - Password - Senha + + Delete File Vault + Excluir o Cofre de Arquivos - - Password hint: %1 - Dica de senha: %1 + + Once deleted, the files in it will be permanently deleted + Uma vez excluídos, os arquivos serão excluídos permanentemente - + Cancel + button Cancelar - - Delete - Excluir - - - - Delete File Vault - + + Use Key + button + Usar Chave - - Wrong password - Senha incorreta + + Delete + button + Excluir - - Failed to delete file vault - + + Removing... + Removendo... - + + OK + button Ok - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Insira a chave de recuperação de 32 dígitos + + Wrong password + Senha incorreta - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - Removendo... + + Wrong recovery key + Chave de recuperação incorreta - - OK - Ok + + Failed to delete file vault + Falha ao excluir o cofre de arquivos - - Delete File Vault - + + Deleted successfully + Excluído - - Deleted successfully - + + Failed to delete + Falha ao excluir @@ -6334,10 +6308,16 @@ Meu Cofre - + File Vault Cofre de Arquivo + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name Nome - + Time modified Última modificação - + Size Tamanho - + Type Tipo @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 não são permitidos @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Ordenar por - + Display as Exibir como - + Name Nome - + Time modified Última modificação - + Size Tamanho - + Type Tipo - + Icon Ícone - + List Lista - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Salvar @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Salvar - + Open button Abrir @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - Tema: + - + Light - Claro + - + Dark - Escuro + - + Mode: - Modo: + - + Normal - Normal + - + Disabled - Desativado + - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ro.ts b/translations/dde-file-manager_ro.ts index 5437791023..47bfe94b1b 100644 --- a/translations/dde-file-manager_ro.ts +++ b/translations/dde-file-manager_ro.ts @@ -15,104 +15,99 @@ Application - + File Manager Manager de fișiere - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Spațiul de lucru + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Volum - DiskMountPlugin + DesktopMain - - Disk - Disc + + Desktop + Spațiul de lucru + + + DiskControlWidget - - Open - Deschide + + Disks + Discuri - - Eject all - Scoateți toate + + The device was not safely removed + Dispozitivul nu a fost deconectat în mod sigur - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Clic pe „Eliminare sigură” și apoi deconectați data viitoare - - eject - + + Disk is busy, cannot unmount now + Disc ocupat, nu poate fi demontat la moment - - unmount - + + The device is busy, cannot eject now + Dispozitivul este ocupat, nu poate fi scos acum + + + DiskMountPlugin - - - remove - + + Disk + Disc - - Operation failed - + + Open + Deschide - - Device (%1) is busy, cannot %2 now. - + + Eject all + Scoateți toate FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Necunoscut @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Disc Sistem - + Data Disk - + Blank %1 Disc - - - + + + Unknown Necunoscut - + %1 Drive - + %1 Encrypted %1 Criptat - - + %1 Volume %1 Volum - + + Scanning the device, stop it? Scanarea dispozitivului, oprire? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Acasă @@ -228,6 +223,7 @@ + Desktop Spațiul de lucru @@ -237,6 +233,7 @@ + Videos Videoclipuri @@ -246,6 +243,7 @@ + Music Muzică @@ -255,6 +253,7 @@ + Pictures Imagini @@ -264,6 +263,7 @@ + Documents Documente @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash Coș de gunoi @@ -291,11 +293,12 @@ + Recent Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder Nu aveți permisiunea de a accesa acest directoriu - - + + You do not have permission to traverse files in it - - + + Folder is empty Dosarul este gol - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Calculator @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Etichetă @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Oprire - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Acces interzis + Confirm button Confirmare + + + The device has been safely removed + Dispozitivul a fost îndepărtat în mod sigur + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties Proprietăți @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button Șterge - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Eroare necunoscută @@ -1179,42 +1194,42 @@ - + Orange Portocaliu - + Red Roșu - + Purple Violet - + Navy-blue - + Azure - + Green Verde - + Yellow Galben - + Gray Gri @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Nu este autorizat - - + + In trial period Perioada de grație - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tip - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Dimensiune pictogramă @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Anulare - + Format button Formatare - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Șterge - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Anulare - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Altele - + Close - + Close current tab - + Back Înapoi - + Forward - + Switch to next tab - + Switch to previous tab - + Next file Următorul fișier - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button Reîncercați - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Anulare - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Calculator - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Calculator - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Directoare mele - + Disks Discuri @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space Spațiu total - + File system - + Contains Conține - + Free space Spațiu liber - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Mărime - + Dimension - + Duration Durată - + Type Tip - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,18 +4495,18 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Deschide - Rena&me + Rename - &Delete - + Delete + Șterge @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Deschide - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + Proprietăți dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Mărime - + Contains Conține - + Type Tip - + Location - + Time created - + Time accessed - + Time modified - + Hide this file Ascundeți acest fișier - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Calculator - + Basic Info Informaţii de bază - + Computer name - + Version Versiune - + Edition - + OS build - + Type Tip - + Processor Procesor - + Memory Memorie @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Proprietăți dfmplugin_recent::Recent - + + Recent Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Căutați: - + File Type: Tip Fişier: - + File Size: Dimensiune Fişier: - + Time Modified: Timp modificare: - + Time Accessed: - + Time Created: - + Reset Resetează - + All subdirectories Toate subdirectoarele - + Current directory Director curent - + Application - + Video - + Audio - + Image Imagine - + Archive Arhivă - + Text Text - + Executable - + Backup file - + Today Azi - + Yesterday Ieri - + This week Săptămâna aceasta - + Last week Săptămâna trecută - + This month Luna aceasta - + Last month Luna trecută - + This year Acest an - + Last year Anul trecut @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Căutare - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etichetă - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Deschide @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Etichetă @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Anulare - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Restabiliți - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Coș de gunoi @@ -5529,17 +5526,17 @@ Coș de gunoi - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Mărime - + Contains Conține - + Type Tip - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ Următorul - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Parola - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Parola - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Anulare - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Șterge - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortează după - + Display as - + Name Nume - + Time modified - + Size Mărime - + Type Tip - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button Deschide @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ru.ts b/translations/dde-file-manager_ru.ts index 652173d7ce..be34ff4b09 100644 --- a/translations/dde-file-manager_ru.ts +++ b/translations/dde-file-manager_ru.ts @@ -15,104 +15,99 @@ Application - + File Manager Файловый Менеджер - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Диспетчер Файлов - это мощный и простой в использовании инструмент управления файлами, включающий поиск, копирование, удаление, сжатие / распаковку, свойства файла и другие полезные функции. - DesktopMain + DAttachedProtocolDevice - - Desktop - Рабочий Стол + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Объём - DiskMountPlugin + DesktopMain - - Disk - Диск + + Desktop + Рабочий Стол + + + DiskControlWidget - - Open - Открыть + + Disks + Диски - - Eject all - Извлечь все + + The device was not safely removed + Устройство не было безопасно извлечено - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + В следующий раз сначала нажмите "Безопасное извлечение", а затем отключите устройство - - eject - + + Disk is busy, cannot unmount now + Диск занят, не могу отмонтировать сейчас - - unmount - + + The device is busy, cannot eject now + Устройство занято и не может быть извлечено сейчас + + + DiskMountPlugin - - - remove - + + Disk + Диск - - Operation failed - + + Open + Открыть - - Device (%1) is busy, cannot %2 now. - + + Eject all + Извлечь все FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Неизвестно @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Это происходит при первом вашем входе в систему. - + The identity sent by the remote computer is Идентификация, отправленная удаленным компьютером - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Если вы хотите быть абсолютно уверены в безопасности действия и его продолжения, обратитесь к системному администратору. - - - + + + System Disk Системный Диск - + Data Disk Диск Данных - + Blank %1 Disc Чистый %1 Диск - - - + + + Unknown Неизвестно - + %1 Drive %1 Привод - + %1 Encrypted %1 Зашифровано - - + %1 Volume %1 Объём - + + Scanning the device, stop it? Сканирование устройства, остановить его? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Домашняя папка @@ -228,6 +223,7 @@ + Desktop Рабочий стол @@ -237,6 +233,7 @@ + Videos Видео @@ -246,6 +243,7 @@ + Music Музыка @@ -255,6 +253,7 @@ + Pictures Изображения @@ -264,6 +263,7 @@ + Documents Документы @@ -273,6 +273,7 @@ + Downloads Загрузки @@ -281,6 +282,7 @@ + Trash Корзина @@ -291,11 +293,12 @@ + Recent Недавние - + @@ -303,7 +306,7 @@ Авто-подключение - + @@ -316,46 +319,47 @@ %1 задачи выполняются - + %1 item %1 элемент - + %1 items %1 элементов - + Unable to find the original file Не удалось найти исходный файл - - + + File has been moved or deleted Файл был перемещен или удален - - + + + You do not have permission to access this folder У вас нет права доступа к этой папке - - + + You do not have permission to traverse files in it У вас нет прав для просмотра файлов - - + + Folder is empty Папка пуста - + Loading... Загрузка... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Компьютер @@ -419,8 +424,9 @@ - - + + + Computers in LAN Компьютеры в сети @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Ярлык @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Стоп - + Shortcut Ярлык - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Бит + Access denied Доступ запрещен + Confirm button Подтвердить + + + The device has been safely removed + Устройство было безопасно извлечено + - - + + - - - + + + Open in new window Открыть в новом окне @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Открыть в новой вкладке @@ -953,8 +968,8 @@ - - + + Properties Свойства @@ -990,7 +1005,7 @@ Новый Файл - + Create symlink Создать символическую ссылку @@ -1077,70 +1092,70 @@ Добавить на диск - + Are you sure you want to erase all data on the disc? Вы уверены, что хотите стереть все данные на диске? - + Erase button Очистить - + This action cannot be undone Это действие не может быть отменено - + How do you want to use this disc? Как вы хотите использовать этот диск? - + Burn image button Записать образ - + Burn files button Записать файлы - + %1 is a duplicate file. %1 является дубликатом файла. - + Insufficient disc space. Недостаточно места на диске. - + Lost connection to drive. Потеряна связь с приводом. - + The CD/DVD drive is not ready. Try another disc. Привод CD/DVD не готов. Попробуйте другой диск. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Дисковод CD/DVD занят. Выйдите из программы, используя привод, и снова вставьте диск. - + Invalid volume name - + Unknown error Неизвестная ошибка @@ -1179,42 +1194,42 @@ Элементов: %1 - + Orange Оранжевый - + Red Красный - + Purple Пурпурный - + Navy-blue Темно-синий - + Azure Лазурь - + Green Зеленый - + Yellow Желтый - + Gray Серый @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Локальный диск - + Removable disk Съемный диск - + DVD DVD - + Network shared directory Общий сетевой каталог - - + + Android mobile device Мобильное устройство Android - + Apple mobile device Мобильное устройство Apple - + Unknown device Неизвестное устройство - + Remove button Удалить - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Очистить недавнюю историю - - - + + + Source path Путь к источнику @@ -1404,12 +1419,12 @@ Не удаётся открыть элементы в корзине, сначала восстановите их. - + Empty Trash Очистить корзину - + Location Местонахождение @@ -1509,7 +1524,7 @@ Поиск... - + My Vault Моё хранилище @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Не авторизован - - + + In trial period Пробный период - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Тип - + Time accessed Время доступа к - + Time modified Время изменения - + Time created Время создания - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Размер значка @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 элемент выбран @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! Не удалось выполнить операцию! @@ -2529,191 +2554,191 @@ Целевая папка находится внутри исходной папки! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Отмена - + Format button Форматировать - + To access the device, you must format the disk first. Are you sure you want to format it now? Чтобы получить доступ к устройству, вы должны сначала отформатировать диск. Вы уверены, что хотите отформатировать его сейчас? - + Do you want to run %1 or display its content? Вы хотите запустить %1 или отобразить его содержание? - + It is an executable text file. это исполняемый текстовый файл. - - - + + + Run button Выполнить - - + + Run in terminal button Выполнить в терминале - + Display button Дисплей - + Do you want to run %1? Вы хотите выполнить %1? - + It is an executable file. Это исполняемый файл. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Удалить без возможности восстановления %1 элементов? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Удалить - + Permanently delete %1? Удалить без возможности восстановления %1? - - + + This action cannot be undone Это действие не может быть отменено - + Are you sure you want to empty %1 item? Вы уверены в очистке %1 объекта? - + Are you sure you want to empty %1 items? Вы уверены в очистке %1 объектов? - + Empty Очистить - + Do you want to delete %1? Вы хотите удалить %1? - + Do you want to delete the selected %1 items? Вы хотите удалить выбранные %1 элемента(ов)? - + Failed to restore %1 file, the target folder is read-only Не удалось восстановить %1 файл, целевая папка доступна только для чтения - + Failed to restore %1 files, the target folder is read-only Не удалось восстановить %1 файлы, целевая папка доступна только для чтения - + "%1" already exists, please use another name. %1 существует, пожалуйста выберите другое имя. - + Device or resource busy Устройство или ресурс заняты - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Этот файл будет скрыт, если имя файла начинается с '.'. Хотите его скрыть? - + Hide - + Cancel Отмена - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, этот ярлык относится к измененному или перемещенному объекту - + Do you want to delete this shortcut? Вы хотите удалить этот ярлык? - + This file is not executable, do you want to add the execute permission and run? Этот файл не является исполняемым, вы хотите добавить разрешение на выполнение и запустить? - + The selected files contain system file/directory, and it cannot be deleted Выбранные файлы содержат системный файл/каталог и не могут быть удалены @@ -2841,276 +2866,278 @@ Пожалуйста введите пароль для расшифровки диска - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Прочее - + Close Закрыть - + Close current tab Закрыть текущую вкладку - + Back Назад - + Forward Вперед - + Switch to next tab Переключиться на следующую вкладку - + Switch to previous tab Переключиться на предыдущую вкладку - + Next file Следующий файл - + Previous file Предыдущий файл - + Switch tab by specified number between 1 to 8 Переключить вкладку по указанному номеру от 1 до 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Время изменения: %1 - + Original folder Исходная папка - + Contains: %1 Содержит: %1 - + Original file Исходный файл - + Size: %1 Размер: %1 - + Target folder Папка назначения - - + In data statistics ... - + Target file Файл назначения @@ -3445,37 +3466,37 @@ Пожалуйста подождите - + Keep both button Оставить оба - + Skip button Пропустить - - + + Replace button Заменить - + Do not ask again Не спрашивать больше - + Retry button Повторить - + Merge button Объединить @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Отмена - + Remove button Удалить @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Компьютер - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Компьютер - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Мои Каталоги - + Disks Диски @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Тип устройства - + Total space Всего - + File system Файловая система - + Contains Содержит - + Free space Свободное место - + %1 items %1 элементов - + %1 item %1 элемент @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Размер - + Dimension Размерность - + Duration Продолжительность - + Type Тип - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Вставить - Cu&t - + Cut + Вырезать - &Copy - + Copy + Копировать dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Открыть - Rena&me - + Rename + Переименовать - &Delete - + Delete + Удалить @@ -4557,11 +4579,6 @@ Open in terminal Открыть в терминале - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Отправить в - - Bluetooth - - - - + Create link Создать ссылку - + Send to desktop Отправить на рабочий стол @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Открыть - + Open in new window Открыть в новом окне - + Open in new tab Открыть в новой вкладке - + Cancel sharing Отменить общий доступ - - P&roperties - + + Properties + Свойства dfmplugin_myshares::MyShares - + My Shares Общедоступные @@ -4682,7 +4699,7 @@ Нет файлов для записи - + Unable to burn. Not enough free space on the target disk. Ошибка записи. Недостаточно свободного места на целевом диске. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Размер - + Contains Содержит - + Type Тип - + Location Местонахождение - + Time created Время создания - + Time accessed Время доступа к - + Time modified Время изменения - + Hide this file Скрыть этот файл - - + + %1 item %1 элемент - + %1 items %1 элементов @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government Для правительства - + For Enterprise Для крупного бизнеса - + Bit Бит - + Available Доступный @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Компьютер - + Basic Info Основная Информация - + Computer name Имя компьютера - + Version Версия - + Edition Издание - + OS build Билд ОС - + Type Тип - + Processor Процессор - + Memory Память @@ -4873,14 +4890,6 @@ %1 файл(ов), %2 папка(ок) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Свойства dfmplugin_recent::Recent - + + Recent Недавние @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Путь - + Last access Последний доступ - + Recent Недавние @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Поиск: - + File Type: Тип Файла: - + File Size: Размер Файла: - + Time Modified: Время Изменения: - + Time Accessed: Время доступа: - + Time Created: Время создания: - + Reset Сбросить - + All subdirectories Все подкаталоги - + Current directory Текущий каталог - + Application Приложение - + Video Видео - + Audio Аудио - + Image Изображение - + Archive Архив - + Text Текст - + Executable Исполняемый - + Backup file Резервное копирование файла - + Today Сегодня - + Yesterday Вчера - + This week На этой неделе - + Last week На прошлой неделе - + This month В этом месяце - + Last month В прошлом месяце - + This year В этом году - + Last year В прошлом году @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Поиск - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Путь @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Открыть местоположение файла - + Select all Выбрать все - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Ярлык - + + Bookmark + + + + Other Другой - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Компьютеры в сети + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Открыть @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Ярлык @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Открыть местоположение файла @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Соединиться с Сервером - - - + + + Clear History Очистить Историю - + Unfavorite Удалить из Избранного - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Отмена - + Connect button Соединить - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite В Избранное @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Исходный Путь - + Time deleted Время удаления @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Восстановить - + Restore all Восстановить все - + Empty trash - + Source path Путь к источнику - + Time deleted Время удаления @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Корзина @@ -5529,17 +5526,17 @@ Корзина - + item элемент - + items элементы - + Contains %1 %2 Содержит %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Размер - + Contains Содержит - + Type Тип - + Location Местонахождение - + Time created Время создания - + Time accessed Время доступа к - + Time locked Время заблокировано @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Зашифровать Хранилище Файлов @@ -6007,19 +6004,19 @@ - - - + + + Encrypt Зашифровать - + Failed to create file vault: %1 Не удалось создать хранилище файлов: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Установить пароль хранилища @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 символов, содержит A-Z, a-z, 0-9 и символы @@ -6131,8 +6128,8 @@ Следующий - - + + Passwords do not match Пароли не совпадают @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Файловое хранилище @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,121 +6205,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Моё хранилище - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Пароль - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Подсказка пароля: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Введите 32-значный ключ восстановления + + + dfmplugin_vault::VaultRemovePages - - Password - Пароль + + Delete File Vault + Удалить хранилище файлов - - Password hint: %1 - Подсказка пароля: %1 + + Once deleted, the files in it will be permanently deleted + После удаления файлы в нем будут удалены безвозвратно - + Cancel - - - - - Delete - + button + Отмена - - Delete File Vault - + + Use Key + button + Использовать ключ - - Wrong password - + + Delete + button + Удалить - - Failed to delete file vault - + + Removing... + Удаление... - + + OK - + button + - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Введите 32-значный ключ восстановления + + Wrong password + Неверный пароль - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Неверный ключ восстановления - - OK - + + Failed to delete file vault + Не удалось удалить хранилище файлов - - Delete File Vault - + + Deleted successfully + Успешно удалено - - Deleted successfully - + + Failed to delete + Не удалось удалить @@ -6333,10 +6307,16 @@ Моё хранилище - + File Vault Файловое хранилище + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Сортировать по - + Display as Отобразить как - + Name Имя - + Time modified Время изменения - + Size Размер - + Type Тип - + Icon Значок - + List Список - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Сохранить @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Сохранить - + Open button Открыть @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sc.ts b/translations/dde-file-manager_sc.ts index 43b32b633b..95a90ee35b 100644 --- a/translations/dde-file-manager_sc.ts +++ b/translations/dde-file-manager_sc.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_si.ts b/translations/dde-file-manager_si.ts index 4aa649eac0..c29e1ef4ee 100644 --- a/translations/dde-file-manager_si.ts +++ b/translations/dde-file-manager_si.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer පරිගණකය @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size නිරූපකයේ ප්‍රමාණය @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer පරිගණකය - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer පරිගණකය - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer පරිගණකය - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_si_LK.ts b/translations/dde-file-manager_si_LK.ts index 7d4efd314c..7e3fb9b53d 100644 --- a/translations/dde-file-manager_si_LK.ts +++ b/translations/dde-file-manager_si_LK.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sk.ts b/translations/dde-file-manager_sk.ts index 5660b6d3bb..92bed393eb 100644 --- a/translations/dde-file-manager_sk.ts +++ b/translations/dde-file-manager_sk.ts @@ -15,104 +15,99 @@ Application - + File Manager Správca súborov - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Správca súborov je výkonný a ľahko použiteľný nástroj na správu súborov vybavený funkciami vyhľadávania, kopírovania, koša, kompresie/dekompresie, vlastností súboru a ďalších užitočných funkcií. - DesktopMain + DAttachedProtocolDevice - - Desktop - Plocha + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 oddiel - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Plocha + + + DiskControlWidget - - Open - Otvoriť + + Disks + Disky - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + Disk je zaneprázdnený, teraz ho nemožno odpojiť - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Otvoriť - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Neznámy @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk Systémový disk - + Data Disk Data Disk - + Blank %1 Disc - - - + + + Unknown Neznámy - + %1 Drive - + %1 Encrypted %1 zašifrované - - + %1 Volume %1 oddiel - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Domov @@ -228,6 +223,7 @@ + Desktop Pracovná plocha @@ -237,6 +233,7 @@ + Videos Videá @@ -246,6 +243,7 @@ + Music Hudba @@ -255,6 +253,7 @@ + Pictures Obrázky @@ -264,6 +263,7 @@ + Documents Dokumenty @@ -273,6 +273,7 @@ + Downloads Stiahnuté @@ -281,6 +282,7 @@ + Trash Kôš @@ -291,11 +293,12 @@ + Recent Posledné - + @@ -303,7 +306,7 @@ Automaticky pripojiť - + @@ -316,46 +319,47 @@ %1 úlohy prebiehajú - + %1 item %1 položky - + %1 items %1 vybraných položiek - + Unable to find the original file - - + + File has been moved or deleted Súbor bol presunutý alebo vymazaný - - + + + You do not have permission to access this folder Nemáte povolenie na prístup do tohto priečinka - - + + You do not have permission to traverse files in it - - + + Folder is empty Priečinok je prázdny - + Loading... Nahrávanie... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Počítač @@ -419,8 +424,9 @@ - - + + + Computers in LAN Počítače v LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Značka @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Odkaz - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Trocha + Access denied Prístup zamietnutý + Confirm button Potvrdiť + + + The device has been safely removed + + - - + + - - - + + + Open in new window Otvoriť v novom okne @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Otvoriť v novej karte @@ -953,8 +968,8 @@ - - + + Properties Vlastnosti @@ -990,7 +1005,7 @@ Nový súbor - + Create symlink Vytvoriť symlink @@ -1077,70 +1092,70 @@ Pridať na disk - + Are you sure you want to erase all data on the disc? - + Erase button Vymazať - + This action cannot be undone Túto akciu nie je možné obnoviť - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. Nedostatok miesta na disku. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ Položky: %1 - + Orange Oranžová - + Red Červená - + Purple Fialová - + Navy-blue Námornícka modrá - + Azure Azurová - + Green Zelená - + Yellow Žltá - + Gray Sivá @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Lokálny disk - + Removable disk Odpojiteľný disk - + DVD DVD - + Network shared directory Sieťový zdieľaný adresár - - + + Android mobile device Android mobilné zariadenie - + Apple mobile device Apple mobilné zariadenie - + Unknown device Neznáme zariadenie - + Remove button Odstrániť - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Vyčistiť nedávnu históriu - - - + + + Source path Zdrojová cesta @@ -1404,12 +1419,12 @@ - + Empty Trash Prázdny kôš - + Location Umiestnenie @@ -1509,7 +1524,7 @@ Vyhľadávanie... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Typ - + Time accessed - + Time modified Čas úpravy - + Time created Čas vytvorenia - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Veľkosť ikony @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 položka vybraná @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operácia zlyhala! @@ -2529,191 +2554,191 @@ Cieľový priečinok je vnútri zdrojovej zložky! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Zrušiť - + Format button Formát - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Chcete spustiť %1 alebo zobraziť jej obsah? - + It is an executable text file. Je to spustiteľný textový súbor. - - - + + + Run button Spustiť - - + + Run in terminal button Spustiť v termináli - + Display button Zobrazenie - + Do you want to run %1? Chcete spustiť %1? - + It is an executable file. Je to spustiteľný textový súbor. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Natrvalo zmazať %1 položky? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Vymazať - + Permanently delete %1? Natrvalo zmazať %1? - - + + This action cannot be undone Túto akciu nie je možné obnoviť - + Are you sure you want to empty %1 item? Naozaj chcete vymazať %1 položku? - + Are you sure you want to empty %1 items? Naozaj chcete vymazať %1 položky? - + Empty Prázdne - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" už existuje, použite iné meno. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Zrušiť - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, ktorý odkazujena tento odkaz bol zmenený alebo presunutý - + Do you want to delete this shortcut? Chcete vymazať tento odkaz? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted Vybrané súbory obsahujú systémový súbor/priečinok, a nemôžu byť zmazané @@ -2841,276 +2866,278 @@ Zadajte heslo na dešifrovanie disku - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Iné - + Close Zatvoriť - + Close current tab Zatvoriť aktuálnu kartu - + Back Späť - + Forward Dopredu - + Switch to next tab Prepnúť na ďalšiu kartu - + Switch to previous tab Prepnúť na predchádzajúcu kartu - + Next file Ďalší súbor - + Previous file Predchádzajúci súbor - + Switch tab by specified number between 1 to 8 Prepnite na kartu podľa zadaného čísla medzi 1 až 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Čas úpravy: %1 - + Original folder Pôvodný adresár - + Contains: %1 Obsahuje: %1 - + Original file Pôvodný súbor - + Size: %1 Veľkosť: %1 - + Target folder Cieľový adresár - - + In data statistics ... - + Target file Cieľový súbor @@ -3445,37 +3466,37 @@ - + Keep both button Ponechať obe - + Skip button Preskočiť - - + + Replace button Nahradiť - + Do not ask again Nepýtať sa znova - + Retry button Opakovať - + Merge button Zlúčiť @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Zrušiť - + Remove button Odstrániť @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Počítač - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Počítač - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje adresáre - + Disks Disky @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Typ zariadenia - + Total space Celkový priestor - + File system Systém súborov - + Contains Obsahuje - + Free space Voľný priestor - + %1 items %1 vybraných položiek - + %1 item %1 položky @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Veľkosť - + Dimension - + Duration Trvanie - + Type Typ - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Prilepiť - Cu&t - + Cut + Vystrihnúť - &Copy - + Copy + Kopírovať dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Otvoriť - Rena&me - + Rename + Premenovať - &Delete - + Delete + Vymazať @@ -4557,11 +4579,6 @@ Open in terminal Otvoriť v termináli - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Odoslať na - - Bluetooth - - - - + Create link Vytvoriť odkaz - + Send to desktop Odoslať na pracovnú plochu @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Otvoriť - + Open in new window Otvoriť v novom okne - + Open in new tab Otvoriť v novej karte - + Cancel sharing Zrušiť zdieľanie - - P&roperties - + + Properties + Vlastnosti dfmplugin_myshares::MyShares - + My Shares Moje zdieľania @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. Nedá sa napáliť. Na cieľovom disku nie je dostatok voľného miesta. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Veľkosť - + Contains Obsahuje - + Type Typ - + Location Umiestnenie - + Time created Čas vytvorenia - + Time accessed - + Time modified Čas úpravy - + Hide this file Skryť tento súbor - - + + %1 item %1 položky - + %1 items %1 vybraných položiek @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Trocha - + Available Dostupné @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Počítač - + Basic Info Základné informácie - + Computer name - + Version Verzia - + Edition - + OS build - + Type Typ - + Processor Procesor - + Memory Pamäť @@ -4873,14 +4890,6 @@ %1 súbor(y), %2 priečinok(y) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Vlastnosti dfmplugin_recent::Recent - + + Recent Posledné @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Cesta - + Last access Posledný prístup - + Recent Posledné @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Vyhľadať: - + File Type: Typ súboru: - + File Size: Veľkosť súboru: - + Time Modified: Čas úpravy: - + Time Accessed: - + Time Created: - + Reset Obnoviť - + All subdirectories Všetky podadresáre - + Current directory Aktuálny priečinok - + Application Aplikácia - + Video Video - + Audio Zvuk - + Image Obrázok - + Archive Archív - + Text Text - + Executable Spustiteľný - + Backup file - + Today Dnes - + Yesterday Včera - + This week Tento týždeň - + Last week Minulý týždeň - + This month Tento mesiac - + Last month Minulý mesiac - + This year Tento rok - + Last year Minulý rok @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Vyhľadať - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Cesta @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Otvoriť umiestnenie súboru - + Select all Vybrať všetko - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Značka - + + Bookmark + + + + Other Iný - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Počítače v LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Otvoriť @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag Značka @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Otvoriť umiestnenie súboru @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Pripojiť na server - - - + + + Clear History Vymazať históriu - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Zrušiť - + Connect button Pripojiť - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Zdrojová cesta - + Time deleted Čas vymazania @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Obnoviť - + Restore all Obnoviť všetko - + Empty trash - + Source path Zdrojová cesta - + Time deleted Čas vymazania @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Kôš @@ -5529,17 +5526,17 @@ Kôš - + item Položka - + items Položky - + Contains %1 %2 Obsahuje %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Veľkosť - + Contains Obsahuje - + Type Typ - + Location Umiestnenie - + Time created Čas vytvorenia - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Heslo - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Heslo - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Zrušiť - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Vymazať - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Zoradiť podľa - + Display as Zobraziť ako - + Name Meno - + Time modified Čas úpravy - + Size Veľkosť - + Type Typ - + Icon Ikona - + List Zoznam - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Uložiť @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Uložiť - + Open button Otvoriť @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sl.ts b/translations/dde-file-manager_sl.ts index 32af57d8de..78c98572d5 100644 --- a/translations/dde-file-manager_sl.ts +++ b/translations/dde-file-manager_sl.ts @@ -15,104 +15,99 @@ Application - + File Manager Upravitelj datotek - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Upravitelj datotek je zmogljivo in enostavno orodje za upravljanje datotek, s funkcijami iskanja, kopiranja, košem, stiskanjem/ razširjanjem, lastnostmi datotek in drugimi uporabnimi zadevami. - DesktopMain + DAttachedProtocolDevice - - Desktop - Namizje + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Glasnost - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Namizje + + + DiskControlWidget - - Open - Odpri + + Disks + Diski - - Eject all - Izvrzi vse + + The device was not safely removed + Naprava ni bila varno odstranjena - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Klikni "Varno odstrani" in nato odstranite - - eject - + + Disk is busy, cannot unmount now + Disk je v rabi. Trenutno ga ni mogoče odklopiti - - unmount - + + The device is busy, cannot eject now + Naprava je v rabi in je trenutno ni mogoče izvreči + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Odpri - - Device (%1) is busy, cannot %2 now. - + + Eject all + Izvrzi vse FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Neznano @@ -128,89 +123,88 @@ QObject - + need authorization to access za potreb je potrebna overitev - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. To se zgodi ob prvi prijavi v računalnik. - + The identity sent by the remote computer is Identiteta, ki jo je poslal oddaljeni računalnik, je - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Če želite biti povsem prepričani, da je nadaljevanje varno, kontaktirajte skrbnika sistema - - - + + + System Disk Sistemski disk - + Data Disk Podatkovni disk - + Blank %1 Disc Prazen %1 disk - - - + + + Unknown Neznano - + %1 Drive %1 pogon - + %1 Encrypted %1 šifriran - - + %1 Volume %1 Glasnost - + + Scanning the device, stop it? Preverjanje naprave. Zaustavim? - + Unmount failed Odklop ni bil uspešen - + Cannot stop scanning device Ne morem zaustaviti skeniranja naprave - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Domov @@ -228,6 +223,7 @@ + Desktop Namizje @@ -237,6 +233,7 @@ + Videos Videoposnetki @@ -246,6 +243,7 @@ + Music Glasba @@ -255,6 +253,7 @@ + Pictures Slike @@ -264,6 +263,7 @@ + Documents Dokumenti @@ -273,6 +273,7 @@ + Downloads Prenosi @@ -281,6 +282,7 @@ + Trash Koš @@ -291,11 +293,12 @@ + Recent Nedavno - + @@ -303,7 +306,7 @@ Samodejno priklopi - + @@ -316,46 +319,47 @@ %1 opravil v obdelavi - + %1 item %1 element - + %1 items %1 elementov - + Unable to find the original file Ne morem najti izvirnih datotek - - + + File has been moved or deleted Datoteka je bila premaknjena ali izbrisana - - + + + You do not have permission to access this folder Nimate dovoljenja za dostopanje do te mape - - + + You do not have permission to traverse files in it Nimate dovoljenja za prehod preko datotek v njej - - + + Folder is empty Mapa je prazna - + Loading... Nalagam... @@ -404,7 +408,7 @@ - + Built-in disks Vgrajeni diski @@ -412,6 +416,7 @@ + Computer Računalnik @@ -419,8 +424,9 @@ - - + + + Computers in LAN Računalniki v LAN omrežju @@ -428,7 +434,7 @@ - + Loop partitions Razdelki v zanki @@ -436,8 +442,7 @@ - - + Mounted sharing folders Priklopljene mape v skupni rabi @@ -445,6 +450,7 @@ + My shares Moje delitve @@ -452,7 +458,7 @@ - + Network Omrežje @@ -460,7 +466,7 @@ - + Mounted partitions and discs Priklopljeni razdelki in diski @@ -468,7 +474,7 @@ - + Partitions Particije @@ -476,7 +482,7 @@ - + Quick access Hitri dostop @@ -484,7 +490,7 @@ - + Tag Oznaka @@ -492,7 +498,7 @@ - + Added tags Dodane oznake @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Prikazuj priklopljene Samba delitve @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Zaustavi - + Shortcut Bližnjica - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Zavrnjen dostop + Confirm button Potrdi + + + The device has been safely removed + Naprava je bila varno odstranjena + - - + + - - - + + + Open in new window Odpri v novem oknu @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Odpri v novem zavihku @@ -953,8 +968,8 @@ - - + + Properties Lastnosti @@ -990,7 +1005,7 @@ Nova datoteka - + Create symlink Ustvari simbolno povezavo @@ -1077,70 +1092,70 @@ Dodaj na disk - + Are you sure you want to erase all data on the disc? Ali ste prepričani, da želite izbrisati vse podatke na disku? - + Erase button Izbriši - + This action cannot be undone Tega dejanja ni mogoče razveljaviti - + How do you want to use this disc? Kako želite uporabljati ta disk? - + Burn image button Zapiši posnetek - + Burn files button Zapiši datoteke - + %1 is a duplicate file. %1 je podvojena datoteka - + Insufficient disc space. Na disku ni dovolj prostora, - + Lost connection to drive. Izgubljena povezava s pogonom. - + The CD/DVD drive is not ready. Try another disc. CD/DVD pogon ni pripravljen. Poskusite z drugim diskom. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD pogon je v rabi. Zaprite program, ki ga uporablja in ponovno vstavite disk v pogon. - + Invalid volume name - + Unknown error Neznana napaka @@ -1179,42 +1194,42 @@ Predmeti: %1 - + Orange Oranžna - + Red Rdeča - + Purple Vijolična - + Navy-blue Mornarsko modra - + Azure Nebesno modra - + Green Zelena - + Yellow Rumena - + Gray Siva @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Lokalni disk - + Removable disk Zunanji disk - + DVD DVD - + Network shared directory Omrežna mapa v skupni rabi - - + + Android mobile device Mobilna naprava Android - + Apple mobile device Mobilna naprava Apple - + Unknown device Neznana naprava - + Remove button Odstrani - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Počisti nedavno zgodovino - - - + + + Source path Izhodišče @@ -1404,12 +1419,12 @@ Ne morem odpreti predmetov v košu. Najprej jih obnovite - + Empty Trash Izprazni koš - + Location Lokacija @@ -1509,7 +1524,7 @@ Iščem... - + My Vault Moj trezor @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Ni overjeno - - + + In trial period Preizkusna doba - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Vrsta - + Time accessed Čas dostopa - + Time modified Čas spremembe - + Time created Čas nastanka - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Velikost ikone @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 izbran element @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button V redu - + Operation failed! Operacija ni uspela! @@ -2529,191 +2554,191 @@ Ciljna mapa je znotraj izvorne mape! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Prekini - + Format button Format - + To access the device, you must format the disk first. Are you sure you want to format it now? Za dostop do naprave morate najprej formatirati disk. Jo želite zdaj formatirati? - + Do you want to run %1 or display its content? Želite zagnati %1 ali prikazati pripadajočo vsebino? - + It is an executable text file. To je izvršljiva besedilna datoteka. - - - + + + Run button Zaženi - - + + Run in terminal button Zaženi v terminalu - + Display button Prikaži - + Do you want to run %1? Hočete zagnati %1? - + It is an executable file. To je izvršljiva datoteka. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Izbranih %1 predmetov ni mogoče premakniti v koš. Ali jih želite trajno izbrisati? - + Permanently delete %1 items? Trajno izbrišem %1 predmetov? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Izbriši - + Permanently delete %1? Trajno izbrišem %1? - - + + This action cannot be undone Tega dejanja ni mogoče razveljaviti - + Are you sure you want to empty %1 item? Ali ste prepričani, da želite počistiti %1 predmet? - + Are you sure you want to empty %1 items? Ali ste prepričani, da želite počistiti %1 predmetov? - + Empty Prazen - + Do you want to delete %1? Želite izbrisati %1? - + Do you want to delete the selected %1 items? Ali žeite izbrisati izbranih %1 predmetov? - + Failed to restore %1 file, the target folder is read-only Neuspešno obnavljanje %1 datoteke. Ciljna mapa je zgolj bralna - + Failed to restore %1 files, the target folder is read-only Neuspešno obnavljanje %1 datotek. Ciljna mapa je zgolj bralna - + "%1" already exists, please use another name. "%1" že obstaja. Uporabite drug naziv. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Prekini - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1, kamor kaže ta bližnjica, je bil spremenjen ali premaknjen - + Do you want to delete this shortcut? Želite izbrisati to bližnjico? - + This file is not executable, do you want to add the execute permission and run? Ta datoteka ni izvršljiva. Bi radi dodali dovoljenje za izvedbo in jo zagnali? - + The selected files contain system file/directory, and it cannot be deleted Izbrane datoteke vsebujejo sistemske datoteke/mape, zato jih ni mogoče izbrisati @@ -2841,276 +2866,278 @@ Vnesite geslo za dešifriranje diska - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Drugo - + Close Zapri - + Close current tab Zapri trenuten zavihek - + Back Nazaj - + Forward Naprej - + Switch to next tab Preklopi na naslednji zavihek - + Switch to previous tab Preklopi na prejšnji zavihek - + Next file Naslednja datoteka - + Previous file Prejšnja datoteka - + Switch tab by specified number between 1 to 8 Preklopite na zavihek z določeno številko med 1 in 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Čas spremembe: %1 - + Original folder Izvorna mapa - + Contains: %1 Vsebuje: %1 - + Original file Izvirnik datoteke - + Size: %1 Velikost: %1 - + Target folder Ciljna mapa - - + In data statistics ... - + Target file Ciljna datoteka @@ -3445,37 +3466,37 @@ Počakajte - + Keep both button Ohrani oboje - + Skip button Preskoči - - + + Replace button Zamenjaj - + Do not ask again Ne sprašuje več - + Retry button Znova - + Merge button Združi @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Prekini - + Remove button Odstrani @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Računalnik - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Računalnik - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Moje mape - + Disks Diski @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Vrsta naprave - + Total space Celoten prostor - + File system Datotečni sistem - + Contains Vsebuje - + Free space Nezaseden prostor - + %1 items %1 predmetov - + %1 item %1 predmet @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Velikost - + Dimension Velikost - + Duration Trajanje - + Type Vrsta - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Prilepi - Cu&t - + Cut + Izreži - &Copy - + Copy + Kopiraj dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Odpri - Rena&me - + Rename + Preimenuj - &Delete - + Delete + Izbriši @@ -4557,11 +4579,6 @@ Open in terminal Odpri v terminalu - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Pošlji v/na - - Bluetooth - - - - + Create link Ustvari povezavo - + Send to desktop Pošlji na namizje @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Odpri - + Open in new window Odpri v novem oknu - + Open in new tab Odpri v novem zavihku - + Cancel sharing Prekliči deljenje - - P&roperties - + + Properties + Lastnosti dfmplugin_myshares::MyShares - + My Shares Predmeti v skupni rabi @@ -4683,7 +4700,7 @@ Ni datotek za zapisovanje - + Unable to burn. Not enough free space on the target disk. Ne morem zapisati. Na ciljnem disku ni dovolj prostora. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Velikost - + Contains Vsebuje - + Type Vrsta - + Location Lokacija - + Time created Čas nastanka - + Time accessed Čas dostopa - + Time modified Čas spremembe - + Hide this file Skrij to datoteko - - + + %1 item %1 predmet - + %1 items %1 predmetov @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available Na voljo @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Računalnik - + Basic Info Osnovne informacije - + Computer name - + Version Različica - + Edition Izdaja - + OS build - + Type Vrsta - + Processor Procesor - + Memory Pomnilnik @@ -4874,14 +4891,6 @@ %1 datotek, %2 map - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Lastnosti dfmplugin_recent::Recent - + + Recent Nedavno @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Pot - + Last access Zadnji dostop - + Recent Nedavno @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Iskanje: - + File Type: Vrsta datoteke: - + File Size: Velikost datoteke: - + Time Modified: Čas spremembe: - + Time Accessed: Čas dostopa: - + Time Created: Čas stvaritve: - + Reset Ponastavi - + All subdirectories Vse podmape - + Current directory Trenutna mapa - + Application Aplikacija - + Video Video - + Audio Zvok - + Image Slika - + Archive Arhiv - + Text Besedilo - + Executable Zagonska - + Backup file Varnostna kopija - + Today Danes - + Yesterday Včeraj - + This week Ta teden - + Last week Prejšnji teden - + This month Ta mesec - + Last month Prejšnji mesec - + This year To leto - + Last year Prejšnje leto @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Išči - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Pot @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Odpri mapo datoteke - + Select all Izberi vse - + Path @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Oznaka - + + Bookmark + + + + Other Drugo - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Računalniki v LAN omrežju + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Odpri @@ -5184,7 +5191,7 @@ - P&roperties + Properties @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Oznaka @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Odpri mapo datoteke @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Poveži s strežnikom - - - + + + Clear History Počisti zgodovino - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Prekini - + Connect button Poveži - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Izvorna pot - + Time deleted Čas brisanja @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Obnovi - + Restore all Obnovi vse - + Empty trash - + Source path Izhodišče - + Time deleted Čas brisanja @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Koš @@ -5530,17 +5527,17 @@ Koš - + item Predmet - + items Predmeti - + Contains %1 %2 Vsebuje %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Velikost - + Contains Vsebuje - + Type Vrsta - + Location Lokacija - + Time created Čas nastanka - + Time accessed Čas dostopa - + Time locked Zaklenjen čas @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Šifiraj trezor datotek @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Šifriraj - + Failed to create file vault: %1 Trezorja datotek ni bilo mogoče ustvariti: %1 - + OK V redu @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Določi geslo trezorja @@ -6097,7 +6094,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 znakov, vsebuje A-Z, a-z, 0-9, in simbole @@ -6132,8 +6129,8 @@ Naprej - - + + Passwords do not match Gesli se ne ujemata @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Trezor datotek @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6201,7 +6198,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6209,121 +6206,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Moj trezor - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Geslo - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Namig za geslo: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Vnesite 32-mestni obnovitveni ključ + + + dfmplugin_vault::VaultRemovePages - - Password - Geslo + + Delete File Vault + Izbriši trezor datotek - - Password hint: %1 - Namig za geslo: %1 + + Once deleted, the files in it will be permanently deleted + Ko je zbrisan, so podatki v njemu za vedno izgubljeni - + Cancel - - - - - Delete - + button + Prekini - - Delete File Vault - + + Use Key + button + Uporabi ključ - - Wrong password - + + Delete + button + Izbriši - - Failed to delete file vault - + + Removing... + Odstranjevanje... - + + OK - + button + V redu - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Vnesite 32-mestni obnovitveni ključ + + Wrong password + Napačno geslo - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Napačen obnovitveni ključ - - OK - + + Failed to delete file vault + Trezorja datotek ni bilo mogoče izbrisati - - Delete File Vault - + + Deleted successfully + Upešeno izbrisano - - Deleted successfully - + + Failed to delete + Brisanje ni uspelo @@ -6334,10 +6308,16 @@ Moj trezor - + File Vault Trezor datotek + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed Ni pravic za %1 @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Razvrsti po - + Display as Prikaži kot - + Name Ime - + Time modified Čas spremembe - + Size Velikost - + Type Vrsta - + Icon Ikona - + List Seznam - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Shrani @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Shrani - + Open button Odpri @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sq.ts b/translations/dde-file-manager_sq.ts index 6baec1bf8b..d6b0f0d61b 100644 --- a/translations/dde-file-manager_sq.ts +++ b/translations/dde-file-manager_sq.ts @@ -15,104 +15,99 @@ Application - + File Manager Përgjegjës Kartelash - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Përgjegjësi i Kartelave është një mjet i fuqishëm dhe i kollajtë për t’u përdorur për administrim kartelash, që përmban kërkim, kopjim, shpënie te hedhurinat, ngjeshje/çhngjeshje, veti kartelash dhe funksione të tjera të dobishme. - DesktopMain + DAttachedProtocolDevice - - Desktop - Desktop + + %1 on %2 + %1 në %2 - DeviceList + DeepinStorage - - Disks - Disqe + + + %1 Volume + Vëllim %1 - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Desktop + + + DiskControlWidget - - Open - Hape + + Disks + Disqe - - Eject all - Nxirri krejt + + The device was not safely removed + Pajisja s’u hoq në mënyrë të parrezik - - - DockItemDataManager - - The device has been safely removed - Pajisja u hoq në mënyrë të parrezik + + Click "Safely Remove" and then disconnect it next time + Herës tjetër klikoni mbi “Hiqe Në Mënyrë të Parrezik” dhe mandej shkëputeni - - eject - nxirre + + Disk is busy, cannot unmount now + Disku është i zënë, s’mund të çmontohet tani - - unmount - çmontoje + + The device is busy, cannot eject now + Pajisja është e zënë, s’mund të nxirret tani + + + DiskMountPlugin - - - remove - hiqe + + Disk + Disk - - Operation failed - Veprimi dështoi + + Open + Hape - - Device (%1) is busy, cannot %2 now. - Pajisja (%1) është e zënë, s’mund të %2 tani. + + Eject all + Nxirri krejt FileDialogHandle - + All Files Krejt Kartelat - - FileOperateBaseWorker - - - The file name or the path is too long! - Emri ose shtegu për te kartela është shumë i gjatë! - - MimeTypeDisplayManager - + Unknown I panjohur @@ -128,89 +123,88 @@ QObject - + need authorization to access lyp autorizim për hyrje - + Can't verify the identity of %1. S’verifikohet dot identiteti i %1. - + This happens when you log in to a computer the first time. Kjo ndodh kur bëni hyrjen për herë të parë në një kompjuter. - + The identity sent by the remote computer is Identiteti i dërguar nga kompjuteri i largët është - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Nëse doni të jeni absolutisht i sigurt se, të vazhdohet, është pa rrezik, lidhuni me përgjegjësin e sistemit. - - - + + + System Disk Disk Sistemi - + Data Disk Disk të Dhënash - + Blank %1 Disc Zbardh Diskun %1 - - - + + + Unknown E panjohur - + %1 Drive Pajisje %1 - + %1 Encrypted %1 i Fshehtëzuar - - + %1 Volume Vëllim %1 - + + Scanning the device, stop it? Po skanohet pajisja, të ndalet? - + Unmount failed Çmontimi dështoi - + Cannot stop scanning device S’ndalet dot pajisje skanimi - - + %1 on %2 %1 në %2 @@ -219,6 +213,7 @@ + Home Shtëpi @@ -228,6 +223,7 @@ + Desktop Desktop @@ -237,6 +233,7 @@ + Videos Video @@ -246,6 +243,7 @@ + Music Muzikë @@ -255,6 +253,7 @@ + Pictures Foto @@ -264,6 +263,7 @@ + Documents Dokumente @@ -273,6 +273,7 @@ + Downloads Shkarkime @@ -281,6 +282,7 @@ + Trash Hedhurina @@ -291,11 +293,12 @@ + Recent Së fundi - + @@ -303,7 +306,7 @@ Vetëmontoje - + @@ -316,46 +319,47 @@ %1 punë në përmbushje e sipër - + %1 item %1 objekt - + %1 items %1 objekte - + Unable to find the original file S’arrihet të gjendet kartela origjinale - - + + File has been moved or deleted Kartela është lëvizur ose fshirë - - + + + You do not have permission to access this folder S’keni leje të hyni te kjo dosje - - + + You do not have permission to traverse files in it S’keni leje për të kaluar kartela në të - - + + Folder is empty Dosja është e zbrazët - + Loading... Po ngarkohet… @@ -404,7 +408,7 @@ - + Built-in disks Disqe të brendshëm @@ -412,6 +416,7 @@ + Computer Kompjuter @@ -419,8 +424,9 @@ - - + + + Computers in LAN Kompjutera në LAN @@ -428,7 +434,7 @@ - + Loop partitions Pjesë “loop” @@ -436,8 +442,7 @@ - - + Mounted sharing folders Dosje të përbashkëta të montuara @@ -445,6 +450,7 @@ + My shares Ndarjet e mia @@ -452,7 +458,7 @@ - + Network Rrjet @@ -460,7 +466,7 @@ - + Mounted partitions and discs Pjesë dhe disqe të montuar @@ -468,7 +474,7 @@ - + Partitions Pjesë @@ -476,7 +482,7 @@ - + Quick access Përdorim i shpejtë @@ -484,7 +490,7 @@ - + Tag Etiketë @@ -492,7 +498,7 @@ - + Added tags Etiketa të shtuara @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Vazhdo të shfaqësh ndarje Samba të montuara @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Ndale - + Shortcut Shkurtore - + This system wallpaper is locked. Please contact your admin. Ky sfond sistemi është i kyçur. Ju lutemi, lidhuni me përgjegjësin tuaj. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopje) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (kopje %1) @@ -901,26 +909,33 @@ Bit + Access denied Hyrja u mohua + Confirm button Ripohojeni + + + The device has been safely removed + Pajisja u hoq në mënyrë të parrezik + - - + + - - - + + + Open in new window Hape në dritare të re @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Hape në skedë të re @@ -953,8 +968,8 @@ - - + + Properties Veti @@ -990,7 +1005,7 @@ Kartelë e Re - + Create symlink Krijo simlidhje @@ -1077,70 +1092,70 @@ Shtoje në disk - + Are you sure you want to erase all data on the disc? Jeni i sigurt se doni të fshihen krejt të dhënat te disku? - + Erase button Fshije - + This action cannot be undone Ky veprim s’mund të zhbëhet - + How do you want to use this disc? Si doni ta përdorni këtë disk? - + Burn image button Shkruani pamje - + Burn files button Shkruani kartela - + %1 is a duplicate file. %1 është kartelë e përsëdytur. - + Insufficient disc space. Hapësirë disku e pamjaftueshme. - + Lost connection to drive. Humbi lidhja me pajisjen. - + The CD/DVD drive is not ready. Try another disc. Pajisja CD/DVD s’është gati. Provoni disk tjetër. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Pajisja CD/DVD është e zënë. Dilni nga programi duke përdorur pajisjen dhe rifuteni pajisjen. - + Invalid volume name Emër i pavlefshëm vëllimi - + Unknown error Gabim i panjohur @@ -1179,42 +1194,42 @@ Objekte: %1 - + Orange Portokalli - + Red E kuqe - + Purple E purpurt - + Navy-blue Blu e errët - + Azure E kaltër - + Green E gjelbër - + Yellow E verdhë - + Gray Gri @@ -1290,76 +1305,76 @@ S’hyhet dot - + User directory Drejtori përdoruesi - + Local disk Disk vendor - + Removable disk Disk i heqshëm - + DVD DVD - + Network shared directory Drejtori e përbashkët në rrjet - - + + Android mobile device Pajisje celulare Android - + Apple mobile device Pajisje celulare Apple - + Unknown device Pajisje e panjohur - + Remove button Hiqe - + Do you want to remove this item? Doni të hiqet ky objekt? - + Do yout want to remove %1 items? Doni të hiqen %1 objekte? - + It does not delete the original files Kjo nuk sjell fshirjen e kartelave origjinale - + Clear recent history Spastro historik së fundi - - - + + + Source path Shteg burimi @@ -1404,12 +1419,12 @@ S’arrihet të hapen objekte te hedhurinat, ju lutemi, së pari rikthejini - + Empty Trash Zbraz Hedhurinat - + Location Vendndodhje @@ -1509,7 +1524,7 @@ Po kërkohet… - + My Vault Kasaforta Ime @@ -1704,7 +1719,7 @@ Dështoi - + Sidebar Anështyllë @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - E paautorizuar - - - - - In trial period - Në periudhë prove - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized E paautorizuar - - + + In trial period Në periudhë prove @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Koleksion i ri @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Sistemoni desktopin - + Desktop options Sistemoji sipas - + Organize by Koleksion vetjak - + Custom collection Lloj - + Type Lloji - + Time accessed Kohë përdorimi - + Time modified Kohë ndryshimi - + Time created Kohë krijimi - + Create a collection Krijoni një koleksion + + + Display Size + Madhësi Shfaqjeje + + + + Smaller + Më e vogël + + + + Normal + Normale + + + + Larger + E madhe + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Mundësi desktopi - + Auto arrange icons Vetësistemoji ikonat @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Madhësi shfaqjeje + + + Icon size Madhësi ikonash @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Përgjegjësi i Kartelave do të përditësohet me një version të ri dhe gjatë përditësimit, punët që janë duke u bërë, do të humbin. Doni të përditësohet tani? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Shërbimet desktop do të përditësohen me një version të ri dhe gjatë përditësimit punët që janë duke u bërë do të humbnin. Doni të përditësohet tani? - + Update button Përditësoje - + Cancel button Anuloje @@ -2360,7 +2385,7 @@ - + %1 item selected %1 objekt i përzgjedhur @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Veprimi dështoi! @@ -2529,191 +2554,191 @@ Dosja e synuar gjendet brenda dosjes burim! - + The passphrase is needed to access encrypted data on %1. Frazëkalimi është i nevojshëm për të hyrë te të dhëna të fshehtëzuara në %1. - - - - - - - - + + + + + + + + Cancel button Anuloje - + Format button Formatoje - + To access the device, you must format the disk first. Are you sure you want to format it now? Që të përdorni pajisjen, së pari duhet ta formatoni diskun. Jeni i sigurt se doni të formatohet tani? - + Do you want to run %1 or display its content? Doni që %1 të xhirohet, apo të shfaqet lënda e saj? - + It is an executable text file. Është kartelë tekst e ekzekutueshme. - - - + + + Run button Xhiroje - - + + Run in terminal button Xhiroje në terminal - + Display button Shfaqe - + Do you want to run %1? Doni të xhirohet %1? - + It is an executable file. Është kartelë e ekzekutueshme. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? S’shpihen dot te hedhurinat %1 e përzgjedhur. Doni të fshihen përgjithmonë? - + Permanently delete %1 items? Të fshihen përgjithmonë %1 objekte? - + Cannot move "%1" to the trash. Do you want to permanently delete it? S’shpihet dot te hedhurinat “%1”. Doni të fshihet përgjithmonë? - - - + + + Delete button Fshije - + Permanently delete %1? Të fshihet përgjithmonë %1? - - + + This action cannot be undone Ky veprim s’mund të zhbëhet - + Are you sure you want to empty %1 item? Jeni i sigurt se doni të zbrazet %1 objekt? - + Are you sure you want to empty %1 items? Jeni i sigurt se doni të zbrazen %1 objekte? - + Empty Zbraze - + Do you want to delete %1? Doni të fshihet %1? - + Do you want to delete the selected %1 items? Doni të fshihen %1 objektet e përzgjedhur? - + Failed to restore %1 file, the target folder is read-only S’u arrit të rikthehet %1 kartelë, dosja e synuar është vetëm-lexim - + Failed to restore %1 files, the target folder is read-only S’u arrit të rikthehen %1 kartela, dosja e synuar është vetëm-lexim - + "%1" already exists, please use another name. “%1” ekziston tashmë, ju lutemi, përdorni një emër tjetër. - + Device or resource busy Pajisje ose burim i zënë - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Kjo kartelë do të kalojë në fshehje, nëse emri i kartelës fillon me '.'. Doni të fshihet? - + Hide Fshihe - + Cancel Anuloje - + Unable to access %1 S’arrihet të hyhet në %1 - + %1 that this shortcut refers to has been changed or moved %1, së cilës i referohet kjo shkurtore, është ndryshuar ose lëvizur - + Do you want to delete this shortcut? Doni të fshihet kjo shkurtore? - + This file is not executable, do you want to add the execute permission and run? Kjo kartelë s’është e ekzekutueshme, doni të shtohet leja e ekzekutimit dhe të xhirohet? - + The selected files contain system file/directory, and it cannot be deleted Kartelat e përzgjedhura përmbajnë kartelë/drejtori sistemit dhe s’mund të fshihen @@ -2841,276 +2866,278 @@ Që të shfshehtëzohet disku, jepni fjalëkalimin - - dfmbase::RightValueWidget - - - Copy complete info - Kopjo hollësi të plota - - dfmbase::SettingBackend - + Always open folder in new window Hap përherë dosje në dritare të re - + Open file: Hapni kartelë: - + Click Klikim - + Double click Dyklikim - + New window and tab Dritare dhe skedë e re - + Open from default window: Hape prej dritares parazgjedhje: - - + + Computer Kompjuter - - + + Home Shtëpi - - + + Desktop Desktop - - + + Videos Video - - + + Music Muzikë - - + + Pictures Foto - - + + Documents Dokumente - - + + Downloads Shkarkime - + Open in new tab: Hape në skedë të re: - + Current Directory Drejtoria e Tanishme - + Files and folders Kartela dhe dosje - + Show hidden files Shfaq kartela të fshehura - + Show file extensions Shfaq zgjatime kartelash - + Mix sorting of files and folders Renditje e përzierë kartelash dhe dosjesh - + Workspace Hapësirë pune - + View Shihni - + Default size: Madhësi parazgjedhje: - + Extra small Ekstra e vogël - + Small E vogël - + Medium Mesatare - + Large E madhe - + Extra large Ekstra e madhe - - Tree - Pemë - - - + Default view: Pamje parazgjedhje: - + Icon Ikonë - + List Listë - - Restore default view mode for all directories - Rikthe mënyrë parazgjedhje parjeje për krejt drejtoritë - - - - Restore default view mode - Rikthe mënyrë parazgjedhje parjeje - - - + Thumbnail preview Paraparje miniaturash - + Compressed file preview Paraparje kartelash të ngjeshura - + Text preview Paraparje teksti - + Document preview Paraparje dokumenti - + Image preview Paraparje figure - + Video preview Paraparje e videos - + Music preview Paraparje muzikore - + The remote environment shows thumbnail previews Mjedisi i largët shfaq paraparje miniaturë - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Aktivizimi i paraparjes së miniaturave mund të bëjë që drejtoria e largët të ngarkohet më ngadalë, ose veprimi të ngrijë - + Advanced Të mëtejshme - + + Search + Kërko + + + + Auto index internal disk + Vetëindekso disqe të brendshëm + + + + Index external storage device after connected to computer + Indekso pajisje të jashtme depozitimi pas lidhjes me kompjuterin + + + + Full-Text search + Kërkim në Krejt Tekstin + + + Mount Montoje - + Auto mount Vetëmontim - + Open after auto mount Hape pas vetëmontimi - + + Show item counts and sizes in the path of mounted MTP devices + Shfaq numër dhe madhësi objektesh te shtegu i pajisjeve MTP të montuara + + + Merge the entries of Samba shared folders Përzje zërat e dosjeve pjesë Samba - + Switching the entry display may lead to failed mounting Ndërrimi i shfaqjes së zërit mund të shpjerë në dështim të montimit - + Use the file chooser dialog of File Manager Përdorni dialogun e zgjedhjes së kartelave të Përgjegjësit të Kartelave - + Ask for my confirmation when deleting files Kërko ripohim prej meje, kur fshihen kartela @@ -3274,56 +3301,51 @@ - Switch to tree view - Kalo në pamjen si pemë - - - Others Të tjera - + Close Mbylle - + Close current tab Mbyll skedën e tanishme - + Back Mbrapsht - + Forward Përpara - + Switch to next tab Kalo te skeda pasuese - + Switch to previous tab Kalo te skeda e mëparshme - + Next file Kartela pasuese - + Previous file Kartela e mëparshme - + Switch tab by specified number between 1 to 8 Kaloni nga një skedë në tjetër, përmes numri të dhënë nga 1 deri në 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Kohë kur u ndryshua: %1 - + Original folder Dosja origjinale - + Contains: %1 Përmban: %1 - + Original file Kartelë origjinale - + Size: %1 Madhësi: %1 - + Target folder Dosja e synuar - - + In data statistics ... Në statistika të dhënash … - + Target file Kartela e synuar @@ -3445,37 +3466,37 @@ Ju lutemi, prisni - + Keep both button Mbaji të dyja - + Skip button Anashkaloje - - + + Replace button Zëvendësoje - + Do not ask again Mos pyet sërish - + Retry button Riprovo - + Merge button Përzieji @@ -3489,7 +3510,7 @@ Që të mbrohen dosje të përbashkëta, jepni një fjalëkalim - + Set a password on the shared folder for non-anonymous access Caktoni një fjalëkalim mbi dosjen e ndarë me të tjerë, për përdorim jo anonim @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Na ndjeni, s’arrihet të lokalizohet drejtoria juaj për përdorim të shpejtë, mos e keni hequr? - + Cancel button Anuloje - + Remove button Hiqe @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Kompjuter - + Computer display items - + Hide built-in disks on the Computer page Fshih disqe të brendshëm te faqja Kompjuter - + Hide loop partitions on the Computer page Fshih pjesë “loop” te faqja Kompjuter - + Show file system on disk icon Shfaq sistem kartelash në ikonë disku - + Hide My Directories on the Computer page Fshihi Drejtoritë e Mia te faqja Kompjuter - + Hide 3rd party entries on the Computer page Fshih zëra prej palësh të treta te faqja Kompjuter @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - Shkyçja e pajisjes dështoi + Tani po shkyçet pajisja - + Wrong password Fjalëkalim i gabuar - + Rename failed Riemërtimi dështoi - + The device is busy and cannot be renamed now Pajisja është e zënë dhe s’mund të riemërtohet tani - + Format failed Formatimi dështoi - + The device is busy and cannot be formatted now Pajisja është e zënë dhe s’mund të formatohet tani - + Mount error Gabim montimi disku - + Cannot access %1 S’hyhet dot në %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Kompjuter - + %1 is read-only. Do you want to enable read and write permissions for it? %1 është vetëm për lexim. Doni të aktivizohen leje shkrimi dhe leximi për të? - + Once enabled, read/write permission will be granted permanently Pasi të aktivizohen, lejet për lexim/shkrim do të akordohen për gjithnjë - + Cancel Anuloje - + Enable Now Aktivizoji Tani @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Drejtoritë e Mia - + Disks Disqe @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Hollësi elementare - + Device type Lloj pajisjeje - + Total space Hapësirë gjithsej - + File system Sistem kartelash - + Contains Përmban - + Free space Hapësirë e lirë - + %1 items %1 objekte - + %1 item %1 objekt @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 në %2 @@ -3968,27 +3990,27 @@ Madhësi - + Dimension Përmasë - + Duration Kohëzgjatje - + Type Lloj - + Accessed Përdorur më - + Modified Ndryshuar më @@ -4258,7 +4280,7 @@ Failed to move the file %1 to trash - S’u arrit të shpihej kartela %1 te hedhurinat + @@ -4275,7 +4297,7 @@ Failed, the file size of %1 must be less than 4 GB - Dështoi, madhësia e kartelës për %1 duhet të jetë më pak se 4GB + Dështoi, madhësia %1 e kartelave duhet të jetë më pak se 4GB @@ -4335,7 +4357,7 @@ Copy or Cut File failed! - Kopjimi ose Prerja e Kartelës dështoi! + @@ -4365,7 +4387,7 @@ Failed to move the file %1 to trash, cause: %2 - S’u arrit të shpihej kartela %1 te hedhurinat, shkaku: %2 + @@ -4384,8 +4406,8 @@ - Copy or Cut File failed, cause: %1 - Kopjimi ose Prerja e Kartelës dështoi,shkaku: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4439,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Gabim riemërtimi kartele - + Failed to create the directory S’u arrit të krijohej drejtoria - + Failed to create the file S’u arrit të krijohet kartela - + link file error gabim lidhjeje kartele - - + + Failed to modify file permissions - S’u arrit të ndryshohen leje mbi kartela + @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - &Ngjite + Paste + Ngjite - Cu&t - &Prije + Cut + Prije - &Copy - &Kopjoje + Copy + Kopjoje dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - &Hap + Open + Hape - Rena&me - Ri&emërtojeni + Rename + Riemërtoni - &Delete - &Fshije + Delete + Fshije @@ -4557,11 +4579,6 @@ Open in terminal Hape në terminal - - - Reverse select - Ktheje së prapthi përzgjedhjen - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Dërgoje te - - Bluetooth - Bluetooth - - - + Create link Krijo lidhje - + Send to desktop Dërgoje në desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Ndarje me të tjerët + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - &Hap + + Open + Hape - + Open in new window Hape në dritare të re - + Open in new tab Hape në skedë të re - + Cancel sharing Anuloje ndarjen me të tjerët - - P&roperties - &Veti + + Properties + Veti dfmplugin_myshares::MyShares - + My Shares Ndarjet e Mia @@ -4683,7 +4700,7 @@ S’ka kartela për shkrim - + Unable to burn. Not enough free space on the target disk. S’arrihet të shkruhet. S’ka hapësirë të mjaftueshme te disku i synuar. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Hollësi elementare - + Size Madhësi - + Contains Përmban - + Type Lloj - + Location Vendndodhje - + Time created Kohë krijimi - + Time accessed Kohë përdorimi - + Time modified Kohë ndryshimi - + Hide this file Fshihe këtë kartelë - - + + %1 item %1 objekt - + %1 items %1 objekte @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Për Siguri të Fshehtash - + For Government Për Qeveri - + For Enterprise Për Ndërmarrje - + Bit Bit - + Available Të passhme @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Kompjuter - + Basic Info Hollësi Elementare - + Computer name Emër kompjuteri - + Version Version - + Edition Edicion - + OS build Montim OS-i - + Type Lloj - + Processor Procesor - + Memory Kujtesë @@ -4874,14 +4891,6 @@ %1 kartelë(a), %2 dosje(e) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - Nuk lejohen %1 - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - &Veti + Properties + Veti dfmplugin_recent::Recent - + + Recent Së fundi @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Shteg - + Last access Përdorimi i fundit - + Recent Së fundi @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Kërko: - + File Type: Lloj Kartele: - + File Size: Madhësi Kartele: - + Time Modified: Kohë Kur u Ndryshua: - + Time Accessed: Kohë Kur u Hap: - + Time Created: Kohë Kur u Krijua: - + Reset Ktheje te parazgjedhjet - + All subdirectories Krejt nëndrejtoritë - + Current directory Drejtoria e tanishme - + Application Aplikacion - + Video Video - + Audio Audio - + Image Figurë - + Archive Arkiv - + Text Tekst - + Executable E ekzekutueshme - + Backup file Kartelë kopjeruajtje - + Today Sot - + Yesterday Dje - + This week Këtë javë - + Last week Javën e fundit - + This month Këtë muaj - + Last month Muajin e fundit - + This year Këtë vit - + Last year Vitin e shkuar @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Kërko - - - Auto index internal disk - Indekso automatikisht disk të brendshëm - - - - Index external storage device after connected to computer - Indekso pajisje të jashtme depozitimi, pasi lidhet me kompjuterin - - - - Full-Text search - Kërkim në Krejt Tekstin - dfmplugin_search::SearchHelper - + Path Shteg @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Hap vendndodhje kartele - + Select all Përzgjidhi krejt - + Path Shteg @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Hyrje e shpejtë - + Partitions Pjesë - + Network Rrjet - + Tag Etiketë - + + Bookmark + Faqerojtës + + + Other Tjetër - + Unknown Group Gabim i Panjohur + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Kompjutera në LAN + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - &Hap + Open + Hape @@ -5184,8 +5191,8 @@ - P&roperties - &Veti + Properties + Veti @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Etiketë @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Hap vendndodhje kartele @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Lidhu te Shërbyesi - - - + + + Clear History Spastro Historikun - + Unfavorite Hiqe nga të parapëlqyerat - - Error - Gabim - - - - Unable to favorite illegitimate url! - - - - + Cancel button Anuloje - + Connect button Lidhu - + Charset Encoding Kodim Shkronjash - + Default Parazgjedhje - + My Favorites Të parapëlqyerat e Mia - + No favorites yet Ende pa të parapëlqyera - + Favorite Vëre te të parapëlqyerat @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Shteg Burimi - + Time deleted Kohë fshirjeje @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Riktheje - + Restore all Riktheji krejt - + Empty trash Zbraz hedhurinat - + Source path Shteg burimi - + Time deleted Kohë fshirjeje @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Hedhurina @@ -5530,17 +5527,17 @@ Hedhurina - + item objekt - + items objekte - + Contains %1 %2 Përmban %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info Hollësi elementare - + Size Madhësi - + Contains Përmban - + Type Lloj - + Location Vendndodhje - + Time created Kohë krijimi - + Time accessed Kohë përdorimi - + Time locked Kyçur me kohë @@ -5988,7 +5985,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Fshehtëzo Kasafortë Kartelash @@ -6009,19 +6006,19 @@ - - - + + + Encrypt Fshehtëzoje - + Failed to create file vault: %1 S’u arrit të krijohej kasafortë kartelash: %1 - + OK OK @@ -6072,7 +6069,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Caktoni Fjalëkalim Kasaforte @@ -6098,7 +6095,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 shenja, përmban A-Z, a-z, 0-9 dhe simbole @@ -6133,8 +6130,8 @@ Pasuesi - - + + Passwords do not match Fjalëkalimet s’përputhen @@ -6142,7 +6139,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Kasafortë Kartelash @@ -6192,7 +6189,7 @@ dfmplugin_vault::VaultHelper - + Vault Kasafortë @@ -6202,7 +6199,7 @@ Kasaforta s’mund të përdoret, ngaqë s’është instaluar cryfs! - + A task is in progress, so it cannot perform your operation Ka në zhvillim një punë, ndaj s’mund të kryejë veprimin tuaj @@ -6210,122 +6207,99 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Kasaforta Ime - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Anuloje - - - - Delete - Fshije - - - - Delete File Vault - Fshi Kasafortë Kartelash - - - - Failed to delete file vault - S’u arrit të fshihet kasafortë kartelash - - - - OK - OK - - - - Once deleted, the files in it will be permanently deleted - Pasi të jetë fshirë, kartelat në të do të fshihen përgjithnjë - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - Pasi të jetë fshirë, kartelat në të do të fshihen përgjithnjë - - - + Password Fjalëkalim - + Password hint: %1 Ndihmëz fjalëkalimi: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Anuloje - - - - Delete - Fshije + + Input the 32-digit recovery key + Jepni kyçin 32-shifror të rimarrjeve + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Fshi Kasafortë Kartelash - - Wrong password - Fjalëkalim i gabuar + + Once deleted, the files in it will be permanently deleted + Pasi të jetë fshirë, kartelat në të do të fshihen përgjithnjë - - Failed to delete file vault - S’u arrit të fshihet kasafortë kartelash + + Cancel + button + Anuloje - - OK - OK + + Use Key + button + Përdor Kyç - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Jepni kyçin 32-shifror të rimarrjeve + + Delete + button + Fshije - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Po hiqet… - + + OK + button OK - - Delete File Vault - Fshi Kasafortë Kartelash + + Wrong password + Fjalëkalim i gabuar - + + Wrong recovery key + Kyç rimarrjesh i gabuar + + + + Failed to delete file vault + S’u arrit të fshihet kasafortë kartelash + + + Deleted successfully U fshi me sukses + + + Failed to delete + S’u arrit të fshihet + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6309,16 @@ Kasaforta Ime - + File Vault Kasafortë Kartelash + + + + Vault + Kasafortë + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6331,22 @@ dfmplugin_workspace::FileViewModel - + Name Emër - + Time modified Kohë ndryshimi - + Size Madhësi - + Type Lloj @@ -6382,7 +6362,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed Nuk lejohen %1 @@ -6398,50 +6378,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Renditi sipas - + Display as Shfaqe si - + Name Emër - + Time modified Kohë ndryshimi - + Size Madhësi - + Type Lloj - + Icon Ikonë - + List Listë - - - Tree - Pemë - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6429,7 @@ filedialog_core::FileDialog - + Save button Ruaje @@ -6463,13 +6438,13 @@ filedialog_core::FileDialogStatusBar - + Save button Ruaje - + Open button Hape @@ -6507,112 +6482,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Madhësi të përdorshme: - + Custom Size Madhësi Vetjake - + Device Pixel Ratio: Përpjestim Pikselash i Pajisjes: - + Theme: Temë: - + Light E çelët - + Dark E errët - + Mode: Mënyrë: - + Normal Normale - + Disabled E çaktivizuar - + Hovered Kur kalohet kursori përsipër - + Pressed Kur shtypet - + Palette Paletë - + Current mode icon does not support the palette Ikona e tanishme për mënyrën nuk mbulon paletën - + Foreground: - + Background: Sfond: - + Highlight: Theksim: - + HighlightForeground: - + Background Color: Ngjyrë Sfondi: - + White E bardhë - + Black E zezë - + Transparent E tejdukshme - + Custom Vetjake @@ -6644,24 +6619,24 @@ plugin_filepreview::MusicMessageView - + Artist: Artist: - + Album: Album: - + unknown artist artist i panjohur - + unknown album album i panjohur - \ No newline at end of file + diff --git a/translations/dde-file-manager_sr.ts b/translations/dde-file-manager_sr.ts index f61c93e159..06a886529d 100644 --- a/translations/dde-file-manager_sr.ts +++ b/translations/dde-file-manager_sr.ts @@ -15,104 +15,99 @@ Application - + File Manager Управник Података - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Управник Података је моћан алат за управљање датотекама који је лак за коришћење. Поседује претрагу, копирање, смеће, запакивање, распакивање, својства датотека и многе друге корисне функције. - DesktopMain + DAttachedProtocolDevice - - Desktop - Радна површина + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Логички диск - DiskMountPlugin + DesktopMain - - Disk - Диск + + Desktop + Радна површина + + + DiskControlWidget - - Open - Отвори + + Disks + Дискови - - Eject all - Избаци све + + The device was not safely removed + Уређај није безбедно уклоњен - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Следећи пут, кликните на "Безбедно уклони", затим уклоните уређај - - eject - + + Disk is busy, cannot unmount now + Диск је у употреби, тренутно се не може демонтирати - - unmount - + + The device is busy, cannot eject now + Уређај је заузет, не може се избацити + + + DiskMountPlugin - - - remove - + + Disk + Диск - - Operation failed - + + Open + Отвори - - Device (%1) is busy, cannot %2 now. - + + Eject all + Избаци све FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Непознато @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Ово се дешава када се први пут пријавите на рачунар. - + The identity sent by the remote computer is Идентитет послат од удаљеног рачунара је - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Ако желите да будете сигурни да је безбедно наставити, контактирајте администратора. - - - + + + System Disk Системски диск - + Data Disk Складиште - + Blank %1 Disc Празан %1 диск - - - + + + Unknown Непознато - + %1 Drive %1 Уређај - + %1 Encrypted %1 Шифровано - - + %1 Volume %1 Логички диск - + + Scanning the device, stop it? Проверавање уређаја, зауставити? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Лично @@ -228,6 +223,7 @@ + Desktop Радна површина @@ -237,6 +233,7 @@ + Videos Видео @@ -246,6 +243,7 @@ + Music Музика @@ -255,6 +253,7 @@ + Pictures Слике @@ -264,6 +263,7 @@ + Documents Документи @@ -273,6 +273,7 @@ + Downloads Преузимања @@ -281,6 +282,7 @@ + Trash Смеће @@ -291,11 +293,12 @@ + Recent Недавно - + @@ -303,7 +306,7 @@ Самомонтирај - + @@ -316,46 +319,47 @@ %1 задатака у току - + %1 item %1 ставка/и - + %1 items %1 ставки/е - + Unable to find the original file Не могу да пронађем изворну датотеку - - + + File has been moved or deleted Датотека је премештена или обрисана - - + + + You do not have permission to access this folder Немате дозволу да приступите овој фасцикли - - + + You do not have permission to traverse files in it Немате дозволу да пролазите датотеке које садржи - - + + Folder is empty Фасцикла је празна - + Loading... Учитавање... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Рачунар @@ -419,8 +424,9 @@ - - + + + Computers in LAN Рачунари у ЛАН-у @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Ознака @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Заустави - + Shortcut Пречица - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Бит + Access denied Забрањен приступ + Confirm button Потврди + + + The device has been safely removed + Уређај је безбедно уклоњен + - - + + - - - + + + Open in new window Отвори у новом прозору @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Отвори у новој картици @@ -953,8 +968,8 @@ - - + + Properties Својства @@ -990,7 +1005,7 @@ Нова датотека - + Create symlink Направи симболичку везу @@ -1077,70 +1092,70 @@ Додај на диск - + Are you sure you want to erase all data on the disc? Заиста желите да обришете све податке са диска? - + Erase button Обриши - + This action cannot be undone Ова радња је неповратна - + How do you want to use this disc? Како желите да користите диск? - + Burn image button Нарежи одраз - + Burn files button Нарежи датотеке - + %1 is a duplicate file. %1 је дупликат. - + Insufficient disc space. Недовољно простора на диску. - + Lost connection to drive. Прекинута веза са уређајем. - + The CD/DVD drive is not ready. Try another disc. ЦД/ДВД уређај није спреман. Покушајте са другим диском. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. ЦД/ДВД уређеј је заузет. Изађите из програма за уређај и прикључите уређај поново. - + Invalid volume name - + Unknown error Непозната грешка @@ -1179,42 +1194,42 @@ Ставки: %1 - + Orange Наранџаста - + Red Црвена - + Purple Љубичаста - + Navy-blue Плава - + Azure Азурна - + Green Зелена - + Yellow Жута - + Gray Сива @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Локални диск - + Removable disk Уклоњиви диск - + DVD ДВД - + Network shared directory Мрежно дељени директоријум - - + + Android mobile device Андроид мобилни уређај - + Apple mobile device Apple мобилни уређај - + Unknown device Непознат уређај - + Remove button Уклони - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Очисти недавну историју - - - + + + Source path Путања @@ -1404,12 +1419,12 @@ Неуспешно отварање ставки у смећу, прво их вратите - + Empty Trash Испразни смеће - + Location Локација @@ -1509,7 +1524,7 @@ Претрага... - + My Vault Мој трезор @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Није овлашћен - - + + In trial period Пробни период - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Врста - + Time accessed Приступљено - + Time modified Измењено - + Time created Настало - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Величина иконица @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 ставка изабрана @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button У реду - + Operation failed! Операција неуспешна! @@ -2529,191 +2554,191 @@ Одредишна фасцикла је унутар изворне фасцикле! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Откажи - + Format button Форматирање - + To access the device, you must format the disk first. Are you sure you want to format it now? Да приступите уређају, морате га прво форматирати. Заиста желите да га форматирате сад? - + Do you want to run %1 or display its content? Да ли желите да покренете %1 или да прикажете садржај? - + It is an executable text file. Ово је извршна текстуална датотека. - - - + + + Run button Покрени - - + + Run in terminal button Покре. у терминалу - + Display button Прикажи - + Do you want to run %1? Желите да покренете %1? - + It is an executable file. Ово је извршна датотека. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Трајно обриши %1 ставки/е? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Обриши - + Permanently delete %1? Трајно обриши %1? - - + + This action cannot be undone Ова радња је неповратна - + Are you sure you want to empty %1 item? Заиста желите да испразните %1 ставку? - + Are you sure you want to empty %1 items? Заиста желите да испразните %1 ставки/е? - + Empty Испразни - + Do you want to delete %1? Желите ли да обришете %1? - + Do you want to delete the selected %1 items? Желите ли да обришете изабране/их %1 ставке/и? - + Failed to restore %1 file, the target folder is read-only Неуспешно враћање %1 датотеке, одредишна фасцикла је само за читање - + Failed to restore %1 files, the target folder is read-only Неуспешно враћање %1 датотеке/а, одредишна фасцикла је само за читање - + "%1" already exists, please use another name. "%1" већ постоји, молимо користите друго име. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Ова датотека ће бити скривена ако име почиње са '.'. Заиста желите да је сакријете? - + Hide - + Cancel Откажи - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 на шта ова пречица показује је промењено или померено - + Do you want to delete this shortcut? Да ли желите да обришете ову пречицу? - + This file is not executable, do you want to add the execute permission and run? Ова датотека није извршна. Желите ли да додате дозволу за извршење и покренете? - + The selected files contain system file/directory, and it cannot be deleted Изабране датотеке садрже системску датотеку или директоријум и зато се не могу обрисати @@ -2841,276 +2866,278 @@ Унесите лозинку за дешифровање диска - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Остало - + Close Затвори - + Close current tab Затвори тренутну картицу - + Back Назад - + Forward Напред - + Switch to next tab Пређи на следећу картицу - + Switch to previous tab Пређи на претходну картицу - + Next file Следећа датотека - + Previous file Претходна датотека - + Switch tab by specified number between 1 to 8 Мењај картице одабиром бројева од 1 до 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 Измењено:%1 - + Original folder Првобитна фасцикла - + Contains: %1 Садржи: %1 - + Original file Првобитна датотека - + Size: %1 Величина: %1 - + Target folder Одредишна фасцикла - - + In data statistics ... - + Target file Одредишна датотека @@ -3445,37 +3466,37 @@ Молимо сачекајте - + Keep both button Задржи оба - + Skip button Прескочи - - + + Replace button Замени - + Do not ask again Не питај ме поново - + Retry button Понови - + Merge button Спој @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Откажи - + Remove button Уклони @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Рачунар - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Рачунар - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Моји директоријуми - + Disks Дискови @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Врста уређаја - + Total space Укупан простор - + File system Систем датотека - + Contains Садржи - + Free space Слободно - + %1 items %1 ставки/е - + %1 item %1 ставка/и @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Величина - + Dimension Димензије - + Duration Трајање - + Type Врста - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Убаци - Cu&t - + Cut + Исеци - &Copy - + Copy + Копирај dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Отвори - Rena&me - + Rename + Преименуј - &Delete - + Delete + Обриши @@ -4557,11 +4579,6 @@ Open in terminal Отвори у терминалу - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Пошаљи у - - Bluetooth - - - - + Create link Направи везу - + Send to desktop Пошаљи на радну површину @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + Блутут + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Отвори - + Open in new window Отвори у новом прозору - + Open in new tab Отвори у новој картици - + Cancel sharing Откажи дељење - - P&roperties - + + Properties + Својства dfmplugin_myshares::MyShares - + My Shares Моја дељења @@ -4683,7 +4700,7 @@ Нема датотека за нарезивање - + Unable to burn. Not enough free space on the target disk. Немогуће нарезати. Недовољно простора на одредишном диску. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Величина - + Contains Садржи - + Type Врста - + Location Локација - + Time created Настало - + Time accessed Приступљено - + Time modified Измењено - + Hide this file Сакриј датотеку - - + + %1 item %1 ставка/и - + %1 items %1 ставки/е @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Бит - + Available Слободно @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Рачунар - + Basic Info Основни подаци - + Computer name - + Version Верзија - + Edition Издање - + OS build - + Type Врста - + Processor Процесор - + Memory Меморија @@ -4874,14 +4891,6 @@ %1 датотеке(а), %2 фасцикле(и) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Својства dfmplugin_recent::Recent - + + Recent Недавно @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Путања - + Last access Последњи приступ - + Recent Недавно @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Претражи: - + File Type: Врста датотеке: - + File Size: Величина датотеке: - + Time Modified: Измењено: - + Time Accessed: Приступљено: - + Time Created: Настало: - + Reset Поништи - + All subdirectories Сви под-директоријуми - + Current directory Тренутни директоријум - + Application Програм - + Video Видео - + Audio Звук - + Image Слика - + Archive Архива - + Text Текст - + Executable Извршна - + Backup file Резерва - + Today Данас - + Yesterday Јуче - + This week Ове недеље - + Last week Прошле недеље - + This month Овог месеца - + Last month Прошлог месеца - + This year Ове године - + Last year Прошле године @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Претражи - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Путања @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Отвори локацију датотеке - + Select all Изабери све - + Path @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Ознака - + + Bookmark + + + + Other Остало - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Рачунари у ЛАН-у + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Отвори @@ -5184,7 +5191,7 @@ - P&roperties + Properties @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Ознака @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Отвори локацију датотеке @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Повежи се са сервером - - - + + + Clear History Очисти историју - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Откажи - + Connect button Повежи - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Путања - + Time deleted Обрисано @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Врати - + Restore all Врати све - + Empty trash - + Source path Путања - + Time deleted Обрисано @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Смеће @@ -5530,17 +5527,17 @@ Смеће - + item ставку/и - + items ставки/е - + Contains %1 %2 Садржи %1 %2 @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Величина - + Contains Садржи - + Type Врста - + Location Локација - + Time created Настало - + Time accessed Приступљено - + Time locked Закључано @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Шифруј трезор датотека @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Шифруј - + Failed to create file vault: %1 Неуспешно прављење трезора: %1 - + OK У реду @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Постави лозинку трзора @@ -6097,7 +6094,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 карактера, садржај A-Z, a-z, 0-9, и симболи @@ -6132,8 +6129,8 @@ Следеће - - + + Passwords do not match Лозинке се не подударају @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Трезор датотека @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6201,7 +6198,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6209,121 +6206,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Мој трезор - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Лозинка - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Подсетник лозинке: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + Унесите 32-цифрени кључ за опоравак + + + dfmplugin_vault::VaultRemovePages - - Password - Лозинка + + Delete File Vault + Обриши трезор - - Password hint: %1 - Подсетник лозинке: %1 + + Once deleted, the files in it will be permanently deleted + Након уклањања, биће трајно обрисане све припадајуће датотеке - + Cancel - - - - - Delete - + button + Откажи - - Delete File Vault - + + Use Key + button + Употреби кључ - - Wrong password - + + Delete + button + Обриши - - Failed to delete file vault - + + Removing... + Уклањање... - + + OK - + button + У реду - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Унесите 32-цифрени кључ за опоравак + + Wrong password + Погрешна лозинка - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Погрешан кључ за опоравак - - OK - + + Failed to delete file vault + Неуспешно брисање трезора - - Delete File Vault - + + Deleted successfully + Успешно обрисано - - Deleted successfully - + + Failed to delete + Неуспешно брисање @@ -6334,10 +6308,16 @@ Мој трезор - + File Vault Трезор датотека + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Поређај по - + Display as Прикажи као - + Name Име - + Time modified Измењено - + Size Величина - + Type Врста - + Icon Иконице - + List Списак - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Сачувај @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Сачувај - + Open button Отвори @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sv.ts b/translations/dde-file-manager_sv.ts index b9696ba10e..8bc4c92586 100644 --- a/translations/dde-file-manager_sv.ts +++ b/translations/dde-file-manager_sv.ts @@ -15,104 +15,99 @@ Application - + File Manager Filhanterare - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - Skrivbord + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Volym - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Skrivbord + + + DiskControlWidget - - Open - Öppna + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject - + + Disk is busy, cannot unmount now + Disken är upptagen, kan ej avmontera nu - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + Öppna - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Okänd @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk System Disk - + Data Disk Data Disk - + Blank %1 Disc - - - + + + Unknown Okänd - + %1 Drive - + %1 Encrypted - - + %1 Volume %1 Volym - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Hem @@ -228,6 +223,7 @@ + Desktop Skrivbord @@ -237,6 +233,7 @@ + Videos Videos @@ -246,6 +243,7 @@ + Music Musik @@ -255,6 +253,7 @@ + Pictures Bilder @@ -264,6 +263,7 @@ + Documents Dokument @@ -273,6 +273,7 @@ + Downloads Hämtningar @@ -281,6 +282,7 @@ + Trash Papperskorg @@ -291,11 +293,12 @@ + Recent Tidigare - + @@ -303,7 +306,7 @@ Automontera - + @@ -316,46 +319,47 @@ %1 uppgifter pågår - + %1 item %1 objekt - + %1 items %1 objekt - + Unable to find the original file - - + + File has been moved or deleted Filen har flyttats eller tagits bort - - + + + You do not have permission to access this folder Du har en behörighet att bearbeta denna mapp - - + + You do not have permission to traverse files in it - - + + Folder is empty Mappen är tom - + Loading... Läser in... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Dator @@ -419,8 +424,9 @@ - - + + + Computers in LAN Nätverk @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut Genväg - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Åtkomst nekad + Confirm button Bekräfta + + + The device has been safely removed + + - - + + - - - + + + Open in new window Öppna i nytt fönster @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Öppna i ny flik @@ -953,8 +968,8 @@ - - + + Properties Egenskaper @@ -990,7 +1005,7 @@ - + Create symlink Skapa länk @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? Är du säker du vill radera all data på skivan? - + Erase button Radera - + This action cannot be undone Denna åtgärd kan ej ångras - + How do you want to use this disc? Hur vill du använda denna skivan? - + Burn image button Bränn avbild - + Burn files button Bränn filer - + %1 is a duplicate file. %1 är en dublett. - + Insufficient disc space. Otillräckligt skivutrymme - + Lost connection to drive. Förlorade kontakt till enhet. - + The CD/DVD drive is not ready. Try another disc. CD/DVD enhet är ej redo. Prova med en annan skiva. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error Okänt fel @@ -1179,42 +1194,42 @@ Objekt: %1 - + Orange Orange - + Red Röd - + Purple Lila - + Navy-blue Skeppsblå - + Azure Blå - + Green Grön - + Yellow Gul - + Gray Grå @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Lokal disk - + Removable disk Flyttbar disk - + DVD DVD - + Network shared directory Nätverksmapp - - + + Android mobile device Android enhet - + Apple mobile device Apple enhet - + Unknown device Okänd enhet - + Remove button Ta bort - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history Rensa tidigare historik - - - + + + Source path Målsökväg @@ -1404,12 +1419,12 @@ - + Empty Trash Töm Papperskorg - + Location Plats @@ -1509,7 +1524,7 @@ Söker... - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Typ - + Time accessed - + Time modified Modifierad - + Time created Skapad - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Ikonstorlek @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 valt objekt @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button OK - + Operation failed! Operation misslyckades! @@ -2529,191 +2554,191 @@ Målmappen är inuti källmappen! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Avbryt - + Format button Formatera - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? Vill du köra %1 eller visa dess innehåll? - + It is an executable text file. Det är en körbar textfil. - - - + + + Run button Kör - - + + Run in terminal button Kör i terminal - + Display button Visa - + Do you want to run %1? Vill du köra %1? - + It is an executable file. Det är en körbar fil. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? Radera %1 objekt permanent? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Radera - + Permanently delete %1? Radera %1 permanent? - - + + This action cannot be undone Denna åtgärd kan ej ångras - + Are you sure you want to empty %1 item? Är du säker du vill tömma %1 objekt? - + Are you sure you want to empty %1 items? Är du säker du vill tömma %1 objekt? - + Empty Tom - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. "%1" existerar redan, var god välj ett annat namn. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Avbryt - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved %1 som denna genväg refererar till har ändrats eller flyttats - + Do you want to delete this shortcut? Vill du radera denna genväg ? - + This file is not executable, do you want to add the execute permission and run? Denna filen är ej körbar, vill du göra filen körbar och sedan starta den? - + The selected files contain system file/directory, and it cannot be deleted De valda filerna innehåller system filer/mappar, och kan ej raderas @@ -2841,276 +2866,278 @@ Skriv in lösenord för att avkryptera disken - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Annat - + Close Stäng - + Close current tab Stäng nuvarande flik - + Back Tillbaka - + Forward Framåt - + Switch to next tab Växla till nästa flik - + Switch to previous tab Växla till föregående flik - + Next file Nästa fil - + Previous file Föregående fil - + Switch tab by specified number between 1 to 8 Ändra flik genom att specificera nummer mellan 1 till 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder Ursprunglig mapp - + Contains: %1 - + Original file Ursprunglig fil - + Size: %1 Storlek: %1 - + Target folder Målmapp - - + In data statistics ... - + Target file Målfil @@ -3445,37 +3466,37 @@ - + Keep both button Behåll båda - + Skip button Skippa - - + + Replace button Ersätt - + Do not ask again Fråga inte igen - + Retry button Försök igen - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Avbryt - + Remove button Ta bort @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Dator - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Dator - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Mina bibliotek - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Typ - + Total space Totalt utrymme - + File system - + Contains Innehåller - + Free space Ledigt utrymme - + %1 items %1 objekt - + %1 item %1 objekt @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Storlek - + Dimension - + Duration - + Type Typ - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Klistra in - Cu&t - + Cut + Klipp ut - &Copy - + Copy + Kopiera dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Öppna - Rena&me - + Rename + Döp om - &Delete - + Delete + Radera @@ -4557,11 +4579,6 @@ Open in terminal Öppna i terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Skicka till - - Bluetooth - - - - + Create link Skapa länk - + Send to desktop Skicka till skrivbord @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Öppna - + Open in new window Öppna i nytt fönster - + Open in new tab Öppna i ny flik - + Cancel sharing Avbryt delning - - P&roperties - + + Properties + Egenskaper dfmplugin_myshares::MyShares - + My Shares Mina delningar @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Storlek - + Contains Innehåller - + Type Typ - + Location Plats - + Time created Skapad - + Time accessed - + Time modified Modifierad - + Hide this file - - + + %1 item %1 objekt - + %1 items %1 objekt @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Dator - + Basic Info Grundläggande information - + Computer name - + Version Version - + Edition - + OS build - + Type Typ - + Processor Processor - + Memory Minne @@ -4873,14 +4890,6 @@ %1 fil(er), %2 mapp(ar) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Egenskaper dfmplugin_recent::Recent - + + Recent Tidigare @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path Sökväg - + Last access Senast öppnad - + Recent Tidigare @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Sök: - + File Type: Filtyp: - + File Size: Filstorlek: - + Time Modified: Ändrad: - + Time Accessed: - + Time Created: - + Reset Återställ - + All subdirectories Alla huvudbibliotek - + Current directory Nuvarande bibliotek - + Application Program - + Video Video - + Audio Ljud - + Image Bild - + Archive Arkiv - + Text Text - + Executable Körbar - + Backup file Backupfil - + Today Idag - + Yesterday Igår - + This week Denna veckan - + Last week Förra veckan - + This month Denna månaden - + Last month Förra månaden - + This year Detta året - + Last year Förra året @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search Sök - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Sökväg @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Öppna filens sökväg - + Select all Välj alla - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Nätverk + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Öppna @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Öppna filens sökväg @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Avbryt - + Connect button Anslut - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path Målsökväg - + Time deleted Borttagen @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Återställ - + Restore all Återställ alla - + Empty trash - + Source path Målsökväg - + Time deleted Borttagen @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash Papperskorg @@ -5529,17 +5526,17 @@ Papperskorg - + item objekt - + items objekt - + Contains %1 %2 Innehåller %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Storlek - + Contains Innehåller - + Type Typ - + Location Plats - + Time created Skapad - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + Lösenord - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - Lösenord - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Avbryt - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Radera - - Failed to delete file vault + + Removing... - + + OK - + button + OK - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sortera efter - + Display as Visa som - + Name Namn - + Time modified Modifierad - + Size Storlek - + Type Typ - + Icon Ikon - + List Lista - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button Spara @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button Spara - + Open button Öppna @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_sw.ts b/translations/dde-file-manager_sw.ts index f90a08a2fd..91346b99b9 100644 --- a/translations/dde-file-manager_sw.ts +++ b/translations/dde-file-manager_sw.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ta.ts b/translations/dde-file-manager_ta.ts index d1ee1ce60a..37afa45160 100644 --- a/translations/dde-file-manager_ta.ts +++ b/translations/dde-file-manager_ta.ts @@ -15,104 +15,99 @@ Application - + File Manager கோப்பு மேலாளர் - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop - கணினி + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + % 1 தொகுதி - DiskMountPlugin + DesktopMain - - Disk - வட்டு இயக்கி + + Desktop + கணினி + + + DiskControlWidget - - Open - திற + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove - + + Disk + வட்டு இயக்கி - - Operation failed - + + Open + திற - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume % 1 தொகுதி - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop கணினி @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music இசை @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash குப்பை கோப்பு @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer கணினி @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ பிட் + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties பண்புகள் @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red சிவப்பு - + Purple - + Navy-blue - + Azure - + Green பச்சை - + Yellow மஞ்சள் - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type வகை - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size ஐகான் அளவு @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Delete - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close மூடு - + Close current tab - + Back பின் - + Forward - + Switch to next tab - + Switch to previous tab - + Next file அடுத்த கோப்பு - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer கணினி - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer கணினி - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories என் கோப்பகங்கள் - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ அளவு - + Dimension - + Duration - + Type வகை - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + ஒட்டு - Cu&t - + Cut + வெட்டு - &Copy - + Copy + நகலெடு dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + திற - Rena&me - + Rename + மறுபெயரிடு - &Delete - + Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + திற - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties - + + Properties + பண்புகள் dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size அளவு - + Contains - + Type வகை - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit பிட் - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer கணினி - + Basic Info அடிப்படை தகவல்கள் - + Computer name - + Version பதிப்பு - + Edition - + OS build - + Type வகை - + Processor செயலி - + Memory நினைவுத்திறன் @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + பண்புகள் dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path பாதை - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: தேடு: - + File Type: கோப்பு வகை: - + File Size: கோப்பின் அளவு: - + Time Modified: மாற்றப்பட்ட நேரம்: - + Time Accessed: - + Time Created: - + Reset மீட்டமைக்க - + All subdirectories அனைத்து துணை கோப்பகங்களும் - + Current directory தற்போதைய கோப்பகங்கள் - + Application - + Video - + Audio - + Image - + Archive - + Text உரை - + Executable - + Backup file - + Today இன்று - + Yesterday நேற்று - + This week - + Last week - + This month - + Last month - + This year இந்த ஆண்டு - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search தேடு - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path பாதை @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + திற @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash குப்பை கோப்பு @@ -5529,17 +5526,17 @@ குப்பை கோப்பு - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size அளவு - + Contains - + Type வகை - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - Failed to delete file vault - + + Password + கடவுச்சொல் - - OK + + Password hint: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemovePages - - Once deleted, the files in it will be permanently deleted + + Delete File Vault - - Password - கடவுச்சொல் - - - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password - + + Delete + button + Delete - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name பெயர் - + Time modified - + Size அளவு - + Type வகை - + Icon - + List பட்டியல் - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button திற @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_th.ts b/translations/dde-file-manager_th.ts index e25ae2b0fd..58c020fc5e 100644 --- a/translations/dde-file-manager_th.ts +++ b/translations/dde-file-manager_th.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_tr.ts b/translations/dde-file-manager_tr.ts index 2e3c588dc7..540d765224 100644 --- a/translations/dde-file-manager_tr.ts +++ b/translations/dde-file-manager_tr.ts @@ -15,104 +15,99 @@ Application - + File Manager Dosya Yöneticisi - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Dosya Yöneticisi, arama, kopyalama, çöp kutusu, sıkıştırma/açma, dosya özelliği ve diğer kullanışlı işlevler içeren güçlü ve kullanımı kolay bir dosya yönetim aracıdır. - DesktopMain + DAttachedProtocolDevice - - Desktop - Masaüstü + + %1 on %2 + - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + %1 Birim - DiskMountPlugin + DesktopMain - - Disk - Disk + + Desktop + Masaüstü + + + DiskControlWidget - - Open - + + Disks + Diskler - - Eject all - Tümünü çıkar + + The device was not safely removed + Cihaz güvenli bir şekilde kaldırılmadı - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Bir daha ki sefer "Güvenle Kaldıra" tıklayın bağlantısını kesin - - eject - + + Disk is busy, cannot unmount now + Disk meşgul olduğundan şu anda ayrılamıyor - - unmount - + + The device is busy, cannot eject now + Aygıt meşgul, şimdi çıkarılamıyor + + + DiskMountPlugin - - - remove - + + Disk + Disk - - Operation failed - + + Open + - - Device (%1) is busy, cannot %2 now. - + + Eject all + Tümünü çıkar FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Bilinmiyor @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. Bu, bir bilgisayarda ilk kez oturum açtığınızda olur. - + The identity sent by the remote computer is Uzak bilgisayar tarafından gönderilen kimlik - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Devam etmenin güvenli olduğundan kesinlikle emin olmak istiyorsanız, sistem yöneticisine başvurun. - - - + + + System Disk Sistem Diski - + Data Disk Veri Diski - + Blank %1 Disc Boş %1 Disk - - - + + + Unknown Bilinmiyor - + %1 Drive %1 Sürücü - + %1 Encrypted %1 Şifreli - - + %1 Volume %1 Birim - + + Scanning the device, stop it? Cihaz taranıyor, durdurulsun mu? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Ana Sayfa @@ -228,6 +223,7 @@ + Desktop Masaüstü @@ -237,6 +233,7 @@ + Videos Görüntüler @@ -246,6 +243,7 @@ + Music Müzikler @@ -255,6 +253,7 @@ + Pictures Fotoğraflar @@ -264,6 +263,7 @@ + Documents Belgeler @@ -273,6 +273,7 @@ + Downloads İndirilenler @@ -281,6 +282,7 @@ + Trash Çöp kutusu @@ -291,11 +293,12 @@ + Recent Son Kullanılanlar - + @@ -303,7 +306,7 @@ Otomatik bağla - + @@ -316,46 +319,47 @@ %1 görev devam diyor - + %1 item %1 öge - + %1 items %1 öge - + Unable to find the original file Orijinal dosya bulunamıyor - - + + File has been moved or deleted Dosya taşınmış ya da silinmiş - - + + + You do not have permission to access this folder Bu klasöre erişme izniniz yok - - + + You do not have permission to traverse files in it İçindeki dosyalar arasında geçiş yapmaya izniniz yok - - + + Folder is empty Klasör boş - + Loading... Yükleniyor... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Bilgisayar @@ -419,8 +424,9 @@ - - + + + Computers in LAN Yerel Ağdaki Bilgisayarlar @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag Etiket @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Bağlanmış Samba paylaşımlarını göstermeye devam edin @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Durdur - + Shortcut Kısayol - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ Bit + Access denied Erişim reddedildi + Confirm button Onayla + + + The device has been safely removed + Cihaz güvenli bir şekilde kaldırıldı + - - + + - - - + + + Open in new window Yeni pencerede aç @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Yeni sekmede aç @@ -953,8 +968,8 @@ - - + + Properties Özellikler @@ -990,7 +1005,7 @@ Yeni Dosya - + Create symlink Sembolik bağlantı oluştur @@ -1077,70 +1092,70 @@ Diske ekle - + Are you sure you want to erase all data on the disc? Diskteki tüm verileri silmek istiyor musunuz? - + Erase button Sil - + This action cannot be undone Bu işlem geri alınamaz - + How do you want to use this disc? Bu diski nasıl kullanmak istersiniz? - + Burn image button Kalıbı yazdır - + Burn files button Dosyaları yazdır - + %1 is a duplicate file. %1 yinelenen bir dosya. - + Insufficient disc space. Yetersiz disk alanı. - + Lost connection to drive. Sürücü bağlantısı kesildi. - + The CD/DVD drive is not ready. Try another disc. CD/DVD sürücüsü hazır değil. Başka bir disk deneyin. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. CD/DVD sürücüsü meşgul. Sürücüyü kullanarak uygulamadan çıkın ve sürücüyü tekrar takın. - + Invalid volume name - + Unknown error Bilinmeyen hata @@ -1179,42 +1194,42 @@ Öge: %1 - + Orange Turuncu - + Red Kırmızı - + Purple Mor - + Navy-blue Lacivert - + Azure Mavi - + Green Yeşil - + Yellow Sarı - + Gray Gri @@ -1290,76 +1305,76 @@ - + User directory - + Local disk Yerel disk - + Removable disk Çıkarılabilir disk - + DVD DVD - + Network shared directory Ağ paylaşımlı dizin - - + + Android mobile device Android mobil aygıt - + Apple mobile device Apple mobil aygıt - + Unknown device Bilinmeyen aygıt - + Remove button Kaldır - + Do you want to remove this item? Bu öğeyi kaldırmak istiyor musunuz? - + Do yout want to remove %1 items? %1 öğeyi kaldırmak istiyor musunuz? - + It does not delete the original files Orijinal dosyaları silmez - + Clear recent history Yakın geçmişi temizle - - - + + + Source path Kaynak yol @@ -1404,12 +1419,12 @@ Çöp kutusundaki ögeler açılamıyor, lütfen önce geri yükleyin - + Empty Trash Çöp Kutusunu Boşalt - + Location Konum @@ -1509,7 +1524,7 @@ Aranıyor... - + My Vault Kasam @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,33 +1902,18 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized Yetkili değil - - + + In trial period Deneme döneminde - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - - In trial period - - - ddplugin_organizer::CollectionItemDelegate @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Tür - + Time accessed Erişim zamanı - + Time modified Değiştirilme zamanı - + Time created Oluşturulma zamanı - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size Simge boyutu @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected %1 öge seçildi @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Tamam - + Operation failed! İşlem tamamlanamadı! @@ -2529,191 +2554,191 @@ Hedef klasör, kaynak klasörün içinde! - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button İptal - + Format button Biçimlendir - + To access the device, you must format the disk first. Are you sure you want to format it now? Cihaz erişmek için önce diski biçimlendirmelisiniz. Şimdi biçimlendirmek istediğinizden emin misiniz? - + Do you want to run %1 or display its content? %1 dosyasını çalıştırmayı mı içeriğini görüntülemeyi mi istiyorsunuz? - + It is an executable text file. Çalıştırılabilir bir metin dosyasıdır. - - - + + + Run button Çalıştır - - + + Run in terminal button Uçbirimde çalştır - + Display button Görüntü - + Do you want to run %1? %1 çalıştırılsın mı? - + It is an executable file. Çalıştırılabilir bir dosyadır. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? %1 öge kalıcı olarak silinsin mi? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button Sil - + Permanently delete %1? %1 kalıcı olarak silinsin mi? - - + + This action cannot be undone Bu işlem geri alınamaz - + Are you sure you want to empty %1 item? %1 ögeyi kalıcı olarak silmek istediğinize emin misiniz? - + Are you sure you want to empty %1 items? %1 ögeyi kalıcı olarak silmek istediğinize emin misiniz? - + Empty Boş - + Do you want to delete %1? %1'i silmek istiyor musunuz? - + Do you want to delete the selected %1 items? Seçili %1 öğeyi silmek istiyor musunuz? - + Failed to restore %1 file, the target folder is read-only %1 dosyası geri yüklenemedi, hedef klasör salt okunur - + Failed to restore %1 files, the target folder is read-only %1 dosyaları geri yüklenemedi, hedef klasör salt okunur - + "%1" already exists, please use another name. "%1" zaten var, lütfen başka bir ad yazın. - + Device or resource busy Cihaz veya kaynak meşgul - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Dosya adı '.' İle başlıyorsa bu dosya gizlenir. Gizlemek ister misin? - + Hide Gizle - + Cancel İptal - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved Bu kısayolun gösterdiği %1, değiştirilmiş ya da taşınmış - + Do you want to delete this shortcut? Bu kısayolu silmek ister misiniz? - + This file is not executable, do you want to add the execute permission and run? Bu dosyanın çalıştırma izni yok, çalıştırma iznini ekleyip çalıştırmak ister misiniz? - + The selected files contain system file/directory, and it cannot be deleted Seçilmiş dosyalar içinde sistem dosyası ya da klasörü bulunduğundan silinemez @@ -2841,276 +2866,278 @@ Diskin şifresini çözmek için parolayı yazın - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Diğerleri - + Close Kapat - + Close current tab Mevcut sekmeyi kapat - + Back Geri - + Forward İleri - + Switch to next tab Sonraki sekmeye geç - + Switch to previous tab Önceki sekmeye geç - + Next file Sonraki dosya - + Previous file Önceki dosya - + Switch tab by specified number between 1 to 8 Sekmeyi 1'den 8'e kadar belirtilen sayıya çevir @@ -3394,43 +3416,42 @@ - + Time modified: %1 Değiştirilme zamanı: %1 - + Original folder Özgün klasör - + Contains: %1 İçerik: %1 - + Original file Özgün dosya - + Size: %1 Boyut: %1 - + Target folder Hedef klasör - - + In data statistics ... - + Target file Hedef dosya @@ -3445,37 +3466,37 @@ Lütfen bekleyin - + Keep both button İkisini de tut - + Skip button Atla - - + + Replace button Değiştir - + Do not ask again Tekrar sorma - + Retry button Tekrar dene - + Merge button Birleştir @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button İptal - + Remove button Kaldır @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Bilgisayar - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Bilgisayar - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Dizinlerim - + Disks Diskler @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type Aygıt türü - + Total space Toplam alan - + File system Dosya sistemi - + Contains İçeriği - + Free space Boş alan - + %1 items %1 öge - + %1 item %1 öge @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ Boyut - + Dimension Boyut - + Duration Süre - + Type Tür - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,36 +4477,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Yapıştır - Cu&t - + Cut + Kes - &Copy - + Copy + Kopyala dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + - Rena&me - + Rename + Adlandır - &Delete - + Delete + Sil @@ -4557,11 +4579,6 @@ Open in terminal Uçbirimde aç - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Şuraya gönder - - Bluetooth - - - - + Create link Bağ oluştur - + Send to desktop Masaüstüne gönder @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Paylaş + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + - + Open in new window Yeni pencerede aç - + Open in new tab Yeni sekmede aç - + Cancel sharing Paylaşımı iptal et - - P&roperties - + + Properties + Özellikler dfmplugin_myshares::MyShares - + My Shares Paylaşımlarım @@ -4683,7 +4700,7 @@ Yazılacak dosya yok - + Unable to burn. Not enough free space on the target disk. Yazılamıyor. Hedef diskte yeterli boş alan yok. @@ -4691,58 +4708,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size Boyut - + Contains İçeriği - + Type Tür - + Location Konum - + Time created Oluşturulma zamanı - + Time accessed Erişim zamanı - + Time modified Değiştirilme zamanı - + Hide this file Bu dosyayı gizle - - + + %1 item %1 öge - + %1 items %1 öge @@ -4763,27 +4780,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government Hükümet için - + For Enterprise Kurumsal için - + Bit Bit - + Available Mevcut @@ -4791,47 +4808,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Bilgisayar - + Basic Info Temel Bilgi - + Computer name Bilgisayar adı - + Version Sürüm - + Edition Yayın - + OS build İşletim Sistemi derlemesi - + Type Tür - + Processor İşlemci - + Memory Bellek @@ -4874,14 +4891,6 @@ %1 dosya, %2 klasör - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4910,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Özellikler dfmplugin_recent::Recent - + + Recent Son Kullanılanlar @@ -4916,17 +4926,17 @@ dfmplugin_recent::RecentManager - + Path Yol - + Last access Son erişim - + Recent Son Kullanılanlar @@ -4957,127 +4967,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Ara: - + File Type: Dosya Türü: - + File Size: Dosya Boyutu: - + Time Modified: Düzenlenme Zamanı: - + Time Accessed: Erişim Zamanı: - + Time Created: Oluşturulma Zamanı: - + Reset Sıfırla - + All subdirectories Tüm alt dizinler - + Current directory Mevcut dizin - + Application Uygulama - + Video Video - + Audio Ses - + Image Görsel - + Archive Arşiv - + Text Metin - + Executable Çalıştırılabilir - + Backup file Yedek dosyası - + Today Bugün - + Yesterday Dün - + This week Bu hafta - + Last week Önceki hafta - + This month Bu ay - + Last month Önceki ay - + This year Bu yıl - + Last year Önceki yıl @@ -5085,31 +5095,15 @@ dfmplugin_search::Search - - + Search Ara - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Yol @@ -5117,17 +5111,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Dosya konumunu aç - + Select all Tümünü seç - + Path Yol @@ -5135,42 +5129,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag Etiket - + + Bookmark + + + + Other Diğer - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Yerel Ağdaki Bilgisayarlar + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + @@ -5184,7 +5191,7 @@ - P&roperties + Properties @@ -5219,7 +5226,7 @@ dfmplugin_tag::Tag - + Tag Etiket @@ -5227,7 +5234,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Dosya konumunu aç @@ -5277,66 +5284,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Sunucuya Bağlan - - - + + + Clear History Geçmişi Temizle - + Unfavorite Favori değil - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button İptal - + Connect button Bağlan - + Charset Encoding - + Default Varsayılan - + My Favorites Favorilerim - + No favorites yet Henüz favori yok - + Favorite Favori @@ -5476,12 +5473,12 @@ dfmplugin_trash::TrashHelper - + Source Path Kaynak Yol - + Time deleted Silinme tarihi @@ -5489,27 +5486,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Geri al - + Restore all Tümünü geri al - + Empty trash - + Source path Kaynak yol - + Time deleted Silinme tarihi @@ -5517,7 +5514,7 @@ dfmplugin_trashcore::TrashCore - + Trash Çöp kutusu @@ -5530,17 +5527,17 @@ Çöp kutusu - + item öge - + items öge - + Contains %1 %2 %1 %2 içeriyor @@ -5722,42 +5719,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size Boyut - + Contains İçeriği - + Type Tür - + Location Konum - + Time created Oluşturulma zamanı - + Time accessed Erişim zamanı - + Time locked Zaman kilitlendi @@ -5987,7 +5984,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Dosya Kasasını Şifrele @@ -6008,19 +6005,19 @@ - - - + + + Encrypt Şifrele - + Failed to create file vault: %1 Dosya kasası oluşturulamadı: %1 - + OK Tamam @@ -6071,7 +6068,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Kasa Parolasını Ayarla @@ -6097,7 +6094,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 karakter, A-Z, a-z, 0-9 ve sembolleri içerir @@ -6132,8 +6129,8 @@ Sonraki - - + + Passwords do not match Parolalar uyuşmuyor @@ -6141,7 +6138,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Dosya Kasası @@ -6191,7 +6188,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6201,7 +6198,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6209,121 +6206,98 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Kasam - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK - + + Password + Parola - - Once deleted, the files in it will be permanently deleted - + + Password hint: %1 + Parola ipucu: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted - + + Input the 32-digit recovery key + 32 basamaklı kurtarma anahtarını gir + + + dfmplugin_vault::VaultRemovePages - - Password - Parola + + Delete File Vault + Dosya Kasasını Sil - - Password hint: %1 - Parola ipucu: %1 + + Once deleted, the files in it will be permanently deleted + Silindikten sonra, içindeki dosyalar kalıcı olarak silinecek - + Cancel - - - - - Delete - + button + İptal - - Delete File Vault - + + Use Key + button + Anahtar Kullan - - Wrong password - + + Delete + button + Sil - - Failed to delete file vault - + + Removing... + Kaldırılıyor... - + + OK - + button + Tamam - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - 32 basamaklı kurtarma anahtarını gir + + Wrong password + Yanlış parola - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... - + + Wrong recovery key + Yanlış kurtarma anahtarı - - OK - + + Failed to delete file vault + Dosya kasası silinemedi - - Delete File Vault - + + Deleted successfully + Başarıyla silindi - - Deleted successfully - + + Failed to delete + Silinemedi @@ -6334,10 +6308,16 @@ Kasam - + File Vault Dosya Kasası + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6350,22 +6330,22 @@ dfmplugin_workspace::FileViewModel - + Name Adı - + Time modified - + Size Büyüklük - + Type Tür @@ -6381,7 +6361,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1'e izin verilmiyor @@ -6397,50 +6377,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sırala - + Display as Farklı görüntüle - + Name Ad - + Time modified Değiştirilme zamanı - + Size Boyut - + Type Tür - + Icon Simge - + List Liste - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6453,7 +6428,7 @@ filedialog_core::FileDialog - + Save button Kaydet @@ -6462,13 +6437,13 @@ filedialog_core::FileDialogStatusBar - + Save button Kaydet - + Open button @@ -6506,112 +6481,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: Tema: - + Light Açık - + Dark Koyu - + Mode: Mod: - + Normal Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: Arkaplan Rengi: - + White Beyaz - + Black Siyah - + Transparent Transparan - + Custom Özel @@ -6643,22 +6618,22 @@ plugin_filepreview::MusicMessageView - + Artist: Sanatçı: - + Album: Albüm: - + unknown artist bilinmeyen sanatçı - + unknown album bilinmeyen albüm diff --git a/translations/dde-file-manager_tzm.ts b/translations/dde-file-manager_tzm.ts index 58c66f5690..ebf6ed57a3 100644 --- a/translations/dde-file-manager_tzm.ts +++ b/translations/dde-file-manager_tzm.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open - Ṛẓem + + Disks + - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed - + + Open + Ṛẓem - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home Asnubg @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer Amessuds @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - - - - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type Asertu - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button WAX - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button Sser - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel Sser - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button Sser - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer Amessuds - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Amessuds - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Isdawn - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type Asertu - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Ṛẓem - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Ṛẓem - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type Asertu - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Amessuds - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type Asertu - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,42 +5128,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Ṛẓem @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Sser - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type Asertu - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK WAX @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel - - - - - Delete - + button + Sser - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK - + button + WAX - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type Asertu - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button Ṛẓem @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_ug.ts b/translations/dde-file-manager_ug.ts index be4750535b..faa69f2331 100644 --- a/translations/dde-file-manager_ug.ts +++ b/translations/dde-file-manager_ug.ts @@ -17,12 +17,12 @@ Application - + File Manager ھۆججەت باشقۇرغۇچ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ھۆججەت باشقۇرغۇچ بولسا كۈچلۈك ۋە ئىشلىتىشكە قۇلايلىق بولغان ھۆججەت باشقۇرۇش قورالى بولۇپ ، ئىزدەش ، كۆپەيتىش ، ئەخلەت ساندۇقى ، پىرىسلاش / يېشىش ، ھۆججەت خاسلىقى ۋە باشقا پايدىلىق ئىقتىدارلار بىلەن ئىپادىلىنىدۇ. @@ -30,7 +30,7 @@ DesktopMain - + Desktop ئۈستەليۈزى @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - + ئۈسكۈنە بىخەتەر ئۆچۈرۈلدى - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 رايۇن @@ -212,7 +212,7 @@ - + %1 on %2 %2 دىكى %1 @@ -886,19 +886,19 @@ (قوشۇمچە %1) - - + + dde-file-manager ھۆججەت باشقۇرغۇچ - + Files are being processed ھۆججەتنى بىر تەرەپ قىلىۋاتىدۇ - + Bit بىت @@ -3004,7 +3004,7 @@ Tree - دەرەخسىمان كۆرۈنۈش + @@ -3277,7 +3277,7 @@ Switch to tree view - دەرەخسىمان كۆرۈنۈشكە ئالماشتۇرۇش + @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - ھۆججەت %1 نى ئەخلەت ساندۇقىغا يۆتكەش مەغلۇب بولدى + @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - ھۆججەتنى كۆچۈرۈش ياكى كېسىپ چاپلاش مەغلۇپ بولدى! + @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - ھۆججەت %1 نى ئەخلەت ساندۇقىغا يۆتكەش مەغلۇب بولدى، سەۋەبى: %2 + @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - ھۆججەتنى كۆچۈرۈش ياكى كېسىپ چاپلاش مەغلۇپ بولدى، سەۋەبى: %1 + @@ -4588,7 +4588,7 @@ Bluetooth - + كۆكچىش @@ -5811,39 +5811,40 @@ dfmplugin_vault::RecoveryKeyView - + + Unlock by Key شىفىرلىق ئاچقۇچتا ئېچىشنى ئەسلىگە كۈلتۈرۈش - + Input the 32-digit recovery key 32 خانىلىق ئەسلىگە كەلتۈرۈش ئاچقۇچىنى كىرگۈزۈڭ - + Cancel button بىكار قىلىش - + Unlock button قۇلۇپ ئېچىش - + Wrong recovery key پارول خاتا - + Failed to unlock file vault بىخەتەرلىك ساندۇقى ئېچىلمىدى - + OK ماقۇل @@ -5936,11 +5937,6 @@ Forgot password? پارول قايتۇرىمەن - - - Key unlock - - Password @@ -6225,146 +6221,111 @@ Cancel - + بىكار قىلىش Delete - ئۆچۈرۈش + ئۆچۈرۈش Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش Failed to delete file vault - + بىخەتەرلىك ساندۇقىنى ئۆچۈرگىلى بولمىدى OK - ماقۇل + ماقۇل Once deleted, the files in it will be permanently deleted - + بىخەتەرلىك ساندۇقىنى ئۆچۈرگەندىن كېيىن، ئۇنىڭدىكى بارلىق مەزمۇن مەڭگۈلۈك ئۆچۈرۈلىدۇ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted - + بىخەتەرلىك ساندۇقىنى ئۆچۈرگەندىن كېيىن، ئۇنىڭدىكى بارلىق مەزمۇن مەڭگۈلۈك ئۆچۈرۈلىدۇ - + Password پارول - - Key delete - - - - + Password hint: %1 پارول ئەسكەرتىشى: %1 - + Cancel - + بىكار قىلىش - + Delete - ئۆچۈرۈش + ئۆچۈرۈش - + Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش - + Wrong password - پارول خاتا + پارول خاتا - + Failed to delete file vault - + بىخەتەرلىك ساندۇقىنى ئۆچۈرگىلى بولمىدى - + OK - ماقۇل + ماقۇل dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 32 خانىلىق ئەسلىگە كەلتۈرۈش ئاچقۇچىنى كىرگۈزۈڭ - - - Cancel - - - - - Delete - ئۆچۈرۈش - - - - Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش - - - - Wrong recovery key - پارول خاتا - - - - Failed to delete file vault - - - - - OK - ماقۇل - dfmplugin_vault::VaultRemoveProgressView Removing... - + ئۆچۈرۈۋاتىدۇ... OK - ماقۇل + ماقۇل Delete File Vault - بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش Deleted successfully - + ئۆچۈرۈلدى @@ -6414,7 +6375,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... يۈكلەۋاتىدۇ... @@ -6438,49 +6399,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by تەرتىپلەش - + Display as كۆرۈنمە شەكلى - + Name نامى - + Time modified ئۆزگەرتىلگەن ۋاقىت - + Size سىغىمى - + Type تىپى - + Icon سىن بەلگە كۆرۈنۈشى - + List تىزىملىك - + Tree - دەرەخسىمان كۆرۈنۈش + diff --git a/translations/dde-file-manager_uk.ts b/translations/dde-file-manager_uk.ts index d80163346a..442ce987f1 100644 --- a/translations/dde-file-manager_uk.ts +++ b/translations/dde-file-manager_uk.ts @@ -15,104 +15,99 @@ Application - + File Manager Файловий менеджер - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. Менеджер файлів - це потужний і простий у використанні інструмент керування файлами з функціями пошуку, копіювання, видалення, стиснення/розпакування, зміни властивостей файлу та іншими корисними функціями. - DesktopMain + DAttachedProtocolDevice - - Desktop - Стільниця + + %1 on %2 + %1 на %2 - DeviceList + DeepinStorage - - Disks - + + + %1 Volume + Том %1 - DiskMountPlugin + DesktopMain - - Disk - Диск + + Desktop + Стільниця + + + DiskControlWidget - - Open - Відкрити + + Disks + Диски - - Eject all - Виштовхнути усі + + The device was not safely removed + Пристрій не було безпечно вилучено - - - DockItemDataManager - - The device has been safely removed - + + Click "Safely Remove" and then disconnect it next time + Наступного разу натисніть кнопку «Вилучити безпечно», а вже потім від'єднуйте пристрій - - eject - + + Disk is busy, cannot unmount now + Диск зайнятий, його неможливо розмонтувати зараз - - unmount - + + The device is busy, cannot eject now + Пристрій зайнято, його не можна виштовхнути зараз + + + DiskMountPlugin - - - remove - + + Disk + Диск - - Operation failed - + + Open + Відкрити - - Device (%1) is busy, cannot %2 now. - + + Eject all + Виштовхнути усі FileDialogHandle - + All Files Усі файли - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown Невідомо @@ -128,89 +123,88 @@ QObject - + need authorization to access для доступу потрібне уповноваження - + Can't verify the identity of %1. Не вдалося переконатися у ідентичності %1. - + This happens when you log in to a computer the first time. Таке трапляється, якщо ви входите до системи уперше. - + The identity sent by the remote computer is Профіль, який надіслано віддаленим комп'ютером, — - + If you want to be absolutely sure it is safe to continue, contact the system administrator. Якщо ви хочете бути абсолютно певні, що виконання дії є безпечним, проконсультуйтеся в адміністратора вашої системи. - - - + + + System Disk Системний диск - + Data Disk Диск із даними - + Blank %1 Disc Порожній диск %1 - - - + + + Unknown Невідомо - + %1 Drive Пристрій %1 - + %1 Encrypted %1 Зашифрований - - + %1 Volume Том %1 - + + Scanning the device, stop it? Скануємо пристрій. Припинити? - + Unmount failed Не вдалося демонтувати - + Cannot stop scanning device Не вдалося зупинити сканування пристрою - - + %1 on %2 %1 на %2 @@ -219,6 +213,7 @@ + Home Домівка @@ -228,6 +223,7 @@ + Desktop Стільниця @@ -237,6 +233,7 @@ + Videos Відео @@ -246,6 +243,7 @@ + Music Музика @@ -255,6 +253,7 @@ + Pictures Зображення @@ -264,6 +263,7 @@ + Documents Документи @@ -273,6 +273,7 @@ + Downloads Завантаження @@ -281,6 +282,7 @@ + Trash Смітник @@ -291,11 +293,12 @@ + Recent Нещодавні - + @@ -303,7 +306,7 @@ Автоматичне монтування - + @@ -316,46 +319,47 @@ %1 завдань в процесі - + %1 item %1 об'єкт - + %1 items %1 об'єктів - + Unable to find the original file Не вдалося знайти початковий файл - - + + File has been moved or deleted Файл був переміщений чи видалений - - + + + You do not have permission to access this folder У вас немає дозволу на доступ до цієї теки - - + + You do not have permission to traverse files in it Ви не маєте права пересувати тут файли - - + + Folder is empty Порожня тека - + Loading... Завантаження... @@ -404,7 +408,7 @@ - + Built-in disks Вбудовані диски @@ -412,6 +416,7 @@ + Computer Комп'ютер @@ -419,8 +424,9 @@ - - + + + Computers in LAN Комп'ютери в локальній мережі @@ -428,7 +434,7 @@ - + Loop partitions Петльові розділи @@ -436,8 +442,7 @@ - - + Mounted sharing folders Змонтовані спільні теки @@ -445,6 +450,7 @@ + My shares Мої спільні @@ -452,7 +458,7 @@ - + Network Мережа @@ -460,7 +466,7 @@ - + Mounted partitions and discs Змонтовані розділи і диски @@ -468,7 +474,7 @@ - + Partitions Розділи @@ -476,7 +482,7 @@ - + Quick access Швидкий доступ @@ -484,7 +490,7 @@ - + Tag Мітка @@ -492,7 +498,7 @@ - + Added tags Додані мітки @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares Продовжувати показ змонтованих спільних ресурсів Samba @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button Припинити - + Shortcut Ярлик - + This system wallpaper is locked. Please contact your admin. Це загальносистемне фонове зображення заблоковано. Будь ласка, зв'яжіться із адміністратором системи. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (копія) - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese (копія %1) @@ -901,26 +909,33 @@ Біт + Access denied Доступ заборонено + Confirm button Підтвердити + + + The device has been safely removed + Пристрій було безпечно вилучено + - - + + - - - + + + Open in new window Відкрити у новому вікні @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab Відкрити у новій вкладці @@ -953,8 +968,8 @@ - - + + Properties Властивості @@ -990,7 +1005,7 @@ Новий Файл - + Create symlink Створити посилання @@ -1077,70 +1092,70 @@ Додати на диск - + Are you sure you want to erase all data on the disc? Ви справді хочете витерти усі дані на диску? - + Erase button Витерти - + This action cannot be undone Цю дію не можна скасувати - + How do you want to use this disc? Як ви хочете скористатися цим диском? - + Burn image button Записати образ - + Burn files button Записати файли - + %1 is a duplicate file. %1 є файлом-дублікатом. - + Insufficient disc space. Недостатньо місця на диску. - + Lost connection to drive. Втрачено зв'язок із диском. - + The CD/DVD drive is not ready. Try another disc. Пристрій для записування CD/DVD є неготовим. Спробуйте інший диск. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. Пристрій для записування CD/DVD зайнято. Завершіть роботу програми, яка працює із пристроєм, і повторіть спробу. - + Invalid volume name Некоректна назва тому - + Unknown error Невідома помилка @@ -1179,42 +1194,42 @@ Об'єкти: %1 - + Orange Оранжевий - + Red Червоний - + Purple Фіолетовий - + Navy-blue Синій - + Azure Блакитний - + Green Зелений - + Yellow Жовтий - + Gray Сірий @@ -1290,76 +1305,76 @@ Не вдалося отримати доступ - + User directory Каталог користувача - + Local disk Локальний накопичувач - + Removable disk Знімний накопичувач - + DVD DVD - + Network shared directory Мережева спільна директорія - - + + Android mobile device Мобільний пристрій Android - + Apple mobile device Мобільний пристрій Apple - + Unknown device Невідомий пристрій - + Remove button Вилучити - + Do you want to remove this item? Хочете вилучити цей запис? - + Do yout want to remove %1 items? Хочете вилучити %1 записів? - + It does not delete the original files Початкові файли вилучено не буде - + Clear recent history Очистити нещодавню історію - - - + + + Source path Шлях до джерела @@ -1404,12 +1419,12 @@ Не вдалося відкрити записи у смітнику. Будь ласка, спочатку відновіть їх. - + Empty Trash Спорожнити смітник - + Location Місцезнаходження @@ -1509,7 +1524,7 @@ Пошук... - + My Vault Моє сховище @@ -1686,27 +1701,27 @@ Device disconnected - Пристрій від'єднано + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - Ідентифікатор=%1, дата і час=%2, записувач=%3, тип диска=%4, результат=%5, користувач=%6, назва файла=%7, розмір файла=%8, тип файла=%9 + Success - Успіх + Failed - Помилка + - + Sidebar - Бічна панель + @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - - Not authorized - Не уповноважено - - - - - In trial period - Період тестування - - - - ddplugin_canvas::WatermaskSystem - - - + + Not authorized Не уповноважено - - + + In trial period Період тестування @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection Нова збірка @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop Упорядковування стільниці - + Desktop options Параметри стільниці - + Organize by Критерій упорядкування - + Custom collection Нетипова збірка - + Type Тип - + Time accessed Час доступу - + Time modified Час зміни - + Time created Час створення - + Create a collection Створити збірку + + + Display Size + Розмір дисплея + + + + Smaller + Менший + + + + Normal + Звичайний + + + + Larger + Більший + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options Параметри стільниці - + Auto arrange icons Автоматичне упорядкування піктограм @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + Розмір дисплея + + + Icon size Розмір іконки @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Програму для керування файлами буде оновлено до нової версії. Під час оновлення усі виконувані завдання буде перервано. Хочете виконати оновлення зараз? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? Служби стільниці буде оновлено до нової версії. Під час оновлення усі виконувані завдання буде перервано. Хочете виконати оновлення зараз? - + Update button Оновити - + Cancel button Скасувати @@ -2360,7 +2385,7 @@ - + %1 item selected %1 об'єкт вибрано @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button Гаразд - + Operation failed! Помилка операції! @@ -2529,191 +2554,191 @@ Цільова тека знаходиться всередині вихідної теки! - + The passphrase is needed to access encrypted data on %1. Потрібе пароль для доступу до зашифрованих даних на %1. - - - - - - - - + + + + + + + + Cancel button Скасувати - + Format button Форматувати - + To access the device, you must format the disk first. Are you sure you want to format it now? Щоб отримати доступ до пристрою, вам слід спочатку виконати форматування диска. Ви справді хочете форматувати диск зараз? - + Do you want to run %1 or display its content? Чи бажаєте запустити %1 або відобразити цей вміст? - + It is an executable text file. Це є виконуваний текстовий файл - - - + + + Run button Запустити - - + + Run in terminal button Запустити в терміналі - + Display button Відобразити - + Do you want to run %1? Ви дійсно хочете запустити %1? - + It is an executable file. Це є виконуваний файл - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Не вдалося пересунути позначені %1 записів до смітника. Хочете остаточно їх вилучити? - + Permanently delete %1 items? Видалити назавжди %1 об'єктів? - + Cannot move "%1" to the trash. Do you want to permanently delete it? Не вдалося пересунути «%1» до смітника. Хочете його остаточно вилучити? - - - + + + Delete button Видалити - + Permanently delete %1? Назавжди видалити %1? - - + + This action cannot be undone Цю дію не можна скасувати - + Are you sure you want to empty %1 item? Ви впевнені, що бажаєте очистити %1 об'єкт? - + Are you sure you want to empty %1 items? Ви впевнені, що бажаєте очистити %1 об'єкти? - + Empty Порожньо - + Do you want to delete %1? Хочете вилучити %1? - + Do you want to delete the selected %1 items? Хочете вилучити позначені %1 записів? - + Failed to restore %1 file, the target folder is read-only Не вдалося відновити файл %1, цільова тека доступна лише для читання - + Failed to restore %1 files, the target folder is read-only Не вдалося відновити файли %1, цільова тека доступна лише для читання - + "%1" already exists, please use another name. "%1" вже використовується, будь ласка введіть інше ім'я - + Device or resource busy Пристрій або ресурс зайнято - + This file will be hidden if the file name starts with '.'. Do you want to hide it? Цей файл буде приховано, якщо його назва починатиметься з «.». Хочете приховати файл? - + Hide Приховати - + Cancel Скасувати - + Unable to access %1 Не вдалося отримати доступ до %1 - + %1 that this shortcut refers to has been changed or moved %1 на що цей ярлик посилається, було змінено або переміщено - + Do you want to delete this shortcut? Ви хочете видалити це ярлик? - + This file is not executable, do you want to add the execute permission and run? Цей файл не є виконуваним. Хочете додати права на виконання і запустити його? - + The selected files contain system file/directory, and it cannot be deleted Вибрані файли містять системний файл/директорію, і його не можливо видалити @@ -2841,278 +2866,280 @@ Введіть пароль для розшифрування диска - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - Завжди відкривати теку у новому вікні + - + Open file: - Відкривати файл: + - + Click - клацанням + - + Double click - подвійним клацанням + - + New window and tab - Нове вікно і вкладка + - + Open from default window: - Відкриття з типового вікна: + - - + + Computer - Комп'ютер + - - + + Home - Домівка + - - + + Desktop - Стільниця + - - + + Videos - Відео + - - + + Music - Музика + - - + + Pictures - Зображення + - - + + Documents - Документи + - - + + Downloads - Завантаження + - + Open in new tab: - Відкриття у новій вкладці: + - + Current Directory - Поточний каталог + - + Files and folders - Файли і теки + - + Show hidden files - Показувати приховані файли + - + Show file extensions - Показувати суфікси назв файлів + - + Mix sorting of files and folders - Перемішати файли і теки у списку + - + Workspace - Робочий простір + - + View - Перегляд + - + Default size: - Типовий розмір: + - + Extra small - Дуже малий + - + Small - Малий + - + Medium - Середній + - + Large - Великий + - + Extra large - Дуже великий - - - - Tree - + Default view: - Типовий перегляд: + - + Icon - Піктограма - - - - List - Список - - - - Restore default view mode for all directories - - Restore default view mode + + List - + Thumbnail preview - Перегляд мініатюр + - + Compressed file preview - Попередній перегляд стисненого файлу + - + Text preview - Перегляд тексту + - + Document preview - Перегляд документів + - + Image preview - Перегляд зображень + - + Video preview - Перегляд відео + - + Music preview - Попереднє прослуховування музики + - + The remote environment shows thumbnail previews - Віддалене середовище показує попередній перегляд мініатюр + - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Вмикання попереднього перегляду мініатюр може призвести до повільного завантаження віддаленого каталогу або зависання дії + - + Advanced - Додатково + + + + + Search + - + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - Монтування + - + Auto mount - Автоматичне монтування + - + Open after auto mount - Відкривати після автоматичного монтування + + + + + Show item counts and sizes in the path of mounted MTP devices + - + Merge the entries of Samba shared folders - Об'єднати запису спільних тек Samba + - + Switching the entry display may lead to failed mounting - Перемикання показу записів може призвести до помилок при монтуванні + - + Use the file chooser dialog of File Manager - Використовувати вікно вибору файлів Менеджера файлів + - + Ask for my confirmation when deleting files - Просити підтвердження вилучення файлів + @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others Інші - + Close Закрити - + Close current tab Закрити поточну вкладку - + Back Назад - + Forward Вперед - + Switch to next tab Переключитися до наступної вкладки - + Switch to previous tab Переключитися до попередньої вкладки - + Next file Наступний файл - + Previous file Попередній файл - + Switch tab by specified number between 1 to 8 Перейдіть на вкладку за вказаним номером від 1 до 8 @@ -3394,43 +3416,47 @@ не вдалося створити дані файла призначення %1 у функції показу конфліктів Info! - + Time modified: %1 Час зміни: %1 - + + In data statistics + У статистиці даних + + + Original folder Початкова тека - + Contains: %1 Вміщує: %1 - + Original file Початковий файл - + Size: %1 Розмір: %1 - + Target folder Тека призначення - - + In data statistics ... - У статистиці даних… + - + Target file Файл призначення @@ -3445,37 +3471,37 @@ Будь ласка, зачекайте - + Keep both button Залишити два - + Skip button Пропустити - - + + Replace button Замінити - + Do not ask again Не запитувати знову - + Retry button Повторити - + Merge button Об'єднати @@ -3489,7 +3515,7 @@ Введіть пароль для захисту оприлюднених тек - + Set a password on the shared folder for non-anonymous access Встановити пароль для теки спільного використання для доступу неанонімних користувачів @@ -3515,18 +3541,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? Вибачте, не вдалося знайти ваш каталог швидкого доступу. Його вилучено? - + Cancel button Скасувати - + Remove button Вилучити @@ -3784,80 +3810,81 @@ dfmplugin_computer::Computer - + + Computer Комп'ютер - + Computer display items - Показані записи комп'ютера + - + Hide built-in disks on the Computer page - Приховати вбудовані диски на сторінці «Комп'ютер» + - + Hide loop partitions on the Computer page - Приховати петльові пристрої на сторінці «Комп'ютер» + - + Show file system on disk icon - Показувати файлову систему на піктограмі диска + - + Hide My Directories on the Computer page - Приховати «Мої каталоги» на сторінці «Комп'ютер» + - + Hide 3rd party entries on the Computer page - Приховати сторонні записи на сторінці «Комп'ютер» + dfmplugin_computer::ComputerController - + Unlock device failed Не вдалося розблокувати пристрій - + Wrong password Помилковий пароль - + Rename failed Не вдалося перейменувати - + The device is busy and cannot be renamed now Пристрій зайнято. Його не можна зараз перейменувати. - + Format failed Не вдалося форматувати - + The device is busy and cannot be formatted now Пристрій зайнято. Його не можна зараз форматувати. - + Mount error Помилка монтування - + Cannot access %1 Не вдалося отримати доступ до %1 @@ -3865,27 +3892,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer Комп'ютер - + %1 is read-only. Do you want to enable read and write permissions for it? %1 призначено лише для читання. Хочете увімкнути права доступу на запис та читання для нього? - + Once enabled, read/write permission will be granted permanently Після вмикання права на читання-запис буде надано остаточно - + Cancel Скасувати - + Enable Now Увімкнути зараз @@ -3893,12 +3920,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories Мої Директорії - + Disks Диски @@ -3906,42 +3933,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info Базова інформація - + Device type Тип пристрою - + Total space Загальний розмір - + File system Файлова система - + Contains Вміщує - + Free space Вільний простір - + %1 items %1 об'єктів - + %1 item %1 об'єкт @@ -3949,7 +3976,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 %1 на %2 @@ -3968,27 +3995,27 @@ Розмір - + Dimension Розмір - + Duration Тривалість - + Type Тип - + Accessed Отримано доступ - + Modified Змінено @@ -4258,7 +4285,7 @@ Failed to move the file %1 to trash - Не вдалося пересунути файл %1 до Смітника + @@ -4335,7 +4362,7 @@ Copy or Cut File failed! - Не вдалося скопіювати або вирізати файл! + @@ -4365,7 +4392,7 @@ Failed to move the file %1 to trash, cause: %2 - Не вдалося пересунути файл %1 до Смітника. Причина: %2 + @@ -4384,8 +4411,8 @@ - Copy or Cut File failed, cause: %1 - Не вдалося скопіювати або вирізати файл. Причина: %1 + Copy or Cut File failed,cause: %1 + @@ -4417,30 +4444,30 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error Помилка під час перейменовування файла - + Failed to create the directory Не вдалося створити каталог - + Failed to create the file Не вдалося створити файл - + link file error помилка посилання на файл - - + + Failed to modify file permissions - Не вдалося змінити права доступу до файла + @@ -4455,36 +4482,36 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste - + Paste + Вставити - Cu&t - + Cut + Вирізати - &Copy - + Copy + Копіювати dfmplugin_menu::FileOperatorMenuScenePrivate - &Open - + Open + Відкрити - Rena&me - + Rename + Перейменувати - &Delete - + Delete + Видалити @@ -4557,11 +4584,6 @@ Open in terminal Відкрити в терміналі - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4601,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to Надіслати до - - Bluetooth - - - - + Create link Створити посилання - + Send to desktop Надіслати на стільницю @@ -4602,43 +4619,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share Спільні + + + Bluetooth + Bluetooth + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open - + + Open + Відкрити - + Open in new window Відкрити у новому вікні - + Open in new tab Відкрити у новій вкладці - + Cancel sharing Скасувати обмін - - P&roperties - + + Properties + Властивості dfmplugin_myshares::MyShares - + My Shares Мої спільні @@ -4683,7 +4705,7 @@ Немає файлів для записування - + Unable to burn. Not enough free space on the target disk. Не вдалося записати. Недостатньо вільного місця на диску призначення. @@ -4691,58 +4713,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info Базова інформація - + Size Розмір - + Contains Вміщує - + Type Тип - + Location Місцезнаходження - + Time created Час створення - + Time accessed Час доступу - + Time modified Час зміни - + Hide this file Приховати цей файл - - + + %1 item %1 об'єкт - + %1 items %1 об'єктів @@ -4763,27 +4785,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security Для захисту ключів - + For Government Для урядових організацій - + For Enterprise Для промисловості - + Bit Біт - + Available Доступна @@ -4791,47 +4813,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer Комп'ютер - + Basic Info Базова інформація - + Computer name Назва комп’ютера - + Version Версія - + Edition Редагування - + OS build Збірка ОС - + Type Тип - + Processor Процесор - + Memory Памʼять @@ -4874,14 +4896,6 @@ %1 файл(и), %2 тека(и) - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4901,14 +4915,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties - + Properties + Властивості dfmplugin_recent::Recent - + + Recent Нещодавні @@ -4916,17 +4931,17 @@ dfmplugin_recent::RecentManager - + Path Шлях - + Last access Останній доступ - + Recent Нещодавні @@ -4957,127 +4972,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: Шукати: - + File Type: Тип файла: - + File Size: Розмір файла: - + Time Modified: Внесення змін: - + Time Accessed: Час доступу: - + Time Created: Час створення: - + Reset Скинути - + All subdirectories Усі підкаталоги - + Current directory Поточний каталог - + Application Програма - + Video Відео - + Audio Аудіо - + Image Зображення - + Archive Архів - + Text Текст - + Executable Виконуваний - + Backup file Файл резервної копії - + Today Сьогодні - + Yesterday Вчора - + This week Цього тижня - + Last week Минулого тижня - + This month Цього місяця - + Last month Минулого місяця - + This year Цього року - + Last year Минулого року @@ -5085,31 +5100,15 @@ dfmplugin_search::Search - - + Search Пошук - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path Шлях @@ -5117,17 +5116,17 @@ dfmplugin_search::SearchMenuScene - + Open file location Відкрити розташування файлу - + Select all Вибрати все - + Path Шлях @@ -5135,42 +5134,55 @@ dfmplugin_sidebar::SideBarWidget - + Quick access Швидкий доступ - + Partitions Розділи - + Network Мережа - + Tag Мітка - + + Bookmark + Закладка + + + Other Інше - + Unknown Group Невідома груп + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + Комп'ютери в локальній мережі + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open - + Open + Відкрити @@ -5184,8 +5196,8 @@ - P&roperties - + Properties + Властивості @@ -5219,7 +5231,7 @@ dfmplugin_tag::Tag - + Tag Мітка @@ -5227,7 +5239,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location Відкрити розташування файлу @@ -5277,66 +5289,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server Підключення до сервера - - - + + + Clear History Очистити історію - + Unfavorite Прибрати з улюблених - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button Скасувати - + Connect button Під'єднатися - + Charset Encoding Кодування символів - + Default Типове - + My Favorites Улюблені - + No favorites yet Улюблених записів ще немає - + Favorite Додати до улюблених @@ -5476,12 +5478,12 @@ dfmplugin_trash::TrashHelper - + Source Path Шлях до джерела - + Time deleted Час видалення @@ -5489,27 +5491,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore Відновити - + Restore all Відновити все - + Empty trash Спорожнити смітник - + Source path Шлях до джерела - + Time deleted Час видалення @@ -5517,7 +5519,7 @@ dfmplugin_trashcore::TrashCore - + Trash Смітник @@ -5530,17 +5532,17 @@ Смітник - + item об'єкт - + items об'єктів - + Contains %1 %2 Вміщує %1 %2 @@ -5722,42 +5724,42 @@ dfmplugin_vault::BasicWidget - + Basic info Базова інформація - + Size Розмір - + Contains Вміщує - + Type Тип - + Location Місцезнаходження - + Time created Час створення - + Time accessed Час доступу - + Time locked Час блокування @@ -5929,7 +5931,7 @@ Unlock File Vault - Розблокувати файлове сховище + Не вдалося розблокувати файлове сховище @@ -5988,7 +5990,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault Зашифрувати сховище файлів @@ -6009,19 +6011,19 @@ - - - + + + Encrypt Зашифрувати - + Failed to create file vault: %1 Не вдалося створити сховище файлів: %1 - + OK Гаразд @@ -6072,7 +6074,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password Встановлення пароля сховища @@ -6098,7 +6100,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols ≥ 8 символів, може містити A-Z, a-z, 0-9 та символи пунктуації @@ -6133,8 +6135,8 @@ Наступний - - + + Passwords do not match Паролі не збігаються @@ -6142,7 +6144,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault Файлове сховище @@ -6192,7 +6194,7 @@ dfmplugin_vault::VaultHelper - + Vault Сховище @@ -6202,7 +6204,7 @@ Сховище недоступне, оскільки не встановлено cryfs! - + A task is in progress, so it cannot perform your operation Виконуємо завдання. Отже, виконання вашої дії неможливе. @@ -6210,122 +6212,99 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault Моє сховище - - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - Скасувати - - - - Delete - Вилучити - - - - Delete File Vault - Вилучити сховище файлів - - - - Failed to delete file vault - Не вдалося вилучити сховище файлів - - - - OK - Гаразд - - - - Once deleted, the files in it will be permanently deleted - У результаті вилучення сховища файли буде остаточно вилучено - - dfmplugin_vault::VaultRemoveByPasswordView - - Once deleted, the files in it will be permanently deleted - У результаті вилучення сховища файли буде остаточно вилучено - - - + Password Пароль - + Password hint: %1 Підказка пароля: %1 + + + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Cancel - Скасувати - - - - Delete - Вилучити + + Input the 32-digit recovery key + Введіть 32-цифровий ключ відновлення + + + dfmplugin_vault::VaultRemovePages - + Delete File Vault Вилучити сховище файлів - - Wrong password - Помилковий пароль + + Once deleted, the files in it will be permanently deleted + У результаті вилучення сховища файли буде остаточно вилучено - - Failed to delete file vault - Не вдалося вилучити сховище файлів + + Cancel + button + Скасувати - - OK - Гаразд + + Use Key + button + Використати ключ - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key - Введіть 32-цифровий ключ відновлення + + Delete + button + Видалити - - - dfmplugin_vault::VaultRemoveProgressView - + Removing... Вилучення… - + + OK + button Гаразд - - Delete File Vault - Вилучити сховище файлів + + Wrong password + Помилковий пароль + + + + Wrong recovery key + Помилковий ключ відновлення - + + Failed to delete file vault + Не вдалося вилучити сховище файлів + + + Deleted successfully Успішно вилучено + + + Failed to delete + Не вдалося вилучити + dfmplugin_vault::VaultVisibleManager @@ -6335,10 +6314,16 @@ Моє сховище - + File Vault Файлове сховище + + + + Vault + Сховище + dfmplugin_workspace::FileOperatorHelper @@ -6351,22 +6336,22 @@ dfmplugin_workspace::FileViewModel - + Name Назва - + Time modified Час зміни - + Size Розмір - + Type Тип @@ -6382,7 +6367,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed %1 заборонено @@ -6398,50 +6383,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Сортувати за - + Display as Відобразити як - + Name Назва - + Time modified Час зміни - + Size Розмір - + Type Тип - + Icon Піктограма - + List Список - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6454,7 +6434,7 @@ filedialog_core::FileDialog - + Save button Зберегти @@ -6463,13 +6443,13 @@ filedialog_core::FileDialogStatusBar - + Save button Зберегти - + Open button Відкрити @@ -6507,112 +6487,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: Доступні розміри: - + Custom Size Нетиповий розмір - + Device Pixel Ratio: Формат пристрою у пікселях: - + Theme: Тема: - + Light Світла - + Dark Темна - + Mode: Режим: - + Normal Звичайний - + Disabled Вимкнено - + Hovered Наведення - + Pressed Натискання - + Palette Палітра - + Current mode icon does not support the palette Для поточної піктограми режимів не передбачено підтримки палітри - + Foreground: Передній план: - + Background: Тло: - + Highlight: Підсвічування: - + HighlightForeground: Підсвічений передній план: - + Background Color: Колір тла: - + White Білий - + Black Чорний - + Transparent Прозорий - + Custom Нетиповий @@ -6644,24 +6624,24 @@ plugin_filepreview::MusicMessageView - + Artist: Виконавець: - + Album: Альбом: - + unknown artist невідомий виконавець - + unknown album невідомий альбом - \ No newline at end of file + diff --git a/translations/dde-file-manager_ur.ts b/translations/dde-file-manager_ur.ts index 1db8e7e71b..c288a557f3 100644 --- a/translations/dde-file-manager_ur.ts +++ b/translations/dde-file-manager_ur.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_uz.ts b/translations/dde-file-manager_uz.ts index ab06f2df3d..b07b591e8f 100644 --- a/translations/dde-file-manager_uz.ts +++ b/translations/dde-file-manager_uz.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_vi.ts b/translations/dde-file-manager_vi.ts index fa06e68f23..45bd327464 100644 --- a/translations/dde-file-manager_vi.ts +++ b/translations/dde-file-manager_vi.ts @@ -15,104 +15,99 @@ Application - + File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. - DesktopMain + DAttachedProtocolDevice - - Desktop + + %1 on %2 - DeviceList + DeepinStorage - - Disks + + + %1 Volume - DiskMountPlugin + DesktopMain - - Disk + + Desktop + + + DiskControlWidget - - Open + + Disks - - Eject all + + The device was not safely removed - - - DockItemDataManager - - The device has been safely removed + + Click "Safely Remove" and then disconnect it next time - - eject + + Disk is busy, cannot unmount now - - unmount + + The device is busy, cannot eject now + + + DiskMountPlugin - - - remove + + Disk - - Operation failed + + Open - - Device (%1) is busy, cannot %2 now. + + Eject all FileDialogHandle - + All Files - - FileOperateBaseWorker - - - The file name or the path is too long! - - - MimeTypeDisplayManager - + Unknown @@ -128,89 +123,88 @@ QObject - + need authorization to access - + Can't verify the identity of %1. - + This happens when you log in to a computer the first time. - + The identity sent by the remote computer is - + If you want to be absolutely sure it is safe to continue, contact the system administrator. - - - + + + System Disk - + Data Disk - + Blank %1 Disc - - - + + + Unknown - + %1 Drive - + %1 Encrypted - - + %1 Volume - + + Scanning the device, stop it? - + Unmount failed - + Cannot stop scanning device - - + %1 on %2 @@ -219,6 +213,7 @@ + Home @@ -228,6 +223,7 @@ + Desktop @@ -237,6 +233,7 @@ + Videos @@ -246,6 +243,7 @@ + Music @@ -255,6 +253,7 @@ + Pictures @@ -264,6 +263,7 @@ + Documents @@ -273,6 +273,7 @@ + Downloads @@ -281,6 +282,7 @@ + Trash @@ -291,11 +293,12 @@ + Recent - + @@ -303,7 +306,7 @@ - + @@ -316,46 +319,47 @@ - + %1 item - + %1 items - + Unable to find the original file - - + + File has been moved or deleted - - + + + You do not have permission to access this folder - - + + You do not have permission to traverse files in it - - + + Folder is empty - + Loading... @@ -404,7 +408,7 @@ - + Built-in disks @@ -412,6 +416,7 @@ + Computer @@ -419,8 +424,9 @@ - - + + + Computers in LAN @@ -428,7 +434,7 @@ - + Loop partitions @@ -436,8 +442,7 @@ - - + Mounted sharing folders @@ -445,6 +450,7 @@ + My shares @@ -452,7 +458,7 @@ - + Network @@ -460,7 +466,7 @@ - + Mounted partitions and discs @@ -468,7 +474,7 @@ - + Partitions @@ -476,7 +482,7 @@ - + Quick access @@ -484,7 +490,7 @@ - + Tag @@ -492,7 +498,7 @@ - + Added tags @@ -507,7 +513,7 @@ - + Keep showing the mounted Samba shares @@ -841,15 +847,16 @@ + - - + + - + Cancel button @@ -857,28 +864,29 @@ + Stop button - + Shortcut - + This system wallpaper is locked. Please contact your admin. - + (copy) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese - + (copy %1) this should be translated in Noun version rather Verb, the first space should be ignore if translate to Chinese @@ -901,26 +909,33 @@ + Access denied + Confirm button + + + The device has been safely removed + + - - + + - - - + + + Open in new window @@ -929,12 +944,12 @@ - - + + - - - + + + Open in new tab @@ -953,8 +968,8 @@ - - + + Properties @@ -990,7 +1005,7 @@ - + Create symlink @@ -1077,70 +1092,70 @@ - + Are you sure you want to erase all data on the disc? - + Erase button - + This action cannot be undone - + How do you want to use this disc? - + Burn image button - + Burn files button - + %1 is a duplicate file. - + Insufficient disc space. - + Lost connection to drive. - + The CD/DVD drive is not ready. Try another disc. - + The CD/DVD drive is busy. Exit the program using the drive, and insert the drive again. - + Invalid volume name - + Unknown error @@ -1179,42 +1194,42 @@ - + Orange - + Red - + Purple - + Navy-blue - + Azure - + Green - + Yellow - + Gray @@ -1290,76 +1305,76 @@ - + User directory - + Local disk - + Removable disk - + DVD - + Network shared directory - - + + Android mobile device - + Apple mobile device - + Unknown device - + Remove button - + Do you want to remove this item? - + Do yout want to remove %1 items? - + It does not delete the original files - + Clear recent history - - - + + + Source path @@ -1404,12 +1419,12 @@ - + Empty Trash - + Location @@ -1509,7 +1524,7 @@ - + My Vault @@ -1704,7 +1719,7 @@ - + Sidebar @@ -1887,29 +1902,14 @@ ddplugin_canvas::WaterMaskFrame - - + + Not authorized - - - In trial period - - - - - ddplugin_canvas::WatermaskSystem - - - - Not authorized - - - - - + + In trial period @@ -1973,7 +1973,7 @@ ddplugin_organizer::CustomMode - + New Collection @@ -1981,50 +1981,70 @@ ddplugin_organizer::ExtendCanvasScene - + Organize desktop - + Desktop options - + Organize by - + Custom collection - + Type - + Time accessed - + Time modified - + Time created - + Create a collection + + + Display Size + + + + + Smaller + + + + + Normal + + + + + Larger + + ddplugin_organizer::ItemEditor @@ -2045,12 +2065,12 @@ ddplugin_organizer::OptionsWindow - + Desktop options - + Auto arrange icons @@ -2155,7 +2175,12 @@ ddplugin_organizer::SizeSlider - + + Display size + + + + Icon size @@ -2324,23 +2349,23 @@ dfm_upgrade::ProcessDialog - + File Manager will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + The desktop services will be updated to a new version, during which the tasks in progress will be terminated. Do you want to update now? - + Update button - + Cancel button @@ -2360,7 +2385,7 @@ - + %1 item selected @@ -2399,10 +2424,10 @@ dfmbase::DialogManager - - - - + + + + Confirm button @@ -2511,15 +2536,15 @@ - - + + OK button - + Operation failed! @@ -2529,191 +2554,191 @@ - + The passphrase is needed to access encrypted data on %1. - - - - - - - - + + + + + + + + Cancel button - + Format button - + To access the device, you must format the disk first. Are you sure you want to format it now? - + Do you want to run %1 or display its content? - + It is an executable text file. - - - + + + Run button - - + + Run in terminal button - + Display button - + Do you want to run %1? - + It is an executable file. - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Permanently delete %1 items? - + Cannot move "%1" to the trash. Do you want to permanently delete it? - - - + + + Delete button - + Permanently delete %1? - - + + This action cannot be undone - + Are you sure you want to empty %1 item? - + Are you sure you want to empty %1 items? - + Empty - + Do you want to delete %1? - + Do you want to delete the selected %1 items? - + Failed to restore %1 file, the target folder is read-only - + Failed to restore %1 files, the target folder is read-only - + "%1" already exists, please use another name. - + Device or resource busy - + This file will be hidden if the file name starts with '.'. Do you want to hide it? - + Hide - + Cancel - + Unable to access %1 - + %1 that this shortcut refers to has been changed or moved - + Do you want to delete this shortcut? - + This file is not executable, do you want to add the execute permission and run? - + The selected files contain system file/directory, and it cannot be deleted @@ -2841,276 +2866,278 @@ - - dfmbase::RightValueWidget - - - Copy complete info - - - dfmbase::SettingBackend - + Always open folder in new window - + Open file: - + Click - + Double click - + New window and tab - + Open from default window: - - + + Computer - - + + Home - - + + Desktop - - + + Videos - - + + Music - - + + Pictures - - + + Documents - - + + Downloads - + Open in new tab: - + Current Directory - + Files and folders - + Show hidden files - + Show file extensions - + Mix sorting of files and folders - + Workspace - + View - + Default size: - + Extra small - + Small - + Medium - + Large - + Extra large - - Tree - - - - + Default view: - + Icon - + List - - Restore default view mode for all directories - - - - - Restore default view mode - - - - + Thumbnail preview - + Compressed file preview - + Text preview - + Document preview - + Image preview - + Video preview - + Music preview - + The remote environment shows thumbnail previews - + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - + Advanced - + + Search + + + + + Auto index internal disk + + + + + Index external storage device after connected to computer + + + + + Full-Text search + + + + Mount - + Auto mount - + Open after auto mount - + + Show item counts and sizes in the path of mounted MTP devices + + + + Merge the entries of Samba shared folders - + Switching the entry display may lead to failed mounting - + Use the file chooser dialog of File Manager - + Ask for my confirmation when deleting files @@ -3274,56 +3301,51 @@ - Switch to tree view - - - - Others - + Close - + Close current tab - + Back - + Forward - + Switch to next tab - + Switch to previous tab - + Next file - + Previous file - + Switch tab by specified number between 1 to 8 @@ -3394,43 +3416,42 @@ - + Time modified: %1 - + Original folder - + Contains: %1 - + Original file - + Size: %1 - + Target folder - - + In data statistics ... - + Target file @@ -3445,37 +3466,37 @@ - + Keep both button - + Skip button - - + + Replace button - + Do not ask again - + Retry button - + Merge button @@ -3489,7 +3510,7 @@ - + Set a password on the shared folder for non-anonymous access @@ -3515,18 +3536,18 @@ dfmplugin_bookmark::BookMarkManager - + Sorry, unable to locate your quick access directory, remove it? - + Cancel button - + Remove button @@ -3784,37 +3805,38 @@ dfmplugin_computer::Computer - + + Computer - + Computer display items - + Hide built-in disks on the Computer page - + Hide loop partitions on the Computer page - + Show file system on disk icon - + Hide My Directories on the Computer page - + Hide 3rd party entries on the Computer page @@ -3822,42 +3844,42 @@ dfmplugin_computer::ComputerController - + Unlock device failed - + Wrong password - + Rename failed - + The device is busy and cannot be renamed now - + Format failed - + The device is busy and cannot be formatted now - + Mount error - + Cannot access %1 @@ -3865,27 +3887,27 @@ dfmplugin_computer::ComputerEventReceiver - + Computer - + %1 is read-only. Do you want to enable read and write permissions for it? - + Once enabled, read/write permission will be granted permanently - + Cancel - + Enable Now @@ -3893,12 +3915,12 @@ dfmplugin_computer::ComputerItemWatcher - + My Directories - + Disks @@ -3906,42 +3928,42 @@ dfmplugin_computer::DeviceBasicWidget - + Basic info - + Device type - + Total space - + File system - + Contains - + Free space - + %1 items - + %1 item @@ -3949,7 +3971,7 @@ dfmplugin_computer::ProtocolEntryFileEntity - + %1 on %2 @@ -3968,27 +3990,27 @@ - + Dimension - + Duration - + Type - + Accessed - + Modified @@ -4384,7 +4406,7 @@ - Copy or Cut File failed, cause: %1 + Copy or Cut File failed,cause: %1 @@ -4417,28 +4439,28 @@ dfmplugin_fileoperations::FileOperationsEventReceiver - + Rename file error - + Failed to create the directory - + Failed to create the file - + link file error - - + + Failed to modify file permissions @@ -4455,17 +4477,17 @@ dfmplugin_menu::ClipBoardMenuScenePrivate - &Paste + Paste - Cu&t + Cut - &Copy + Copy @@ -4473,17 +4495,17 @@ dfmplugin_menu::FileOperatorMenuScenePrivate - &Open + Open - Rena&me + Rename - &Delete + Delete @@ -4557,11 +4579,6 @@ Open in terminal - - - Reverse select - - dfmplugin_menu::OpenWithMenuScenePrivate @@ -4579,22 +4596,17 @@ dfmplugin_menu::SendToMenuScenePrivate - + Send to - - Bluetooth - - - - + Create link - + Send to desktop @@ -4602,43 +4614,48 @@ dfmplugin_menu::ShareMenuScenePrivate - + Share + + + Bluetooth + + dfmplugin_myshares::MyShareMenuScenePrivate - - &Open + + Open - + Open in new window - + Open in new tab - + Cancel sharing - - P&roperties + + Properties dfmplugin_myshares::MyShares - + My Shares @@ -4682,7 +4699,7 @@ - + Unable to burn. Not enough free space on the target disk. @@ -4690,58 +4707,58 @@ dfmplugin_propertydialog::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time modified - + Hide this file - - + + %1 item - + %1 items @@ -4762,27 +4779,27 @@ dfmplugin_propertydialog::ComputerInfoThread - + For Secrets Security - + For Government - + For Enterprise - + Bit - + Available @@ -4790,47 +4807,47 @@ dfmplugin_propertydialog::ComputerPropertyDialog - + Computer - + Basic Info - + Computer name - + Version - + Edition - + OS build - + Type - + Processor - + Memory @@ -4873,14 +4890,6 @@ - - dfmplugin_propertydialog::NameTextEdit - - - %1 are not allowed - - - dfmplugin_propertydialog::PermissionManagerWidget @@ -4900,14 +4909,15 @@ dfmplugin_propertydialog::PropertyMenuScenePrivate - P&roperties + Properties dfmplugin_recent::Recent - + + Recent @@ -4915,17 +4925,17 @@ dfmplugin_recent::RecentManager - + Path - + Last access - + Recent @@ -4956,127 +4966,127 @@ dfmplugin_search::AdvanceSearchBarPrivate - + Search: - + File Type: - + File Size: - + Time Modified: - + Time Accessed: - + Time Created: - + Reset - + All subdirectories - + Current directory - + Application - + Video - + Audio - + Image - + Archive - + Text - + Executable - + Backup file - + Today - + Yesterday - + This week - + Last week - + This month - + Last month - + This year - + Last year @@ -5084,31 +5094,15 @@ dfmplugin_search::Search - - + Search - - - Auto index internal disk - - - - - Index external storage device after connected to computer - - - - - Full-Text search - - dfmplugin_search::SearchHelper - + Path @@ -5116,17 +5110,17 @@ dfmplugin_search::SearchMenuScene - + Open file location - + Select all - + Path @@ -5134,41 +5128,54 @@ dfmplugin_sidebar::SideBarWidget - + Quick access - + Partitions - + Network - + Tag - + + Bookmark + + + + Other - + Unknown Group + + dfmplugin_smbbrowser::SmbBrowser + + + Computers in LAN + + + dfmplugin_smbbrowser::SmbBrowserMenuScenePrivate - &Open + Open @@ -5183,7 +5190,7 @@ - P&roperties + Properties @@ -5218,7 +5225,7 @@ dfmplugin_tag::Tag - + Tag @@ -5226,7 +5233,7 @@ dfmplugin_tag::TagDirMenuScene - + Open file location @@ -5276,66 +5283,56 @@ dfmplugin_titlebar::ConnectToServerDialog - + Connect to Server - - - + + + Clear History - + Unfavorite - - Error - - - - - Unable to favorite illegitimate url! - - - - + Cancel button - + Connect button - + Charset Encoding - + Default - + My Favorites - + No favorites yet - + Favorite @@ -5475,12 +5472,12 @@ dfmplugin_trash::TrashHelper - + Source Path - + Time deleted @@ -5488,27 +5485,27 @@ dfmplugin_trash::TrashMenuScenePrivate - + Restore - + Restore all - + Empty trash - + Source path - + Time deleted @@ -5516,7 +5513,7 @@ dfmplugin_trashcore::TrashCore - + Trash @@ -5529,17 +5526,17 @@ - + item - + items - + Contains %1 %2 @@ -5721,42 +5718,42 @@ dfmplugin_vault::BasicWidget - + Basic info - + Size - + Contains - + Type - + Location - + Time created - + Time accessed - + Time locked @@ -5986,7 +5983,7 @@ dfmplugin_vault::VaultActiveFinishedView - + Encrypt File Vault @@ -6007,19 +6004,19 @@ - - - + + + Encrypt - + Failed to create file vault: %1 - + OK @@ -6070,7 +6067,7 @@ dfmplugin_vault::VaultActiveSetUnlockMethodView - + Set Vault Password @@ -6096,7 +6093,7 @@ - + ≥ 8 chars, contains A-Z, a-z, 0-9, and symbols @@ -6131,8 +6128,8 @@ - - + + Passwords do not match @@ -6140,7 +6137,7 @@ dfmplugin_vault::VaultActiveStartView - + File Vault @@ -6190,7 +6187,7 @@ dfmplugin_vault::VaultHelper - + Vault @@ -6200,7 +6197,7 @@ - + A task is in progress, so it cannot perform your operation @@ -6208,120 +6205,97 @@ dfmplugin_vault::VaultPropertyDialog - + My Vault - dfmplugin_vault::VaultRemoveByNoneWidget - - - Cancel - - - - - Delete - - - - - Delete File Vault - - - - - Failed to delete file vault - - + dfmplugin_vault::VaultRemoveByPasswordView - - OK + + Password - - Once deleted, the files in it will be permanently deleted + + Password hint: %1 - dfmplugin_vault::VaultRemoveByPasswordView + dfmplugin_vault::VaultRemoveByRecoverykeyView - - Once deleted, the files in it will be permanently deleted + + Input the 32-digit recovery key + + + dfmplugin_vault::VaultRemovePages - - Password + + Delete File Vault - - Password hint: %1 + + Once deleted, the files in it will be permanently deleted - + Cancel + button - - Delete - - - - - Delete File Vault + + Use Key + button - - Wrong password + + Delete + button - - Failed to delete file vault + + Removing... - + + OK + button - - - dfmplugin_vault::VaultRemoveByRecoverykeyView - - Input the 32-digit recovery key + + Wrong password - - - dfmplugin_vault::VaultRemoveProgressView - - Removing... + + Wrong recovery key - - OK + + Failed to delete file vault - - Delete File Vault + + Deleted successfully - - Deleted successfully + + Failed to delete @@ -6333,10 +6307,16 @@ - + File Vault + + + + Vault + + dfmplugin_workspace::FileOperatorHelper @@ -6349,22 +6329,22 @@ dfmplugin_workspace::FileViewModel - + Name - + Time modified - + Size - + Type @@ -6380,7 +6360,7 @@ dfmplugin_workspace::IconItemEditor - + %1 are not allowed @@ -6396,50 +6376,45 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by - + Display as - + Name - + Time modified - + Size - + Type - + Icon - + List - - - Tree - - dfmplugin_workspace::WorkspaceMenuScene @@ -6452,7 +6427,7 @@ filedialog_core::FileDialog - + Save button @@ -6461,13 +6436,13 @@ filedialog_core::FileDialogStatusBar - + Save button - + Open button @@ -6505,112 +6480,112 @@ plugin_filepreview::DDciIconPreview - + Available sizes: - + Custom Size - + Device Pixel Ratio: - + Theme: - + Light - + Dark - + Mode: - + Normal - + Disabled - + Hovered - + Pressed - + Palette - + Current mode icon does not support the palette - + Foreground: - + Background: - + Highlight: - + HighlightForeground: - + Background Color: - + White - + Black - + Transparent - + Custom @@ -6642,22 +6617,22 @@ plugin_filepreview::MusicMessageView - + Artist: - + Album: - + unknown artist - + unknown album diff --git a/translations/dde-file-manager_zh_CN.ts b/translations/dde-file-manager_zh_CN.ts index 3771b76baf..0670b2000a 100644 --- a/translations/dde-file-manager_zh_CN.ts +++ b/translations/dde-file-manager_zh_CN.ts @@ -17,12 +17,12 @@ Application - + File Manager 文件管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 文件管理器是一款功能强大的文件管理工具,它包括搜索、复制、回收站、压缩/解压缩,文件属性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -64,35 +64,35 @@ DockItemDataManager - + The device has been safely removed - + 设备已被安全移除 - + eject - + 弹出 - + unmount - + 卸载 - - + + remove - + 移除 - + Operation failed - + 操作失败 - + Device (%1) is busy, cannot %2 now. - + 设备(%1)正忙,无法%2。 @@ -108,7 +108,7 @@ The file name or the path is too long! - + 文件名称或路径太长! @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在处理文件 - + Bit @@ -1688,7 +1688,7 @@ Device disconnected - 光驱设备未连接 + 设备断开连接 @@ -2848,7 +2848,7 @@ Copy complete info - + 复制完整信息 @@ -2944,7 +2944,7 @@ Files and folders - 文件和目录 + 文件和文件夹 @@ -2979,7 +2979,7 @@ Extra small - 特小 + 极小 @@ -2999,7 +2999,7 @@ Extra large - 特大 + 极大 @@ -3024,12 +3024,12 @@ Restore default view mode for all directories - + 所有目录恢复默认视图 Restore default view mode - + 恢复默认视图 @@ -3818,7 +3818,7 @@ Hide 3rd party entries on the Computer page - 计算机工作区隐藏第三方项 + 计算机工作区隐藏第三方入口 @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - 移动文件 %1 到回收站失败 + 将文件 %1 移至回收站失败 @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - 拷贝或剪贴文件失败! + 复制或剪切文件失败! @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - 移动文件 %1 到回收站失败,原因: %2 + 将文件 %1 移至回收站失败,原因是: %2 @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - 拷贝或剪贴文件失败,原因: %1 + 复制或剪切文件失败,原因:%1 @@ -4458,17 +4458,17 @@ &Paste - + 粘贴(&P) Cu&t - + 剪切(&T) &Copy - + 复制(&C) @@ -4476,17 +4476,17 @@ &Open - + 打开(&O) Rena&me - + 重命名(&M) &Delete - + 删除(&D) @@ -4562,7 +4562,7 @@ Reverse select - + 反选 @@ -4588,7 +4588,7 @@ Bluetooth - + 蓝牙 @@ -4614,7 +4614,7 @@ &Open - + 打开(&O) @@ -4634,7 +4634,7 @@ P&roperties - + 属性(&R) @@ -4671,7 +4671,7 @@ 1. It is not %1 disc; 2. The version of this file system does not support adding files yet. - 1. 它不是%1磁盘;69/5000 + 1. 它不是%1磁盘; 2. 这个文件系统的版本还不支持添加文件。 @@ -4904,7 +4904,7 @@ P&roperties - + 属性(&R) @@ -5172,7 +5172,7 @@ &Open - + 打开(&O) @@ -5187,7 +5187,7 @@ P&roperties - + 属性(&R) @@ -5303,7 +5303,7 @@ Unable to favorite illegitimate url! - + 非法url无法收藏! @@ -5811,39 +5811,40 @@ dfmplugin_vault::RecoveryKeyView - + + Unlock by Key 恢复密钥解锁 - + Input the 32-digit recovery key 请输入32位恢复密钥 - + Cancel button 取 消 - + Unlock button 解锁 - + Wrong recovery key 密钥错误 - + Failed to unlock file vault 解锁保险箱失败 - + OK 确 定 @@ -5936,11 +5937,6 @@ Forgot password? 忘记密码? - - - Key unlock - 秘钥解锁 - Password @@ -6240,7 +6236,7 @@ Failed to delete file vault - 解锁保险箱失败 + 删除保险箱失败 @@ -6256,52 +6252,47 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 删除保险箱后,其中的所有内容将会被永久删除 - + Password 密码 - - Key delete - 使用秘钥 - - - + Password hint: %1 密码提示:%1 - + Cancel 取 消 - + Delete 删 除 - + Delete File Vault 删除保险箱 - + Wrong password 密码错误 - + Failed to delete file vault 删除保险箱失败 - + OK 确 定 @@ -6309,40 +6300,10 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 请输入32位恢复密钥 - - - Cancel - 取 消 - - - - Delete - 删 除 - - - - Delete File Vault - 删除保险箱 - - - - Wrong recovery key - 密钥错误 - - - - Failed to delete file vault - 删除保险箱失败 - - - - OK - 确 定 - dfmplugin_vault::VaultRemoveProgressView @@ -6414,7 +6375,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在加载... @@ -6438,47 +6399,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 显示方式 - + Name 名称 - + Time modified 修改时间 - + Size 大小 - + Type 类型 - + Icon 图标视图 - + List 列表视图 - + Tree 树形视图 diff --git a/translations/dde-file-manager_zh_HK.ts b/translations/dde-file-manager_zh_HK.ts index b22d0b2313..8e404ab4cf 100644 --- a/translations/dde-file-manager_zh_HK.ts +++ b/translations/dde-file-manager_zh_HK.ts @@ -17,12 +17,12 @@ Application - + File Manager 文件管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 文件管理器是一款功能強大的文件管理工具,它包括搜索、複製、回收站、壓縮/解壓縮,文件屬性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -40,7 +40,7 @@ Disks - 磁盤列表 + 磁盤列表 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - + 設備已被安全移除 - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在處理文件 - + Bit @@ -3004,7 +3004,7 @@ Tree - 樹形視圖 + @@ -3277,7 +3277,7 @@ Switch to tree view - 切換到樹形視圖 + @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - 移動文件 %1 到回收站失敗 + @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - 拷貝或剪貼文件失敗! + @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - 移動文件 %1 到回收站失敗,原因: %2 + @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - 拷貝或剪貼文件失敗,原因: %1 + @@ -4588,7 +4588,7 @@ Bluetooth - + 藍牙 @@ -4881,7 +4881,7 @@ %1 are not allowed - 不得含有%1 + 不得含有%1 @@ -5095,17 +5095,17 @@ Auto index internal disk - 自動索引內置磁盤 + 自動索引內置磁盤 Index external storage device after connected to computer - 連接電腦後索引外部存儲設備 + 連接電腦後索引外部存儲設備 Full-Text search - 全文搜索 + 全文搜索 @@ -5298,7 +5298,7 @@ Error - 錯誤訊息 + 錯誤訊息 @@ -5811,39 +5811,40 @@ dfmplugin_vault::RecoveryKeyView - + + Unlock by Key 恢復密鑰解鎖 - + Input the 32-digit recovery key 請輸入32位恢復密鑰 - + Cancel button 取 消 - + Unlock button 解鎖 - + Wrong recovery key 密鑰錯誤 - + Failed to unlock file vault 解鎖保險箱失敗 - + OK 確 定 @@ -5936,11 +5937,6 @@ Forgot password? 忘記密碼? - - - Key unlock - 密鑰解鎖 - Password @@ -6256,52 +6252,47 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 刪除保險箱後,其中的所有內容將會被永久刪除 - + Password 密碼 - - Key delete - 密鑰刪除 - - - + Password hint: %1 密碼提示:%1 - + Cancel 取 消 - + Delete 刪 除 - + Delete File Vault 刪除保險箱 - + Wrong password 密碼錯誤 - + Failed to delete file vault 刪除保險箱失敗 - + OK 確 定 @@ -6309,40 +6300,10 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 請輸入32位恢復密鑰 - - - Cancel - 取 消 - - - - Delete - 刪 除 - - - - Delete File Vault - 刪除保險箱 - - - - Wrong recovery key - 密鑰錯誤 - - - - Failed to delete file vault - 刪除保險箱失敗 - - - - OK - 確 定 - dfmplugin_vault::VaultRemoveProgressView @@ -6414,7 +6375,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在加載... @@ -6438,49 +6399,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 顯示方式 - + Name 名稱 - + Time modified 修改時間 - + Size 大小 - + Type 類型 - + Icon 圖標視圖 - + List 列表視圖 - + Tree - 樹形視圖 + diff --git a/translations/dde-file-manager_zh_TW.ts b/translations/dde-file-manager_zh_TW.ts index eb13f4541c..3e054b3c4b 100644 --- a/translations/dde-file-manager_zh_TW.ts +++ b/translations/dde-file-manager_zh_TW.ts @@ -17,12 +17,12 @@ Application - + File Manager 檔案管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 檔案管理器是一款功能強大的文件管理工具,它包括搜尋、複製、回收站、壓縮/解壓縮,文件屬性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -40,7 +40,7 @@ Disks - 磁碟列表 + 磁碟列表 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed - + 裝置已被安全移除 - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在處理文件 - + Bit @@ -3004,7 +3004,7 @@ Tree - 樹形檢視 + @@ -3277,7 +3277,7 @@ Switch to tree view - 切換到樹形檢視 + @@ -4260,7 +4260,7 @@ Failed to move the file %1 to trash - 移動文件 %1 到回收站失敗 + @@ -4337,7 +4337,7 @@ Copy or Cut File failed! - 複製或剪貼文件失敗! + @@ -4367,7 +4367,7 @@ Failed to move the file %1 to trash, cause: %2 - 移動文件 %1 到回收站失敗,原因: %2 + @@ -4387,7 +4387,7 @@ Copy or Cut File failed, cause: %1 - 複製或剪貼文件失敗,原因: %1 + @@ -4588,7 +4588,7 @@ Bluetooth - + 藍牙 @@ -4881,7 +4881,7 @@ %1 are not allowed - 不得含有%1 + 不得含有%1 @@ -5095,17 +5095,17 @@ Auto index internal disk - 自動索引內建磁碟 + 自動索引內建磁碟 Index external storage device after connected to computer - 連接電腦後索引外部儲存裝置 + 連接電腦後索引外部儲存裝置 Full-Text search - 全文搜尋 + 全文搜尋 @@ -5298,7 +5298,7 @@ Error - 錯誤訊息 + 錯誤訊息 @@ -5811,39 +5811,40 @@ dfmplugin_vault::RecoveryKeyView - + + Unlock by Key 復原金鑰解鎖 - + Input the 32-digit recovery key 請輸入32位復原金鑰 - + Cancel button 取 消 - + Unlock button 解鎖 - + Wrong recovery key 金鑰錯誤 - + Failed to unlock file vault 解鎖保險箱失敗 - + OK 確 定 @@ -5936,11 +5937,6 @@ Forgot password? 忘記密碼? - - - Key unlock - 金鑰解鎖 - Password @@ -6256,52 +6252,47 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 刪除保險箱後,其中的所有內容將會被永久刪除 - + Password 密碼 - - Key delete - 金鑰刪除 - - - + Password hint: %1 密碼提示:%1 - + Cancel 取 消 - + Delete 刪 除 - + Delete File Vault 刪除保險箱 - + Wrong password 密碼錯誤 - + Failed to delete file vault 刪除保險箱失敗 - + OK 確 定 @@ -6309,40 +6300,10 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 請輸入32位復原金鑰 - - - Cancel - 取 消 - - - - Delete - 刪 除 - - - - Delete File Vault - 刪除保險箱 - - - - Wrong recovery key - 金鑰錯誤 - - - - Failed to delete file vault - 刪除保險箱失敗 - - - - OK - 確 定 - dfmplugin_vault::VaultRemoveProgressView @@ -6364,7 +6325,7 @@ Deleted successfully - 成功刪除 + 刪除成功 @@ -6414,7 +6375,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在載入... @@ -6438,49 +6399,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 顯示方式 - + Name 名稱 - + Time modified 修改時間 - + Size 大小 - + Type 類型 - + Icon 圖示檢視 - + List 列表檢視 - + Tree - 樹形檢視 + From 128d3de6daca020d5b6da7ab1c01d5cfe0257664 Mon Sep 17 00:00:00 2001 From: liuyangming Date: Fri, 19 Jan 2024 16:33:00 +0800 Subject: [PATCH 20/25] fix: [workspace]view display issue 1.reset srollbar height. 2.calculate rect by option.rect. Log: fix view display issue Bug: https://pms.uniontech.com/bug-view-237403.html --- .../core/dfmplugin-titlebar/views/optionbuttonbox.cpp | 1 + .../core/dfmplugin-titlebar/views/titlebarwidget.cpp | 1 + .../filemanager/core/dfmplugin-workspace/views/fileview.cpp | 6 +++++- .../core/dfmplugin-workspace/views/private/fileview_p.cpp | 2 +- .../core/dfmplugin-workspace/views/treeitempaintproxy.cpp | 4 +--- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/plugins/filemanager/core/dfmplugin-titlebar/views/optionbuttonbox.cpp b/src/plugins/filemanager/core/dfmplugin-titlebar/views/optionbuttonbox.cpp index fa1ad7ea9a..7031a51dbf 100644 --- a/src/plugins/filemanager/core/dfmplugin-titlebar/views/optionbuttonbox.cpp +++ b/src/plugins/filemanager/core/dfmplugin-titlebar/views/optionbuttonbox.cpp @@ -216,6 +216,7 @@ void OptionButtonBox::initUiForSizeMode() d->hBoxLayout->addWidget(d->listViewButton); if (d->treeViewButton) d->hBoxLayout->addWidget(d->treeViewButton); + d->hBoxLayout->addSpacing(10); d->hBoxLayout->addWidget(d->detailButton); d->hBoxLayout->setSpacing(0); setLayout(d->hBoxLayout); diff --git a/src/plugins/filemanager/core/dfmplugin-titlebar/views/titlebarwidget.cpp b/src/plugins/filemanager/core/dfmplugin-titlebar/views/titlebarwidget.cpp index 59df2e098d..03c938a3ff 100644 --- a/src/plugins/filemanager/core/dfmplugin-titlebar/views/titlebarwidget.cpp +++ b/src/plugins/filemanager/core/dfmplugin-titlebar/views/titlebarwidget.cpp @@ -126,6 +126,7 @@ void TitleBarWidget::initializeUi() titleBarLayout->addWidget(searchButton); titleBarLayout->addSpacing(10); titleBarLayout->addWidget(optionButtonBox, 0, Qt::AlignRight); + titleBarLayout->addSpacing(20); setLayout(titleBarLayout); initUiForSizeMode(); diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/fileview.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/views/fileview.cpp index e613b5b950..b55a6d1ddc 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/fileview.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/fileview.cpp @@ -132,6 +132,7 @@ void FileView::setViewMode(Global::ViewMode mode) d->initIconModeView(); setMinimumWidth(0); model()->setTreeView(false); + verticalScrollBar()->setFixedHeight(rect().height() - d->statusBar->height()); break; case Global::ViewMode::kListMode: setIconSize(QSize(kListViewIconSize, kListViewIconSize)); @@ -358,7 +359,8 @@ void FileView::onSectionHandleDoubleClicked(int logicalIndex) int width = 0; if (logicalIndex == 0) { - width = list.at(1).right() + kColumnPadding / 2; + // 树形视图多绘制一个扩展标识,名称是第三列 + width = list.at(currentViewMode() == Global::ViewMode::kTreeMode ? 2 : 1).right() + kColumnPadding / 2; } else { width = list.at(logicalIndex + 1).width() + kColumnPadding * 2; } @@ -2005,6 +2007,8 @@ void FileView::setListViewMode() d->adjustFileNameColumn = true; updateListHeaderView(); } + + verticalScrollBar()->setFixedHeight(rect().height() - d->statusBar->height() - d->headerView->height()); } QUrl FileView::parseSelectedUrl(const QUrl &url) diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/private/fileview_p.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/views/private/fileview_p.cpp index 3d468827c1..d3a00a64f6 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/private/fileview_p.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/private/fileview_p.cpp @@ -87,7 +87,7 @@ void FileViewPrivate::initListModeView() headerView = new HeaderView(Qt::Orientation::Horizontal, q); headerView->setDefaultAlignment(Qt::AlignLeft | Qt::AlignVCenter); - headerView->setFixedHeight(kListViewIconSize); + headerView->setFixedHeight(kListViewHeaderHeight); headerView->setMinimumSectionSize(GlobalPrivate::kListViewMinimumWidth); headerView->setModel(q->model()); diff --git a/src/plugins/filemanager/core/dfmplugin-workspace/views/treeitempaintproxy.cpp b/src/plugins/filemanager/core/dfmplugin-workspace/views/treeitempaintproxy.cpp index 3ba2808da8..08c1fcb15b 100644 --- a/src/plugins/filemanager/core/dfmplugin-workspace/views/treeitempaintproxy.cpp +++ b/src/plugins/filemanager/core/dfmplugin-workspace/views/treeitempaintproxy.cpp @@ -51,10 +51,8 @@ QRectF TreeItemPaintProxy::rectByType(RectOfItemType type, const QModelIndex &in QList TreeItemPaintProxy::allPaintRect(const QStyleOptionViewItem &option, const QModelIndex &index) { - Q_UNUSED(option) - QList rects {}; - QRect itemRect = view()->visualRect(index); + QRect itemRect = option.rect; QRectF icon = iconRect(index, itemRect); rects.append(icon.toRect()); From 1a56d7be3fd4fb75296402601a8b3a01493b5361 Mon Sep 17 00:00:00 2001 From: Gong Heng Date: Mon, 22 Jan 2024 13:09:14 +0800 Subject: [PATCH 21/25] fix: [vault] add translate add translate Log: fix issue Bug: https://pms.uniontech.com/bug-view-240657.html --- translations/dde-file-manager.ts | 530 +++++++++++++------------ translations/dde-file-manager_bo.ts | 127 ++++-- translations/dde-file-manager_ug.ts | 127 ++++-- translations/dde-file-manager_zh_CN.ts | 127 ++++-- translations/dde-file-manager_zh_HK.ts | 127 ++++-- translations/dde-file-manager_zh_TW.ts | 127 ++++-- 6 files changed, 700 insertions(+), 465 deletions(-) diff --git a/translations/dde-file-manager.ts b/translations/dde-file-manager.ts index b985715429..08b49fd617 100644 --- a/translations/dde-file-manager.ts +++ b/translations/dde-file-manager.ts @@ -17,12 +17,12 @@ Application - + File Manager File Manager - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. @@ -30,7 +30,7 @@ DesktopMain - + Desktop Desktop @@ -40,7 +40,7 @@ Disks - Disks + Disks @@ -64,35 +64,35 @@ DockItemDataManager - + The device has been safely removed - The device has been safely removed + The device has been safely removed - + eject - + eject - + unmount - + Unmount - - + + remove - + remove - + Operation failed - + Operation failed - + Device (%1) is busy, cannot %2 now. - + Device (%1) is busy, cannot %2 now. @@ -100,7 +100,7 @@ All Files - + All Files @@ -108,7 +108,7 @@ The file name or the path is too long! - + The file name or the path is too long! @@ -191,7 +191,7 @@ - + %1 Volume %1 Volume @@ -212,9 +212,9 @@ - + %1 on %2 - + %1 on %2 @@ -532,7 +532,7 @@ Extend filename characters - + Extend filename characters @@ -871,7 +871,7 @@ This system wallpaper is locked. Please contact your admin. - + This system wallpaper is locked. Please contact your admin. @@ -886,19 +886,19 @@ (copy %1) - - + + dde-file-manager dde-file-manager - + Files are being processed Files are being processed - + Bit Bit @@ -1603,7 +1603,7 @@ Filename has too many characters - + Filename has too many characters @@ -1663,17 +1663,17 @@ File is read-only - + File is read-only Failed to open the file - Failed to open the file + Failed to open the file Target Trash File Not exist - + Target Trash File Not exist @@ -1688,27 +1688,27 @@ Device disconnected - + Device disconnected ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 - ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 + ID=%1, DateTime=%2, Burner=%3, DiscType=%4, Result=%5, User=%6, FileName=%7, FileSize=%8, FileType=%9 Success - Success + Success Failed - Failed + Failed Sidebar - + Sidebar @@ -1907,13 +1907,13 @@ Not authorized - Not authorized + Not authorized In trial period - In trial period + In trial period @@ -2260,7 +2260,7 @@ This system wallpaper is locked. Please contact your admin. - + This system wallpaper is locked. Please contact your admin. @@ -2473,7 +2473,7 @@ Cannot create the mountpoint: the file name is too long - + Cannot create the mountpoint: the file name is too long @@ -2493,7 +2493,7 @@ The device has been blocked and you do not have permission to access it. Please configure its connection policy in Security Center or contact your administrator. - + The device has been blocked and you do not have permission to access it. Please configure its connection policy in Security Center or contact your administrator. @@ -2603,17 +2603,17 @@ Cannot move the selected %1 items to the trash. Do you want to permanently delete them? - + Cannot move the selected %1 items to the trash. Do you want to permanently delete them? Permanently delete %1 items? - + Permanently delete %1 items? Cannot move "%1" to the trash. Do you want to permanently delete it? - + Cannot move "%1" to the trash. Do you want to permanently delete it? @@ -2626,7 +2626,7 @@ Permanently delete %1? - + Permanently delete %1? @@ -2848,7 +2848,7 @@ Copy complete info - + Copy complete info @@ -2856,265 +2856,265 @@ Always open folder in new window - Always open folder in new window + Always open folder in new window Open file: - Open file: + Open file: Click - Click + Click Double click - Double click + Double click New window and tab - New window and tab + New window and tab Open from default window: - Open from default window: + Open from default window: Computer - Computer + Computer Home - Home + Home Desktop - Desktop + Desktop Videos - Videos + Videos Music - Music + Music Pictures - Pictures + Pictures Documents - Documents + Documents Downloads - Downloads + Downloads Open in new tab: - Open in new tab: + Open in new tab: Current Directory - Current Directory + Current Directory Files and folders - + Files and folders Show hidden files - Show hidden files + Show hidden files Show file extensions - Show file extensions + Show file extensions Mix sorting of files and folders - Mix sorting of files and folders + Mix sorting of files and folders Workspace - + Workspace View - View + View Default size: - Default size: + Default size: Extra small - Extra small + Extra small Small - Small + Small Medium - Medium + Medium Large - Large + Large Extra large - Extra large + Extra large Tree - + Default view: - Default view: + Default view: Icon - Icon + Icon List - List + List Restore default view mode for all directories - + Restore default view mode for all directories Restore default view mode - + Restore default view mode Thumbnail preview - + Thumbnail preview Compressed file preview - Compressed file preview + Compressed file preview Text preview - Text preview + Text preview Document preview - Document preview + Document preview Image preview - Image preview + Image preview Video preview - Video preview + Video preview Music preview - Music preview + Music preview The remote environment shows thumbnail previews - The remote environment shows thumbnail previews + The remote environment shows thumbnail previews Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze - Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze + Turning on the thumbnail preview may cause the remote directory to load slowly or the operation to freeze Advanced - Advanced + Advanced Mount - Mount + Mount Auto mount - Auto mount + Auto mount Open after auto mount - Open after auto mount + Open after auto mount Merge the entries of Samba shared folders - Merge the entries of Samba shared folders + Merge the entries of Samba shared folders Switching the entry display may lead to failed mounting - Switching the entry display may lead to failed mounting + Switching the entry display may lead to failed mounting Use the file chooser dialog of File Manager - Use the file chooser dialog of File Manager + Use the file chooser dialog of File Manager Ask for my confirmation when deleting files - Ask for my confirmation when deleting files + Ask for my confirmation when deleting files @@ -3157,7 +3157,7 @@ Reverse selection - + Reverse selection @@ -3277,7 +3277,7 @@ Switch to tree view - + Switch to tree view @@ -3429,7 +3429,7 @@ In data statistics ... - + In data statistics ... @@ -3488,12 +3488,12 @@ Enter a password to protect shared folders - Enter a password to protect shared folders + Enter a password to protect shared folders Set a password on the shared folder for non-anonymous access - Set a password on the shared folder for non-anonymous access + Set a password on the shared folder for non-anonymous access @@ -3519,7 +3519,7 @@ Sorry, unable to locate your quick access directory, remove it? - + Sorry, unable to locate your quick access directory, remove it? @@ -3793,32 +3793,32 @@ Computer display items - + Computer display items Hide built-in disks on the Computer page - Hide built-in disks on the Computer page + Hide built-in disks on the Computer page Hide loop partitions on the Computer page - Hide loop partitions on the Computer page + Hide loop partitions on the Computer page Show file system on disk icon - Show file system on disk icon + Show file system on disk icon Hide My Directories on the Computer page - + Hide My Directories on the Computer page Hide 3rd party entries on the Computer page - + Hide 3rd party entries on the Computer page @@ -3836,22 +3836,22 @@ Rename failed - + Rename failed The device is busy and cannot be renamed now - + The device is busy and cannot be renamed now Format failed - + Format failed The device is busy and cannot be formatted now - + The device is busy and cannot be formatted now @@ -3874,22 +3874,22 @@ %1 is read-only. Do you want to enable read and write permissions for it? - + %1 is read-only. Do you want to enable read and write permissions for it? Once enabled, read/write permission will be granted permanently - + Once enabled, read/write permission will be granted permanently Cancel - Cancel + Cancel Enable Now - + Enable Now @@ -3954,7 +3954,7 @@ %1 on %2 - + %1 on %2 @@ -4178,221 +4178,221 @@ Copying %1 - Copying %1 + Copying %1 to %1 - to %1 + to %1 Deleting %1 - Deleting %1 + Deleting %1 Moving %1 - Moving %1 + Moving %1 Trashing %1 - Trashing %1 + Trashing %1 Restoring %1 - Restoring %1 + Restoring %1 Permission error - Permission error + Permission error The action is denied - The action is denied + The action is denied Target file %1 already exists - + Target file %1 already exists Target directory %1 already exists - + Target directory %1 already exists Failed to open the file %1 - + Failed to open the file %1 Failed to read the file %1 - + Failed to read the file %1 Failed to write the file %1 - + Failed to write the file %1 Failed to create the directory %1 - + Failed to create the directory %1 Failed to delete the file %1 - + Failed to delete the file %1 Failed to move the file %1 to trash - + Failed to move the file %1 to trash Failed to move the file %1 - + Failed to move the file %1 Original file %1 does not exist - + Original file %1 does not exist Failed, the file size of %1 must be less than 4 GB - + Failed, the file size of %1 must be less than 4 GB Not enough free space on the target disk - Not enough free space on the target disk + Not enough free space on the target disk File %1 integrity was damaged - + File %1 integrity was damaged The target device is read only - The target device is read only + The target device is read only Target folder is inside the source folder - Target folder is inside the source folder + Target folder is inside the source folder The action is not supported - The action is not supported + The action is not supported You do not have permission to traverse files in %1 - + You do not have permission to traverse files in %1 Restore failed, original path could not be found - + Restore failed, original path could not be found Unknown error - Unknown error + Unknown error Failed to parse the url of trash - + Failed to parse the url of trash Restore failed: the original file does not exist - + Restore failed: the original file does not exist Copy or Cut File failed! - + Copy or Cut File failed! Failed to open the file %1, cause: %2 - + Failed to open the file %1, cause: %2 Failed to read the file %1, cause: %2 - + Failed to read the file %1, cause: %2 Failed to write the file %1, cause: %2 - + Failed to write the file %1, cause: %2 Failed to create the directory %1, cause: %2 - + Failed to create the directory %1, cause: %2 Failed to delete the file %1, cause: %2 - + Failed to delete the file %1, cause: %2 Failed to move the file %1 to trash, cause: %2 - + Failed to move the file %1 to trash, cause: %2 Failed to move the file %1, cause: %2 - + Failed to move the file %1, cause: %2 File %1 integrity was damaged, cause: %2 - + File %1 integrity was damaged, cause: %2 Failed to create symlink, cause: %1 - + Failed to create symlink, cause: %1 Copy or Cut File failed, cause: %1 - + Copy or Cut File failed, cause: %1 %1 already exists in target folder - %1 already exists in target folder + %1 already exists in target folder @@ -4400,7 +4400,7 @@ Original path %1 - + Original path %1 @@ -4408,12 +4408,12 @@ Target path %1 - + Target path %1 Original path %1 Target path %2 - + Original path %1 Target path %2 @@ -4421,28 +4421,28 @@ Rename file error - + Rename file error Failed to create the directory - Failed to create the directory + Failed to create the directory Failed to create the file - + Failed to create the file link file error - + link file error Failed to modify file permissions - + Failed to modify file permissions @@ -4458,17 +4458,17 @@ &Paste - + &Paste Cu&t - + Cu&t &Copy - + &Copy @@ -4476,17 +4476,17 @@ &Open - + &Open Rena&me - + Rena&me &Delete - + &Delete @@ -4562,7 +4562,7 @@ Reverse select - + Reverse select @@ -4588,7 +4588,7 @@ Bluetooth - Bluetooth + Bluetooth @@ -4614,7 +4614,7 @@ &Open - + &Open @@ -4634,7 +4634,7 @@ P&roperties - + P&roperties @@ -4767,7 +4767,7 @@ For Secrets Security - + For Secrets Security @@ -4881,7 +4881,7 @@ %1 are not allowed - %1 are not allowed + %1 are not allowed @@ -4904,7 +4904,7 @@ P&roperties - + P&roperties @@ -5095,17 +5095,17 @@ Auto index internal disk - Auto index internal disk + Auto index internal disk Index external storage device after connected to computer - Index external storage device after connected to computer + Index external storage device after connected to computer Full-Text search - Full-Text search + Full-Text search @@ -5172,7 +5172,7 @@ &Open - + &Open @@ -5187,7 +5187,7 @@ P&roperties - + P&roperties @@ -5205,17 +5205,17 @@ Unmount - Unmount + Unmount Clear saved password and unmount - Clear saved password and unmount + Clear saved password and unmount Remove - Remove + Remove @@ -5298,12 +5298,12 @@ Error - Error + Error Unable to favorite illegitimate url! - + Unable to favorite illegitimate url! @@ -5320,12 +5320,12 @@ Charset Encoding - + Charset Encoding Default - + @@ -5335,7 +5335,7 @@ No favorites yet - + No favorites yet @@ -5390,12 +5390,12 @@ Minimum of 8 characters. At least 3 types: 0-9, a-z, A-Z and symbols. Different from the username. - + Minimum of 8 characters. At least 3 types: 0-9, a-z, A-Z and symbols. Different from the username. Password must be no more than %1 characters - + Password must be no more than %1 characters @@ -5769,13 +5769,14 @@ Unlock failed - + Unlock failed The %1 directory is occupied, please clear the files in this directory and try to unlock the safe again. - + The %1 directory is occupied, + please clear the files in this directory and try to unlock the safe again. @@ -5811,40 +5812,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key Unlock by Key - + Input the 32-digit recovery key Input the 32-digit recovery key - + Cancel button Cancel - + Unlock button Unlock - + Wrong recovery key Wrong recovery key - + Failed to unlock file vault Failed to unlock file vault - + OK OK @@ -5937,6 +5937,11 @@ Forgot password? Forgot password? + + + Key unlock + Key unlock + Password @@ -6221,111 +6226,146 @@ Cancel - Cancel + Cancel Delete - Delete + Delete Delete File Vault - Delete File Vault + Delete File Vault Failed to delete file vault - Failed to delete file vault + Failed to delete file vault OK - OK + OK Once deleted, the files in it will be permanently deleted - Once deleted, the files in it will be permanently deleted + Once deleted, the files in it will be permanently deleted dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted - Once deleted, the files in it will be permanently deleted + Once deleted, the files in it will be permanently deleted - + Password Password - + + Key delete + Key delete + + + Password hint: %1 Password hint: %1 - + Cancel - Cancel + Cancel - + Delete - Delete + Delete - + Delete File Vault - Delete File Vault + Delete File Vault - + Wrong password - Wrong password + Wrong password - + Failed to delete file vault - Failed to delete file vault + Failed to delete file vault - + OK - OK + OK dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key Input the 32-digit recovery key + + + Cancel + Cancel + + + + Delete + Delete + + + + Delete File Vault + Delete File Vault + + + + Wrong recovery key + Wrong recovery key + + + + Failed to delete file vault + Failed to delete file vault + + + + OK + OK + dfmplugin_vault::VaultRemoveProgressView Removing... - Removing... + Removing... OK - OK + OK Delete File Vault - Delete File Vault + Delete File Vault Deleted successfully - Deleted successfully + Deleted successfully @@ -6346,7 +6386,7 @@ Failed to open %1, which may be moved or renamed - + Failed to open %1, which may be moved or renamed @@ -6375,7 +6415,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... Loading... @@ -6399,49 +6439,49 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by Sort by - + Display as Display as - + Name Name - + Time modified Time modified - + Size Size - + Type Type - + Icon Icon - + List List - + Tree - + Tree diff --git a/translations/dde-file-manager_bo.ts b/translations/dde-file-manager_bo.ts index d354e1a968..c6cbf8bb92 100644 --- a/translations/dde-file-manager_bo.ts +++ b/translations/dde-file-manager_bo.ts @@ -17,12 +17,12 @@ Application - + File Manager ཡིག་ཆ་དོ་དམ་བྱེད་ཆས། - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ཡིག་ཆ་དོ་དམ་བྱེད་ཆས་ནི་རྩོལ་ནུས་སྟོབས་ཆེན་ཡོད་པའི་དོ་དམ་ཡོ་བྱད་ཅིག་ཡིན། དེར་བཤེར་འཚོལ་དང་། པར་སློག སྙིགས་སྣོད། སྡུད་སྒྲིལ། བསྡུས་འགྲོལ། ཡིག་ཆའི་ངོ་བོ་སོགས་ཚུད་པའི་དོ་དམ་རྩོལ་ནུས་ལྡན་ཡོད། @@ -30,7 +30,7 @@ DesktopMain - + Desktop ཅོག་ངོས་མངོན་སྟོན། @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed སྒྲིག་ཆས་བདེ་འཇགས་ངང་སྤོ་འབུད་བྱས་སོང་། - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume བམ་པོ་%1  @@ -212,7 +212,7 @@ - + %1 on %2 %2 ཡི་ %1 @@ -886,19 +886,19 @@ (འདྲ་དཔེ། %1) - - + + dde-file-manager dde-file-manager - + Files are being processed ཡིག་ཆ་ཐག་གཅོད་བཞིན་པ། - + Bit གནས། @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key གསང་ལྡེ་འབྱེད་ཐབས་སོར་ཆུད་པ། - + Input the 32-digit recovery key གྲངས་གནས་32ནང་འཇུག་བྱས་ཏེ་གསང་ལྡེ་སོར་ཆུད་པ། - + Cancel button འདོར་བ། - + Unlock button སྒོ་ལྕགས་འབྱེད་པ། - + Wrong recovery key གསང་ལྡེ་ནོར་བ། - + Failed to unlock file vault ཉེན་འགོག་སྒམ་ཆུང་སྒོ་ལྕགས་འབྱེད་མ་ཐུབ། - + OK ཆོག @@ -5937,6 +5936,11 @@ Forgot password? གསང་ཨང་བརྗེད་འདུག་གམ། + + + Key unlock + + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted ཉེན་འགོག་སྒམ་ཆུང་བསུབས་རྗེས། དེའི་ནང་གི་ནང་དོན་ཚང་མ་ཡོངས་སུ་བསུབས་ངེས་རེད། - + Password གསང་ཨང་། - + + Key delete + + + + Password hint: %1 གསང་ཨང་དྲན་སྐུལ། %1 - + Cancel འདོར་བ། - + Delete སུབ་པ། - + Delete File Vault ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། - + Wrong password གསང་ཨང་ནོར་བ། - + Failed to delete file vault ཉེན་འགོག་སྒམ་ཆུང་བསུབས་མ་ཐུབ། - + OK ཆོག @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key གྲངས་གནས་32ནང་འཇུག་བྱས་ཏེ་གསང་ལྡེ་སོར་ཆུད་པ། + + + Cancel + འདོར་བ། + + + + Delete + སུབ་པ། + + + + Delete File Vault + ཉེན་འགོག་སྒམ་ཆུང་བསུབ་པ། + + + + Wrong recovery key + གསང་ལྡེ་ནོར་བ། + + + + Failed to delete file vault + ཉེན་འགོག་སྒམ་ཆུང་བསུབས་མ་ཐུབ། + + + + OK + ཆོག + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... སྣོན་འཇུག་བྱེད་བཞིན་པ། @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by སྟར་སྒྲིག་སྟངས། - + Display as མངོན་སྟོན་བྱེད་སྟངས། - + Name མིང་། - + Time modified བཟོ་བཅོས་དུས་ཚོད། - + Size ཆེ་ཆུང་། - + Type རིགས་གྲས། - + Icon རྟགས་རིས་མཐོང་རིས། - + List གསལ་ཐོའི་མཐོང་རིས། - + Tree diff --git a/translations/dde-file-manager_ug.ts b/translations/dde-file-manager_ug.ts index faa69f2331..6f9d10d73b 100644 --- a/translations/dde-file-manager_ug.ts +++ b/translations/dde-file-manager_ug.ts @@ -17,12 +17,12 @@ Application - + File Manager ھۆججەت باشقۇرغۇچ - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. ھۆججەت باشقۇرغۇچ بولسا كۈچلۈك ۋە ئىشلىتىشكە قۇلايلىق بولغان ھۆججەت باشقۇرۇش قورالى بولۇپ ، ئىزدەش ، كۆپەيتىش ، ئەخلەت ساندۇقى ، پىرىسلاش / يېشىش ، ھۆججەت خاسلىقى ۋە باشقا پايدىلىق ئىقتىدارلار بىلەن ئىپادىلىنىدۇ. @@ -30,7 +30,7 @@ DesktopMain - + Desktop ئۈستەليۈزى @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed ئۈسكۈنە بىخەتەر ئۆچۈرۈلدى - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 رايۇن @@ -212,7 +212,7 @@ - + %1 on %2 %2 دىكى %1 @@ -886,19 +886,19 @@ (قوشۇمچە %1) - - + + dde-file-manager ھۆججەت باشقۇرغۇچ - + Files are being processed ھۆججەتنى بىر تەرەپ قىلىۋاتىدۇ - + Bit بىت @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key شىفىرلىق ئاچقۇچتا ئېچىشنى ئەسلىگە كۈلتۈرۈش - + Input the 32-digit recovery key 32 خانىلىق ئەسلىگە كەلتۈرۈش ئاچقۇچىنى كىرگۈزۈڭ - + Cancel button بىكار قىلىش - + Unlock button قۇلۇپ ئېچىش - + Wrong recovery key پارول خاتا - + Failed to unlock file vault بىخەتەرلىك ساندۇقى ئېچىلمىدى - + OK ماقۇل @@ -5937,6 +5936,11 @@ Forgot password? پارول قايتۇرىمەن + + + Key unlock + + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted بىخەتەرلىك ساندۇقىنى ئۆچۈرگەندىن كېيىن، ئۇنىڭدىكى بارلىق مەزمۇن مەڭگۈلۈك ئۆچۈرۈلىدۇ - + Password پارول - + + Key delete + + + + Password hint: %1 پارول ئەسكەرتىشى: %1 - + Cancel بىكار قىلىش - + Delete ئۆچۈرۈش - + Delete File Vault بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش - + Wrong password پارول خاتا - + Failed to delete file vault بىخەتەرلىك ساندۇقىنى ئۆچۈرگىلى بولمىدى - + OK ماقۇل @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 32 خانىلىق ئەسلىگە كەلتۈرۈش ئاچقۇچىنى كىرگۈزۈڭ + + + Cancel + + + + + Delete + ئۆچۈرۈش + + + + Delete File Vault + بىخەتەرلىك ساندۇقىنى ئۆچۈرۈش + + + + Wrong recovery key + پارول خاتا + + + + Failed to delete file vault + بىخەتەرلىك ساندۇقىنى ئۆچۈرگىلى بولمىدى + + + + OK + ماقۇل + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... يۈكلەۋاتىدۇ... @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by تەرتىپلەش - + Display as كۆرۈنمە شەكلى - + Name نامى - + Time modified ئۆزگەرتىلگەن ۋاقىت - + Size سىغىمى - + Type تىپى - + Icon سىن بەلگە كۆرۈنۈشى - + List تىزىملىك - + Tree diff --git a/translations/dde-file-manager_zh_CN.ts b/translations/dde-file-manager_zh_CN.ts index 0670b2000a..48a927d25f 100644 --- a/translations/dde-file-manager_zh_CN.ts +++ b/translations/dde-file-manager_zh_CN.ts @@ -17,12 +17,12 @@ Application - + File Manager 文件管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 文件管理器是一款功能强大的文件管理工具,它包括搜索、复制、回收站、压缩/解压缩,文件属性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed 设备已被安全移除 - + eject 弹出 - + unmount 卸载 - - + + remove 移除 - + Operation failed 操作失败 - + Device (%1) is busy, cannot %2 now. 设备(%1)正忙,无法%2。 @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在处理文件 - + Bit @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key 恢复密钥解锁 - + Input the 32-digit recovery key 请输入32位恢复密钥 - + Cancel button 取 消 - + Unlock button 解锁 - + Wrong recovery key 密钥错误 - + Failed to unlock file vault 解锁保险箱失败 - + OK 确 定 @@ -5937,6 +5936,11 @@ Forgot password? 忘记密码? + + + Key unlock + 密钥解锁 + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 删除保险箱后,其中的所有内容将会被永久删除 - + Password 密码 - + + Key delete + 密钥删除 + + + Password hint: %1 密码提示:%1 - + Cancel 取 消 - + Delete 删 除 - + Delete File Vault 删除保险箱 - + Wrong password 密码错误 - + Failed to delete file vault 删除保险箱失败 - + OK 确 定 @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 请输入32位恢复密钥 + + + Cancel + 取 消 + + + + Delete + 删 除 + + + + Delete File Vault + 删除保险箱 + + + + Wrong recovery key + 密钥错误 + + + + Failed to delete file vault + 删除保险箱失败 + + + + OK + 确 定 + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在加载... @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 显示方式 - + Name 名称 - + Time modified 修改时间 - + Size 大小 - + Type 类型 - + Icon 图标视图 - + List 列表视图 - + Tree 树形视图 diff --git a/translations/dde-file-manager_zh_HK.ts b/translations/dde-file-manager_zh_HK.ts index 8e404ab4cf..37513d8bbd 100644 --- a/translations/dde-file-manager_zh_HK.ts +++ b/translations/dde-file-manager_zh_HK.ts @@ -17,12 +17,12 @@ Application - + File Manager 文件管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 文件管理器是一款功能強大的文件管理工具,它包括搜索、複製、回收站、壓縮/解壓縮,文件屬性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed 設備已被安全移除 - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在處理文件 - + Bit @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key 恢復密鑰解鎖 - + Input the 32-digit recovery key 請輸入32位恢復密鑰 - + Cancel button 取 消 - + Unlock button 解鎖 - + Wrong recovery key 密鑰錯誤 - + Failed to unlock file vault 解鎖保險箱失敗 - + OK 確 定 @@ -5937,6 +5936,11 @@ Forgot password? 忘記密碼? + + + Key unlock + + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 刪除保險箱後,其中的所有內容將會被永久刪除 - + Password 密碼 - + + Key delete + + + + Password hint: %1 密碼提示:%1 - + Cancel 取 消 - + Delete 刪 除 - + Delete File Vault 刪除保險箱 - + Wrong password 密碼錯誤 - + Failed to delete file vault 刪除保險箱失敗 - + OK 確 定 @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 請輸入32位恢復密鑰 + + + Cancel + + + + + Delete + + + + + Delete File Vault + 刪除保險箱 + + + + Wrong recovery key + 密鑰錯誤 + + + + Failed to delete file vault + 刪除保險箱失敗 + + + + OK + 確 定 + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在加載... @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 顯示方式 - + Name 名稱 - + Time modified 修改時間 - + Size 大小 - + Type 類型 - + Icon 圖標視圖 - + List 列表視圖 - + Tree diff --git a/translations/dde-file-manager_zh_TW.ts b/translations/dde-file-manager_zh_TW.ts index 3e054b3c4b..85c1a4bafb 100644 --- a/translations/dde-file-manager_zh_TW.ts +++ b/translations/dde-file-manager_zh_TW.ts @@ -17,12 +17,12 @@ Application - + File Manager 檔案管理器 - + File Manager is a powerful and easy-to-use file management tool, featured with searching, copying, trash, compression/decompression, file property and other useful functions. 檔案管理器是一款功能強大的文件管理工具,它包括搜尋、複製、回收站、壓縮/解壓縮,文件屬性等管理功能。 @@ -30,7 +30,7 @@ DesktopMain - + Desktop 桌面 @@ -64,33 +64,33 @@ DockItemDataManager - + The device has been safely removed 裝置已被安全移除 - + eject - + unmount - - + + remove - + Operation failed - + Device (%1) is busy, cannot %2 now. @@ -191,7 +191,7 @@ - + %1 Volume %1 卷 @@ -212,7 +212,7 @@ - + %1 on %2 %2 上的 %1 @@ -886,19 +886,19 @@ (副本 %1) - - + + dde-file-manager dde-file-manager - + Files are being processed 正在處理文件 - + Bit @@ -5811,40 +5811,39 @@ dfmplugin_vault::RecoveryKeyView - - + Unlock by Key 復原金鑰解鎖 - + Input the 32-digit recovery key 請輸入32位復原金鑰 - + Cancel button 取 消 - + Unlock button 解鎖 - + Wrong recovery key 金鑰錯誤 - + Failed to unlock file vault 解鎖保險箱失敗 - + OK 確 定 @@ -5937,6 +5936,11 @@ Forgot password? 忘記密碼? + + + Key unlock + + Password @@ -6252,47 +6256,52 @@ dfmplugin_vault::VaultRemoveByPasswordView - + Once deleted, the files in it will be permanently deleted 刪除保險箱後,其中的所有內容將會被永久刪除 - + Password 密碼 - + + Key delete + + + + Password hint: %1 密碼提示:%1 - + Cancel 取 消 - + Delete 刪 除 - + Delete File Vault 刪除保險箱 - + Wrong password 密碼錯誤 - + Failed to delete file vault 刪除保險箱失敗 - + OK 確 定 @@ -6300,10 +6309,40 @@ dfmplugin_vault::VaultRemoveByRecoverykeyView - + Input the 32-digit recovery key 請輸入32位復原金鑰 + + + Cancel + + + + + Delete + + + + + Delete File Vault + 刪除保險箱 + + + + Wrong recovery key + 金鑰錯誤 + + + + Failed to delete file vault + 刪除保險箱失敗 + + + + OK + 確 定 + dfmplugin_vault::VaultRemoveProgressView @@ -6375,7 +6414,7 @@ dfmplugin_workspace::FileViewStatusBar - + Loading... 正在載入... @@ -6399,47 +6438,47 @@ dfmplugin_workspace::SortAndDisplayMenuScene - + Sort by 排序方式 - + Display as 顯示方式 - + Name 名稱 - + Time modified 修改時間 - + Size 大小 - + Type 類型 - + Icon 圖示檢視 - + List 列表檢視 - + Tree From 35f3954b7eebded99c3362309c6d9bf700fac604 Mon Sep 17 00:00:00 2001 From: Zhang Sheng Date: Mon, 22 Jan 2024 11:10:18 +0800 Subject: [PATCH 22/25] refactor: [upgrade] backup config file when upgrade 1. backup config file when upgrade 2. fix quickaccess data Log: backup config file when upgrade --- .../disk-mount/utils/dockutils.cpp | 2 +- .../controller/bookmarkmanager.cpp | 19 +++++++++++++++ .../controller/bookmarkmanager.h | 1 + .../upgrade/units/bookmarkupgradeunit.cpp | 8 +++++++ src/tools/upgrade/upgradeinterface.cpp | 2 +- src/tools/upgrade/utils/upgradeutils.cpp | 24 +++++++++++++++++++ src/tools/upgrade/utils/upgradeutils.h | 1 + 7 files changed, 55 insertions(+), 2 deletions(-) diff --git a/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp b/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp index d8500905ba..da4ef59052 100644 --- a/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp +++ b/src/external/dde-dock-plugins/disk-mount/utils/dockutils.cpp @@ -12,7 +12,7 @@ #include -Q_LOGGING_CATEGORY(logAppDock, "log.dock.disk-mount") +Q_LOGGING_CATEGORY(logAppDock, "org.deepin.dde.dock.plugin.disk-mount") QString size_format::formatDiskSize(const quint64 num) { diff --git a/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.cpp b/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.cpp index aa8518a322..d3a4ec75c1 100644 --- a/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.cpp +++ b/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.cpp @@ -205,6 +205,7 @@ void BookMarkManager::addQuickAccessItemsFromConfig() const QVariantList &list = Application::genericSetting()->value(kConfigGroupQuickAccess, kConfigKeyName).toList(); if (list.count() <= 0 || !BookMarkHelper::instance()->isValidQuickAccessConf(list)) { fmWarning() << "Reset quick access list"; + saveQuickAccessToSortedItems(list); saveSortedItemsToConfigFile(sortedUrls); // write the default items to config } @@ -418,6 +419,24 @@ void BookMarkManager::saveSortedItemsToConfigFile(const QList &order) Application::genericSetting()->setValue(kConfigGroupQuickAccess, kConfigKeyName, sorted); } +void BookMarkManager::saveQuickAccessToSortedItems(const QVariantList &list) +{ + // 数据异常时,防止用户的书签丢失 + for (const QVariant &data : list) { + const auto &bookMarkMap { data.toMap() }; + BookmarkData bookmarkData; + bookmarkData.resetData(bookMarkMap); + if (!bookmarkData.isDefaultItem) { + if (!bookmarkData.url.isValid()) { + fmWarning() << "Ignore invalid url quickaccess:" << bookMarkMap; + continue; + } + quickAccessDataMap[bookmarkData.url] = bookmarkData; + sortedUrls.append(bookmarkData.url); + } + } +} + void BookMarkManager::addQuickAccessDataFromConfig(const QVariantList &dataList) { const QVariantList &list = dataList.isEmpty() diff --git a/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.h b/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.h index 964ea8ab1c..1788e7d544 100644 --- a/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.h +++ b/src/plugins/common/core/dfmplugin-bookmark/controller/bookmarkmanager.h @@ -64,6 +64,7 @@ class BookMarkManager : public QObject void getMountInfo(const QUrl &url, QString &mountPoint, QString &localUrl); void saveSortedItemsToConfigFile(const QList &order); + void saveQuickAccessToSortedItems(const QVariantList &list); void addQuickAccessDataFromConfig(const QVariantList &dataList = QVariantList()); diff --git a/src/tools/upgrade/units/bookmarkupgradeunit.cpp b/src/tools/upgrade/units/bookmarkupgradeunit.cpp index 4f8414af0d..d89408251e 100644 --- a/src/tools/upgrade/units/bookmarkupgradeunit.cpp +++ b/src/tools/upgrade/units/bookmarkupgradeunit.cpp @@ -3,7 +3,9 @@ // SPDX-License-Identifier: GPL-3.0-or-later #include "bookmarkupgradeunit.h" +#include "utils/upgradeutils.h" #include "bookmarkupgrade/defaultitemmanager.h" + #include #include @@ -32,6 +34,7 @@ static constexpr char kKeyLocateUrl[] { "locateUrl" }; static constexpr char kKeyMountPoint[] { "mountPoint" }; static QString kConfigurationPath = QStandardPaths::standardLocations(QStandardPaths::ConfigLocation).first() + "/deepin/dde-file-manager.json"; +static QString kBackupDirPath = QStandardPaths::standardLocations(QStandardPaths::ConfigLocation).first() + "/deepin/dde-file-manager/old"; QVariantMap BookmarkData::serialize() { @@ -60,6 +63,11 @@ bool BookMarkUpgradeUnit::initialize(const QMap &args) { Q_UNUSED(args) qCInfo(logToolUpgrade) << "begin upgrade"; + if (!UpgradeUtils::backupFile(kConfigurationPath, kBackupDirPath)) + qCWarning(logToolUpgrade) << "backup file" << kConfigurationPath << "to dir: " << kBackupDirPath << "failed"; + else + qCInfo(logToolUpgrade) << "backup file" << kConfigurationPath << "to dir: " << kBackupDirPath << "success"; + QFile file(kConfigurationPath); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return false; diff --git a/src/tools/upgrade/upgradeinterface.cpp b/src/tools/upgrade/upgradeinterface.cpp index 6afad3ed61..e6cde1caae 100644 --- a/src/tools/upgrade/upgradeinterface.cpp +++ b/src/tools/upgrade/upgradeinterface.cpp @@ -13,7 +13,7 @@ #include #include -Q_LOGGING_CATEGORY(logToolUpgrade, "log.tool.upgrade") +Q_LOGGING_CATEGORY(logToolUpgrade, "org.deepin.dde.filemanager.tool.upgrade") using namespace dfm_upgrade; diff --git a/src/tools/upgrade/utils/upgradeutils.cpp b/src/tools/upgrade/utils/upgradeutils.cpp index 5446720fad..eab9977852 100644 --- a/src/tools/upgrade/utils/upgradeutils.cpp +++ b/src/tools/upgrade/utils/upgradeutils.cpp @@ -9,6 +9,8 @@ #include #include #include +#include +#include Q_DECLARE_LOGGING_CATEGORY(logToolUpgrade) @@ -68,5 +70,27 @@ QVariant applicationAttribute(const QString &key) return QVariant(); } +bool backupFile(const QString &sourceFile, const QString &backupDirPath) +{ + // 创建备份目录 + QDir backupDir(backupDirPath); + if (!backupDir.exists()) { + if (!backupDir.mkpath(".")) + return false; + } + + // 获取源文件名 + QFileInfo sourceFileInfo(sourceFile); + QString sourceFileName { sourceFileInfo.fileName() }; + QString timestamp = QDateTime::currentDateTime().toString("yyyyMMdd_hhmmss"); + // 构建备份文件路径 + QString backupFilePath { backupDirPath + "/" + sourceFileName + "." + timestamp }; + + // 备份文件 + if (!QFile::copy(sourceFile, backupFilePath)) + return false; + return true; +} + } // namespace UpgradeUtils } // namespace dfm_upgrade diff --git a/src/tools/upgrade/utils/upgradeutils.h b/src/tools/upgrade/utils/upgradeutils.h index e5835f08d8..c5aad8aeb5 100644 --- a/src/tools/upgrade/utils/upgradeutils.h +++ b/src/tools/upgrade/utils/upgradeutils.h @@ -11,6 +11,7 @@ namespace dfm_upgrade { namespace UpgradeUtils { QVariant genericAttribute(const QString &key); QVariant applicationAttribute(const QString &key); +bool backupFile(const QString &sourceFile, const QString &backupDirPath); } } From 0141605d288344d852c1d498b49d66fb0cd91131 Mon Sep 17 00:00:00 2001 From: xust Date: Mon, 22 Jan 2024 15:15:15 +0800 Subject: [PATCH 23/25] fix: [detail] no infos in smb's detail view. as title. Log: as title. Bug: https://pms.uniontech.com/bug-view-240227.html --- .../fileinfo/smbsharefileinfo.cpp | 30 +++++++++++++++++-- .../dfmplugin-smbbrowser/smbbrowser.cpp | 2 +- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/src/plugins/filemanager/dfmplugin-smbbrowser/fileinfo/smbsharefileinfo.cpp b/src/plugins/filemanager/dfmplugin-smbbrowser/fileinfo/smbsharefileinfo.cpp index 446314ff80..10102894dd 100644 --- a/src/plugins/filemanager/dfmplugin-smbbrowser/fileinfo/smbsharefileinfo.cpp +++ b/src/plugins/filemanager/dfmplugin-smbbrowser/fileinfo/smbsharefileinfo.cpp @@ -35,15 +35,39 @@ QString SmbShareFileInfo::nameOf(const NameInfoType type) const QString SmbShareFileInfo::displayOf(const DisPlayInfoType type) const { - if (url.toString() == QString("%1:/").arg(Global::Scheme::kNetwork)) - return QObject::tr("Computers in LAN"); - if (DisPlayInfoType::kFileDisplayName == type) + bool isNetworkRoot = url.scheme() == Global::Scheme::kNetwork + && url.path() == "/"; + bool isSmbRoot = url.scheme() == Global::Scheme::kSmb + && url.path().isEmpty(); + + if (DisPlayInfoType::kFileDisplayName == type) { + if (isNetworkRoot) + return QObject::tr("Computers in LAN"); + + if (isSmbRoot) + return QObject::tr("Shared directories on %1").arg(url.host()); + return d->fileName(); + } + + if (DisPlayInfoType::kMimeTypeDisplayName == type) + return QObject::tr("Network shared directory"); + return FileInfo::displayOf(type); } QIcon SmbShareFileInfo::fileIcon() { + bool isNetworkRoot = url.scheme() == Global::Scheme::kNetwork + && url.path() == "/"; + bool isSmbRoot = url.scheme() == Global::Scheme::kSmb + && url.path().isEmpty(); + + if (isNetworkRoot) + return QIcon::fromTheme("network-workgroup"); + if (isSmbRoot) + return QIcon::fromTheme("network-server"); + return QIcon::fromTheme(d->node.iconType); } diff --git a/src/plugins/filemanager/dfmplugin-smbbrowser/smbbrowser.cpp b/src/plugins/filemanager/dfmplugin-smbbrowser/smbbrowser.cpp index d85cd17f34..c883551f4e 100644 --- a/src/plugins/filemanager/dfmplugin-smbbrowser/smbbrowser.cpp +++ b/src/plugins/filemanager/dfmplugin-smbbrowser/smbbrowser.cpp @@ -33,7 +33,7 @@ void SmbBrowser::initialize() UrlRoute::regScheme(Global::Scheme::kSmb, "/", smb_browser_utils::icon(), true); UrlRoute::regScheme(Global::Scheme::kFtp, "/", smb_browser_utils::icon(), true); UrlRoute::regScheme(Global::Scheme::kSFtp, "/", smb_browser_utils::icon(), true); - UrlRoute::regScheme(smb_browser_utils::networkScheme(), "/", smb_browser_utils::icon(), true); + UrlRoute::regScheme(smb_browser_utils::networkScheme(), "/", smb_browser_utils::icon(), true, tr("Computer in LAN")); InfoFactory::regClass(Global::Scheme::kSmb); DirIteratorFactory::regClass(Global::Scheme::kSmb); From c51e44a5bb9fdf2c7e6e6f0ec0b058b842cce984 Mon Sep 17 00:00:00 2001 From: xust Date: Mon, 22 Jan 2024 15:31:35 +0800 Subject: [PATCH 24/25] fix: [UI] text in setting pane. the message check box's tip text size should be smaller than the title texts' and the color should be changed with the focus status. Log: as title Bug: https://pms.uniontech.com/bug-view-238677.html --- .../settingsdialog/controls/checkboxwithmessage.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/dfm-base/dialogs/settingsdialog/controls/checkboxwithmessage.cpp b/src/dfm-base/dialogs/settingsdialog/controls/checkboxwithmessage.cpp index 1c7d71b5d4..423f1e6e60 100644 --- a/src/dfm-base/dialogs/settingsdialog/controls/checkboxwithmessage.cpp +++ b/src/dfm-base/dialogs/settingsdialog/controls/checkboxwithmessage.cpp @@ -7,6 +7,7 @@ #include #include #include +#include CheckBoxWithMessage::CheckBoxWithMessage(QWidget *parent) : QWidget(parent) @@ -24,11 +25,7 @@ CheckBoxWithMessage::CheckBoxWithMessage(QWidget *parent) hLayout->setContentsMargins(30, 0, 0, 0); layout->addLayout(hLayout); - QPalette paletteText; - QColor color("#526A7F"); - paletteText.setColor(QPalette::Text, color); - msgLabel = new QLabel(widget); - msgLabel->setPalette(paletteText); + msgLabel = new Dtk::Widget::DTipLabel("", widget); msgLabel->setWordWrap(true); hLayout->addWidget(msgLabel); From 1bc967512bd40590c78639fe534adadf03e59ee6 Mon Sep 17 00:00:00 2001 From: xust Date: Mon, 22 Jan 2024 16:17:06 +0800 Subject: [PATCH 25/25] fix: [UI] icon style when focus or not. as title Log: as title. Bug: https://pms.uniontech.com/bug-view-238685.html --- .../deepin/builtin/light/icons/collect.svg | 11 -- .../builtin/light/icons/collect_cancel.svg | 10 -- .../dfm_server_collect_16px.svg} | 0 .../dfm_server_uncollect_16px.svg} | 0 src/dfm-base/qrc/resources/resources.qrc | 104 +++++++++--------- .../dialogs/collectiondelegate.cpp | 67 ++++++----- .../dialogs/collectiondelegate.h | 10 +- .../dialogs/connecttoserverdialog.cpp | 16 +-- 8 files changed, 96 insertions(+), 122 deletions(-) delete mode 100644 src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect.svg delete mode 100644 src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect_cancel.svg rename src/dfm-base/qrc/resources/icons/deepin/builtin/{dark/icons/collect.svg => texts/dfm_server_collect_16px.svg} (100%) rename src/dfm-base/qrc/resources/icons/deepin/builtin/{dark/icons/collect_cancel.svg => texts/dfm_server_uncollect_16px.svg} (100%) diff --git a/src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect.svg b/src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect.svg deleted file mode 100644 index 090e5b53e9..0000000000 --- a/src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - icon/collect - - - - - - - - \ No newline at end of file diff --git a/src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect_cancel.svg b/src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect_cancel.svg deleted file mode 100644 index ff138e925f..0000000000 --- a/src/dfm-base/qrc/resources/icons/deepin/builtin/light/icons/collect_cancel.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - icon/collect cancel - - - - - - - \ No newline at end of file diff --git a/src/dfm-base/qrc/resources/icons/deepin/builtin/dark/icons/collect.svg b/src/dfm-base/qrc/resources/icons/deepin/builtin/texts/dfm_server_collect_16px.svg similarity index 100% rename from src/dfm-base/qrc/resources/icons/deepin/builtin/dark/icons/collect.svg rename to src/dfm-base/qrc/resources/icons/deepin/builtin/texts/dfm_server_collect_16px.svg diff --git a/src/dfm-base/qrc/resources/icons/deepin/builtin/dark/icons/collect_cancel.svg b/src/dfm-base/qrc/resources/icons/deepin/builtin/texts/dfm_server_uncollect_16px.svg similarity index 100% rename from src/dfm-base/qrc/resources/icons/deepin/builtin/dark/icons/collect_cancel.svg rename to src/dfm-base/qrc/resources/icons/deepin/builtin/texts/dfm_server_uncollect_16px.svg diff --git a/src/dfm-base/qrc/resources/resources.qrc b/src/dfm-base/qrc/resources/resources.qrc index 94a6e6d007..55c73d0edb 100644 --- a/src/dfm-base/qrc/resources/resources.qrc +++ b/src/dfm-base/qrc/resources/resources.qrc @@ -1,75 +1,73 @@ - icons/deepin/builtin/light/icons/dfm_tag_deepblue_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_green_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_lightblue_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_orange_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_purple_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_red_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_yellow_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_16px.svg + icons/deepin/builtin/dark/icons/bluetooth_computer_dark.svg + icons/deepin/builtin/dark/icons/bluetooth_phone_dark.svg + icons/deepin/builtin/dark/icons/dfm_add_server_44px.svg + icons/deepin/builtin/dark/icons/dfm_addressbar_glowing_128px.svg + icons/deepin/builtin/dark/icons/dfm_bluetooth_empty_dark.svg + icons/deepin/builtin/dark/icons/dfm_deepin_logo_128px.svg + icons/deepin/builtin/dark/icons/dfm_del_server_44px.svg + icons/deepin/builtin/dark/icons/dfm_lock_128px.svg + icons/deepin/builtin/dark/icons/dfm_safebox_64px.svg + icons/deepin/builtin/dark/icons/dfm_search_pause_24px.svg + icons/deepin/builtin/dark/icons/dfm_tab_new_24px.svg + icons/deepin/builtin/dark/icons/dfm_tag_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_deepblue_16px.svg + icons/deepin/builtin/dark/icons/dfm_tag_gray_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_green_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_lightblue_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_orange_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_purple_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_red_16px.svg icons/deepin/builtin/dark/icons/dfm_tag_yellow_16px.svg - icons/deepin/builtin/dark/icons/dfm_tag_16px.svg - icons/deepin/builtin/dark/icons/dfm_tag_gray_16px.svg - icons/deepin/builtin/light/icons/dfm_tag_gray_16px.svg - icons/deepin/builtin/light/icons/dfm_addressbar_glowing_128px.svg - icons/deepin/builtin/dark/icons/dfm_addressbar_glowing_128px.svg - icons/deepin/builtin/light/icons/dfm_safebox_64px.svg - icons/deepin/builtin/dark/icons/dfm_safebox_64px.svg - icons/deepin/builtin/dark/icons/dfm_lock_128px.svg - icons/deepin/builtin/light/icons/dfm_lock_128px.svg - icons/deepin/builtin/dark/icons/dfm_deepin_logo_128px.svg - icons/deepin/builtin/light/icons/dfm_deepin_logo_128px.svg - icons/deepin/builtin/light/icons/dfm_task_start_24px.svg + icons/deepin/builtin/dark/icons/dfm_task_pause_24px.svg icons/deepin/builtin/dark/icons/dfm_task_start_24px.svg - icons/deepin/builtin/light/icons/dfm_task_stop_24px.svg icons/deepin/builtin/dark/icons/dfm_task_stop_24px.svg - icons/deepin/builtin/light/icons/dfm_task_pause_24px.svg - icons/deepin/builtin/dark/icons/dfm_task_pause_24px.svg - icons/deepin/builtin/icons/dfm_close_round_normal_24px.svg - icons/deepin/builtin/light/icons/dfm_add_server_44px.svg - icons/deepin/builtin/dark/icons/dfm_add_server_44px.svg - icons/deepin/builtin/light/icons/dfm_del_server_44px.svg - icons/deepin/builtin/dark/icons/dfm_del_server_44px.svg - icons/deepin/builtin/light/icons/dfm_tab_new_24px.svg - icons/deepin/builtin/dark/icons/dfm_tab_new_24px.svg - icons/deepin/builtin/texts/dfm_viewlist_icons_16px.svg - icons/deepin/builtin/texts/dfm_viewlist_details_16px.svg - icons/deepin/builtin/texts/dfm_rightview_detail_16px.svg + icons/deepin/builtin/dark/icons/dfm_vault_active_encrypt_128px.svg + icons/deepin/builtin/dark/icons/dfm_vault_active_start_128px.svg icons/deepin/builtin/dark/icons/media-external-256px.svg - icons/deepin/builtin/light/icons/media-external-256px.svg + icons/deepin/builtin/dark/icons/no_favorites_yet.svg + icons/deepin/builtin/icons/dfm_close_round_normal_24px.svg icons/deepin/builtin/icons/dfm_vault_210px.svg - icons/deepin/builtin/icons/dfm_vault_active_finish_30px.svg - icons/deepin/builtin/icons/dfm_vault_active_finish_128px.svg icons/deepin/builtin/icons/dfm_vault_32px.svg - icons/deepin/builtin/light/icons/dfm_vault_active_encrypt_128px.svg - icons/deepin/builtin/light/icons/dfm_vault_active_start_128px.svg - icons/deepin/builtin/dark/icons/dfm_vault_active_encrypt_128px.svg - icons/deepin/builtin/dark/icons/dfm_vault_active_start_128px.svg - icons/deepin/builtin/dark/icons/dfm_bluetooth_empty_dark.svg - icons/deepin/builtin/light/icons/dfm_bluetooth_empty_light.svg - icons/deepin/builtin/dark/icons/bluetooth_phone_dark.svg - icons/deepin/builtin/light/icons/bluetooth_phone_light.svg + icons/deepin/builtin/icons/dfm_vault_active_finish_128px.svg + icons/deepin/builtin/icons/dfm_vault_active_finish_30px.svg icons/deepin/builtin/light/icons/bluetooth_computer_light.svg - icons/deepin/builtin/dark/icons/bluetooth_computer_dark.svg - icons/deepin/builtin/dark/icons/dfm_search_pause_24px.svg - icons/deepin/builtin/light/icons/dfm_search_pause_24px.svg - icons/deepin/builtin/dark/icons/collect_cancel.svg - icons/deepin/builtin/dark/icons/collect.svg - icons/deepin/builtin/light/icons/collect_cancel.svg - icons/deepin/builtin/light/icons/collect.svg + icons/deepin/builtin/light/icons/bluetooth_phone_light.svg + icons/deepin/builtin/light/icons/dfm_add_server_44px.svg + icons/deepin/builtin/light/icons/dfm_addressbar_glowing_128px.svg + icons/deepin/builtin/light/icons/dfm_bluetooth_empty_light.svg + icons/deepin/builtin/light/icons/dfm_deepin_logo_128px.svg + icons/deepin/builtin/light/icons/dfm_del_server_44px.svg icons/deepin/builtin/light/icons/dfm_fail_128px.svg + icons/deepin/builtin/light/icons/dfm_lock_128px.svg + icons/deepin/builtin/light/icons/dfm_safebox_64px.svg + icons/deepin/builtin/light/icons/dfm_search_pause_24px.svg icons/deepin/builtin/light/icons/dfm_success_128px.svg - icons/deepin/builtin/dark/icons/no_favorites_yet.svg + icons/deepin/builtin/light/icons/dfm_tab_new_24px.svg + icons/deepin/builtin/light/icons/dfm_tag_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_deepblue_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_gray_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_green_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_lightblue_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_orange_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_purple_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_red_16px.svg + icons/deepin/builtin/light/icons/dfm_tag_yellow_16px.svg + icons/deepin/builtin/light/icons/dfm_task_pause_24px.svg + icons/deepin/builtin/light/icons/dfm_task_start_24px.svg + icons/deepin/builtin/light/icons/dfm_task_stop_24px.svg + icons/deepin/builtin/light/icons/dfm_vault_active_encrypt_128px.svg + icons/deepin/builtin/light/icons/dfm_vault_active_start_128px.svg + icons/deepin/builtin/light/icons/media-external-256px.svg icons/deepin/builtin/light/icons/no_favorites_yet.svg + icons/deepin/builtin/texts/dfm_rightview_detail_16px.svg + icons/deepin/builtin/texts/dfm_search_button_16px.svg icons/deepin/builtin/texts/dfm_view_filter_16px.svg + icons/deepin/builtin/texts/dfm_viewlist_details_16px.svg + icons/deepin/builtin/texts/dfm_viewlist_icons_16px.svg icons/deepin/builtin/texts/dfm_viewlist_tree_16px.svg - icons/deepin/builtin/texts/dfm_search_button_16px.svg + icons/deepin/builtin/texts/dfm_server_collect_16px.svg + icons/deepin/builtin/texts/dfm_server_uncollect_16px.svg diff --git a/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.cpp b/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.cpp index 0e676b4536..3bc3be489c 100644 --- a/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.cpp +++ b/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.cpp @@ -11,12 +11,11 @@ #include #include +#include #include -DGUI_USE_NAMESPACE - -CollectionDelegate::CollectionDelegate(QObject *parent) - : QStyledItemDelegate(parent) +CollectionDelegate::CollectionDelegate(QAbstractItemView *parent) + : DStyledItemDelegate(parent) { } @@ -31,37 +30,37 @@ QSize CollectionDelegate::sizeHint(const QStyleOptionViewItem &, const QModelInd void CollectionDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { - QColor color; - if (DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::LightType) - color.setRgb(0, 0, 0); - else - color.setRgb(240, 240, 255); - if (index.row() % 2 == 0) { - painter->setRenderHints(QPainter::Antialiasing - | QPainter::TextAntialiasing - | QPainter::SmoothPixmapTransform); - color.setAlphaF(0.05); - painter->setBrush(color); - painter->setPen(Qt::NoPen); - painter->drawRoundedRect(option.rect, 8, 8); + DStyledItemDelegate::paint(painter, option, index); + + painter->setRenderHints(QPainter::Antialiasing + | QPainter::TextAntialiasing + | QPainter::SmoothPixmapTransform); + + { // draw background. + QColor color(240, 240, 255); + if (DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::LightType) + color.setRgb(0, 0, 0); + if (index.row() % 2 == 0) { + color.setAlphaF(0.05); + painter->setBrush(color); + painter->setPen(Qt::NoPen); + painter->drawRoundedRect(option.rect, 8, 8); + } + if (option.state.testFlag(QStyle::State_MouseOver)) { + color.setAlphaF(0.1); + painter->setBrush(color); + painter->setPen(Qt::NoPen); + painter->drawRoundedRect(option.rect, 8, 8); + } } - QStyledItemDelegate::paint(painter, option, index); - if (option.state.testFlag(QStyle::State_Selected)) { - QRect deleteButton(option.rect.width() - 30, option.rect.topRight().y() + 6, 24, 24); - QPixmap px = QIcon(":icons/deepin/builtin/icons/dfm_close_round_normal_24px.svg").pixmap(QSize(24, 24)); - painter->drawPixmap(deleteButton, px); - } else if (option.state.testFlag(QStyle::State_MouseOver)) { - painter->setRenderHints(QPainter::Antialiasing - | QPainter::TextAntialiasing - | QPainter::SmoothPixmapTransform); - color.setAlphaF(0.1); - painter->setBrush(color); - painter->setPen(Qt::NoPen); - painter->drawRoundedRect(option.rect, 8, 8); - QRect deleteButton(option.rect.width() - 30, option.rect.topRight().y() + 6, 24, 24); - QPixmap px = QIcon(":icons/deepin/builtin/icons/dfm_close_round_normal_24px.svg").pixmap(QSize(24, 24)); - painter->drawPixmap(deleteButton, px); + { // draw delete button. + if (option.state.testFlag(QStyle::State_MouseOver) + || option.state.testFlag(QStyle::State_Selected)) { + QRect deleteButton(option.rect.width() - 30, option.rect.topRight().y() + 6, 24, 24); + static const QPixmap px = QIcon::fromTheme("dfm_close_round_normal").pixmap(QSize(24, 24)); + painter->drawPixmap(deleteButton, px); + } } } @@ -80,7 +79,7 @@ bool CollectionDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, c } } } - return QStyledItemDelegate::editorEvent(event, model, option, index); + return DStyledItemDelegate::editorEvent(event, model, option, index); } QVariant CollectionModel::data(const QModelIndex &index, int role) const diff --git a/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.h b/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.h index 9b3fa2cd7a..0adebe2134 100644 --- a/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.h +++ b/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/collectiondelegate.h @@ -7,12 +7,16 @@ #include #include +#include -class CollectionDelegate : public QStyledItemDelegate +DWIDGET_USE_NAMESPACE +DGUI_USE_NAMESPACE + +class CollectionDelegate : public DStyledItemDelegate { Q_OBJECT public: - CollectionDelegate(QObject *parent = nullptr); + CollectionDelegate(QAbstractItemView *parent = nullptr); virtual ~CollectionDelegate() override; virtual QSize sizeHint(const QStyleOptionViewItem &, const QModelIndex &) const override; virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; @@ -30,7 +34,7 @@ class CollectionModel : public QStringListModel // QAbstractItemModel interface public: explicit CollectionModel(QObject *parent) - : QStringListModel(parent) { } + : QStringListModel(parent) {} enum { kUrlRole = Qt::UserRole + 1, diff --git a/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/connecttoserverdialog.cpp b/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/connecttoserverdialog.cpp index ca9ec91996..2ca03f9e3b 100644 --- a/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/connecttoserverdialog.cpp +++ b/src/plugins/filemanager/core/dfmplugin-titlebar/dialogs/connecttoserverdialog.cpp @@ -231,13 +231,8 @@ void ConnectToServerDialog::initIfWayland() void ConnectToServerDialog::updateAddButtonState(bool collected) { - const QString &theme = DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::DarkType - ? "dark" - : "light"; - const QString &iconName = collected ? "collect_cancel" : "collect"; - - const QString &iconPath = QString(":icons/deepin/builtin/%1/icons/%2.svg").arg(theme).arg(iconName); - theAddButton->setIcon(QIcon(iconPath)); + const QString &iconName = collected ? "dfm_server_uncollect" : "dfm_server_collect"; + theAddButton->setIcon(QIcon::fromTheme(iconName)); theAddButton->setIconSize({ 16, 16 }); theAddButton->setToolTip(collected ? tr("Unfavorite") : tr("Favorite")); isAddState = !collected; @@ -367,7 +362,7 @@ void ConnectToServerDialog::initializeUi() QGridLayout *addressLayout = new QGridLayout(); // init address area { - schemeComboBox = new DComboBox(); + schemeComboBox = new DComboBox(this); supportedSchemes << QString("%1://").arg(Scheme::kSmb) << QString("%1://").arg(Scheme::kFtp) << QString("%1://").arg(Scheme::kSFtp); @@ -380,16 +375,15 @@ void ConnectToServerDialog::initializeUi() completer->setCompletionMode(QCompleter::PopupCompletion); completer->setMaxVisibleItems(kMaxHistoryItems); - serverComboBox = new DComboBox(); + serverComboBox = new DComboBox(this); serverComboBox->addItem(tr("Clear History")); serverComboBox->setEditable(true); serverComboBox->setMaxVisibleItems(kMaxHistoryItems); serverComboBox->clearEditText(); serverComboBox->setCompleter(completer); - theAddButton = new DIconButton(nullptr); + theAddButton = new DIconButton(this); theAddButton->setMaximumSize(38, 38); - theAddButton->setIcon(QIcon::fromTheme("dfm_add_server")); theAddButton->setFlat(false); theAddButton->setIconSize({ 16, 16 });