From ca61ed5f6a3e4b592654e57e61a8abb199a007cf Mon Sep 17 00:00:00 2001 From: ZhangTingan Date: Wed, 1 Apr 2026 13:23:14 +0800 Subject: [PATCH 1/4] fix: Add temporary message support for non-blocking error notifications RAR5 errors no longer interrupt extraction, user sees floating message instead. Bug: https://pms.uniontech.com/bug-view-354871.html --- 3rdparty/clirarplugin/clirarplugin.cpp | 7 ++++--- src/source/archivemanager/archivejob.h | 6 ++++++ src/source/archivemanager/archivemanager.cpp | 10 ++++++++++ src/source/archivemanager/archivemanager.h | 6 ++++++ src/source/archivemanager/batchjob.cpp | 2 ++ src/source/archivemanager/batchjob.h | 6 ++++++ src/source/archivemanager/singlejob.cpp | 9 +++++++++ src/source/archivemanager/singlejob.h | 7 +++++++ src/source/mainwindow.cpp | 8 ++++++++ src/source/mainwindow.h | 6 ++++++ 10 files changed, 64 insertions(+), 3 deletions(-) diff --git a/3rdparty/clirarplugin/clirarplugin.cpp b/3rdparty/clirarplugin/clirarplugin.cpp index 562a14553..6e3c08356 100644 --- a/3rdparty/clirarplugin/clirarplugin.cpp +++ b/3rdparty/clirarplugin/clirarplugin.cpp @@ -295,13 +295,14 @@ bool CliRarPlugin::handleLine(const QString &line, WorkType workStatus) } if (isWrongPasswordMsg(line)) { // 提示密码错误 + m_eErrorType = ET_WrongPassword; + // RAR4密码错误直接结束 if (line.startsWith(QLatin1String("Checksum error in the encrypted file"))) { - m_eErrorType = ET_WrongPassword; m_finishType = PFT_Error; return false; - } else { // RAR5密码错误反复输入新密码 - m_eErrorType = ET_WrongPassword; + } else { // RAR5密码错误:发送错误提示但不中断进程,允许用户重新输入密码 + emit error(tr("Wrong password"), tr("The password entered is incorrect. Please try again.")); return true; } } diff --git a/src/source/archivemanager/archivejob.h b/src/source/archivemanager/archivejob.h index aa198fcea..9f6ac667a 100644 --- a/src/source/archivemanager/archivejob.h +++ b/src/source/archivemanager/archivejob.h @@ -110,6 +110,12 @@ class ArchiveJob : public QObject */ void signalQuery(Query *query); + /** + * @brief signalTempMessage 发送临时消息(不中断操作) + * @param message 消息内容 + */ + void signalTempMessage(const QString &message); + public: JobType m_eJobType = JT_NoJob; // 操作类型 PluginFinishType m_eFinishedType = PFT_Nomral; diff --git a/src/source/archivemanager/archivemanager.cpp b/src/source/archivemanager/archivemanager.cpp index 2b8780ce7..e0d7898bf 100644 --- a/src/source/archivemanager/archivemanager.cpp +++ b/src/source/archivemanager/archivemanager.cpp @@ -119,6 +119,7 @@ bool ArchiveManager::loadArchive(const QString &strArchiveFullPath, UiTools::Ass // 连接槽函数 connect(pLoadJob, &LoadJob::signalJobFinshed, this, &ArchiveManager::slotJobFinished); connect(pLoadJob, &LoadJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pLoadJob, &LoadJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pLoadJob; pLoadJob->start(); @@ -154,6 +155,7 @@ bool ArchiveManager::addFiles(const QString &strArchiveFullPath, const QListstart(); @@ -185,6 +187,7 @@ bool ArchiveManager::extractFiles(const QString &strArchiveFullPath, const QList connect(pExtractJob, &ExtractJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pExtractJob, &ExtractJob::signalFileWriteErrorName, this, &ArchiveManager::signalFileWriteErrorName); connect(pExtractJob, &ExtractJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pExtractJob, &ExtractJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pExtractJob; pExtractJob->start(); @@ -201,6 +204,7 @@ bool ArchiveManager::extractFiles(const QString &strArchiveFullPath, const QList connect(pStepExtractJob, &StepExtractJob::signalprogress, this, &ArchiveManager::signalprogress); connect(pStepExtractJob, &StepExtractJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pStepExtractJob, &StepExtractJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pStepExtractJob, &StepExtractJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); pStepExtractJob->start(); qDebug() << "StepExtractJob started successfully"; @@ -231,6 +235,7 @@ bool ArchiveManager::extractFiles2Path(const QString &strArchiveFullPath, const connect(pExtractJob, &ExtractJob::signalprogress, this, &ArchiveManager::signalprogress); connect(pExtractJob, &ExtractJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pExtractJob, &ExtractJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pExtractJob, &ExtractJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pExtractJob; pExtractJob->start(); @@ -260,6 +265,7 @@ bool ArchiveManager::deleteFiles(const QString &strArchiveFullPath, const QList< connect(pDeleteJob, &DeleteJob::signalprogress, this, &ArchiveManager::signalprogress); connect(pDeleteJob, &DeleteJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pDeleteJob, &DeleteJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pDeleteJob, &DeleteJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pDeleteJob; pDeleteJob->start(); @@ -289,6 +295,7 @@ bool ArchiveManager::renameFiles(const QString &strArchiveFullPath, const QList< connect(pRenameJob, &RenameJob::signalprogress, this, &ArchiveManager::signalprogress); connect(pRenameJob, &RenameJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pRenameJob, &RenameJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pRenameJob, &RenameJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pRenameJob; pRenameJob->start(); @@ -315,6 +322,7 @@ bool ArchiveManager::batchExtractFiles(const QStringList &listFiles, const QStri connect(pBatchExtractJob, &BatchExtractJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pBatchExtractJob, &BatchExtractJob::signalQuery, this, &ArchiveManager::signalQuery); connect(pBatchExtractJob, &BatchExtractJob::signalCurArchiveName, this, &ArchiveManager::signalCurArchiveName); + connect(pBatchExtractJob, &BatchExtractJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pBatchExtractJob; pBatchExtractJob->start(); @@ -343,6 +351,7 @@ bool ArchiveManager::openFile(const QString &strArchiveFullPath, const FileEntry // 连接槽函数 connect(pOpenJob, &OpenJob::signalJobFinshed, this, &ArchiveManager::slotJobFinished); connect(pOpenJob, &OpenJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pOpenJob, &OpenJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); m_pArchiveJob = pOpenJob; @@ -412,6 +421,7 @@ bool ArchiveManager::convertArchive(const QString &strOriginalArchiveFullPath, c connect(pConvertJob, &ConvertJob::signalprogress, this, &ArchiveManager::signalprogress); connect(pConvertJob, &ConvertJob::signalCurFileName, this, &ArchiveManager::signalCurFileName); connect(pConvertJob, &ConvertJob::signalQuery, this, &ArchiveManager::signalQuery); + connect(pConvertJob, &ConvertJob::signalTempMessage, this, &ArchiveManager::signalTempMessage); pConvertJob->start(); qDebug() << "ConvertJob started successfully"; diff --git a/src/source/archivemanager/archivemanager.h b/src/source/archivemanager/archivemanager.h index c7add7462..76636207d 100644 --- a/src/source/archivemanager/archivemanager.h +++ b/src/source/archivemanager/archivemanager.h @@ -213,6 +213,12 @@ class ArchiveManager : public QObject */ void signalCurArchiveName(const QString &strArchiveName); + /** + * @brief signalTempMessage 发送临时消息(不中断操作) + * @param message 消息内容 + */ + void signalTempMessage(const QString &message); + private: explicit ArchiveManager(QObject *parent = nullptr); ~ArchiveManager() override; diff --git a/src/source/archivemanager/batchjob.cpp b/src/source/archivemanager/batchjob.cpp index 8846e7b29..34b1d8529 100644 --- a/src/source/archivemanager/batchjob.cpp +++ b/src/source/archivemanager/batchjob.cpp @@ -223,6 +223,7 @@ bool BatchExtractJob::addExtractItem(const QFileInfo &fileInfo) connect(pExtractJob, &ExtractJob::signalCurFileName, this, &BatchExtractJob::slotHandleSingleJobCurFileName); connect(pExtractJob, &ExtractJob::signalQuery, this, &BatchExtractJob::signalQuery); connect(pExtractJob, &ExtractJob::signalJobFinshed, this, &BatchExtractJob::slotHandleSingleJobFinished); + connect(pExtractJob, &ExtractJob::signalTempMessage, this, &BatchExtractJob::signalTempMessage); addSubjob(pExtractJob); } else { qDebug() << "Creating StepExtractJob for tar.7z archive"; @@ -231,6 +232,7 @@ bool BatchExtractJob::addExtractItem(const QFileInfo &fileInfo) connect(pStepExtractJob, &StepExtractJob::signalCurFileName, this, &BatchExtractJob::slotHandleSingleJobCurFileName); connect(pStepExtractJob, &StepExtractJob::signalQuery, this, &BatchExtractJob::signalQuery); connect(pStepExtractJob, &StepExtractJob::signalJobFinshed, this, &BatchExtractJob::slotHandleSingleJobFinished); + connect(pStepExtractJob, &StepExtractJob::signalTempMessage, this, &BatchExtractJob::signalTempMessage); addSubjob(pStepExtractJob); } qDebug() << "Extract item added successfully"; diff --git a/src/source/archivemanager/batchjob.h b/src/source/archivemanager/batchjob.h index 7ca9a6c48..a8566273a 100644 --- a/src/source/archivemanager/batchjob.h +++ b/src/source/archivemanager/batchjob.h @@ -114,6 +114,12 @@ class BatchExtractJob : public BatchJob */ void signalCurArchiveName(const QString &strArchiveName); + /** + * @brief signalTempMessage 发送临时消息(不中断操作) + * @param message 消息内容 + */ + void signalTempMessage(const QString &message); + private Q_SLOTS: /** * @brief slotHandleSingleJobProgress 处理单个压缩包解压进度 diff --git a/src/source/archivemanager/singlejob.cpp b/src/source/archivemanager/singlejob.cpp index 22cdffeaf..c8941703b 100644 --- a/src/source/archivemanager/singlejob.cpp +++ b/src/source/archivemanager/singlejob.cpp @@ -141,6 +141,7 @@ void SingleJob::initConnections() connect(m_pInterface, &ReadOnlyArchiveInterface::signalCurFileName, this, &SingleJob::signalCurFileName, Qt::ConnectionType::UniqueConnection); connect(m_pInterface, &ReadOnlyArchiveInterface::signalFileWriteErrorName, this, &SingleJob::signalFileWriteErrorName, Qt::ConnectionType::UniqueConnection); connect(m_pInterface, &ReadOnlyArchiveInterface::signalQuery, this, &SingleJob::signalQuery, Qt::ConnectionType::AutoConnection); + connect(m_pInterface, &ReadOnlyArchiveInterface::error, this, &SingleJob::slotError, Qt::AutoConnection); qDebug() << "Signal connections initialized"; } @@ -159,6 +160,13 @@ void SingleJob::slotFinished(PluginFinishType eType) emit signalJobFinshed(); } +void SingleJob::slotError(const QString &message, const QString &details) +{ + Q_UNUSED(details); + // 传递临时消息信号,用于显示但不中断操作的非致命错误提示 + emit signalTempMessage(message); +} + // 加载操作 LoadJob::LoadJob(ReadOnlyArchiveInterface *pInterface, QObject *parent) : SingleJob(pInterface, parent) @@ -428,6 +436,7 @@ OpenJob::OpenJob(const FileEntry &stEntry, const QString &strTempExtractPath, co m_eJobType = JT_Open; connect(m_pInterface, &ReadOnlyArchiveInterface::signalFinished, this, &OpenJob::slotFinished, Qt::ConnectionType::UniqueConnection); connect(m_pInterface, &ReadOnlyArchiveInterface::signalQuery, this, &SingleJob::signalQuery, Qt::ConnectionType::AutoConnection); + connect(m_pInterface, &ReadOnlyArchiveInterface::error, this, &SingleJob::slotError, Qt::AutoConnection); } OpenJob::~OpenJob() diff --git a/src/source/archivemanager/singlejob.h b/src/source/archivemanager/singlejob.h index 820f2e556..05bd1233d 100644 --- a/src/source/archivemanager/singlejob.h +++ b/src/source/archivemanager/singlejob.h @@ -70,6 +70,13 @@ class SingleJob : public ArchiveJob */ bool status() override; + /** + * @brief slotError 处理错误消息(不中断操作) + * @param message 错误消息 + * @param details 详细信息 + */ + void slotError(const QString &message, const QString &details); + SingleJobThread *getdptr(); protected: /** diff --git a/src/source/mainwindow.cpp b/src/source/mainwindow.cpp index ed628b88f..af7263552 100644 --- a/src/source/mainwindow.cpp +++ b/src/source/mainwindow.cpp @@ -326,6 +326,7 @@ void MainWindow::initConnections() connect(ArchiveManager::get_instance(), &ArchiveManager::signalFileWriteErrorName, this, &MainWindow::slotReceiveFileWriteErrorName); connect(ArchiveManager::get_instance(), &ArchiveManager::signalCurArchiveName, this, &MainWindow::slotReceiveCurArchiveName); connect(ArchiveManager::get_instance(), &ArchiveManager::signalQuery, this, &MainWindow::slotQuery); + connect(ArchiveManager::get_instance(), &ArchiveManager::signalTempMessage, this, &MainWindow::slotReceiveTempMessage); qDebug() << "Connecting file watcher signals"; connect(m_pOpenFileWatcher, &OpenFileWatcher::fileChanged, this, &MainWindow::slotOpenFileChanged); @@ -1447,6 +1448,13 @@ void MainWindow::slotReceiveFileWriteErrorName(const QString &strName) m_fileWriteErrorName = strName; } +void MainWindow::slotReceiveTempMessage(const QString &strMessage) +{ + qInfo() << "Temp message:" << strMessage; + QIcon icon = UiTools::renderSVG(":assets/icons/deepin/builtin/icons/compress_fail_128px.svg", QSize(30, 30)); + sendMessage(new CustomFloatingMessage(icon, strMessage, 2000, this)); +} + void MainWindow::slotQuery(Query *query) { qInfo() << " query->execute()"; diff --git a/src/source/mainwindow.h b/src/source/mainwindow.h index 8f0d39cca..3d2012ac7 100644 --- a/src/source/mainwindow.h +++ b/src/source/mainwindow.h @@ -416,6 +416,12 @@ private Q_SLOTS: */ void slotReceiveFileWriteErrorName(const QString &strName); + /** + * @brief slotReceiveTempMessage 接收临时消息 + * @param strMessage 消息内容 + */ + void slotReceiveTempMessage(const QString &strMessage); + /** * @brief slotQuery 发送询问信号 * @param query 询问类型 From 5ebd99231dd470f576696fbf24d6bd9ca4f4e19a Mon Sep 17 00:00:00 2001 From: ZhangTingan Date: Thu, 16 Apr 2026 13:44:03 +0800 Subject: [PATCH 2/4] fix: Delay archive loading in Wayland to fix dialog positioning Delay first archive loading by 200ms in Wayland to allow window positioning to complete before showing password dialogs. Prevents dialogs from appearing at (0,0) when opening encrypted archives. Log: fix bug Bug: https://pms.uniontech.com/bug-view-355681.html --- src/source/mainwindow.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/source/mainwindow.cpp b/src/source/mainwindow.cpp index af7263552..bb0d4f3bf 100644 --- a/src/source/mainwindow.cpp +++ b/src/source/mainwindow.cpp @@ -2818,8 +2818,16 @@ bool MainWindow::handleArguments_Open(const QStringList &listParam) qInfo() << "打开文件"; m_eStartupType = StartupType::ST_Normal; // 加载单个压缩包数据 - loadArchive(listParam[0]); - + static bool firstLoad = true; + if (UiTools::isWayland() && firstLoad) { + firstLoad = false; + auto path = listParam[0]; + QTimer::singleShot(200, [this, path]() { + loadArchive(path); + }); + } else { + loadArchive(listParam[0]); + } return true; } From 3ce417be81ef2a2d5368b9a0a52e3e9580e0ab4c Mon Sep 17 00:00:00 2001 From: ZhangTingan Date: Thu, 16 Apr 2026 13:45:03 +0800 Subject: [PATCH 3/4] fix(compress): show tar filename during tar.7z compression MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Display tar filename in progress when compressing tar.7z archives, improving user experience by showing meaningful progress information. 压缩tar.7z时显示tar文件名,提升用户体验。 Log: tar.7z压缩时提示tar文件名 PMS: BUG-356753 Influence: 压缩tar.7z格式时,进度提示显示tar文件名,用户可以看到正在处理的归档文件名称 --- 3rdparty/interface/archiveinterface/cliinterface.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/3rdparty/interface/archiveinterface/cliinterface.cpp b/3rdparty/interface/archiveinterface/cliinterface.cpp index 3e56a528c..d38f2c2b7 100644 --- a/3rdparty/interface/archiveinterface/cliinterface.cpp +++ b/3rdparty/interface/archiveinterface/cliinterface.cpp @@ -932,8 +932,13 @@ void CliInterface::handleProgress(const QString &line) qint64 percentage = compressedSize * 1024 * 1024 * 100 / m_filesSize; emit signalprogress(percentage); - // 无法获取正在压缩的某个文件名 - // emit signalCurFileName(); + // tar.7z 无法获取正在压缩的单个文件名,但可以提示正在打包成 tar 文件 + // 发送 tar 文件名提示(去掉 .7z 后缀,显示正在打包的 tar 文件名) + QString tarFileName = QFileInfo(m_strArchiveName).fileName(); + if (tarFileName.endsWith(".7z", Qt::CaseInsensitive)) { + tarFileName = tarFileName.left(tarFileName.length() - 3); + } + emit signalCurFileName(tarFileName); } } } From 9dc4780c9422863ad75ebed0f9a54f8f73e54f1f Mon Sep 17 00:00:00 2001 From: ZhangTingan Date: Thu, 16 Apr 2026 14:43:25 +0800 Subject: [PATCH 4/4] translations: update translations Log: as title --- translations/deepin-compressor.ts | 133 +++-- translations/deepin-compressor_ar.ts | 133 +++-- translations/deepin-compressor_ast.ts | 741 ++++++++++++++---------- translations/deepin-compressor_az.ts | 133 +++-- translations/deepin-compressor_bo.ts | 133 +++-- translations/deepin-compressor_ca.ts | 133 +++-- translations/deepin-compressor_cs.ts | 133 +++-- translations/deepin-compressor_da.ts | 133 +++-- translations/deepin-compressor_de.ts | 133 +++-- translations/deepin-compressor_en.ts | 133 +++-- translations/deepin-compressor_es.ts | 133 +++-- translations/deepin-compressor_fi.ts | 133 +++-- translations/deepin-compressor_fr.ts | 133 +++-- translations/deepin-compressor_hu.ts | 133 +++-- translations/deepin-compressor_it.ts | 133 +++-- translations/deepin-compressor_ja.ts | 133 +++-- translations/deepin-compressor_ka.ts | 133 +++-- translations/deepin-compressor_km_KH.ts | 133 +++-- translations/deepin-compressor_ko.ts | 133 +++-- translations/deepin-compressor_lo.ts | 133 +++-- translations/deepin-compressor_ms.ts | 133 +++-- translations/deepin-compressor_nl.ts | 133 +++-- translations/deepin-compressor_pl.ts | 133 +++-- translations/deepin-compressor_pt.ts | 133 +++-- translations/deepin-compressor_pt_BR.ts | 133 +++-- translations/deepin-compressor_ro.ts | 133 +++-- translations/deepin-compressor_ru.ts | 133 +++-- translations/deepin-compressor_sl.ts | 133 +++-- translations/deepin-compressor_sq.ts | 133 +++-- translations/deepin-compressor_sr.ts | 133 +++-- translations/deepin-compressor_tr.ts | 133 +++-- translations/deepin-compressor_ug.ts | 133 +++-- translations/deepin-compressor_uk.ts | 133 +++-- translations/deepin-compressor_zh_CN.ts | 133 +++-- translations/deepin-compressor_zh_HK.ts | 133 +++-- translations/deepin-compressor_zh_TW.ts | 133 +++-- 36 files changed, 2996 insertions(+), 2400 deletions(-) diff --git a/translations/deepin-compressor.ts b/translations/deepin-compressor.ts index 7b68a6c8d..192b593e3 100644 --- a/translations/deepin-compressor.ts +++ b/translations/deepin-compressor.ts @@ -35,6 +35,19 @@ + + CliRarPlugin + + + Wrong password + + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager - + Archive Manager is a fast and lightweight application for creating and extracting archives. @@ -455,7 +468,7 @@ - + %1 was changed on the disk, please import it again. @@ -470,50 +483,50 @@ - - + + Create New Archive - + Adding files to %1 - + Compressing - + Extracting - + Deleting - + Converting - - + + You do not have permission to load %1 - - + + Loading, please wait... - + @@ -521,33 +534,33 @@ - + Are you sure you want to stop the ongoing task? - + - - + + Cancel button - + Confirm button - + No such file or directory - + Unable to add system files or network files, please select files on local devices @@ -656,27 +669,27 @@ - + The name is the same as that of the compressed archive, please use another one - + Another file with the same name already exists, replace it? - + You cannot add the archive to itself - + You cannot add files to archives in this file type - + Enter up to %1 characters @@ -701,7 +714,7 @@ - + Find directory @@ -727,26 +740,26 @@ - - - - - - - - + + + + + + + + - - + + OK button - - + + The file format is not supported by Archive Manager @@ -781,17 +794,17 @@ - + File info - + Updating comments - + Renaming @@ -839,64 +852,64 @@ - + Replace button - + Update button - + Basic info - + Size - + Type - + Location - + Time created - + Time accessed - + Time modified - + Archive - + Comment - + Please check the file association type in the settings of Archive Manager @@ -1280,7 +1293,7 @@ - + %1 changed. Do you want to save changes to the archive? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file - + Back - + File info diff --git a/translations/deepin-compressor_ar.ts b/translations/deepin-compressor_ar.ts index b55f5e075..3f70ffafe 100644 --- a/translations/deepin-compressor_ar.ts +++ b/translations/deepin-compressor_ar.ts @@ -35,6 +35,19 @@ ليس لديك صلاحية لضغط %1 + + CliRarPlugin + + + Wrong password + كلمة سر خاطىة + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -438,13 +451,13 @@ Main + - Archive Manager مدير اﻷرشيفات - + Archive Manager is a fast and lightweight application for creating and extracting archives. مدير الأرشيفات هو تطبيق سريع وخفيف الوزن لإنشاء واستخراج اﻷرشيفات @@ -462,13 +475,13 @@ اﻹعدادات - - + + Create New Archive إنشاء أرشيف جديد - + Converting جار التحويل @@ -483,7 +496,7 @@ هل ترغب في حذف الملف؟ - + %1 was changed on the disk, please import it again. %1 تم تغييره على القرص ، يرجى استيراده مرة أخرى @@ -499,71 +512,71 @@ - - - - - - - - + + + + + + + + - - + + OK button موافق - + Adding files to %1 جار إضافة الملفات إلى %1 - + Compressing يتم الضغط - + Extracting يتم الاستخراج - + Deleting جار الحذف - - + + You do not have permission to load %1 ليس لديك إذن لتحميل %1 - - + + Loading, please wait... جار التحميل، من فضلك انتظر... - + Are you sure you want to stop the ongoing task? هل أنت متأكد من أنك تريد التوقف عن المهمة الجارية؟ - + - - + + Cancel button إلغاء - + Confirm button @@ -628,18 +641,18 @@ تعذر الضغط - + Replace button استبدال - + You cannot add files to archives in this file type لا يمكنك إضافة ملفات إلى أرشيفات بهذا نوع الملف - + Find directory بحث عن دليل @@ -700,22 +713,22 @@ الأختصارات - + File info معلومات الملف - + Updating comments تحديث التعليقات - + Renaming إعادة التسمية - + @@ -723,18 +736,18 @@ خطأ في المُسند - + No such file or directory لا يوجد ملف أو دليل بهذا الاسم - - + + The file format is not supported by Archive Manager تنسيق الملف غير مدعوم من قبل مدير الأرشيف - + Unable to add system files or network files, please select files on local devices @@ -831,78 +844,78 @@ اختر ملفًا - + The name is the same as that of the compressed archive, please use another one اسم الملف هو نفسه للارشيف المضغوط، من فضلك استخدم اسمًا آخر - + Another file with the same name already exists, replace it? يوجد ملف آخر بنفس الاسم بالفعل ، هل تريد استبداله ؟ - + You cannot add the archive to itself لا يمكنك إضافة الأرشيف إلى نفسه - + Update button تحديث - + Basic info معلومات أساسية - + Size الحجم - + Type النوع - + Location الموقع - + Time created وقت الإنشاء - + Time accessed وقت الوصول - + Time modified وقت التعديل - + Archive أرشيف - + Comment تعليق - + Enter up to %1 characters أدخل حتى %1 حرف - + Please check the file association type in the settings of Archive Manager يرجى التحقق من نوع ارتباط الملف في إعدادات مدير الملفات @@ -1270,7 +1283,7 @@ نوع الملف - + %1 changed. Do you want to save changes to the archive? '%1 تغيّر. هل تريد حفظ التغييرات في الملف الأرشيفي؟' @@ -1438,18 +1451,18 @@ TitleWidget - - + + Open file فتح ملف - + Back رجوع - + File info معلومات الملف diff --git a/translations/deepin-compressor_ast.ts b/translations/deepin-compressor_ast.ts index 27c8a4f8b..b32ceb5a8 100644 --- a/translations/deepin-compressor_ast.ts +++ b/translations/deepin-compressor_ast.ts @@ -1,13 +1,15 @@ - + + + AppendDialog - + Add files to the current archive Amiesta ficheros al archivu actual - + Use password Usar una contraseña @@ -15,251 +17,270 @@ CalculateSizeThread - + + The original file of %1 does not exist, please check and try again El ficheru orixinal de %1 nun esiste, compruébalo y volvi tentalo - + + %1 does not exist on the disk, please check and try again %1 nun esiste nel discu, compruébalo y volvi tentalo - + + You do not have permission to compress %1 Nun tienes permisu pa comprimir %1 + + CliRarPlugin + + + Wrong password + La contraseña nun ye correuta + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog - + Updating the comment... - Anovando'l comentariu… + Anovando'l comentariu… CompressPage - + Next Siguiente - + Please add files Amiesta ficheros - + OK button - D'acuerdu + D'acuerdu CompressSettingPage - + + New Archive Archivu nuevu - + Advanced Options Opciones avanzaes - + Compression method Métodu de compresión - + Encrypt the archive - Cifrar l'archivu + Cifrar l'archivu - + CPU threads hilos de CPU - + Encrypt the file list too Cifrar tamién la llista de ficheros - + Split to volumes Dixebrar en volúmenes - + Comment Comentariu - + Compress button Comprimir - + Store Nengún - + Fastest El más rápidu - + Fast Rápidu - + Normal Normal - + Good Bonu - + Best El meyor - + Single thread hilo único - + 2 threads 2 hilos - + 4 threads 4 hilos - + 8 threads 8 hilos - + Support zip, 7z type only Namás sofita zip y 7z - + Support 7z type only Namás sofita 7z - + Enter up to %1 characters Introduz hasta %1 caráuteres - + Name Nome - + Save to Guardar en - + Invalid file name El nome nun ye válidu - + Please enter the path Introduz un camín - + The path does not exist, please retry El camín nun esiste, volvi tentalo - + You do not have permission to save files here, please change and retry Nun tienes permisu pa guardar ficheros nesti direutoriu, cámbialu y volvi tentalu - + Too many volumes, please change and retry Hai milenta volúmenes, usa un valor más baxu y volvi tentalo - + + %1 does not exist on the disk, please check and try again %1 nun esiste nel discu, compruébalo y volvi tentalo - + + You do not have permission to compress %1 Nun tienes permisu pa comprimir %1 - + The original file of %1 does not exist, please check and try again El ficheru orixinal de %1 nun esiste, compruébalo y volvi tentalo - + OK button - D'acuerdu + D'acuerdu - + Cancel button Encaboxar - + Replace button Trocar - + Total size: %1 Tamañu total: %1 - + The name is the same as that of the compressed archive, please use another one - El nome ye igual que'l del archivu, usa otru + El nome ye igual que'l del archivu, usa otru - + The password for ZIP volumes cannot be in Chinese Les contraseñes de los ficheros ZIP nun puen tar en chinu - + Another file with the same name already exists, replace it? Yá esiste un ficheru col mesmu nome, ¿trocalu? - + Only Chinese and English characters and some symbols are supported Namás se sofiten los caráuteres chinos, llatinos y dalgunos símbolos @@ -267,60 +288,62 @@ CompressView - + Open Abrir - + Rename Renombrar - + Delete Desaniciar - + Open with Abrir con - + + Select default program Otru programa - + It will permanently delete the file(s). Are you sure you want to continue? Esto va desaniciar permanentemente los ficheros. ¿De xuru que quies siguir? - + + Cancel button Encaboxar - + Confirm button Confirmar - + Add button Amestar - + Do you want to add the archive to the list or open it in new window? - ¿Quies amestar l'archivu a la llista o abrilu nuna ventana nueva? + ¿Quies amestar l'archivu a la llista o abrilu nuna ventana nueva? - + Open in new window Abrir nuna ventana nueva @@ -328,23 +351,23 @@ ConvertDialog - + Changes to archives in this file type are not supported. Please convert the archive format to save the changes. - Nun se sofiten los cambeos a los archivos d'esti tipu. Convierti l'archivu pa guardar los cambeos. + Nun se sofiten los cambeos a los archivos d'esti tipu. Convierti l'archivu pa guardar los cambeos. - + Convert the format to: Convertir a: - + Cancel button Encaboxar - + Convert button Convertir @@ -353,7 +376,7 @@ DataModel - + item(s) elementu/os @@ -361,24 +384,24 @@ FailurePage - + Extraction failed 解压失败 La estraición falló - + Damaged file, unable to extract El ficheru ta dañáu y nun ye posible estrayelu - + Retry button Retentar - + Back Atrás @@ -386,12 +409,12 @@ HomePage - + Drag file or folder here Arrastra un ficheru o una carpeta hasta equí - + Select File Esbillar ficheros @@ -399,17 +422,17 @@ LoadCorruptQuery - + The archive is damaged - L'archivu ta dañáu + L'archivu ta dañáu - + Open as read-only Abrir nel mou de namás llectura - + Cancel button Encaboxar @@ -418,7 +441,7 @@ LoadingPage - + Loading, please wait... Cargando, espera… @@ -426,12 +449,13 @@ Main - + + Archive Manager - Xestor d'archivos + Xestor d'archivos - + Archive Manager is a fast and lightweight application for creating and extracting archives. Deepin Archive Manager ye una aplicación rápida y llixera pa crear y estrayer archivos. @@ -439,444 +463,516 @@ MainWindow - + Open file Abrir ficheros - + Settings Axustes - + + Create New Archive - Creación d'un archivu + Creación d'un archivu - + Converting Convirtiendo - + Updating comments - Anovando'l comentariu + Anovando'l comentariu - + + + + Plugin error Fallu de los plugins - + Adding successful - L'amiestu tuvo ésitu + L'amiestu tuvo ésitu - + + No data in it Nun hai datos dientro - + Adding canceled - Encaboxóse l'amiestu + Encaboxóse l'amiestu - + Adding failed - L'amiestu falló + L'amiestu falló - + Extraction failed: the file name is too long - Falló l'extracción: nome del ficheru too llargu + Falló l'extracción: nome del ficheru too llargu - - Failed to create "%1" + + + Failed to create "%1" Hebo un fallu al crear «%1» - + Open failed: the file name is too long - Falló l'apertura: nome del ficheru too llargu + Falló l'apertura: nome del ficheru too llargu - + Compression successful La compresión tuvo ésitu - + The file name is too long, so the first 60 characters have been intercepted as the file name. - Nome del ficheru too llargu, polo que los primers 60 carácteres han s'interceptáu como nome del ficheru. + Nome del ficheru too llargu, polo que los primers 60 carácteres han s'interceptáu como nome del ficheru. - + + Insufficient disk space Nun hai abondu espaciu nel discu - + + Some volumes are missing Falten dalgunos volúmenes - + Wrong password, please retry La contraseña ye incorreuta, volvi tentalo - + + + The file name is too long. Keep the name within 60 characters please. Nome del ficheru too llargu. Por favor, mantén el nome dientro de 60 carácteres. - + Conversion failed Conversión fallida - + Select file Esbillar ficheros - + Enter up to %1 characters Introduz hasta %1 caráuteres - + File info Información del ficheru - + Do you want to delete the archive? - ¿Quies desaniciar l'archivu? + ¿Quies desaniciar l'archivu? - + %1 was changed on the disk, please import it again. %1 camudó, volvi importar el ficheru. - + Archive Manager - Xestor d'archivos + Xestor d'archivos - + You do not have permission to save files here, please change and retry Nun tienes permisu pa guardar ficheros nel direutoriu esbilláu, cámbialu y volvi tentalo - + Adding files to %1 Amestando ficheros a %1 - + Compressing Comprimiendo - + Extracting Estrayendo - + Deleting Desaniciando - + + Loading, please wait... Cargando, espera… - + Are you sure you want to stop the ongoing task? ¿De xuru que quies parar la xera en cursu? - + + + Updating, please wait... Anovando, espera… - + File name too long El nome ye perllongu - + Failed to create file Hebo un fallu al crear el ficheru - + Compression failed La compresión falló - + Replace button Trocar - + Find directory - Busca d'un direutoriu + Busca d'un direutoriu - + Open failed - L'apertura falló + L'apertura falló - + + + + + Wrong password La contraseña nun ye correuta - + + The file format is not supported by Archive Manager - El xestor d'archivos nun sofita esti formatu de ficheru - - - + El xestor d'archivos nun sofita esti formatu de ficheru + + + + + + + + + + + + + + + + OK button - D'acuerdu + D'acuerdu - + Renaming Renombrando - + + You do not have permission to load %1 Nun tienes permisu pa cargar %1 - + + + + Cancel button Encaboxar - + + Confirm button Confirmar - + No such file or directory El ficheru o la carpeta nun esiste - + + Unable to add system files or network files, please select files on local devices + + + + Extraction successful 提取成功 La estraición tuvo ésitu - + Extraction canceled 取消提取 Encaboxóse la estraición - + + + + The archive is damaged - L'archivu ta dañáu + L'archivu ta dañáu + + + + + Failed to create temporary directory, please check and try again. + + + + + + Failed to prepare renamed item "%1" for compression, please check permissions and available space. + - + Extraction successful 解压成功 La descompresión tuvo ésitu - + Conversion successful La conversión tuvo ésitu - + The compressed volumes already exist Los volúmenes comprimíos ya esisten - + + No compression support in current directory. Download the files to a local device. + + + + + Can't open compressed packages in current directory. Download the compressed package to a local device. + + + + Extraction failed 解压失败 La descompresión falló - + + No extraction support in current directory. Download the compressed package to a local device. + + + + Close Zarrar - + Help Ayuda - + Delete Desaniciar - + Display shortcuts Amosar los atayos - + Shortcuts Atayos - + The name is the same as that of the compressed archive, please use another one - El nome ye igual que'l del archivu, usa otru + El nome ye igual que'l del archivu, usa otru - + Another file with the same name already exists, replace it? Yá esiste otru ficheru col mesmu nome, ¿trocalu? - + You cannot add the archive to itself - Nun pues amestar l'archivu a sigo mesmu + Nun pues amestar l'archivu a sigo mesmu - + You cannot add files to archives in this file type - Nun pues amestar ficheros a los archivos d'esti tipu + Nun pues amestar ficheros a los archivos d'esti tipu - + Update button Anovar - + Basic info Información básica - + Size Tamañu - + Type Tipu - + Location Allugamientu - + Time created Data de creación - + Time accessed - Data d'accesu + Data d'accesu - + Time modified Data de modificación - + Archive Archivu - + Comment Comentariu - + Please check the file association type in the settings of Archive Manager - Comprueba les asociaciones de ficheros nos axustes del xestor d'archivos + Comprueba les asociaciones de ficheros nos axustes del xestor d'archivos - + + The archive was changed on the disk, please import it again. - L'archivu camudó, volvi importalu. + L'archivu camudó, volvi importalu. MimeTypeDisplayManager - + Directory Direutoriu - + Application Aplicación - + Video Videu - + Audio Audiu - + Image Imaxe - + Archive Archivu - + Executable Executable - + Document Documentu - + Backup file Ficheru de respaldu - + Unknown Desconozse @@ -884,39 +980,39 @@ OpenWithDialog - + Open with Abrir con - + Add other programs Amestar otros programes - + Set as default Predeterminar - + Cancel button Encaboxar - + Confirm button Confirmar - + Recommended Applications Aplicaciones aconseyaes - + Other Applications Otres aplicaciones @@ -924,7 +1020,7 @@ PasswordNeededQuery - + Encrypted file, please enter the password El ficheru ta cifráu, introduz la contraseña @@ -932,12 +1028,12 @@ PreviousLabel - + Current path: Camín actual: - + Back to: %1 Volver a: %1 @@ -945,33 +1041,35 @@ ProgressDialog - + %1 task(s) in progress Númberu de xeres en cursu: %1 - + + Task Xera - + + Extracting Estrayendo - + Are you sure you want to stop the extraction? ¿De xuru que quies parar la estraición? - + Cancel button Encaboxar - + Confirm button Confirmar @@ -980,116 +1078,142 @@ ProgressPage - + + + + Speed compress Velocidá + + + + + + Calculating... Calculando… - + + + Speed delete Velocidá - + + + Speed rename Velocidá - + + + + Speed convert Velocidá - + + + + Speed uncompress Velocidá - + + Time left Tiempu que queda - + Compressing Comprimiendo - + Deleting Desaniciando - + Renaming Renombrando - + Converting Convirtiendo - + + Updating the comment... - Anovando'l comentariu… + Anovando'l comentariu… - + Extracting Estrayendo - + + + Pause button Posar - + + Cancel button Encaboxar - + + Continue button Siguir - + Confirm button Confirmar - + Are you sure you want to stop the decompression? ¿De xuru que quies parar la descompresión? - + Are you sure you want to stop the deletion? ¿De xuru que quies parar el desaniciu? - + + Are you sure you want to stop the compression? ¿De xuru que quies parar la compresión? - + Are you sure you want to stop the conversion? ¿De xuru que quies parar la conversión? @@ -1097,112 +1221,119 @@ QObject - + Name Nome - + Time modified Data de modificación - + Type Tipu - + Size Tamañu - + %1 changed. Do you want to save changes to the archive? %1 camudó, ¿Quies guardar los cambeos nel archivu? - + General Xeneral - + Extraction Estraición - + Auto create a folder for multiple extracted files Crear automáticamennte una carpeta al estrayer múltiples ficheros - + Show extracted files when completed Amosar los ficheros estrayíos al estrayelos - + File Management Xestión de ficheros - + Delete files after compression Desaniciar los ficheros darréu de comprimilos - + Files Associated Asociaciones de ficheros - + File Type Tipos de ficheros - + + + Skip button Saltar - + Merge button Mecer - + + Another file with the same name already exists, replace it? Yá esiste otru ficheru col mesmu nome, ¿trocalu? - + + Replace button Trocar - + + Cancel button Encaboxar - + + OK button - D'acuerdu + D'acuerdu - + Another folder with the same name already exists, replace it? Yá esiste otra carpeta col mesmu nome, ¿trocala? - + + Apply to all Aplicar a too @@ -1210,24 +1341,24 @@ RenameDialog - + Rename Renombrar - + Cancel button Anular - + OK button Aceptar - + The name already exists El nome ya esiste @@ -1235,58 +1366,64 @@ SettingDialog - + + Current directory Direutoriu actual - + Clear All Desmarcar too - + Select All button Marcar too - + Recommended Marcar lo aconseyao - + Extract archives to Estrayer los ficheros en - + + Other directory Otru direutoriu - + + Desktop Escritoriu - + Delete archives after extraction - Desaniciar los archivos darréu d'estrayelos + Desaniciar los archivos darréu d'estrayelos - + + Never Enxamás - + + Ask for confirmation Pidir la confirmación - + + Always Siempres @@ -1294,17 +1431,17 @@ SuccessPage - + Compression successful La compresión tuvo ésitu - + View Ver - + Back Atrás @@ -1312,17 +1449,18 @@ TitleWidget - + + Open file Abrir ficheru - + Back Atrás - + File info Información del ficheru @@ -1330,7 +1468,9 @@ UnCompressPage - + + + Extract to: Estrayer en: @@ -1341,90 +1481,91 @@ Estrayer - + The default extraction path does not exist, please retry - El camín d'estraición predetermináu nun esiste, volvi tentalo + El camín d'estraición predetermináu nun esiste, volvi tentalo - + You do not have permission to save files here, please change and retry Nin tienes permisu pa guardar ficheros nesti direutoriu, cámbialu y volvi tentalo - + OK button - D'acuerdu + D'acuerdu - + Find directory - Busca d'un direutoriu + Busca d'un direutoriu UnCompressView - + You cannot add the archive to itself - Nun pues amestar l'archivu a sigo mesmu + Nun pues amestar l'archivu a sigo mesmu - + OK button - D'acuerdu + D'acuerdu - + Extract 提取 Estrayer - + Extract to current directory Estrayer nel direutoriu actual - + Open Abrir - + Rename Renombrar - + Delete Desaniciar - + Open with Abrir con - + + Select default program Otru programa - + Cancel button Encaboxar - + Confirm button Confirmar - + Do you want to delete the selected file(s)? ¿Quies desaniciar los ficheros esbillaos? diff --git a/translations/deepin-compressor_az.ts b/translations/deepin-compressor_az.ts index 28c9f4b8f..167ff3891 100644 --- a/translations/deepin-compressor_az.ts +++ b/translations/deepin-compressor_az.ts @@ -35,6 +35,19 @@ Sizin %1 sıxmağa icazəniz yoxdur + + CliRarPlugin + + + Wrong password + Səhv şifrə + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Arxiv meneceri - + Archive Manager is a fast and lightweight application for creating and extracting archives. Arxiv Meneceri faylları arxivləmək və arxivdən çıxartmaq üçün sürətli və yüngül tətbiqdir. @@ -460,23 +473,23 @@ Ayarlar - - + + Create New Archive Yeni arxiv yaratmaq - + Converting Çevrilir - + Updating comments Şərhlər yenilənir - + @@ -565,12 +578,12 @@ Faylı seçin - + Enter up to %1 characters %1 və daha çox işarə daxil edin - + File info Fayl məlumatı @@ -580,7 +593,7 @@ Bu arxivi silmək istəyirsiniz? - + %1 was changed on the disk, please import it again. %1, bu diskdə dəyişdirildi, lütfən onu yenidən idxal edin. @@ -595,33 +608,33 @@ Faylları burada saxlamağa icazəniz yoxdur, dəyişdirin və yenidən cəhd edin - + Adding files to %1 Fayllar %1-ə/a əlavə olunur - + Compressing Sıxılır - + Extracting Çıxarılır - + Deleting Silinir - - + + Loading, please wait... Yüklənir, lütfən, gözləyin - + Are you sure you want to stop the ongoing task? Davam edən əməliyyatı dayandırmaq istədiyinizə əminsiniz? @@ -648,13 +661,13 @@ Sıxılma alınmadı - + Replace button Əvəz etmək - + Find directory Qovluğu tapmaq @@ -673,64 +686,64 @@ Səhv şifrə - - + + The file format is not supported by Archive Manager Fayl formatı Arxiv Meneceri tərəfindən dəstəklənmir - - - - - - - - + + + + + + + + - - + + OK button OLDU - + Renaming Addəyişmə - - + + You do not have permission to load %1 %1 yükləməyə icazəniz yoxdur - + - - + + Cancel button İmtina - + Confirm button Təsdiq etmək - + No such file or directory Belə fayl və ya qovluq yoxdur - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Qısayollar - + The name is the same as that of the compressed archive, please use another one Ad, sıxışdırılmış arxiv adı ilə eynidir, lütən başqasını seçin - + Another file with the same name already exists, replace it? Bu adla başqa bir fayl mövcuddur, o əvəz edilsin? - + You cannot add the archive to itself Arxiv öz saxilinə əlavə edilə bilməz - + You cannot add files to archives in this file type Bu fayl növündəki arxivlərə fayllar əlavə edə bilməzsiniz - + Update button Yeniləmək - + Basic info Əsas məlumat - + Size Ölçüsü - + Type Növ - + Location Yer - + Time created Yaradılma vaxtı - + Time accessed Müdaxilə vaxtı - + Time modified Dəyişdirilmə vaxtı - + Archive Arxiv - + Comment Şərh - + Please check the file association type in the settings of Archive Manager Lütfən, fayl əlaqələri növünü Arxiv Meneceri ayarlarında yoxlayın @@ -1228,7 +1241,7 @@ Ölçüsü - + %1 changed. Do you want to save changes to the archive? %1 dəyişdirildi. Dəyişiklikləri arxivdə saxlamaq istəyirsiniz? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Faylı açın - + Back Geriyə - + File info Fayl məlumatı diff --git a/translations/deepin-compressor_bo.ts b/translations/deepin-compressor_bo.ts index 19d82a57f..10cf7b252 100644 --- a/translations/deepin-compressor_bo.ts +++ b/translations/deepin-compressor_bo.ts @@ -35,6 +35,19 @@ ཁྱེད་ལ་ཡིག་ཆ་“%1”གནོན་བཙིར་བྱེད་པའི་དབང་ཚད་མེད། + + CliRarPlugin + + + Wrong password + གསང་ཨང་ནོར་འདུག + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager ཡིག་ཚགས་དོ་དམ་ཆས། - + Archive Manager is a fast and lightweight application for creating and extracting archives. ཡིག་ཚགས་དོ་དམ་ཆས་ནི་མགྱོགས་ལ་སྟབས་བདེ་བའི་ཡིག་ཆ་གནོན་བཙིར་དང་བསྡུས་འགྲོལ་བྱེད་པའི་ཡོ་བྱད་ཞིག་རེད། ཡིག་ཆ་གནོན་བཙིར་དང་བསྡུས་འགྲོལ་བྱེད་པའི་རྒྱུན་གཏན་བྱེད་ནུས་མཁོ་འདོན་བྱེད་ཀྱི་ཡོད། @@ -460,23 +473,23 @@ སྒྲིག་འགོད། - - + + Create New Archive ཡིག་ཚགས་སུ་ཉར་བའི་ཡིག་ཆ་གསར་བཟོ་བྱ་རྒྱུ། - + Converting བརྗེ་སྒྱུར་བྱེད་བཞིན་པ། - + Updating comments མཆན་འགྲེལ་གསར་སྒྱུར་བྱེད་བཞིན་པ། - + @@ -565,12 +578,12 @@ ཡིག་ཆ་འདེམས་པ། - + Enter up to %1 characters མཆན་འགྲེལ་གྱི་ནང་དོན་ཡིག་རྟགས་%1ལས་བརྒལ་མི་རུང་། - + File info ཡིག་ཆའི་ཆ་འཕྲིན། @@ -580,7 +593,7 @@ ཁྱེད་ཀྱིས་གནོན་བཙིར་ཡིག་ཆ་འདི་སུབ་རྒྱུ་གཏན་འཁེལ་ལམ། - + %1 was changed on the disk, please import it again. “%1”ལ་འགྱུར་བ་བྱུང་ཟིན་པས། ཡང་བསྐྱར་ཡིག་ཆ་འདྲེན་འཇུག་གནང་རོགས། @@ -595,33 +608,33 @@ ཁྱེད་ལ་ལམ་བུ་འདི་བརྒྱུད་ནས་ཡིག་ཆ་ཉར་བའི་དབང་ཚད་མེད་པས། ཡང་བསྐྱར་ཚོད་ལྟ་གྱིས་དང་། - + Adding files to %1 %1ལ་ཡིག་ཆ་སྣོན་བཞིན་པ། - + Compressing གནོན་བཙིར་བྱེད་བཞིན་པ། - + Extracting བསྡུས་འགྲོལ་བྱེད་བཞིན་པ། - + Deleting སུབ་བཞིན་པ། - - + + Loading, please wait... སྣོན་འཇུག་བྱེད་བཞིན་པས། ཏོག་ཙམ་སྒུག་རོགས། - + Are you sure you want to stop the ongoing task? ཁྱེད་ཀྱིས་བཀོལ་སྤྱོད་བྱེད་བཞིན་པའི་ལས་འགན་མཚམས་འཇོག་བྱ་རྒྱུ་གཏན་འཁེལ་ལམ། @@ -648,13 +661,13 @@ གནོན་བཙིར་མི་ཐུབ། - + Replace button བརྗེ་བ། - + Find directory དཀར་ཆག་ཏུ་བསྡུས་འགྲོལ་བྱེད་པ། @@ -673,64 +686,64 @@ གསང་ཨང་ནོར་འདུག - - + + The file format is not supported by Archive Manager རྣམ་གཞག་འདིའ་ཡིག་ཆ་ཁ་ཕྱེ་བར་རྒྱབ་སྐྱོར་མེད། - - - - - - - - + + + + + + + + - - + + OK button ཆོག - + Renaming གཞི་གཞི་བསྔོ། - - + + You do not have permission to load %1 ཁྱོད་ལ་ཡིག་ཆ་“%1”སྣོན་འཇུག་བྱེད་དབང་མེད། - + - - + + Cancel button འདོར་བ། - + Confirm button གཏན་འཁེལ། - + No such file or directory ཡིག་ཆའམ་དཀར་ཆག་དེ་མི་འདུག - + Unable to add system files or network files, please select files on local devices མ་ལག་གི་ཡིག་ཆ་དང་དྲ་རྒྱའི་ཡིག་ཆ་ཁ་སྣོན་བྱེད་མི་ཐུབ་པས། ས་གནས་ཀྱི་སྒྲིག་ཆས་ནས་ཡིག་ཆ་འདེམས་རོགས། @@ -829,78 +842,78 @@ མྱུར་མཐེབ། - + The name is the same as that of the compressed archive, please use another one ཡིག་ཆའི་མིང་དང་གནོན་བཙིར་བྱས་པའི་ཡིག་ཆའི་མིང་གཅིག་པ་རེད་འདུག་པས། ཡིག་ཆའི་མིང་བརྗེ་རོགས། - + Another file with the same name already exists, replace it? ཡིག་ཆ་ཡོད་ཟིན་པས། བརྗེས་སམ། - + You cannot add the archive to itself གནོན་བཙིར་ཡིག་ཆ་འདི་རང་ཉིད་ཐོག་ཏུ་སྣོན་ཐབས་མེད། - + You cannot add files to archives in this file type གནོན་བཙིར་ཡིག་ཆ་འདིའི་རྣམ་གཞག་གིས་ཡིག་ཆར་སྣོན་པར་རྒྱབ་སྐྱོར་མེད། - + Update button གསར་སྒྱུར། - + Basic info གཞི་རྩའི་ཆ་འཕྲིན། - + Size ཆེ་ཆུང་། - + Type རིགས་གྲས། - + Location གནས་ས། - + Time created དུས་ཚོད་བཟོ་བ། - + Time accessed ལྟ་སྤྱོད་དུས་ཚོད། - + Time modified བཅོས་པའི་དུས་ཚོད། - + Archive གནོན་བཙིར་ཡིག་ཆ། - + Comment མཆན་འགྲེལ། - + Please check the file association type in the settings of Archive Manager ཡིག་ཚགས་དོ་དམ་ཆས་ཀྱི་སྒྲིག་འགོད་ཁྲོད་དུ་ཡིག་ཆ་དེའི་རིགས་གྲས་འདེམས་རྒྱུ། @@ -1228,7 +1241,7 @@ ཆེ་ཆུང་། - + %1 changed. Do you want to save changes to the archive? ཡིག་ཆ་“%1”བཅོས་ཟིན་པས། བཟོ་བཅོས་འདི་གནོན་བཙིར་ཁུག་ཏུ་གསར་སྒྱུར་བྱེད་དམ། @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file ཡི་གེ་ཁ་ཕྱིར། - + Back ཕྱིར་ལོག་པ། - + File info ཡི་གེ་ཆེད་པ་ཆོད་པ་མ་ཐུབ diff --git a/translations/deepin-compressor_ca.ts b/translations/deepin-compressor_ca.ts index 25bf964db..7811ca811 100644 --- a/translations/deepin-compressor_ca.ts +++ b/translations/deepin-compressor_ca.ts @@ -35,6 +35,19 @@ No teniu permís per comprimir %1 + + CliRarPlugin + + + Wrong password + Contrasenya incorrecta + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Gestor d'arxius - + Archive Manager is a fast and lightweight application for creating and extracting archives. El Gestor d'arxius és una aplicació lleugera i ràpida per crear i descomprimir arxius. @@ -460,23 +473,23 @@ Configuració - - + + Create New Archive Crea un nou fitxer - + Converting Es converteix - + Updating comments S'actualitzen els comentaris. - + @@ -565,12 +578,12 @@ Seleccioneu un fitxer - + Enter up to %1 characters Escriviu fins a %1 caràcters. - + File info Informació del fitxer @@ -580,7 +593,7 @@ Voleu eliminar l'arxiu? - + %1 was changed on the disk, please import it again. %1 ha canviat al disc. Si us plau, torneu-lo a importar. @@ -595,33 +608,33 @@ No teniu permís per desar fitxers aquí. Si us plau, canvieu-ho i torneu-ho a provar. - + Adding files to %1 S'afegeixen fitxers a %1 - + Compressing Es comprimeix - + Extracting S'extreu - + Deleting S'elimina - - + + Loading, please wait... Es carrega. Espereu, si us plau... - + Are you sure you want to stop the ongoing task? Segur que voleu interrompre la tasca activa? @@ -648,13 +661,13 @@ La compressió ha fallat. - + Replace button Reemplaça - + Find directory Troba un directori @@ -673,64 +686,64 @@ Contrasenya incorrecta - - + + The file format is not supported by Archive Manager El format del fitxer no l'admet el Gestor d'arxius. - - - - - - - - + + + + + + + + - - + + OK button D'acord - + Renaming Canvi de nom - - + + You do not have permission to load %1 No teniu permís per carregar %1 - + - - + + Cancel button Cancel·la - + Confirm button Confirmeu-ho - + No such file or directory No hi ha tal fitxer o directori. - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Dreceres - + The name is the same as that of the compressed archive, please use another one El nom és igual al de l'arxiu comprimit. Si us plau, useu-ne un altre. - + Another file with the same name already exists, replace it? Ja existeix un altre fitxer amb el mateix nom. Voleu reemplaçar-lo? - + You cannot add the archive to itself No podeu afegir un arxiu a si mateix. - + You cannot add files to archives in this file type No podeu afegir fitxers d'aquest tipus a arxius. - + Update button Actualitza - + Basic info Informació bàsica - + Size Mida - + Type Tipus - + Location Ubicació - + Time created Hora de creació - + Time accessed Hora d'accés - + Time modified Modificat - + Archive Arxiva - + Comment Comentari - + Please check the file association type in the settings of Archive Manager Si us plau, comproveu el tipus d'associació de fitxers a la configuració del Gestor d'arxius. @@ -1228,7 +1241,7 @@ Mida - + %1 changed. Do you want to save changes to the archive? %1 ha canviat. Voleu desar els canvis a l'arxiu? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Obre el fitxer - + Back Enrere - + File info Informació del fitxer diff --git a/translations/deepin-compressor_cs.ts b/translations/deepin-compressor_cs.ts index 217de2347..db7c0041c 100644 --- a/translations/deepin-compressor_cs.ts +++ b/translations/deepin-compressor_cs.ts @@ -35,6 +35,19 @@ Nemáte oprávnění pro zkomprimování %1 + + CliRarPlugin + + + Wrong password + Chybné heslo + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Správce archivů - + Archive Manager is a fast and lightweight application for creating and extracting archives. Správce archivů je rychlá a na systémové prostředky nenáročná aplikace pro vytváření a rozbalování archivů. @@ -460,23 +473,23 @@ Nastavení - - + + Create New Archive Vytvořit nový archiv - + Converting Převádí se - + Updating comments Aktualizují se komentáře - + @@ -565,12 +578,12 @@ Vybrat soubor - + Enter up to %1 characters Zadejte až %1 znaků - + File info Informace o souboru @@ -580,7 +593,7 @@ Opravdu chcete archiv smazat? - + %1 was changed on the disk, please import it again. %1 byl mezitím změněn na disku. Otevřete ho znovu. @@ -595,33 +608,33 @@ Nemáte oprávnění ukládat sem soubory. Změňte umístění a zkuste to znovu - + Adding files to %1 Přidávají se soubory do %1 - + Compressing Komprimuje se - + Extracting Rozbaluje se - + Deleting Maže se - - + + Loading, please wait... Načítání – čekejte prosím… - + Are you sure you want to stop the ongoing task? Opravdu chcete probíhající úlohu zastavit? @@ -648,13 +661,13 @@ Komprimace se nezdařila - + Replace button Nahradit - + Find directory Najít složku @@ -673,64 +686,64 @@ Chybné heslo - - + + The file format is not supported by Archive Manager Formát souboru není podporován Správcem archivů - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Přejmenovávání - - + + You do not have permission to load %1 Nemáte oprávnění pro načtení %1 - + - - + + Cancel button Storno - + Confirm button Potvrdit - + No such file or directory Žádný takový soubor či složka - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Klávesové zkratky - + The name is the same as that of the compressed archive, please use another one Název je stejný jako komprimovaného archivu – použijte jiný - + Another file with the same name already exists, replace it? Už existuje jiný soubor se stejným názvem. Nahradit ho? - + You cannot add the archive to itself Není možné přidat archiv do sama sebe - + You cannot add files to archives in this file type V případě tohoto typu souboru není možné přidávat soubory do archivu - + Update button Aktualizovat - + Basic info Základní informace - + Size Velikost - + Type Typ - + Location Umístění - + Time created Okamžik vytvoření - + Time accessed Okamžik přístupu - + Time modified Čas změny - + Archive Archiv - + Comment Komentář - + Please check the file association type in the settings of Archive Manager Zkontrolujte přiřazení typu souborů v nastavení Správce archivů @@ -1228,7 +1241,7 @@ Velikost - + %1 changed. Do you want to save changes to the archive? %1 se změnilo. Chcete uložit změny do archivu? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Otevřít soubor - + Back Zpět - + File info Informace o souboru diff --git a/translations/deepin-compressor_da.ts b/translations/deepin-compressor_da.ts index 9026a40fc..8705fb1a2 100644 --- a/translations/deepin-compressor_da.ts +++ b/translations/deepin-compressor_da.ts @@ -35,6 +35,19 @@ Du har ikke tilladelse til at komprimere %1 + + CliRarPlugin + + + Wrong password + Forkert adgangskode + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Arkivhåndtering - + Archive Manager is a fast and lightweight application for creating and extracting archives. Arkivhåndtering er et hurtigt og letvægts program til oprettelse og udpakning af arkiver. @@ -460,13 +473,13 @@ Indstillinger - - + + Create New Archive Opret nyt arkiv - + Converting Konverterer @@ -481,7 +494,7 @@ Vil du slette arkivet? - + %1 was changed on the disk, please import it again. %1 blev ændret på disken — importér den venligst igen. @@ -497,71 +510,71 @@ - - - - - - - - + + + + + + + + - - + + OK button OK - + Adding files to %1 Tilføjer filer i %1 - + Compressing Komprimerer - + Extracting Udpakker - + Deleting Sletter - - + + You do not have permission to load %1 Du har ikke tilladelse til at indlæse %1 - - + + Loading, please wait... Indlæser, venligst vent... - + Are you sure you want to stop the ongoing task? Er du sikker på, at du vil stoppe den pågærende opgave? - + - - + + Cancel button Annuller - + Confirm button @@ -626,18 +639,18 @@ Komprimering mislykkedes - + Replace button Erstat - + You cannot add files to archives in this file type Du kan ikke tilføje filer til arkiver af denne filtype - + Find directory Find mappe @@ -698,22 +711,22 @@ Genkaldelsesknapper - + File info Filinformation - + Updating comments Opdatering af kommentarer - + Renaming Omværsning - + @@ -721,18 +734,18 @@ Plugin-fejl - + No such file or directory Ingen fil eller mappe - - + + The file format is not supported by Archive Manager Filformatet understøttes ikke af Archive Manager - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Vælg fil - + The name is the same as that of the compressed archive, please use another one Navnet er det samme som det komprimerede arkivs, venligst brug et andet - + Another file with the same name already exists, replace it? Der findes allerede en anden fil med det samme navn — erstat den? - + You cannot add the archive to itself Du kan ikke tilføje arkivet til sig selv - + Update button Opdater - + Basic info Grundlæggende information - + Size Størrelse - + Type Type - + Location Beliggenhed - + Time created Tid for oprettelse - + Time accessed Tid for tilgang - + Time modified Ændringstidspunkt - + Archive Arkiv - + Comment Kommentar - + Enter up to %1 characters Indtast op til %1 tegn - + Please check the file association type in the settings of Archive Manager Tjek venligst filtilknytningstypen i indstillingerne for Archive Manager @@ -1268,7 +1281,7 @@ Filtype - + %1 changed. Do you want to save changes to the archive? %1 er ændret. Vil du gem ændringerne i arkivet? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Åbn fil - + Back Tilbage - + File info Filinfo diff --git a/translations/deepin-compressor_de.ts b/translations/deepin-compressor_de.ts index cd39f2359..eede61515 100644 --- a/translations/deepin-compressor_de.ts +++ b/translations/deepin-compressor_de.ts @@ -35,6 +35,19 @@ Sie haben keine Berechtigung zum Komprimieren von %1 + + CliRarPlugin + + + Wrong password + Falsches Passwort + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Archivverwaltung - + Archive Manager is a fast and lightweight application for creating and extracting archives. Archive Manager ist eine schnelle und einfache Anwendung zum erstellen und entpacken von Archiven. @@ -460,23 +473,23 @@ Einstellungen - - + + Create New Archive Neues Archiv erstellen - + Converting Wird konvertiert - + Updating comments Kommentare werden aktualisiert - + @@ -565,12 +578,12 @@ Datei auswählen - + Enter up to %1 characters Bis zu %1 Zeichen eingeben - + File info Dateiinformation @@ -580,7 +593,7 @@ Möchten Sie das Archiv löschen? - + %1 was changed on the disk, please import it again. %1 wurde auf dem Laufwerk geändert, bitte importieren Sie es erneut. @@ -595,33 +608,33 @@ Sie haben keine Berechtigung, hier Dateien zu speichern, bitte ändern und erneut versuchen - + Adding files to %1 Dateien werden zu %1 hinzugefügt - + Compressing Wird komprimiert - + Extracting Wird entpackt - + Deleting Wird gelöscht - - + + Loading, please wait... Wird geladen, bitte warten ... - + Are you sure you want to stop the ongoing task? Sind Sie sicher, dass Sie die laufende Aufgabe stoppen möchten? @@ -648,13 +661,13 @@ Komprimierung fehlgeschlagen - + Replace button Ersetzen - + Find directory Verzeichnis suchen @@ -673,64 +686,64 @@ Falsches Passwort - - + + The file format is not supported by Archive Manager Das Dateiformat wird von der Archivverwaltung nicht unterstützt - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Wird umbenannt - - + + You do not have permission to load %1 Sie haben keine Berechtigung zum Laden von %1 - + - - + + Cancel button Abbrechen - + Confirm button Bestätigen - + No such file or directory Keine solche Datei oder Verzeichnis - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Tastenkombinationen - + The name is the same as that of the compressed archive, please use another one Der Name ist der gleiche wie der des komprimierten Archivs, bitte verwenden Sie einen anderen - + Another file with the same name already exists, replace it? Eine andere Datei mit dem gleichen Namen existiert bereits, möchten Sie sie ersetzen? - + You cannot add the archive to itself Sie können das Archiv nicht zu sich selbst hinzufügen - + You cannot add files to archives in this file type In diesem Dateityp können Sie keine Dateien zu Archiven hinzufügen - + Update button Aktualisierung - + Basic info Grundlegende Informationen - + Size Größe - + Type Typ - + Location Ort - + Time created Erstellungszeit - + Time accessed Zugriffszeit - + Time modified Änderungszeit - + Archive Archiv - + Comment Kommentar - + Please check the file association type in the settings of Archive Manager Bitte überprüfen Sie den Dateizuordnungstyp in den Einstellungen der Archivverwaltung @@ -1228,7 +1241,7 @@ Größe - + %1 changed. Do you want to save changes to the archive? %1 geändert. Möchten Sie die Änderungen im Archiv speichern? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Datei öffnen - + Back Zurück - + File info Dateiinformation diff --git a/translations/deepin-compressor_en.ts b/translations/deepin-compressor_en.ts index b193f3c33..b54011238 100644 --- a/translations/deepin-compressor_en.ts +++ b/translations/deepin-compressor_en.ts @@ -35,6 +35,19 @@ You do not have permission to compress %1 + + CliRarPlugin + + + Wrong password + Wrong password + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Archive Manager - + Archive Manager is a fast and lightweight application for creating and extracting archives. Archive Manager is a fast and lightweight application for creating and extracting archives. @@ -460,23 +473,23 @@ Settings - - + + Create New Archive Create New Archive - + Converting Converting - + Updating comments Updating comments - + @@ -565,12 +578,12 @@ Select file - + Enter up to %1 characters Enter up to %1 characters - + File info File info @@ -580,7 +593,7 @@ Do you want to delete the archive? - + %1 was changed on the disk, please import it again. %1 was changed on the disk, please import it again. @@ -595,33 +608,33 @@ You do not have permission to save files here, please change and retry - + Adding files to %1 Adding files to %1 - + Compressing Compressing - + Extracting Extracting - + Deleting Deleting - - + + Loading, please wait... Loading, please wait... - + Are you sure you want to stop the ongoing task? Are you sure you want to stop the ongoing task? @@ -648,13 +661,13 @@ Compression failed - + Replace button Replace - + Find directory Find directory @@ -673,64 +686,64 @@ Wrong password - - + + The file format is not supported by Archive Manager The file format is not supported by Archive Manager - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Renaming - - + + You do not have permission to load %1 You do not have permission to load %1 - + - - + + Cancel button Cancel - + Confirm button Confirm - + No such file or directory No such file or directory - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Shortcuts - + The name is the same as that of the compressed archive, please use another one The name is the same as that of the compressed archive, please use another one - + Another file with the same name already exists, replace it? Another file with the same name already exists, replace it? - + You cannot add the archive to itself You cannot add the archive to itself - + You cannot add files to archives in this file type You cannot add files to archives in this file type - + Update button Update - + Basic info Basic info - + Size Size - + Type Type - + Location Location - + Time created Time created - + Time accessed Time accessed - + Time modified Time modified - + Archive Archive - + Comment Comment - + Please check the file association type in the settings of Archive Manager Please check the file association type in the settings of Archive Manager @@ -1228,7 +1241,7 @@ Size - + %1 changed. Do you want to save changes to the archive? %1 changed. Do you want to save changes to the archive? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Open file - + Back Back - + File info File info diff --git a/translations/deepin-compressor_es.ts b/translations/deepin-compressor_es.ts index 491a810f5..0c6e9091d 100644 --- a/translations/deepin-compressor_es.ts +++ b/translations/deepin-compressor_es.ts @@ -35,6 +35,19 @@ No tiene permiso para comprimir %1 + + CliRarPlugin + + + Wrong password + Contraseña incorrecta + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Compresor de archivos - + Archive Manager is a fast and lightweight application for creating and extracting archives. Compresor de archivos de Deepin es una ligera y rápida aplicación para comprimir y extraer archivos. @@ -460,23 +473,23 @@ Ajustes - - + + Create New Archive Crear nuevo fichero - + Converting Convirtiendo - + Updating comments Actualizando comentarios - + @@ -565,12 +578,12 @@ Seleccionar archivo - + Enter up to %1 characters Introduzca hasta %1 caracteres - + File info Información @@ -580,7 +593,7 @@ ¿Desea borrar el archivo? - + %1 was changed on the disk, please import it again. %1 fué cambiado en el disco, por favor vuelva a importarlo. @@ -595,33 +608,33 @@ No tiene permisos para guardar archivos aquí, por favor cámbielos e inténtelo de nuevo - + Adding files to %1 Añadiendo archivos a %1 - + Compressing Comprimiendo - + Extracting Extrayendo - + Deleting Borrando - - + + Loading, please wait... Cargando, por favor espere... - + Are you sure you want to stop the ongoing task? ¿Está seguro que quiere detener la tarea en curso? @@ -648,13 +661,13 @@ La compresión falló - + Replace button Reemplazar - + Find directory Buscar carpeta @@ -673,64 +686,64 @@ Contraseña incorrecta - - + + The file format is not supported by Archive Manager El formato de archivo no es compatible con el compresor de archivos - - - - - - - - + + + + + + + + - - + + OK button Aceptar - + Renaming Renombrando - - + + You do not have permission to load %1 No tiene permiso para cargar %1 - + - - + + Cancel button Cancelar - + Confirm button Confirmar - + No such file or directory No hay tal archivo o directorio - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Atajos - + The name is the same as that of the compressed archive, please use another one El nombre es el mismo que el del archivo comprimido, por favor utilice otro - + Another file with the same name already exists, replace it? Ya existe otro archivo con el mismo nombre, ¿desea remplazarlo? - + You cannot add the archive to itself No se puede añadir el archivo a sí mismo - + You cannot add files to archives in this file type No se pueden añadir archivos para este tipo de compresión - + Update button Actualizar - + Basic info Información básica - + Size Tamaño - + Type Tipo - + Location Ubicación - + Time created Fecha de creación - + Time accessed Fecha de acceso - + Time modified Fecha de modificación - + Archive Archivo - + Comment Comentario - + Please check the file association type in the settings of Archive Manager Verifique la asociación del tipo de archivo en la configuración del Administrador de archivos @@ -1228,7 +1241,7 @@ Tamaño - + %1 changed. Do you want to save changes to the archive? %1 cambió. ¿Desea guardar los cambios en el archivo? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Abrir archivo - + Back Atrás - + File info Información diff --git a/translations/deepin-compressor_fi.ts b/translations/deepin-compressor_fi.ts index 4d3584ad8..eb5d564ab 100644 --- a/translations/deepin-compressor_fi.ts +++ b/translations/deepin-compressor_fi.ts @@ -35,6 +35,19 @@ Sinulla ei ole oikeuksia pakata kohdetta %1 + + CliRarPlugin + + + Wrong password + Väärä salasana + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Pakkaaja - + Archive Manager is a fast and lightweight application for creating and extracting archives. Pakkaaja on nopea ja kevyt sovellus arkistojen luomiseen ja purkamiseen. @@ -460,23 +473,23 @@ Asetukset - - + + Create New Archive Luo uusi arkisto - + Converting Muuntaminen - + Updating comments Päivitetään kommentteja - + @@ -565,12 +578,12 @@ Valitse tiedosto - + Enter up to %1 characters Kirjoita enintään %1 merkkiä - + File info Tiedoston tiedot @@ -580,7 +593,7 @@ Haluatko poistaa paketin? - + %1 was changed on the disk, please import it again. %1 on muuttunut levyllä, tuo se uudelleen. @@ -595,33 +608,33 @@ Sinulla ei ole oikeuksia tallentaa tiedostoja täällä, vaihda ja yritä uudelleen - + Adding files to %1 Tiedostojen lisääminen %1 - + Compressing Pakataan - + Extracting Purkaminen - + Deleting Poistaminen - - + + Loading, please wait... Ladataan. odota... - + Are you sure you want to stop the ongoing task? Haluatko varmasti lopettaa meneillään olevan tehtävän? @@ -648,13 +661,13 @@ Pakkaus epäonnistui - + Replace button Korvaa - + Find directory Etsi hakemisto @@ -673,64 +686,64 @@ Väärä salasana - - + + The file format is not supported by Archive Manager Pakkaaja ei tue tiedostomuotoa - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Nimeä uudelleen - - + + You do not have permission to load %1 Sinulla ei ole oikeuksia ladata kohdetta %1 - + - - + + Cancel button Peruuta - + Confirm button Vahvista - + No such file or directory Ei tällaista tiedostoa tai hakemistoa - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Pikakuvakkeet - + The name is the same as that of the compressed archive, please use another one Nimi on sama kuin valmiiksi pakatun nimi, käytä toista - + Another file with the same name already exists, replace it? Toinen samanniminen tiedosto on jo olemassa, korvataanko se? - + You cannot add the archive to itself Et voi lisätä pakettia itseensä - + You cannot add files to archives in this file type Et voi lisätä tiedostoja tämän pakkaustyypin paketteihin - + Update button Päivitä - + Basic info Perustiedot - + Size Koko - + Type Tyyppi - + Location Sijainti - + Time created Valmistunut - + Time accessed Käytetty aika - + Time modified Muokkauspäivä - + Archive Arkisto - + Comment Kommentti - + Please check the file association type in the settings of Archive Manager Tarkista tiedoston kytkemisen tyyppi asetuksista @@ -1228,7 +1241,7 @@ Koko - + %1 changed. Do you want to save changes to the archive? %1 muuttui. Haluatko tallentaa muutokset pakettiin? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Avaa tiedosto - + Back Takaisin - + File info Tiedoston tiedot diff --git a/translations/deepin-compressor_fr.ts b/translations/deepin-compressor_fr.ts index e6debcd5e..5258a0a24 100644 --- a/translations/deepin-compressor_fr.ts +++ b/translations/deepin-compressor_fr.ts @@ -35,6 +35,19 @@ Vous n'êtes pas autorisé à compresser %1 + + CliRarPlugin + + + Wrong password + Mot de passe incorrect + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Gestionnaire d'archives - + Archive Manager is a fast and lightweight application for creating and extracting archives. Archive Manager est une application rapide et légère pour créer et extraire des archives. @@ -460,23 +473,23 @@ Paramètres - - + + Create New Archive Créer une nouvelle archive - + Converting Conversion - + Updating comments Mise à jour des commentaires - + @@ -565,12 +578,12 @@ Sélectionner un fichier - + Enter up to %1 characters Entrez jusqu'à %1 caractères - + File info Informations sur le fichier @@ -580,7 +593,7 @@ Voulez-vous supprimer l'archive ? - + %1 was changed on the disk, please import it again. %1 a été modifié sur le disque, veuillez l'importer à nouveau. @@ -595,33 +608,33 @@ Vous n'êtes pas autorisé à enregistrer des fichiers ici, veuillez modifier et réessayer - + Adding files to %1 Ajout de fichiers à %1 - + Compressing Compression - + Extracting Extraire - + Deleting Suppression - - + + Loading, please wait... Chargement, veuillez patienter... - + Are you sure you want to stop the ongoing task? Voulez-vous vraiment arrêter la tâche en cours ? @@ -648,13 +661,13 @@ Échec de la compression - + Replace button Remplacer - + Find directory Rechercher un répertoire @@ -673,64 +686,64 @@ Mot de passe incorrect - - + + The file format is not supported by Archive Manager Le format de fichier n'est pas pris en charge par Archive Manager - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Renommage - - + + You do not have permission to load %1 Vous n'êtes pas autorisé à charger %1 - + - - + + Cancel button Annuler - + Confirm button Confirmer - + No such file or directory Aucun fichier ou répertoire de ce nom - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Raccourcis - + The name is the same as that of the compressed archive, please use another one Le nom est le même que celui de l'archive compressée, veuillez en utiliser un autre - + Another file with the same name already exists, replace it? Un autre fichier du même nom existe déjà, le remplacer ? - + You cannot add the archive to itself Vous ne pouvez pas ajouter l'archive à elle-même - + You cannot add files to archives in this file type Vous ne pouvez pas ajouter de fichiers aux archives dans ce type de fichier - + Update button Mettre à jour - + Basic info Info de base - + Size Taille - + Type Type - + Location Emplacement - + Time created Heure de création - + Time accessed Temps d'accès - + Time modified Heure de modification - + Archive Archive - + Comment Commentaire - + Please check the file association type in the settings of Archive Manager Veuillez vérifier le type d'association de fichiers dans les paramètres d'Archive Manager @@ -1228,7 +1241,7 @@ Taille - + %1 changed. Do you want to save changes to the archive? %1 a changé. Voulez-vous enregistrer les modifications apportées à l'archive ? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Ouvrir un fichier - + Back Retour - + File info Informations sur le fichier diff --git a/translations/deepin-compressor_hu.ts b/translations/deepin-compressor_hu.ts index 183395045..b6d2d9630 100644 --- a/translations/deepin-compressor_hu.ts +++ b/translations/deepin-compressor_hu.ts @@ -35,6 +35,19 @@ Nincs engedélye a %1 tömörítésére + + CliRarPlugin + + + Wrong password + Érvénytelen jelszó + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Archívumkezelő - + Archive Manager is a fast and lightweight application for creating and extracting archives. Az Archívumkezelő egy gyors és kis erőforrás igényű alkalmazás, tömörített fájlok létrehozásához és kibontásához. @@ -460,23 +473,23 @@ Beállítások - - + + Create New Archive Új archívum létrehozása - + Converting Konvertálás - + Updating comments Hozzászólások frissítése - + @@ -565,12 +578,12 @@ Fájl kiválasztása - + Enter up to %1 characters Adjon meg legfeljebb %1 karaktert - + File info Fájl információ @@ -580,7 +593,7 @@ Biztos, hogy törli az archívumot? - + %1 was changed on the disk, please import it again. A %1 megváltozott a lemezen, kérjük importálja újra. @@ -595,33 +608,33 @@ Nincs engedélye fájlok ide mentésére, kérjük módosítsa és próbálja újra - + Adding files to %1 Fájlok hozzáadása a %1 fájlhoz - + Compressing Tömörítés - + Extracting Kicsomagolás - + Deleting Törlés - - + + Loading, please wait... Betöltés, kérjük várjon... - + Are you sure you want to stop the ongoing task? Biztosan le akarja állítani a folyamatban lévő feladatot? @@ -648,13 +661,13 @@ A tömörítés sikertelen - + Replace button Csere - + Find directory Mappa keresése @@ -673,64 +686,64 @@ Érvénytelen jelszó - - + + The file format is not supported by Archive Manager Ez a fájl formátum nem támogatott az Archívumkezelő által - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Átnevezés folyamatban - - + + You do not have permission to load %1 Nincs engedélye a %1 betöltésére - + - - + + Cancel button Mégsem - + Confirm button Megerősítés - + No such file or directory Nem létezik ilyen fájl, vagy könyvtár - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Gyorsbillentyűk - + The name is the same as that of the compressed archive, please use another one A név megegyezik a tömörített archívum nevével, kérjük használjon másikat - + Another file with the same name already exists, replace it? Már létezik egy ugyanilyen nevű fájl, lecseréli? - + You cannot add the archive to itself Az archívum nem adható hozzá önmagához - + You cannot add files to archives in this file type Nem adhat hozzá fájlokat az ilyen típusú archívumokhoz - + Update button Frissítés - + Basic info Alapvető információ - + Size Méret - + Type Típus - + Location Hely - + Time created Létrehozás ideje - + Time accessed Hozzáférés ideje - + Time modified Módosítás időpontja - + Archive Archívum - + Comment Hozzászólás - + Please check the file association type in the settings of Archive Manager Kérjük ellenőrizze a fájl társítási típusát az Archívumkezelő beállításaiban @@ -1228,7 +1241,7 @@ Méret - + %1 changed. Do you want to save changes to the archive? A %1 megváltozott. El akarja menteni az archívum módosításait? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Fájl megnyitása - + Back Vissza - + File info Fájl információ diff --git a/translations/deepin-compressor_it.ts b/translations/deepin-compressor_it.ts index 479a1964c..a7a51fa0e 100644 --- a/translations/deepin-compressor_it.ts +++ b/translations/deepin-compressor_it.ts @@ -35,6 +35,19 @@ Non hai l'autorizzazione per comprimere %1 + + CliRarPlugin + + + Wrong password + Password errata + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Gestore Archivi - + Archive Manager is a fast and lightweight application for creating and extracting archives. Archive Manager è un'applicazione veloce e leggera per la creazione e l'estrazione di archivi. Localizzazione italiana a cura di Massimo A. Carofano. @@ -461,23 +474,23 @@ Localizzazione italiana a cura di Massimo A. Carofano. Impostazioni - - + + Create New Archive Crea nuovo Archivio - + Converting Conversione - + Updating comments Aggiornamento commenti - + @@ -566,12 +579,12 @@ Localizzazione italiana a cura di Massimo A. Carofano. Seleziona file - + Enter up to %1 characters Inserisci più di %1 caratteri - + File info Informazioni @@ -581,7 +594,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Desideri eliminare l'archivio? - + %1 was changed on the disk, please import it again. %1 è stata modificata sul Disco, importala nuovamente. @@ -596,33 +609,33 @@ Localizzazione italiana a cura di Massimo A. Carofano. Non hai l'autorizzazione per salvare il file qui, scegli un altro percorso e riprova - + Adding files to %1 Aggiunta file in %1 - + Compressing Compressione in corso - + Extracting Estrazione in corso - + Deleting Eliminazione - - + + Loading, please wait... Caricamento, attendere prego... - + Are you sure you want to stop the ongoing task? Sicuro di voler interrompere l'operazione in corso? @@ -649,13 +662,13 @@ Localizzazione italiana a cura di Massimo A. Carofano. Compressione fallita - + Replace button Sostituisci - + Find directory Trova percorso @@ -674,64 +687,64 @@ Localizzazione italiana a cura di Massimo A. Carofano. Password errata - - + + The file format is not supported by Archive Manager Il formato del file non è supportato dal Gestore Archivi - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Ridenominazione in corso - - + + You do not have permission to load %1 Non hai l'autorizzazione per caricare %1 - + - - + + Cancel button Annulla - + Confirm button Conferma - + No such file or directory Nessun file o percorso - + Unable to add system files or network files, please select files on local devices @@ -830,78 +843,78 @@ Localizzazione italiana a cura di Massimo A. Carofano. Scorciatoie - + The name is the same as that of the compressed archive, please use another one Il nome è il medesimo dell'archivio compresso, per cortesia utilizza un nome differente - + Another file with the same name already exists, replace it? Esiste già un file con lo stesso nome, desideri sostituirlo? - + You cannot add the archive to itself Non puoi aggiungere l'archivio al tuo lavoro - + You cannot add files to archives in this file type Non puoi aggiungere elementi ad un archivio di questo tipo - + Update button Aggiorna - + Basic info Info base - + Size Dimensione - + Type Tipologia - + Location Percorso - + Time created Data creazione - + Time accessed Data ultimo accesso - + Time modified Data modifica - + Archive Archivio - + Comment Commenti - + Please check the file association type in the settings of Archive Manager Controlla il tipo di associazione nelle impostazioni del Gestore Archivi @@ -1229,7 +1242,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Dimensione - + %1 changed. Do you want to save changes to the archive? %1 modificato. Desideri salvare le modifiche nell'archivio? @@ -1437,18 +1450,18 @@ Localizzazione italiana a cura di Massimo A. Carofano. TitleWidget - - + + Open file Apri file - + Back Indietro - + File info Info diff --git a/translations/deepin-compressor_ja.ts b/translations/deepin-compressor_ja.ts index 87d8ffdc7..403938509 100644 --- a/translations/deepin-compressor_ja.ts +++ b/translations/deepin-compressor_ja.ts @@ -35,6 +35,19 @@ %1を圧縮する権限がありません + + CliRarPlugin + + + Wrong password + パスワードが違います + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager アーカイブ マネージャー - + Archive Manager is a fast and lightweight application for creating and extracting archives. アーカイブ マネージャーは、アーカイブの作成および伸張するための高速で軽量なアプリケーションです。 @@ -460,23 +473,23 @@ 設定 - - + + Create New Archive 新規アーカイブの作成 - + Converting 変換中 - + Updating comments - + @@ -565,12 +578,12 @@ - + Enter up to %1 characters - + File info @@ -580,7 +593,7 @@ アーカイブを削除しますか? - + %1 was changed on the disk, please import it again. %1はディスク上で変更されました。再度インポートしてください。 @@ -595,33 +608,33 @@ その場所にファイルを保存する権限がありません。変更して再試行してください - + Adding files to %1 %1 にファイルを追加中 - + Compressing 圧縮中 - + Extracting 伸張中 - + Deleting 削除中 - - + + Loading, please wait... 読み込んでいます。しばらくお待ちください... - + Are you sure you want to stop the ongoing task? 進行中のタスクを停止してもよろしいですか? @@ -648,13 +661,13 @@ 圧縮に失敗しました - + Replace button 置き換え - + Find directory ディレクトリを検索 @@ -673,64 +686,64 @@ パスワードが違います - - + + The file format is not supported by Archive Manager - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming - - + + You do not have permission to load %1 - + - - + + Cancel button キャンセル - + Confirm button 確定 - + No such file or directory - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ ショートカット - + The name is the same as that of the compressed archive, please use another one - + Another file with the same name already exists, replace it? 同じ名前の別ファイルが既に存在します。置き換えますか? - + You cannot add the archive to itself アーカイブに本体を追加することはできません - + You cannot add files to archives in this file type - + Update button 更新 - + Basic info - + Size サイズ - + Type 種類 - + Location - + Time created - + Time accessed - + Time modified 更新日時 - + Archive アーカイブ - + Comment - + Please check the file association type in the settings of Archive Manager アーカイブ マネージャーの設定でファイルの関連付けの種類を確認してください @@ -1228,7 +1241,7 @@ サイズ - + %1 changed. Do you want to save changes to the archive? %1を変更しました。アーカイブに変更を保存しますか? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file ファイルを開く - + Back 戻る - + File info diff --git a/translations/deepin-compressor_ka.ts b/translations/deepin-compressor_ka.ts index f76a338a0..853d2731f 100644 --- a/translations/deepin-compressor_ka.ts +++ b/translations/deepin-compressor_ka.ts @@ -35,6 +35,19 @@ თქვენ არ გაქვთ საკმარისი უფლება %1 კომპრესიისთვის + + CliRarPlugin + + + Wrong password + არასწორი პაროლი + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -437,13 +450,13 @@ Main + - Archive Manager არქივის მენეჯერი - + Archive Manager is a fast and lightweight application for creating and extracting archives. აქრივების მენეჯერი სწრაფი და მარტივი აპლიკაციაა არქივის შესაქმნელად და გასახნელად @@ -461,23 +474,23 @@ პარამეტრები - - + + Create New Archive ახალი არქივის შექმნა - + Converting კონვერტაცია - + Updating comments კომენტარების განახლება - + @@ -566,12 +579,12 @@ აირჩიეთ ფაილი - + Enter up to %1 characters შეიყვანეთ %1 სიმბოლო - + File info ფაილის ინფორმაცია @@ -581,7 +594,7 @@ ნამდვილად გსურთ არქივის წაშლა? - + %1 was changed on the disk, please import it again. %1 შეიცვლა დისკზე. გთხოვთ დააიმპორტიროთ განმეორებით @@ -596,33 +609,33 @@ თქვენ არ გაქვთ საკმარისი უფლება ფაილების აქ შესანახად. გთხოვთ მიუთითეთ სხვა გზა - + Adding files to %1 %1-ში ფაილების დამატება - + Compressing კომპრესირება - + Extracting ამოარქივება - + Deleting წაშლა - - + + Loading, please wait... იტვირთება, გთხოვთ დაელოდოთ... - + Are you sure you want to stop the ongoing task? დარწმუნებული ხართ, რომ ნამდვილად გსურთ მიმდინარე დავალების გაჩერება? @@ -649,13 +662,13 @@ კომპრესირება შეწყდა - + Replace button ჩანაცვლება - + Find directory საქაღალდის ძებნა @@ -674,64 +687,64 @@ არასწორი პაროლი - - + + The file format is not supported by Archive Manager არქივის მენეჯერს არ გააჩნია აღნიშნული ფორმატის მხარდაჭერა - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming სახელის შეცვლა - - + + You do not have permission to load %1 თქვენ არ გაქვთ საკმარისი უფლება %1 ჩასატვირთად - + - - + + Cancel button გაუქმება - + Confirm button დადასტურება - + No such file or directory არ არის ასეთი ფაილი ან საქაღალდე - + Unable to add system files or network files, please select files on local devices @@ -830,79 +843,79 @@ იარლიყი - + The name is the same as that of the compressed archive, please use another one აღნიშნული ფაილის სახელი იგივეა რაც არქივის სახელი, გთხოვთ გამოიყენოთ სხვა - + Another file with the same name already exists, replace it? ფაილი ასეთ სახელით უკვე დამატებულია, ჩავანაცვლოთ? - + You cannot add the archive to itself თქვენ ვერ დაამატებთ არქივს თავის თავში - + You cannot add files to archives in this file type აღნიშნულ არქივში ამ ტიპის ფაილის დამატება შეუძლებელია - + Update button განახლება - + Basic info საბაზო ინფორმაცია - + Size ზომა - + Type ტიპი - + Location ადგილმდებარეობა - + Time created შექმნის დრო - + Time accessed შემოწმების დრო - + Time modified შეცვლის დრო - + Archive არქივი - + Comment კომენტარის დამატება - + Please check the file association type in the settings of Archive Manager გთხოვთ გადაამოწმოთ ასოცირებული ფაილების არქივების მენეჯერის პარამეტრებში @@ -1230,7 +1243,7 @@ ზომა - + %1 changed. Do you want to save changes to the archive? %1 შეიცვლა, გსურთ ცვლილების შენახვა? @@ -1440,18 +1453,18 @@ TitleWidget - - + + Open file ფაილის გახსნა - + Back უკან - + File info ფაილის ინფორმაცია diff --git a/translations/deepin-compressor_km_KH.ts b/translations/deepin-compressor_km_KH.ts index 473935f26..12f687e56 100644 --- a/translations/deepin-compressor_km_KH.ts +++ b/translations/deepin-compressor_km_KH.ts @@ -35,6 +35,19 @@ អ្នកគ្មានសិទ្ធិបង្រួម %1 ទេ + + CliRarPlugin + + + Wrong password + លេខសំងាត់​ខុស + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager អ្នកគ្រប់គ្រងបណ្ណសារ - + Archive Manager is a fast and lightweight application for creating and extracting archives. កម្មវិធីគ្រប់គ្រងប័ណ្ណសារគឺជាកម្មវិធីលឿននិងស្រាលសម្រាប់បង្កើតនិងស្រង់ចេញប័ណ្ណសារ។ @@ -460,23 +473,23 @@ ការកំណត់ - - + + Create New Archive បង្កើតប័ណ្ណសារថ្មី - + Converting កំពុងបំលែង - + Updating comments កែប្រែការសម្គាល់ - + @@ -565,12 +578,12 @@ ជ្រើសរើសឯកសារ - + Enter up to %1 characters តើអ្នកចូលប្រើបានទៅ %1 តួអក្សរ - + File info ព័ត៌មានឯកសារ @@ -580,7 +593,7 @@ តើអ្នកចង់លុបប័ណ្ណសារទេ? - + %1 was changed on the disk, please import it again. %1 ត្រូវបានផ្លាស់ប្ដូរនៅលើឌីស សូមនាំចូលម្តងទៀត។ @@ -595,33 +608,33 @@ អ្នកមិនមានសិទ្ធិរក្សាទុកឯកសារនៅទីនេះទេ សូមផ្លាស់ប្តូរហើយព្យាយាមម្តងទៀត - + Adding files to %1 បន្ថែមឯកសារទៅ %1 - + Compressing កំពុងបង្ហាប់ - + Extracting កំពុងស្រង់ចេញ - + Deleting កំពុងលុប - - + + Loading, please wait... កំពុងផ្ទុក សូមរង់ចាំ... - + Are you sure you want to stop the ongoing task? តើអ្នកពិតជាចង់បញ្ឈប់កិច្ចការដែលកំពុងដំណើរការមែនទេ? @@ -648,13 +661,13 @@ ការបង្ហាប់បានបរាជ័យ - + Replace button ជំនួស - + Find directory រកថតឯកសារ @@ -673,64 +686,64 @@ លេខសំងាត់​ខុស - - + + The file format is not supported by Archive Manager បំណែកទម្រង់ឯកសារនេះមិនត្រូវបានគាំទ្រដោយ Archive Manager - - - - - - - - + + + + + + + + - - + + OK button យល់ព្រម - + Renaming កែឈ្មោះ - - + + You do not have permission to load %1 អ្នកមិនមានសិទ្ធិដើម្បីផ្ទុក %1 - + - - + + Cancel button បោះបង់ - + Confirm button បញ្ជាក់ - + No such file or directory មិនមានឯកសារឬថត់ក្នុងការបញ្ជាក់នោះ - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ ផ្លូវកាត់ - + The name is the same as that of the compressed archive, please use another one ឈ្មោះនេះស្រដៀងនឹងឈ្មោះបំណែកទម្រង់នេះ សូមប្រើឈ្មោះផ្សេងទៀត។ - + Another file with the same name already exists, replace it? ឯកសារមួយទៀតដែលមានឈ្មោះដូចគ្នាមានរួចហើយជំនួសវា? - + You cannot add the archive to itself អ្នកមិនអាចបន្ថែមប័ណ្ណសារទៅខ្លួនវាបានទេ - + You cannot add files to archives in this file type អ្នកមិនអាចបន្ថែមឯកសារទៅក្នុងបំណែកទម្រង់នៅទីនោះ។ - + Update button ធ្វើបច្ចុប្បន្នភាព - + Basic info ព័ត៌មានមូលដ្ឋាន - + Size ទំហំ - + Type ប្រភេទ - + Location ទីតាំង - + Time created ពេលវេលាបានបង្កើត - + Time accessed ពេលវេលាបានចូល - + Time modified ពេលវេលាកែប្រែ - + Archive ប័ណ្ណសារ - + Comment យោបល់ - + Please check the file association type in the settings of Archive Manager សូមពិនិត្យមើលប្រភេទឯកសារនៅក្នុងការកំណត់របស់អ្នកគ្រប់គ្រងប័ណ្ណសារ @@ -1228,7 +1241,7 @@ ទំហំ - + %1 changed. Do you want to save changes to the archive? បានផ្លាស់ប្ដូរ %1។ តើអ្នកចង់រក្សាទុកការផ្លាស់ប្តូរក្នុងប័ណ្ណសារទេ? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file បើក​ឯកសារ - + Back ថយក្រោយ - + File info ព័ត៌មានឯកសារ diff --git a/translations/deepin-compressor_ko.ts b/translations/deepin-compressor_ko.ts index 70bee87c5..2e2375909 100644 --- a/translations/deepin-compressor_ko.ts +++ b/translations/deepin-compressor_ko.ts @@ -35,6 +35,19 @@ %1을 압축할 권한이 없습니다 + + CliRarPlugin + + + Wrong password + 잘못된 비밀번호 + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager 압축파일 관리자 - + Archive Manager is a fast and lightweight application for creating and extracting archives. 압축파일 관리자는 압축파일을 만들고, 추출하기 위한 빠르고 가벼운 응용 프로그램입니다. @@ -460,13 +473,13 @@ 설정 - - + + Create New Archive 새 압축파일 만들기 - + Converting 변환 중입니다 @@ -481,7 +494,7 @@ 아카이브를 삭제하시겠습니까? - + %1 was changed on the disk, please import it again. 디스크에서 %1이 변경되었으므로 다시 가져오십시오. @@ -497,71 +510,71 @@ - - - - - - - - + + + + + + + + - - + + OK button 확인 - + Adding files to %1 %1에 파일 추가 - + Compressing 압축중 - + Extracting 추출중 - + Deleting 삭제 중입니다 - - + + You do not have permission to load %1 %1을 불러올 권한이 없습니다. - - + + Loading, please wait... 로딩 중입니다. 잠시 기다려 주세요... - + Are you sure you want to stop the ongoing task? 지금 진행 중인 작업을 중단하시겠습니까? - + - - + + Cancel button 취소 - + Confirm button @@ -626,18 +639,18 @@ 압축 실패함 - + Replace button 교체 - + You cannot add files to archives in this file type 이 파일 형식의 아카이브에 파일을 추가할 수 없습니다 - + Find directory 디렉토리 찾기 @@ -698,22 +711,22 @@ 단축키 - + File info 파일 정보 - + Updating comments 댓글 업데이트 - + Renaming 이름 변경 - + @@ -721,18 +734,18 @@ 플러그인 오류 - + No such file or directory 이 파일 또는 디렉터리가 존재하지 않습니다 - - + + The file format is not supported by Archive Manager 이 파일 형식은 Archive Manager에서 지원하지 않습니다 - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ 파일 선택 - + The name is the same as that of the compressed archive, please use another one 이름은 압축된 아카이브의 이름과 같습니다. 다른 이름을 사용해 주세요 - + Another file with the same name already exists, replace it? 동일한 이름의 다른 파일이 이미 존재합니다, 교체 하시겠습니까? - + You cannot add the archive to itself 아카이브를 자신에게 추가할 수 없습니다 - + Update button 업데이트 - + Basic info 기본 정보 - + Size 크기 - + Type 유형 - + Location 위치 - + Time created 생성 시간 - + Time accessed 접근 시간 - + Time modified 수정된 시간 - + Archive 압축파일 - + Comment 댓글 - + Enter up to %1 characters %1자 이내 입력 - + Please check the file association type in the settings of Archive Manager Archive Manager 설정에서 파일 연관 유형을 확인해 주세요 @@ -1268,7 +1281,7 @@ 파일 유형 - + %1 changed. Do you want to save changes to the archive? %1이 변경되었습니다. 아치브에 변경 사항을 저장하시겠습니까? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file 파일 열기 - + Back 뒤로 - + File info 파일 정보 diff --git a/translations/deepin-compressor_lo.ts b/translations/deepin-compressor_lo.ts index bc0bfd36c..7ef979192 100644 --- a/translations/deepin-compressor_lo.ts +++ b/translations/deepin-compressor_lo.ts @@ -35,6 +35,19 @@ ທ່ານບໍ່ມີສິດທິໃນການບັນທຶກ %1 + + CliRarPlugin + + + Wrong password + ລະຫັດຜິດ + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager ບັນທຸກການຈັດການ - + Archive Manager is a fast and lightweight application for creating and extracting archives. ບັນທຸກການຈັດການແມ່ນໂປຼແກຼມທີ່ໄວແລະບັນທຶກງ່າຍທີ່ສຳລັບການສ້າງແລະຖອກເອົາບັນທຶກ. @@ -460,23 +473,23 @@ ຕັ້ງຄ່າ - - + + Create New Archive ສ້າງບັນທຶກໃໝ່ - + Converting ກຳລັງປ່ຽນ - + Updating comments ກຳລັງອັບເດດຄໍາເຫັນ - + @@ -565,12 +578,12 @@ ເລືອກຟາຍລ໌ - + Enter up to %1 characters ປ້ອນຕົວອັກສອນໄດ້ຫຼາຍທີ່ສຸດ %1 - + File info ຂໍ້ມູນຟາຍລ໌ @@ -580,7 +593,7 @@ ທ່ານຕ້ອງການລົບເອກະສານບັນທຶກບໍ? - + %1 was changed on the disk, please import it again. ບັນຈຸພາກຖູກປ່ຽນຢູ່ດິສກ໌, ກະລຸນານຳໃຊ້ງານອີກຄັ້ງ @@ -595,33 +608,33 @@ ທ່ານບໍ່ມີອະນຸຍາດໃນການບັນທຶກຟາຍລ໌ທີ່ນີ້, ກະລຸນາປ່ຽນແລະພະຍາຍາມໃໝ່ - + Adding files to %1 ເພີ່ມຟາຍລ໌ໃສ່ %1 - + Compressing ກຳລັງບີບອັດ - + Extracting ການຖອນອອກ - + Deleting ການລຶບ - - + + Loading, please wait... ກຳລັງໂຫຼດ, ກະລຸນາລໍຖ້າ... - + Are you sure you want to stop the ongoing task? ທ່ານແນ່ໃຈບໍ່ທີ່ຈະຢຸດການດຳເນີນງານທີ່ກຳລັງເກີດຂຶ້ນ? @@ -648,13 +661,13 @@ ການບີບອັດບໍ່ສຳເລັດ - + Replace button ທຳນາຍ - + Find directory ຄົ້ນຫາການຈັດລໍາດັບ @@ -673,64 +686,64 @@ ລະຫັດຜິດ - - + + The file format is not supported by Archive Manager ຮູບແບບຟາຍໄລ້ບໍ່ໄດ້ຮັບການສະໜັບສະໜູນໂດຍ Archive Manager - - - - - - - - + + + + + + + + - - + + OK button ຕົກລົງ - + Renaming ການປ່ຽນຊື່ - - + + You do not have permission to load %1 ທ່ານບໍ່ມີສິດທິໃນການໂຫຼດ %1 - + - - + + Cancel button ຍົກເລີກ - + Confirm button ຢືນຢັນ - + No such file or directory ບໍ່ມີຟາຍລ໌ຫຼືການຈັດລໍາດັບນີ້ - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ ຊັ້ນທາງເລືອກ - + The name is the same as that of the compressed archive, please use another one ຊື່ເປັນຄືກັບຊື່ຂອງບັນຈຸພາກສ່ວນທີ່ຖືກບັນຈຸ, ກະລຸນາໃຊ້ອື່ນ - + Another file with the same name already exists, replace it? ມີໄຟລ໌ອື່ນທີ່ມີຊື່ຄືກັນແລ້ວ, ຈະທຳານາຍມັນ? - + You cannot add the archive to itself ທ່ານບໍ່ສາມາດເພີ່ມບັນຈຸພາກສ່ວນເຂົ້າໃນຕົນເອງ - + You cannot add files to archives in this file type ທ່ານບໍ່ສາມາດເພີ່ມຟາຍລ໌ເຂົ້າໃນບັນຈຸພາກໃນຮູບແບບນີ້ - + Update button ອັບເດດ - + Basic info ຂໍ້ມູນພື້ນຖານ - + Size ຂະໜາດ - + Type ປະເພດ - + Location ບ່ອນຢູ່ - + Time created ເວລາທີ່ຖືກສ້າງ - + Time accessed ເວລາທີ່ຖືກເຂົ້າເຖິງ - + Time modified ເວລາທີ່ຖືກປັບປຸງ - + Archive ບັນຈຸ - + Comment ຄຳເຫັນ - + Please check the file association type in the settings of Archive Manager ກະລຸນາກວດສອບປະເພດການເຊື່ອມຕໍ່ຟາຍລ໌ໃນການຕັ້ງຄ່າຂອງ Archive Manager @@ -1228,7 +1241,7 @@ ຂະໜາດ - + %1 changed. Do you want to save changes to the archive? %1 ໄດ້ປ່ຽນແປງ. ທ່ານຕ້ອງການບັນທຶກການປ່ຽນແປງເຂົ້າໃນເອກະສານບັນທຶກບໍ? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file ເປີດເອກະສານ - + Back ກັບຄືນ - + File info ຂໍ້ມູນໄຟລ໌ diff --git a/translations/deepin-compressor_ms.ts b/translations/deepin-compressor_ms.ts index 694fed7c1..a4bce9600 100644 --- a/translations/deepin-compressor_ms.ts +++ b/translations/deepin-compressor_ms.ts @@ -35,6 +35,19 @@ Anda tiada keizinan untuk memampatkan %1 + + CliRarPlugin + + + Wrong password + Kata laluan salah + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Pengurus Arkib - + Archive Manager is a fast and lightweight application for creating and extracting archives. Pengursu Arkib ialah sebuah aplikasi yang ringan dan pantas untuk mencipta dan mengekstrak arkib. @@ -460,23 +473,23 @@ Tetapan - - + + Create New Archive Cipta Arkib Baharu - + Converting Menukarkan - + Updating comments Mengemas kini ulasan - + @@ -565,12 +578,12 @@ Pilih fail - + Enter up to %1 characters Masukkan sehingga %1 aksara - + File info Maklumat fail @@ -580,7 +593,7 @@ Anda pasti mahu memadam arkib? - + %1 was changed on the disk, please import it again. %1 telah berubah dalam cakera, sila import ia sekali lagi. @@ -595,33 +608,33 @@ Anda tidak memiliki keizinan untuk menyimpan fail di sini, sila ubah dan cuba lagi - + Adding files to %1 Menambah fail ke dalam %1 - + Compressing Memampat - + Extracting Mengekstrak - + Deleting Memadam - - + + Loading, please wait... Memuatkan, tunggu sebentar... - + Are you sure you want to stop the ongoing task? Anda pasti mahu menghentikan tugas yang masih berlangsung? @@ -648,13 +661,13 @@ Pemampatan gagal - + Replace button Ganti - + Find directory Cari direktori @@ -673,64 +686,64 @@ Kata laluan salah - - + + The file format is not supported by Archive Manager Format fail tidak disokong oleh Pengurus Arkib - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Mengubah nama - - + + You do not have permission to load %1 Anda tiada keizinan untuk memuatkan %1 - + - - + + Cancel button Batal - + Confirm button Sah - + No such file or directory Tiada fail atau direktori sebegitu - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Pintasan - + The name is the same as that of the compressed archive, please use another one Nama adalah serupa dengan arkib termampat, sila guna nama lain - + Another file with the same name already exists, replace it? Ada fail lain dengan nama yang serupa telah wujud, gantikannya? - + You cannot add the archive to itself Anda tidak boleh menambah arkib kepada dirinya sendiri - + You cannot add files to archives in this file type Anda tidak boleh menambah fail ke dalam arkib dengan jenis fail ini - + Update button Kemas kini - + Basic info Maklumat asas - + Size Saiz - + Type Jenis - + Location Lokasi - + Time created Masa dicipta - + Time accessed Masa dicapai - + Time modified Masa ubah suai - + Archive Arkib - + Comment Ulasan - + Please check the file association type in the settings of Archive Manager Sila periksa jenis perkaitan fail dalam tetapan Pengurus Arkib @@ -1228,7 +1241,7 @@ Saiz - + %1 changed. Do you want to save changes to the archive? %1 telah berubah. Anda pasti mahu menyimpan perubahan yang berlaku kepada arkib? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Buka fail - + Back Undur - + File info Maklumat fail diff --git a/translations/deepin-compressor_nl.ts b/translations/deepin-compressor_nl.ts index 402ec0237..2cb654453 100644 --- a/translations/deepin-compressor_nl.ts +++ b/translations/deepin-compressor_nl.ts @@ -35,6 +35,19 @@ Je bent niet bevoegd om %1 in te pakken + + CliRarPlugin + + + Wrong password + Onjuist wachtwoord + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Archiefbeheer - + Archive Manager is a fast and lightweight application for creating and extracting archives. Archiefbeheer is een snel en licht programma om archieven mee samen te stellen en uit te pakken. @@ -460,23 +473,23 @@ Instellingen - - + + Create New Archive Archief samenstellen - + Converting Bezig met omzetten - + Updating comments Bezig met bijwerken van opmerkingen - + @@ -565,12 +578,12 @@ Bestand kiezen - + Enter up to %1 characters Voer maximaal %1 tekens in - + File info Bestandsinformatie @@ -580,7 +593,7 @@ Wil je het archief verwijderen? - + %1 was changed on the disk, please import it again. %1 is ondertussen aangepast. Open het bestand opnieuw. @@ -595,33 +608,33 @@ Je bent niet bevoegd om hier bestanden op te slaan. Kies een andere locatie. - + Adding files to %1 Bezig met toevoegen aan %1 - + Compressing Bezig met inpakken - + Extracting Bezig met uitpakken - + Deleting Bezig met verwijderen - - + + Loading, please wait... Bezig met laden… - + Are you sure you want to stop the ongoing task? Weet je zeker dat je de taak wilt afbreken? @@ -648,13 +661,13 @@ Het inpakken is mislukt - + Replace button Vervangen - + Find directory Map zoeken @@ -673,64 +686,64 @@ Onjuist wachtwoord - - + + The file format is not supported by Archive Manager Dit bestandsformaat wordt niet ondersteund - - - - - - - - + + + + + + + + - - + + OK button Oké - + Renaming Naam wijzigen - - + + You do not have permission to load %1 Je bent niet bevoegd om %1 te laden - + - - + + Cancel button Annuleren - + Confirm button Ja - + No such file or directory Bestand of map bestaat niet - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Sneltoetsen - + The name is the same as that of the compressed archive, please use another one De naam is dezelfde als die van een ander archief. Kies een andere naam. - + Another file with the same name already exists, replace it? Er is al een bestand met deze naam. Wil je het vervangen? - + You cannot add the archive to itself Je kunt het archief niet toevoegen aan hetzelfde archief - + You cannot add files to archives in this file type Je kunt geen bestanden toevoegen aan archieven met dit bestandstype. - + Update button Bijwerken - + Basic info Eigenschappen - + Size Grootte - + Type Soort - + Location Locatie - + Time created Gemaakt om - + Time accessed Geopend om - + Time modified Aangepast om - + Archive Archief - + Comment Opmerking - + Please check the file association type in the settings of Archive Manager Controleer de bestandstoewijzing in de instellingen @@ -1228,7 +1241,7 @@ Grootte - + %1 changed. Do you want to save changes to the archive? %1 is aangepast. Wil je de aanpassingen opslaan? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Bestand openen - + Back Terug - + File info Bestandsinformatie diff --git a/translations/deepin-compressor_pl.ts b/translations/deepin-compressor_pl.ts index c88822403..de345b7b2 100644 --- a/translations/deepin-compressor_pl.ts +++ b/translations/deepin-compressor_pl.ts @@ -35,6 +35,19 @@ Nie posiadasz uprawnień, aby skompresować %1 + + CliRarPlugin + + + Wrong password + Błędne hasło + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Zarządzanie archiwami - + Archive Manager is a fast and lightweight application for creating and extracting archives. Zarządzanie archiwami to szybka i lekka aplikacja do tworzenia i wypakowywania archiwów. @@ -460,23 +473,23 @@ Ustawienia - - + + Create New Archive Utwórz nowe archiwum - + Converting Konwertuję - + Updating comments Aktualizowanie komentarzy - + @@ -565,12 +578,12 @@ Wybierz plik - + Enter up to %1 characters Wprowadź maksymalnie %1 znaków - + File info Informacje o pliku @@ -580,7 +593,7 @@ Czy chcesz usunąć to archiwum? - + %1 was changed on the disk, please import it again. %1 został zmieniony na dysku, zaimportuj go ponownie. @@ -595,33 +608,33 @@ Nie posiadasz uprawnień do zapisywania plików tutaj, zmień ścieżkę i spróbuj ponownie - + Adding files to %1 Dodawanie plików do %1 - + Compressing Kompresowanie - + Extracting Wypakowywanie - + Deleting Usuwanie - - + + Loading, please wait... Ładowanie, proszę czekać... - + Are you sure you want to stop the ongoing task? Czy na pewno chcesz przerwać zadanie w toku? @@ -648,13 +661,13 @@ Kompresja nie powiodła się - + Replace button Zastąp - + Find directory Znajdź katalog @@ -673,64 +686,64 @@ Błędne hasło - - + + The file format is not supported by Archive Manager Format pliku nie jest obsługiwany przez Zarządzanie Archiwami - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Zmienianie nazwy - - + + You do not have permission to load %1 Nie posiadasz uprawnień do załadowania %1 - + - - + + Cancel button Anuluj - + Confirm button Potwierdź - + No such file or directory Nie ma takiego pliku lub katalogu - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Skróty - + The name is the same as that of the compressed archive, please use another one Użyta nazwa jest taka sama jak skompresowanego archiwum, użyj innej - + Another file with the same name already exists, replace it? Istnieje już inny plik o tej samej nazwie, czy chcesz go zastąpić? - + You cannot add the archive to itself Nie możesz dodać archiwum do siebie - + You cannot add files to archives in this file type Nie można dodawać plików do archiwów w tym typie plików - + Update button Aktualizowanie - + Basic info Informacje podstawowe - + Size Rozmiar - + Type Typ - + Location Położenie - + Time created Data utworzenia - + Time accessed Ostatni dostęp - + Time modified Data modyfikacji - + Archive Archiwum - + Comment Komentarz - + Please check the file association type in the settings of Archive Manager Sprawdź typ skojarzenia plików w ustawieniach Zarządzania Archiwami @@ -1228,7 +1241,7 @@ Rozmiar - + %1 changed. Do you want to save changes to the archive? %1 został zmieniony. Czy chcesz zapisać zmiany w archiwum? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Otwórz plik - + Back Wstecz - + File info Informacje o pliku diff --git a/translations/deepin-compressor_pt.ts b/translations/deepin-compressor_pt.ts index 256840363..4f5af44bf 100644 --- a/translations/deepin-compressor_pt.ts +++ b/translations/deepin-compressor_pt.ts @@ -35,6 +35,19 @@ Não tem permissão para comprimir %1 + + CliRarPlugin + + + Wrong password + Palavra-passe incorreta + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Gestor de Arquivos - + Archive Manager is a fast and lightweight application for creating and extracting archives. O Gestor de Arquivos é uma aplicação rápida e leve para a criação e extração de arquivos. @@ -460,23 +473,23 @@ Definições - - + + Create New Archive Criar novo arquivo - + Converting A converter - + Updating comments Atualização de comentários - + @@ -565,12 +578,12 @@ Selecionar ficheiro - + Enter up to %1 characters Introduzir até %1 caracteres - + File info Informação do ficheiro @@ -580,7 +593,7 @@ Deseja eliminar o arquivo? - + %1 was changed on the disk, please import it again. %1 foi mudado no disco, importe-o novamente. @@ -595,33 +608,33 @@ Não tem permissão para guardar ficheiros aqui, mude e tente novamente - + Adding files to %1 Adicionar ficheiros a %1 - + Compressing A comprimir - + Extracting A extrair - + Deleting A eliminar - - + + Loading, please wait... A carregar, aguarde... - + Are you sure you want to stop the ongoing task? Tem a certeza que deseja parar a tarefa em curso? @@ -648,13 +661,13 @@ A compressão falhou - + Replace button Substituir - + Find directory Localizar diretório @@ -673,64 +686,64 @@ Palavra-passe incorreta - - + + The file format is not supported by Archive Manager O formato do ficheiro não é suportado pelo Gestor de Arquivos - - - - - - - - + + + + + + + + - - + + OK button Aceitar - + Renaming A renomear - - + + You do not have permission to load %1 Não tem permissão para carregar %1 - + - - + + Cancel button Cancelar - + Confirm button Confirmar - + No such file or directory Não existe tal ficheiro ou diretório - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Atalhos - + The name is the same as that of the compressed archive, please use another one O nome é o mesmo que o do arquivo comprimido, use outro - + Another file with the same name already exists, replace it? Já existe outro ficheiro com o mesmo nome, substituir? - + You cannot add the archive to itself Não pode adicionar o arquivo a ele mesmo - + You cannot add files to archives in this file type Não é possível adicionar ficheiros a arquivos neste tipo de ficheiro - + Update button Atualizar - + Basic info Informação básica - + Size Tamanho - + Type Tipo - + Location Localização - + Time created Data de criação - + Time accessed Data de acesso - + Time modified Data de modificação - + Archive Arquivo - + Comment Comentário - + Please check the file association type in the settings of Archive Manager Verifique o tipo de associação de ficheiro nas definições do Gestor de Arquivos @@ -1228,7 +1241,7 @@ Tamanho - + %1 changed. Do you want to save changes to the archive? %1 alterado. Deseja guardar as alterações no arquivo? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Abrir ficheiro - + Back Voltar - + File info Informação do ficheiro diff --git a/translations/deepin-compressor_pt_BR.ts b/translations/deepin-compressor_pt_BR.ts index aa74ae8ba..30374166d 100644 --- a/translations/deepin-compressor_pt_BR.ts +++ b/translations/deepin-compressor_pt_BR.ts @@ -35,6 +35,19 @@ Você não tem permissão para comprimir %1 + + CliRarPlugin + + + Wrong password + Senha incorreta + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Gerenciador de Compressão - + Archive Manager is a fast and lightweight application for creating and extracting archives. O Gerenciador de Compressão é um aplicativo rápido e leve para comprimir e extrair arquivos. @@ -460,23 +473,23 @@ Configurações - - + + Create New Archive Criar Novo Arquivo - + Converting Convertendo - + Updating comments Atualizando comentários - + @@ -565,12 +578,12 @@ Selecionar arquivo - + Enter up to %1 characters Insira até %1 caracteres - + File info Informações do arquivo @@ -580,7 +593,7 @@ Excluir arquivo? - + %1 was changed on the disk, please import it again. %1 foi alterado no disco; importe-o novamente. @@ -595,33 +608,33 @@ Você não tem permissão para salvar os arquivos aqui; altere e tente novamente - + Adding files to %1 Adicionando os arquivos a %1 - + Compressing Comprimindo - + Extracting Extraindo - + Deleting Excluindo - - + + Loading, please wait... Carregando, aguarde... - + Are you sure you want to stop the ongoing task? Interromper a tarefa em andamento? @@ -648,13 +661,13 @@ A compressão falhou - + Replace button Substituir - + Find directory Pesquisar diretório @@ -673,64 +686,64 @@ Senha incorreta - - + + The file format is not supported by Archive Manager O formato do arquivo não é compatível com o Gerenciador de Compressão - - - - - - - - + + + + + + + + - - + + OK button Ok - + Renaming - - + + You do not have permission to load %1 Você não tem permissão para carregar %1 - + - - + + Cancel button Cancelar - + Confirm button Confirmar - + No such file or directory Nenhum arquivo ou diretório - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Atalhos - + The name is the same as that of the compressed archive, please use another one O nome é o mesmo que o do arquivo comprimido; use outro - + Another file with the same name already exists, replace it? Já existe um outro arquivo com o mesmo nome. Substituí-lo? - + You cannot add the archive to itself Não é possível adicionar o arquivo a si mesmo - + You cannot add files to archives in this file type Você não pode adicionar os arquivos a este tipo de arquivo - + Update button Atualizar - + Basic info Informações básicas - + Size Tamanho - + Type Tipo - + Location Localização - + Time created Data da criação - + Time accessed Último acesso - + Time modified Última modificação - + Archive Arquivo - + Comment Comentário - + Please check the file association type in the settings of Archive Manager Verifique o tipo de associação do arquivo nas configurações do Gerenciador de Arquivos @@ -1228,7 +1241,7 @@ Tamanho - + %1 changed. Do you want to save changes to the archive? %1 alterou. Salvar as alterações no arquivo? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Abrir arquivo - + Back Voltar - + File info Informações do arquivo diff --git a/translations/deepin-compressor_ro.ts b/translations/deepin-compressor_ro.ts index 637e4c7e1..c931b8d75 100644 --- a/translations/deepin-compressor_ro.ts +++ b/translations/deepin-compressor_ro.ts @@ -35,6 +35,19 @@ Nu aveți permisiunea de a comprima %1 + + CliRarPlugin + + + Wrong password + Parola eronată + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Managerul de Arhive - + Archive Manager is a fast and lightweight application for creating and extracting archives. Managerul de Arhive - este o aplicație rapidă și ușoară pentru crearea și extragerea arhivelor. @@ -460,23 +473,23 @@ Setări - - + + Create New Archive Creare arhivă nouă - + Converting Convertare - + Updating comments Actualizare comentarii - + @@ -565,12 +578,12 @@ Selectare fișier - + Enter up to %1 characters Introduceți până la %1 caractere - + File info Informație fișier @@ -580,7 +593,7 @@ Doriți să ștergeți arhiva? - + %1 was changed on the disk, please import it again. %1 a fost modificat pe disc, vă rog repetați procedura de import @@ -595,33 +608,33 @@ Nu aveți permisiunea de a salva fișiere aici, schimbați vă rog destinație și încercați din nou - + Adding files to %1 Adăugarea fișierelor pe %1 - + Compressing Comprimarea - + Extracting Extragerea - + Deleting Ștergere - - + + Loading, please wait... Se încarcă, așteptați, vă rog - + Are you sure you want to stop the ongoing task? Doriți să stopați procesul în derulare? @@ -648,13 +661,13 @@ Comprimare eșuată - + Replace button Înlocuire - + Find directory Găsește directoriul @@ -673,64 +686,64 @@ Parola eronată - - + + The file format is not supported by Archive Manager Acest format de fișier nu este suportat de Manager de Arhivă - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Renumerează - - + + You do not have permission to load %1 Nu aveți permisiunea de a încărca %1 - + - - + + Cancel button Anulare - + Confirm button Confirmare - + No such file or directory Nu există astfel de fișier sau directoriu - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Comenzi rapide - + The name is the same as that of the compressed archive, please use another one Nume fișier coincide cu numele arhivei comprimate, vă rugăm să utilizați alt nume - + Another file with the same name already exists, replace it? Fișier cu așa nume deja există, să-l înlocuiesc? - + You cannot add the archive to itself Nu puteți să adăugați arhiva în ea însuși - + You cannot add files to archives in this file type Nu puteți adăuga fișiere de așa tip în arhivă - + Update button Actualizare - + Basic info Informație generală - + Size Mărime - + Type Tip - + Location Locație - + Time created Timpul creării - + Time accessed Timpul accesării - + Time modified Timpul modificării - + Archive Arhivă - + Comment Comentariu - + Please check the file association type in the settings of Archive Manager Verificați tipul de asociere a fișierelor în setările Managerului de Arhive @@ -1228,7 +1241,7 @@ Mărime - + %1 changed. Do you want to save changes to the archive? %1 modificat. Doriți să salvați modificările la arhivă? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Deschidere fișier - + Back Înapoi - + File info Informație fișier diff --git a/translations/deepin-compressor_ru.ts b/translations/deepin-compressor_ru.ts index cb7a2372a..2f49c207d 100644 --- a/translations/deepin-compressor_ru.ts +++ b/translations/deepin-compressor_ru.ts @@ -35,6 +35,19 @@ У вас нет разрешения на сжатие %1 + + CliRarPlugin + + + Wrong password + Неверный пароль + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Менеджер Архивов - + Archive Manager is a fast and lightweight application for creating and extracting archives. Менеджер Архивов - это быстрое и легкое приложение для создания и извлечения архивов. @@ -460,23 +473,23 @@ Настройки - - + + Create New Archive Создать Новый Архив - + Converting Преобразование - + Updating comments Обновление комментариев - + @@ -565,12 +578,12 @@ Выбрать файл - + Enter up to %1 characters Введите до %1 символов - + File info Информация о файле @@ -580,7 +593,7 @@ Желаете удалить архив? - + %1 was changed on the disk, please import it again. %1 был изменен на диске, пожалуйста, импортируйте его снова. @@ -595,33 +608,33 @@ У вас нет разрешения на сохранение файлов, Пожалуйста измените путь и повторите снова - + Adding files to %1 Копирование файлов в %1 - + Compressing Сжатие - + Extracting Извлечение - + Deleting Стирание - - + + Loading, please wait... Загрузка, пожалуйста подождите... - + Are you sure you want to stop the ongoing task? Вы действительно хотите прервать процесс? @@ -648,13 +661,13 @@ Не удалось выполнить сжатие - + Replace button Заменить - + Find directory Найти каталог @@ -673,64 +686,64 @@ Неверный пароль - - + + The file format is not supported by Archive Manager Формат данного файла не поддерживается в Archive Manager - - - - - - - - + + + + + + + + - - + + OK button ОК - + Renaming Переименование - - + + You do not have permission to load %1 У вас нет разрешения для загрузки %1 - + - - + + Cancel button Отмена - + Confirm button Подтвердить - + No such file or directory Такого файла или каталога не существует - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Горячие клавиши - + The name is the same as that of the compressed archive, please use another one Имя совпадает с именем сжатого архива, пожалуйста, используйте другое имя - + Another file with the same name already exists, replace it? Файл с таким именем уже существует, заменить его? - + You cannot add the archive to itself Архив нельзя добавить сам в себя - + You cannot add files to archives in this file type Нельзя добавить файлы данного типа в архив - + Update button Обновить - + Basic info Основная информация - + Size Размер - + Type Тип - + Location Местоположение - + Time created Время создания - + Time accessed Время доступа - + Time modified Время изменения - + Archive Архив - + Comment Комментарий - + Please check the file association type in the settings of Archive Manager Пожалуйста, проверьте тип ассоциации файлов в настройках Менеджера Архивов @@ -1228,7 +1241,7 @@ Размер - + %1 changed. Do you want to save changes to the archive? %1 изменен. Вы хотите сохранить изменения в архиве? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Открыть файл - + Back Назад - + File info Сведения о файле diff --git a/translations/deepin-compressor_sl.ts b/translations/deepin-compressor_sl.ts index f0ba963aa..3f26077b9 100644 --- a/translations/deepin-compressor_sl.ts +++ b/translations/deepin-compressor_sl.ts @@ -35,6 +35,19 @@ Nimate pravic za stiskanje %1 + + CliRarPlugin + + + Wrong password + Napačno geslo + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Upravitelj arhivov - + Archive Manager is a fast and lightweight application for creating and extracting archives. Upravitelj arhivov je hiter in lahek program za ustvarjanje in razširjanje arhivov. @@ -460,23 +473,23 @@ Nastavitve - - + + Create New Archive Ustvari nov arhiv - + Converting Pretvarjanje - + Updating comments Posodabljanje komentarjev - + @@ -565,12 +578,12 @@ Izberite datoteko - + Enter up to %1 characters Vnesite do %1 znakov - + File info Podatki o datoteki @@ -580,7 +593,7 @@ Ali želite izbrisati arhiv? - + %1 was changed on the disk, please import it again. %1 na disku je bil spremenjen. Uvozite ga znova. @@ -595,33 +608,33 @@ Nimate pravic za shranjevanje na to mesto. Spremenite lokacijo in poskusite znova. - + Adding files to %1 Dodajanje datotek v %1 - + Compressing Stiskanje - + Extracting Razširjanje - + Deleting Brisanje - - + + Loading, please wait... Nalaganje, počakajte... - + Are you sure you want to stop the ongoing task? Želite zaustaviti trenutno opravilo? @@ -648,13 +661,13 @@ Stiskanje ni uspelo - + Replace button Zamenjaj - + Find directory Poišči mapo @@ -673,64 +686,64 @@ Napačno geslo - - + + The file format is not supported by Archive Manager Upravitelj arhivov ne podpira formata datoteke - - - - - - - - + + + + + + + + - - + + OK button V redu - + Renaming Preimenovanje - - + + You do not have permission to load %1 Nimate dovoljenja za nalaganje %1 - + - - + + Cancel button Prekini - + Confirm button Potrdi - + No such file or directory Datoteka li mapa ne obstaja - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Bljižnice - + The name is the same as that of the compressed archive, please use another one Ime je enako imenu stisnjene datoteke. Uporabite drugo ime - + Another file with the same name already exists, replace it? Obstaja druga datoteka s tem imenom. Ali naj jo zamenjam? - + You cannot add the archive to itself Arhiva ne morete dodajati samega vase - + You cannot add files to archives in this file type Arhivom ne morete dodajati datotek te vrste - + Update button Posodobi - + Basic info Osnovni podatki - + Size Velikost - + Type Vrsta - + Location Lokacija - + Time created Čas stvarjenja - + Time accessed Čas dostopa - + Time modified Čas spremembe - + Archive Arhiv - + Comment Komentar - + Please check the file association type in the settings of Archive Manager Preverite povezano vrsto datotek v nastavitvah Upravitelja arhivov @@ -1228,7 +1241,7 @@ Velikost - + %1 changed. Do you want to save changes to the archive? Sprememba v %1. Želite shraniti spremembe v arhiv? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Odpri datoteko - + Back Nazaj - + File info Podatki o datoteki diff --git a/translations/deepin-compressor_sq.ts b/translations/deepin-compressor_sq.ts index 7bd9f146f..405550405 100644 --- a/translations/deepin-compressor_sq.ts +++ b/translations/deepin-compressor_sq.ts @@ -35,6 +35,19 @@ S’keni leje për të ngjeshur %1 + + CliRarPlugin + + + Wrong password + Fjalëkalim i gabuar + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Përgjegjës Arkivash - + Archive Manager is a fast and lightweight application for creating and extracting archives. Përgjegjësi i Kartelave është një aplikacion i shpejtë dhe i peshës së lehtë për krijim dhe përftim arkivash. @@ -460,23 +473,23 @@ Rregullime - - + + Create New Archive Krijoni Arkiv të Ri - + Converting Po shndërrohet - + Updating comments Po përditësohen komentet - + @@ -565,12 +578,12 @@ Përzgjidhni kartelë - + Enter up to %1 characters Jepni deri %1 shenja - + File info Të dhëna kartele @@ -580,7 +593,7 @@ Doni të fshihet arkivi? - + %1 was changed on the disk, please import it again. %1 ndryshoi në disk, ju lutemi, riimportojeni. @@ -595,33 +608,33 @@ S’keni leje të ruani kartela këtu, ju lutemi, ndryshoni lejet dhe riprovoni - + Adding files to %1 Po shtohen kartela te %1 - + Compressing Po ngjishen - + Extracting Po përftohet - + Deleting Po fshihet - - + + Loading, please wait... Po ngarkohet, ju lutemi, pritni… - + Are you sure you want to stop the ongoing task? Jeni i sigurt se doni të ndalet akti në xhirim e sipër? @@ -648,13 +661,13 @@ Ngjeshja dështoi - + Replace button Zëvendësoje - + Find directory Gjej drejtori @@ -673,64 +686,64 @@ Fjalëkalim i gabuar - - + + The file format is not supported by Archive Manager Formati i kartelës nuk mbulohet nga Përgjegjësi i Arkivave - - - - - - - - + + + + + + + + - - + + OK button OK - + Renaming Riemërtim - - + + You do not have permission to load %1 S’keni leje të ngarkoni%1 - + - - + + Cancel button Anuloje - + Confirm button Ripohojeni - + No such file or directory S’ka kartelë ose drejtori të tillë - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Shkurtore - + The name is the same as that of the compressed archive, please use another one Emri është i njëjti me atë të arkivit të ngjeshur, ju lutemi, përdorni një tjetër - + Another file with the same name already exists, replace it? Ka tashmë një kartelë me po atë emër, të zëvendësohet? - + You cannot add the archive to itself S’mund t’i shtoni arkivit vetveten - + You cannot add files to archives in this file type S’mund të shtoni kartela të këtij lloji te arkiva - + Update button Përditësoje - + Basic info Të dhëna bazë - + Size Madhësi - + Type Lloj - + Location Vendndodhje - + Time created Kohë kur u krijua - + Time accessed Kohë kur u përdor - + Time modified Kohë ndryshimi - + Archive Arkiv - + Comment Koment - + Please check the file association type in the settings of Archive Manager Ju lutemi, kontrolloni llojin e përshoqërimit të kartelës te rregullimet e Përgjegjësit të Arkivave @@ -1228,7 +1241,7 @@ Madhësi - + %1 changed. Do you want to save changes to the archive? %1 ndryshoi. Doni të ruhen ndryshimet te arkivi? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Hape kartelën - + Back Mbrapsht - + File info Hollësi kartele diff --git a/translations/deepin-compressor_sr.ts b/translations/deepin-compressor_sr.ts index 286fe6fe2..d3e157a40 100644 --- a/translations/deepin-compressor_sr.ts +++ b/translations/deepin-compressor_sr.ts @@ -35,6 +35,19 @@ Немате дозволу да запакујете %1 + + CliRarPlugin + + + Wrong password + Погрешна лозинка + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Архиватор - + Archive Manager is a fast and lightweight application for creating and extracting archives. Архиватор је лаган и брз програм за прављење и распакивање архива. @@ -460,23 +473,23 @@ Подешавања - - + + Create New Archive Нова архива - + Converting Претварање - + Updating comments Ажурирање коментара - + @@ -565,12 +578,12 @@ Изабери датотеку - + Enter up to %1 characters Унесите до %1 карактера - + File info Својства датотеке @@ -580,7 +593,7 @@ Желите ли да обришете архиву? - + %1 was changed on the disk, please import it again. %1 је измењено на диску, поново увезите. @@ -595,33 +608,33 @@ Немате дозволу да чувате датотеке овде, направите промену и покушајте поново - + Adding files to %1 Додавање датотека у %1 - + Compressing Запакивање - + Extracting Распакивање - + Deleting Брисање - - + + Loading, please wait... Учитавање, молимо сачекајте... - + Are you sure you want to stop the ongoing task? Заиста желите да зауставите задатак који је у току? @@ -648,13 +661,13 @@ Неуспешно запакивање - + Replace button Замени - + Find directory Нађи директоријум @@ -673,64 +686,64 @@ Погрешна лозинка - - + + The file format is not supported by Archive Manager Архиватор не подржава овај формат датотеке - - - - - - - - + + + + + + + + - - + + OK button У реду - + Renaming Преименуј - - + + You do not have permission to load %1 Немате дозволу да учитате %1 - + - - + + Cancel button Откажи - + Confirm button Потврди - + No such file or directory Нема такве датотеке или директоријума - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Пречице - + The name is the same as that of the compressed archive, please use another one Име је исто као од запаковане архиве, употребите друго име - + Another file with the same name already exists, replace it? Датотека под истим називом већ постоји. Заменити? - + You cannot add the archive to itself Не можете додати архиву самој себи - + You cannot add files to archives in this file type Не можете додавати архиве ове врсте датотека - + Update button Ажурирај - + Basic info Основни подаци - + Size Величина - + Type Врста - + Location Локација - + Time created Настало - + Time accessed Приступљено - + Time modified Време измене - + Archive Архива - + Comment Коментар - + Please check the file association type in the settings of Archive Manager Подесите врсте датотека у подешавањима Архиватора @@ -1228,7 +1241,7 @@ Величина - + %1 changed. Do you want to save changes to the archive? %1 је измењена. Желите ли да сачувате измене архиве? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Отвори датотеку - + Back Назад - + File info Информације о датотеки diff --git a/translations/deepin-compressor_tr.ts b/translations/deepin-compressor_tr.ts index c2f3992ab..34962609b 100644 --- a/translations/deepin-compressor_tr.ts +++ b/translations/deepin-compressor_tr.ts @@ -35,6 +35,19 @@ Sıkıştırma izniniz yok %1 + + CliRarPlugin + + + Wrong password + Yanlış parola + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Arşiv Yöneticisi - + Archive Manager is a fast and lightweight application for creating and extracting archives. Arşiv Yöneticisi arşiv oluşturmak ve çıkarmak için hızlı ve hafif bir uygulamadır. @@ -460,23 +473,23 @@ Ayarlar - - + + Create New Archive Yeni Arşiv Oluştur - + Converting Dönüştürülüyor - + Updating comments Açıklamalar güncelleniyor - + @@ -565,12 +578,12 @@ Dosya seç - + Enter up to %1 characters %1 fazla karakter girin - + File info Dosya bilgisi @@ -580,7 +593,7 @@ Arşivi silmek istiyor musunuz? - + %1 was changed on the disk, please import it again. %1 diskte değiştirildi, lütfen tekrar içe aktarın. @@ -595,33 +608,33 @@ Dosyaları buraya kaydetme izniniz yok, lütfen değiştirin ve tekrar deneyin - + Adding files to %1 %1 klasörüne dosya ekleniyor - + Compressing Sıkıştırılıyor - + Extracting Çıkarılıyor - + Deleting Siliniyor - - + + Loading, please wait... Yükleniyor lütfen bekleyin... - + Are you sure you want to stop the ongoing task? Devam eden görevi durdurmak istediğinizden emin misiniz? @@ -648,13 +661,13 @@ Sıkıştırma başarısız - + Replace button Değiştir - + Find directory Dizin bul @@ -673,64 +686,64 @@ Yanlış parola - - + + The file format is not supported by Archive Manager Dosya biçimi Arşiv Yöneticisi tarafından desteklenmiyor - - - - - - - - + + + + + + + + - - + + OK button TAMAM - + Renaming Yeniden Adlandırılıyor - - + + You do not have permission to load %1 %1 yükleme izniniz yok - + - - + + Cancel button İptal - + Confirm button Onayla - + No such file or directory Böyle bir dosya ya da dizin yok - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Kısayollar - + The name is the same as that of the compressed archive, please use another one Ad, sıkıştırılmış arşivin adıyla aynı, lütfen başka bir ad kullanın - + Another file with the same name already exists, replace it? Aynı ada sahip başka bir dosya zaten var, değiştirilsin mi? - + You cannot add the archive to itself Arşivi kendisine ekleyemezsiniz - + You cannot add files to archives in this file type Bu dosya türünde arşivlere dosya ekleyemezsiniz - + Update button Güncelle - + Basic info Temel bilgi - + Size Boyut - + Type Tür - + Location Konum - + Time created Oluşturulma zamanı - + Time accessed Erişim zamanı - + Time modified Değiştirilme zamanı - + Archive Arşiv - + Comment Açıklama - + Please check the file association type in the settings of Archive Manager Arşiv Yöneticisi ayarlarında dosya ilişkilendirme türünü kontrol edin @@ -1228,7 +1241,7 @@ Boyut - + %1 changed. Do you want to save changes to the archive? %1 değişti. Arşivdeki değişiklikleri kaydetmek istiyor musunuz? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Dosya aç - + Back Geri - + File info Dosya bilgisi diff --git a/translations/deepin-compressor_ug.ts b/translations/deepin-compressor_ug.ts index 8fbf0439c..6290c929f 100644 --- a/translations/deepin-compressor_ug.ts +++ b/translations/deepin-compressor_ug.ts @@ -35,6 +35,19 @@ % 1 نى پىرىسلاش ھوقۇقىڭىز يوق + + CliRarPlugin + + + Wrong password + مەخپىي نومۇر خاتا + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager ئارخىپ باشقۇرغۇچى - + Archive Manager is a fast and lightweight application for creating and extracting archives. ئارخىپ باشقۇرغۇچى ئارخىپ قۇرۇش ۋە چىقىرىش ئۈچۈن تېز ھەم يېنىك قوللىنىشچان پروگرامما. @@ -460,23 +473,23 @@ تەڭشەك - - + + Create New Archive يىڭى ئارخىپ قۇرۇش - + Converting ئايلاندۇرۋاتىدۇ - + Updating comments ئىزاھات يېڭىلىنىۋاتىدۇ - + @@ -565,12 +578,12 @@ ھۆججەتنى تاللاڭ - + Enter up to %1 characters ئىزاھات مەزمۇنى %1 خەتتىن ئېشىپ كەتمىسۇن - + File info ھۆججەت ئۇچۇرى @@ -580,7 +593,7 @@ تاللانغان ئارخىپىنى يۇيۇۋەتمەكچىمۇ؟ - + %1 was changed on the disk, please import it again. دىسكىدا% 1 ئۆزگەرتىلدى ، قايتا ئەكىرىڭ. @@ -595,33 +608,33 @@ بۇ يەردە ھۆججەتلەرنى ساقلاش ھوقۇقىڭىز يوق ، ئۆزگەرتىپ قايتا سىناڭ - + Adding files to %1 %1 غا ھۆججەت قوشۇۋاتىدۇ - + Compressing پىرىسلاش - + Extracting ئېلىش - + Deleting ئۆچۈرلىۋاتىدۇ - - + + Loading, please wait... يۈكلەۋاتىدۇ،كۈتۈپ تۇرۇڭ... - + Are you sure you want to stop the ongoing task? داۋاملىشىۋاتقان ۋەزىپىنى توختاتماقچىمۇ؟ @@ -648,13 +661,13 @@ پىرىسلاش مەغلۇپ بولدى - + Replace button ئالماشتۇرۇڭ - + Find directory مۇندەرىجىنى تېپىڭ @@ -673,64 +686,64 @@ مەخپىي نومۇر خاتا - - + + The file format is not supported by Archive Manager بۇ فورماتتىكى ھۆججەتنى ئاچالمايدۇ - - - - - - - - + + + + + + + + - - + + OK button تاماملاندى - + Renaming تەنھىلىك - - + + You do not have permission to load %1 «%1”» ھۆججەتنى يۈكلەش ھوقۇقىڭىز يوق - + - - + + Cancel button ئەمەلدىن قالدۇرۇش - + Confirm button جەزىملەشتۈرۈڭ - + No such file or directory نىشان ھۆججەت ياكى مۇندەرىجە يوق - + Unable to add system files or network files, please select files on local devices سىستېما ھۆججەتلىرىنى ياكى تور ھۆججەتلىرىنى قوشالمىدى، لۇتپەن يېرىلىك ئۈسكۈنىدىكى ھۆججەتنى تاللاڭ @@ -829,78 +842,78 @@ تېزلەتمە - + The name is the same as that of the compressed archive, please use another one ھۆججەت نامى پىرىسلانغان ھۆججەتنىڭ نامى بىلەن ئوخشاش قالدى، ھۆججەت نامىنى ئۆزگەرتىڭ - + Another file with the same name already exists, replace it? ئوخشاش ئىسىمدىكى باشقا بىر ھۆججەت بۇرۇنلا مەۋجۇت ، ئۇنى ئالماشتۇرامسىز؟ - + You cannot add the archive to itself ئارخىپنى ئۆزىگە قوشالمايسىز - + You cannot add files to archives in this file type بۇ پىرىسلانغان بوغچا فورماتى ھۆججەت قوشۇشنى قوللىمايدۇ - + Update button يىڭىلاش - + Basic info ئاساسىي ئۇچۇر - + Size سىغىمى - + Type تىپى - + Location ئورۇن - + Time created قۇرۇلغان ۋاقىت - + Time accessed زىيارەت ۋاقتى - + Time modified ۋاقىت ئۆزگەرتىلدى - + Archive ئارخىپ - + Comment ئىزاھات - + Please check the file association type in the settings of Archive Manager ئارخىپ باشقۇرغۇچىنىڭ تەڭشەكلىرىدىكى ھۆججەت بىرلەشمىسىنىڭ تۈرىنى تەكشۈرۈپ بېقىڭ @@ -1228,7 +1241,7 @@ سىغىمى - + %1 changed. Do you want to save changes to the archive? % 1 ئۆزگەردى. ئارخىپقا ئۆزگەرتىش كىرگۈزمەكچىمۇ؟ @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file ھۆججەتنى ئېچىڭ - + Back قايتىش - + File info ھۆججەت ئۇچۇرى diff --git a/translations/deepin-compressor_uk.ts b/translations/deepin-compressor_uk.ts index e66c604f2..0b701f1f4 100644 --- a/translations/deepin-compressor_uk.ts +++ b/translations/deepin-compressor_uk.ts @@ -35,6 +35,19 @@ У вас немає прав доступу для стискання %1 + + CliRarPlugin + + + Wrong password + Помилковий пароль + + + + The password entered is incorrect. Please try again. + + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager Засіб для керування архівами - + Archive Manager is a fast and lightweight application for creating and extracting archives. «Засіб для керування архівами» — програмний інструмент, який надає доступ до типових можливостей із видобування та стискання файлів @@ -460,23 +473,23 @@ Параметри - - + + Create New Archive Створити архів - + Converting Перетворення - + Updating comments Оновлюємо коментарі - + @@ -565,12 +578,12 @@ Вибір файла - + Enter up to %1 characters Введіть до %1 символів - + File info Відомості щодо файла @@ -580,7 +593,7 @@ Хочете вилучити архів? - + %1 was changed on the disk, please import it again. %1 було змінено на диску. Будь ласка, імпортуйте його знову. @@ -595,33 +608,33 @@ У вас немає прав доступу для зберігання файлів тут. Будь ласка, змініть каталог і повторіть спробу. - + Adding files to %1 Додаємо файли до %1 - + Compressing Стискання - + Extracting Видобування - + Deleting Вилучення - - + + Loading, please wait... Завантаження, зачекайте… - + Are you sure you want to stop the ongoing task? Ви справді хочете зупинити виконання завдання, яке виконується? @@ -648,13 +661,13 @@ Помилка під час стискання - + Replace button Замінити - + Find directory Знайти каталог @@ -673,64 +686,64 @@ Помилковий пароль - - + + The file format is not supported by Archive Manager У «Менеджері архівів» не передбачено підтримки файлів у цьому форматі - - - - - - - - + + + + + + + + - - + + OK button Гаразд - + Renaming Перейменовування - - + + You do not have permission to load %1 У вас немає прав доступу для завантаження %1 - + - - + + Cancel button Скасувати - + Confirm button Підтвердити - + No such file or directory Немає такого файла або каталогу - + Unable to add system files or network files, please select files on local devices @@ -829,78 +842,78 @@ Клавіатурні скорочення - + The name is the same as that of the compressed archive, please use another one Назва збігається із назвою стисненого архіву. Будь ласка, скористайтеся іншою назвою. - + Another file with the same name already exists, replace it? Файл вже існує. Що робити? - + You cannot add the archive to itself Ви не можете додавати архів до самого себе - + You cannot add files to archives in this file type Ви не можете додавати архіви до цього типу файлів - + Update button Оновити - + Basic info Основні відомості - + Size Розмір - + Type Тип - + Location Розташування - + Time created Час створення - + Time accessed Час доступу - + Time modified Час зміни - + Archive Архівувати - + Comment Коментар - + Please check the file association type in the settings of Archive Manager Будь ласка, перевірте прив'язку до типу файлів у параметрах «Керування архівами» @@ -1228,7 +1241,7 @@ Розмір - + %1 changed. Do you want to save changes to the archive? %1 змінено. Хочете зберегти зміни до архіву? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file Відкрити файл - + Back Назад - + File info Відомості щодо файла diff --git a/translations/deepin-compressor_zh_CN.ts b/translations/deepin-compressor_zh_CN.ts index 2d6ee0e6c..b79405881 100644 --- a/translations/deepin-compressor_zh_CN.ts +++ b/translations/deepin-compressor_zh_CN.ts @@ -35,6 +35,19 @@ 您没有权限压缩“%1”文件 + + CliRarPlugin + + + Wrong password + 密码错误 + + + + The password entered is incorrect. Please try again. + 输入的密码不正确,请重试。 + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager 归档管理器 - + Archive Manager is a fast and lightweight application for creating and extracting archives. 归档管理器是一款快速、轻巧的解压缩软件,提供对文件解压缩的常用功能。 @@ -460,23 +473,23 @@ 设置 - - + + Create New Archive 新建归档文件 - + Converting 正在转换 - + Updating comments 正在更新注释 - + @@ -565,12 +578,12 @@ 选择文件 - + Enter up to %1 characters 注释内容不得超过%1 字符 - + File info 文件信息 @@ -580,7 +593,7 @@ 您是否要删除此压缩文件? - + %1 was changed on the disk, please import it again. “%1”已经发生变化,请重新导入文件。 @@ -595,33 +608,33 @@ 您没有权限在此路径保存文件,请重试 - + Adding files to %1 正在向%1添加文件 - + Compressing 正在压缩 - + Extracting 正在解压 - + Deleting 正在删除 - - + + Loading, please wait... 正在加载,请稍候... - + Are you sure you want to stop the ongoing task? 您确定要停止正在进行的任务吗? @@ -648,13 +661,13 @@ 压缩失败 - + Replace button 替 换 - + Find directory 解压到目录 @@ -673,64 +686,64 @@ 密码错误 - - + + The file format is not supported by Archive Manager 不支持打开此格式的文件 - - - - - - - - + + + + + + + + - - + + OK button 确 定 - + Renaming 更名中 - - + + You do not have permission to load %1 您没有权限加载“%1”文件 - + - - + + Cancel button 取 消 - + Confirm button 确 定 - + No such file or directory 没有那个文件或目录 - + Unable to add system files or network files, please select files on local devices 无法添加系统文件或网络文件,请选择本地设备上的文件 @@ -829,78 +842,78 @@ 快捷键 - + The name is the same as that of the compressed archive, please use another one 文件名与被压缩文件同名,请修改文件名称 - + Another file with the same name already exists, replace it? 文件已存在,是否替换? - + You cannot add the archive to itself 无法将压缩文件添加到自身 - + You cannot add files to archives in this file type 此压缩包格式不支持追加文件 - + Update button 更 新 - + Basic info 基本信息 - + Size 大小 - + Type 类型 - + Location 位置 - + Time created 创建时间 - + Time accessed 访问时间 - + Time modified 修改时间 - + Archive 压缩文件 - + Comment 注释 - + Please check the file association type in the settings of Archive Manager 请在归档管理器的设置中勾选此文件类型 @@ -1228,7 +1241,7 @@ 大小 - + %1 changed. Do you want to save changes to the archive? 文件“%1”已修改,是否将此修改更新到压缩包? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file 打开文件 - + Back 返回 - + File info 文件信息 diff --git a/translations/deepin-compressor_zh_HK.ts b/translations/deepin-compressor_zh_HK.ts index 8da793fd0..a5b44435e 100644 --- a/translations/deepin-compressor_zh_HK.ts +++ b/translations/deepin-compressor_zh_HK.ts @@ -35,6 +35,19 @@ 您沒有權限壓縮“%1”文件 + + CliRarPlugin + + + Wrong password + 密碼錯誤 + + + + The password entered is incorrect. Please try again. + 輸入的密碼不正確,請重新輸入。 + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager 歸檔管理器 - + Archive Manager is a fast and lightweight application for creating and extracting archives. 歸檔管理器是一款快速、輕巧的解壓縮軟件,提供對文件解壓縮的常用功能。 @@ -460,23 +473,23 @@ 設置 - - + + Create New Archive 新建歸檔文件 - + Converting 正在轉換 - + Updating comments 正在更新注釋 - + @@ -565,12 +578,12 @@ 選擇文件 - + Enter up to %1 characters 注釋內容不得超過%1字符 - + File info 文件訊息 @@ -580,7 +593,7 @@ 您是否要刪除此壓縮文件? - + %1 was changed on the disk, please import it again. “%1”已經發生變化,請重新導入文件。 @@ -595,33 +608,33 @@ 您沒有權限在此路徑保存文件,請重試 - + Adding files to %1 正在向%1添加文件 - + Compressing 正在壓縮 - + Extracting 正在解壓 - + Deleting 正在刪除 - - + + Loading, please wait... 正在加載,請稍候... - + Are you sure you want to stop the ongoing task? 您確定要停止正在進行的任務嗎? @@ -648,13 +661,13 @@ 壓縮失敗 - + Replace button 替 換 - + Find directory 解壓到目錄 @@ -673,64 +686,64 @@ 密碼錯誤 - - + + The file format is not supported by Archive Manager 不支持打開此格式的文件 - - - - - - - - + + + + + + + + - - + + OK button 確 定 - + Renaming 更名中 - - + + You do not have permission to load %1 您沒有權限加載“%1”文件 - + - - + + Cancel button 取 消 - + Confirm button 確 定 - + No such file or directory 沒有那個文件或目錄 - + Unable to add system files or network files, please select files on local devices 無法添加系統檔案或網路檔案,請選擇本地設備上的檔案 @@ -829,78 +842,78 @@ 快捷鍵 - + The name is the same as that of the compressed archive, please use another one 文件名與被壓縮文件同名,請修改文件名稱 - + Another file with the same name already exists, replace it? 文件已存在,是否替換? - + You cannot add the archive to itself 無法將壓縮文件添加到自身 - + You cannot add files to archives in this file type 此壓縮包格式不支持追加文件 - + Update button 更 新 - + Basic info 基本訊息 - + Size 大小 - + Type 類型 - + Location 位置 - + Time created 創建時間 - + Time accessed 訪問時間 - + Time modified 修改時間 - + Archive 壓縮文件 - + Comment 注釋 - + Please check the file association type in the settings of Archive Manager 請在歸檔管理器的設置中勾選此文件類型 @@ -1228,7 +1241,7 @@ 大小 - + %1 changed. Do you want to save changes to the archive? 文件“%1”已修改,是否將此修改更新到壓縮包? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file 打開文件 - + Back 返回 - + File info 文件訊息 diff --git a/translations/deepin-compressor_zh_TW.ts b/translations/deepin-compressor_zh_TW.ts index 9e9be4c23..ab0daa809 100644 --- a/translations/deepin-compressor_zh_TW.ts +++ b/translations/deepin-compressor_zh_TW.ts @@ -35,6 +35,19 @@ 您沒有權限壓縮“%1”文件 + + CliRarPlugin + + + Wrong password + 密碼錯誤 + + + + The password entered is incorrect. Please try again. + 輸入的密碼不正確,請再試一次。 + + CommentProgressDialog @@ -436,13 +449,13 @@ Main + - Archive Manager 歸檔管理器 - + Archive Manager is a fast and lightweight application for creating and extracting archives. 歸檔管理器是一款快速、輕巧的解壓縮軟體,提供對文件解壓縮的常用功能。 @@ -460,23 +473,23 @@ 設定 - - + + Create New Archive 建立歸檔文件 - + Converting 正在轉換 - + Updating comments 正在更新注釋 - + @@ -565,12 +578,12 @@ 選擇文件 - + Enter up to %1 characters 注釋內容不得超過%1字元 - + File info 文件訊息 @@ -580,7 +593,7 @@ 您是否要刪除此壓縮文件? - + %1 was changed on the disk, please import it again. “%1”已經發生變化,請重新匯入文件。 @@ -595,33 +608,33 @@ 您沒有權限在此路徑儲存文件,請重試 - + Adding files to %1 正在向%1添加文件 - + Compressing 正在壓縮 - + Extracting 正在解壓 - + Deleting 正在刪除 - - + + Loading, please wait... 正在載入,請稍候... - + Are you sure you want to stop the ongoing task? 您確定要停止正在進行的任務嗎? @@ -648,13 +661,13 @@ 壓縮失敗 - + Replace button 替 換 - + Find directory 解壓到目錄 @@ -673,64 +686,64 @@ 密碼錯誤 - - + + The file format is not supported by Archive Manager 不支持打開此格式的文件 - - - - - - - - + + + + + + + + - - + + OK button 確 定 - + Renaming 更名中 - - + + You do not have permission to load %1 您沒有權限載入“%1”文件 - + - - + + Cancel button 取 消 - + Confirm button 確 定 - + No such file or directory 沒有那個文件或目錄 - + Unable to add system files or network files, please select files on local devices 無法添加系統檔案或網路檔案,請選擇本地設備上的檔案 @@ -829,78 +842,78 @@ 快捷鍵 - + The name is the same as that of the compressed archive, please use another one 檔案名與被壓縮文件同名,請修改檔案名稱 - + Another file with the same name already exists, replace it? 文件已存在,是否取代? - + You cannot add the archive to itself 無法將壓縮文件添加到自身 - + You cannot add files to archives in this file type 此壓縮包格式不支援追加文件 - + Update button 更 新 - + Basic info 基本訊息 - + Size 大小 - + Type 類型 - + Location 位置 - + Time created 創建時間 - + Time accessed 訪問時間 - + Time modified 修改時間 - + Archive 壓縮文件 - + Comment 注釋 - + Please check the file association type in the settings of Archive Manager 請在歸檔管理器的設定中勾選此文件類型 @@ -1228,7 +1241,7 @@ 大小 - + %1 changed. Do you want to save changes to the archive? 文件“%1”已修改,是否將此修改更新到壓縮包? @@ -1436,18 +1449,18 @@ TitleWidget - - + + Open file 打開文件 - + Back 返回 - + File info 文件訊息