diff -Nru ark-23.08.2/CMakeLists.txt ark-23.08.3/CMakeLists.txt --- ark-23.08.2/CMakeLists.txt 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/CMakeLists.txt 2023-11-05 12:01:18.000000000 +0000 @@ -3,7 +3,7 @@ # KDE Application Version, managed by release script set (RELEASE_SERVICE_VERSION_MAJOR "23") set (RELEASE_SERVICE_VERSION_MINOR "08") -set (RELEASE_SERVICE_VERSION_MICRO "2") +set (RELEASE_SERVICE_VERSION_MICRO "3") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(ark VERSION ${RELEASE_SERVICE_VERSION}) diff -Nru ark-23.08.2/app/org.kde.ark.appdata.xml ark-23.08.3/app/org.kde.ark.appdata.xml --- ark-23.08.2/app/org.kde.ark.appdata.xml 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/app/org.kde.ark.appdata.xml 2023-11-05 12:01:18.000000000 +0000 @@ -390,10 +390,10 @@ ark + - diff -Nru ark-23.08.2/autotests/kerfuffle/adddialogtest.cpp ark-23.08.3/autotests/kerfuffle/adddialogtest.cpp --- ark-23.08.2/autotests/kerfuffle/adddialogtest.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/autotests/kerfuffle/adddialogtest.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -37,7 +37,7 @@ QTest::newRow("tar") << QStringLiteral("application/x-tar") << false << -1 << -1; QTest::newRow("targzip") << QStringLiteral("application/x-compressed-tar") << true << 3 << 7; - QTest::newRow("tarbzip") << QStringLiteral("application/x-bzip-compressed-tar") << true << 3 << 7; + QTest::newRow("tarbzip") << QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.tar.bz2"), QMimeDatabase::MatchExtension).name() << true << 3 << 7; QTest::newRow("tarZ") << QStringLiteral("application/x-tarz") << false << -1 << -1; QTest::newRow("tarxz") << QStringLiteral("application/x-xz-compressed-tar") << true << 3 << 7; QTest::newRow("tarlzma") << QStringLiteral("application/x-lzma-compressed-tar") << true << 3 << 7; diff -Nru ark-23.08.2/autotests/kerfuffle/createdialogtest.cpp ark-23.08.3/autotests/kerfuffle/createdialogtest.cpp --- ark-23.08.2/autotests/kerfuffle/createdialogtest.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/autotests/kerfuffle/createdialogtest.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -38,7 +38,7 @@ QTest::newRow("tar") << QStringLiteral("application/x-tar"); QTest::newRow("targzip") << QStringLiteral("application/x-compressed-tar"); - QTest::newRow("tarbzip") << QStringLiteral("application/x-bzip-compressed-tar"); + QTest::newRow("tarbzip") << QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.tar.bz2"), QMimeDatabase::MatchExtension).name(); QTest::newRow("tarZ") << QStringLiteral("application/x-tarz"); QTest::newRow("tarxz") << QStringLiteral("application/x-xz-compressed-tar"); QTest::newRow("tarlzma") << QStringLiteral("application/x-lzma-compressed-tar"); diff -Nru ark-23.08.2/autotests/kerfuffle/mimetypetest.cpp ark-23.08.3/autotests/kerfuffle/mimetypetest.cpp --- ark-23.08.2/autotests/kerfuffle/mimetypetest.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/autotests/kerfuffle/mimetypetest.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -30,7 +30,7 @@ QTest::addColumn("expectedMimeType"); const QString compressedGzipTarMime = QStringLiteral("application/x-compressed-tar"); - const QString compressedBzip2TarMime = QStringLiteral("application/x-bzip-compressed-tar"); + const QString compressedBzip2TarMime = QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.tar.bz2"), QMimeDatabase::MatchExtension).name(); const QString compressedXzTarMime = QStringLiteral("application/x-xz-compressed-tar"); const QString compressedLzmaTarMime = QStringLiteral("application/x-lzma-compressed-tar"); const QString compressedZTarMime = QStringLiteral("application/x-tarz"); @@ -38,7 +38,7 @@ const QString compressedLzopTarMime = QStringLiteral("application/x-tzo"); const QString compressedLrzipTarMime = QStringLiteral("application/x-lrzip-compressed-tar"); const QString compressedLz4TarMime = QStringLiteral("application/x-lz4-compressed-tar"); - const QString isoMimeType = QStringLiteral("application/x-cd-image"); + const QString isoMimeType = QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.iso"), QMimeDatabase::MatchExtension).name(); const QString debMimeType = QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.deb"), QMimeDatabase::MatchExtension).name(); const QString xarMimeType = QStringLiteral("application/x-xar"); const QString appImageMimeType = QStringLiteral("application/x-iso9660-appimage"); diff -Nru ark-23.08.2/debian/changelog ark-23.08.3/debian/changelog --- ark-23.08.2/debian/changelog 2023-10-23 11:01:03.000000000 +0000 +++ ark-23.08.3/debian/changelog 2023-11-09 11:29:26.000000000 +0000 @@ -1,8 +1,14 @@ -ark (4:23.08.2-0ubuntu1~ubuntu23.10~ppa1) mantic; urgency=high +ark (4:23.08.3-0ubuntu1~ubuntu23.10~ppa1) mantic; urgency=high + + * New upstream release (23.08.3) + + -- Rik Mills Thu, 09 Nov 2023 11:29:26 +0000 + +ark (4:23.08.2-0ubuntu1) noble; urgency=medium * New upstream release (23.08.2) - -- Rik Mills Mon, 23 Oct 2023 12:01:03 +0100 + -- Rik Mills Thu, 26 Oct 2023 12:25:49 +0100 ark (4:23.08.1-0ubuntu1) mantic; urgency=medium diff -Nru ark-23.08.2/kerfuffle/mimetypes.cpp ark-23.08.3/kerfuffle/mimetypes.cpp --- ark-23.08.2/kerfuffle/mimetypes.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/kerfuffle/mimetypes.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -76,6 +76,8 @@ mimeFromContent == db.mimeTypeForName(QStringLiteral("application/gzip"))) || (mimeFromExtension.inherits(QStringLiteral("application/x-bzip-compressed-tar")) && mimeFromContent == db.mimeTypeForName(QStringLiteral("application/x-bzip"))) || + (mimeFromExtension.inherits(QStringLiteral("application/x-bzip2-compressed-tar")) && + mimeFromContent == db.mimeTypeForName(QStringLiteral("application/x-bzip2"))) || (mimeFromExtension.inherits(QStringLiteral("application/x-xz-compressed-tar")) && mimeFromContent == db.mimeTypeForName(QStringLiteral("application/x-xz"))) || (mimeFromExtension.inherits(QStringLiteral("application/x-tarz")) && @@ -101,11 +103,6 @@ return mimeFromExtension; } - // #354344: ISO files are currently wrongly detected-by-content. - if (mimeFromExtension.inherits(QStringLiteral("application/x-cd-image"))) { - return mimeFromExtension; - } - qCDebug(ARK) << "Mimetype for filename extension (" << mimeFromExtension.name() << ") did not match mimetype for content (" << mimeFromContent.name() << "). Using content-based mimetype."; diff -Nru ark-23.08.2/kerfuffle/pluginmanager.cpp ark-23.08.3/kerfuffle/pluginmanager.cpp --- ark-23.08.2/kerfuffle/pluginmanager.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/kerfuffle/pluginmanager.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -165,6 +165,18 @@ supported.remove(QStringLiteral("application/x-tzo")); } + // shared-mime-info 2.3 explicitly separated application/x-bzip2-compressed-tar from application/x-bzip-compressed-tar + // since bzip2 is not compatible with the old (and deprecated) bzip format. + // See https://gitlab.freedesktop.org/xdg/shared-mime-info/-/merge_requests/239 + // With shared-mime-info 2.3 (or newer) we can't have both mimetypes at the same time, since libarchive does not support + // the old deprecated bzip format. Also we can't know which version of shared-mime-info the system is actually using. + // For these reasons, just take the mimetype from QMimeDatabase to keep the compatibility with any shared-mime-info version. + if (supported.contains(QLatin1String("application/x-bzip-compressed-tar")) && supported.contains(QLatin1String("application/x-bzip2-compressed-tar"))) { + supported.remove(QLatin1String("application/x-bzip-compressed-tar")); + supported.remove(QLatin1String("application/x-bzip2-compressed-tar")); + supported.insert(QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.tar.bz2"), QMimeDatabase::MatchExtension).name()); + } + if (mode == SortByComment) { return sortByComment(supported); } diff -Nru ark-23.08.2/part/part.cpp ark-23.08.3/part/part.cpp --- ark-23.08.2/part/part.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/part/part.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -926,7 +926,9 @@ qCWarning(ARK) << "No entry listed by the plugin"; displayMsgWidget(KMessageWidget::Warning, xi18nc("@info", "The archive is empty or Ark could not open its content.")); } else if (m_model->rowCount() == 1 && - m_model->archive()->mimeType().inherits(QStringLiteral("application/x-cd-image")) && + // TODO: drop application/x-cd-image once all distributions ship shared-mime-info >= 2.3 + (m_model->archive()->mimeType().inherits(QStringLiteral("application/x-cd-image")) || + m_model->archive()->mimeType().inherits(QStringLiteral("application/vnd.efi.img"))) && m_model->entryForIndex(m_model->index(0, 0))->fullPath() == QLatin1String("README.TXT")) { qCWarning(ARK) << "Detected ISO image with UDF filesystem"; displayMsgWidget(KMessageWidget::Warning, xi18nc("@info", "Ark does not currently support ISO files with UDF filesystem.")); diff -Nru ark-23.08.2/plugins/libarchive/CMakeLists.txt ark-23.08.3/plugins/libarchive/CMakeLists.txt --- ark-23.08.2/plugins/libarchive/CMakeLists.txt 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/plugins/libarchive/CMakeLists.txt 2023-11-05 12:01:18.000000000 +0000 @@ -4,7 +4,7 @@ # NOTE: These are the mimetypes for "single-file" archives. They must be defined in the JSON metadata together with the "normal" mimetypes. # However they need to be duplicated here because we need to pass them as C++ define to the plugin (see LIBARCHIVE_RAW_MIMETYPES define below). -set(SUPPORTED_LIBARCHIVE_RAW_MIMETYPES "application/x-compress;application/gzip;application/x-bzip;application/zlib;application/zstd;application/x-lzma;application/x-xz;application/x-lz4;application/x-lzip;application/x-lrzip;application/x-lzop;") +set(SUPPORTED_LIBARCHIVE_RAW_MIMETYPES "application/x-compress;application/gzip;application/x-bzip;application/x-bzip2;application/zlib;application/zstd;application/x-lzma;application/x-xz;application/x-lz4;application/x-lzip;application/x-lrzip;application/x-lzop;") set(INSTALLED_LIBARCHIVE_PLUGINS "") diff -Nru ark-23.08.2/plugins/libarchive/kerfuffle_libarchive.json.cmake ark-23.08.3/plugins/libarchive/kerfuffle_libarchive.json.cmake --- ark-23.08.2/plugins/libarchive/kerfuffle_libarchive.json.cmake 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/plugins/libarchive/kerfuffle_libarchive.json.cmake 2023-11-05 12:01:18.000000000 +0000 @@ -53,6 +53,7 @@ "application/x-tar", "application/x-compressed-tar", "application/x-bzip-compressed-tar", + "application/x-bzip2-compressed-tar", "application/x-tarz", "application/x-xz-compressed-tar", "application/x-lzma-compressed-tar", @@ -118,6 +119,11 @@ "CompressionLevelDefault": 9, "CompressionLevelMax": 9, "CompressionLevelMin": 1 + }, + "application/x-bzip2-compressed-tar": { + "CompressionLevelDefault": 9, + "CompressionLevelMax": 9, + "CompressionLevelMin": 1 }, "application/x-compressed-tar": { "CompressionLevelDefault": 6, diff -Nru ark-23.08.2/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake ark-23.08.3/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake --- ark-23.08.2/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/plugins/libarchive/kerfuffle_libarchive_readonly.json.cmake 2023-11-05 12:01:18.000000000 +0000 @@ -61,6 +61,7 @@ "application/x-compress", "application/gzip", "application/x-bzip", + "application/x-bzip2", "application/x-lzma", "application/x-xz", "application/zlib", @@ -71,6 +72,7 @@ "application/x-lzop", "application/x-source-rpm", "application/vnd.debian.binary-package", + "application/vnd.efi.iso", "application/vnd.ms-cab-compressed", "application/x-xar", "application/x-iso9660-appimage", diff -Nru ark-23.08.2/plugins/libarchive/libarchiveplugin.cpp ark-23.08.3/plugins/libarchive/libarchiveplugin.cpp --- ark-23.08.2/plugins/libarchive/libarchiveplugin.cpp 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/plugins/libarchive/libarchiveplugin.cpp 2023-11-05 12:01:18.000000000 +0000 @@ -13,6 +13,7 @@ #include +#include #include #include #include @@ -34,6 +35,17 @@ #ifdef LIBARCHIVE_RAW_MIMETYPES m_rawMimetypes = QStringLiteral(LIBARCHIVE_RAW_MIMETYPES).split(QLatin1Char(':'), Qt::SkipEmptyParts); + // shared-mime-info 2.3 explicitly separated application/x-bzip2 from application/x-bzip + // since bzip2 is not compatible with the old (and deprecated) bzip format. + // See https://gitlab.freedesktop.org/xdg/shared-mime-info/-/merge_requests/239 + // With shared-mime-info 2.3 (or newer) we can't have both mimetypes at the same time, since libarchive does not support + // the old deprecated bzip format. Also we can't know which version of shared-mime-info the system is actually using. + // For these reasons, just take the mimetype from QMimeDatabase to keep the compatibility with any shared-mime-info version. + if (m_rawMimetypes.contains(QLatin1String("application/x-bzip")) && m_rawMimetypes.contains(QLatin1String("application/x-bzip2"))) { + m_rawMimetypes.removeAll(QLatin1String("application/x-bzip")); + m_rawMimetypes.removeAll(QLatin1String("application/x-bzip2")); + m_rawMimetypes.append(QMimeDatabase().mimeTypeForFile(QStringLiteral("dummy.bz2"), QMimeDatabase::MatchExtension).name()); + } qCDebug(ARK) << "# available raw mimetypes:" << m_rawMimetypes.count(); #endif } diff -Nru ark-23.08.2/po/af/ark.po ark-23.08.3/po/af/ark.po --- ark-23.08.2/po/af/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/af/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2008-03-11 11:41+0200\n" "Last-Translator: Petri Jooste \n" "Language-Team: Afrikaans \n" @@ -1941,13 +1941,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1955,12 +1955,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1'" msgid "" @@ -1968,59 +1968,59 @@ "archive?" msgstr "Kon nie die argief '%1' oopmaak nie" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files" msgstr "Voeg lêers by" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Voeg lêers by" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2029,7 +2029,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" @@ -2038,13 +2038,13 @@ msgstr[0] "Voeg lêers by" msgstr[1] "Voeg lêers by" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1' for writing." msgctxt "@info" @@ -2053,7 +2053,7 @@ "another location." msgstr "Kon nie die argief '%1' oopmaak om daarin te skryf nie." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1'" msgctxt "@info" @@ -2179,18 +2179,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ar/ark.po ark-23.08.3/po/ar/ark.po --- ark-23.08.2/po/ar/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ar/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-08-19 22:03+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" @@ -1925,13 +1925,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "الأرشيف فارغ أو تعذر على أرك فتح محتواه." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "لا يدعم أرك حاليًا ملفات ISO مع نظام ملفات UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1941,71 +1941,71 @@ "فشل تحميل الأرشيف %1، معطياً الخطأ التالي:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "لا يستطيع أرك فتح روابط النظام." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "الملف %1 عُدل. هل تريد تحديثه؟" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "عُدل الملف" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "حدّث" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "تجاهل" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "أضف ملفات" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "أضف ملفات إلى %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "لا يمكن أن يحتوي اسم الملف على شرطات ولا يمكن أن يكون مساويًا لـ \".\" أو \".." "\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "لا يمكن نقل المجلدات إلى نفسها." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "ينقل مجلد إلى نفسه" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "لا يمكن لصق إدخالات بنفس الأسماء في نفس المقصد." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2018,7 +2018,7 @@ msgstr[4] "لا يمكن حذف هذه الملفات ، هل أنت متأكد أنك تريد فعل هذا؟" msgstr[5] "لا يمكن حذف هذه الملفات ، هل أنت متأكد أنك تريد فعل هذا؟" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2030,13 +2030,13 @@ msgstr[4] "احذف الملفات" msgstr[5] "احذف الملفات" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "احفظ نسخة ك‍..." -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2045,7 +2045,7 @@ msgstr "" "تعذر حفظ الأرشيف بالاسم %1. حاول أن تحفظه في مكان أخر." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2173,18 +2173,18 @@ msgid "unknown" msgstr "مجهول" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "خطأ فادح ، تم إحباط الاستخراج." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "لا يمكن بدء قارئ الأرشيف" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ast/ark.po ark-23.08.3/po/ast/ark.po --- ark-23.08.2/po/ast/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ast/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-04-27 23:36+0200\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -1838,13 +1838,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "L'archivu ta baleru o Ark nun pudo abrir el so conteníu." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1852,69 +1852,69 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark nun pue abrir los enllaces simbólicos." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Anovar" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Inorar" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1923,7 +1923,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1931,13 +1931,13 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1945,7 +1945,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2070,18 +2070,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/az/ark.po ark-23.08.3/po/az/ark.po --- ark-23.08.2/po/az/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/az/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-05-29 21:57+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" @@ -1907,13 +1907,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arxiv boşdur və ya Ark onun tərkiblərini aça bilmir." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark hal-hazırda UDF fayl sistemli İSO fayllarını dəstəkləmir." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1923,12 +1923,12 @@ "%1 arxivinin yüklənməsi aşağıdakı xəta ilə baş tutmadı:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark simvolik keçidləri aça bilmir." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1936,57 +1936,57 @@ msgstr "" "%1 faylı dəyişdirildi. Arxivi yeniləmək istəyirsiniz?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fayl dəyişdirildi" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Yenilə" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ötürün" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Fayllar əlavə etmək" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Faylları %1 arxivinə əlavə etmək" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Fayl-adı kəsir və \".\" və ya \"..\" işarələrindən ibarət ola bilməz" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Qovluq öz daxilinə köçürülə bilməz." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Qovluğu öz daxilinə köçürmək" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Eyni adlı obyektlər eyni təyinat yerinə yerləşdirilə bilməz." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1997,7 +1997,7 @@ msgstr[1] "" "Bu faylların silinməsini ləğv etmək olmaz. Silmək istədiyinizə əminsiniz?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2005,13 +2005,13 @@ msgstr[0] "Faylı silmək" msgstr[1] "Faylları silmək" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Kopyanı belə saxla" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2021,7 +2021,7 @@ "Arxiv %1 kimi saxlanıla bilməz. Başqa yerdə saxlamağa " "cəhd edin." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2151,18 +2151,18 @@ msgid "unknown" msgstr "naməlum" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Ciddi xəta, çıxarılma ləğv edilidi." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Arxiv oxuyucusu başladıla bilmədi." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/be/ark.po ark-23.08.3/po/be/ark.po --- ark-23.08.2/po/be/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/be/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 86ff119b1606fcaa910d6b44fc14b611\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-02-27 19:31\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian\n" @@ -1934,13 +1934,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Архіў пусты або Ark не можа адкрыць яго змесціва." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "У цяперашні час Ark не падтрымлівае файлы ISO з файлавай сістэмай UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1950,72 +1950,72 @@ "Загрузка архіва %1 завяршылася памылкай:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark не можа адкрыць сімвалічныя спасылкі." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "Файл %1 быў зменены. Хочаце абнавіць архіў?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Файл зменены" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Абнавіць" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Не зважаць" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Дадаць файлы" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Дадаць файлы ў %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Назва файла не можа змяшчаць касыя рысы і не можа быць \".\" або \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Немагчыма перамясціць каталог у самога сябе." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Перамяшчэнне каталога ў самога сябе" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Элементы з аднолькавымі назвамі нельга ўстаўляць у адзін і той жа мэтавы " "каталог." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2030,7 +2030,7 @@ msgstr[3] "" "Выдаленне гэтых файлаў немагчыма скасаваць. Сапраўды хочаце гэта зрабіць?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2040,13 +2040,13 @@ msgstr[2] "Выдаліць файлы" msgstr[3] "Выдаліць файлы" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Захаваць копію як" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2056,7 +2056,7 @@ "Нельга захаваць архіў як %1. Паспрабуйце захаваць яго ў " "іншым месцы." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2187,18 +2187,18 @@ msgid "unknown" msgstr "невядома" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Фатальная памылка, распакоўванне перарвана." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Не ўдалося ініцыялізаваць праграму для чытання архіва." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/bg/ark.po ark-23.08.3/po/bg/ark.po --- ark-23.08.2/po/bg/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/bg/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 15:24+0200\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" @@ -1913,13 +1913,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Архивът е празен или Ark не можа да отвори съдържанието му." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark понастоящем не поддържа файлове ISO с файлова система UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1929,12 +1929,12 @@ "Зареждането на архива %1 се провали със следната " "грешка: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark не може да отваря символни връзки." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1942,61 +1942,61 @@ msgstr "" "Файлът %1 е променен. Искате ли да се обнови архивът?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Променен файл" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Актуализиране" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Пренебрегване" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Добавяне на файлове" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Добавяне на файлове към %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Името на файла не може да съдържа наклонени черти и не може да бъде \".\" " "или \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Папките не могат да бъдат преместени в самите тях." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Преместване на папка в самата нея" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Записите с еднакви имена не могат да бъдат поставени в едно и също " "назначение." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2007,7 +2007,7 @@ msgstr[1] "" "Изтриването на тези файлове е необратимо. Сигурни ли сте, че искате това?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2015,13 +2015,13 @@ msgstr[0] "Изтриване на файл" msgstr[1] "Изтриване на файлове" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Запазване на копие като" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2031,7 +2031,7 @@ "Архивът не може да бъде запазен под името%1. Опитайте " "да го запазите на друго място." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2161,18 +2161,18 @@ msgid "unknown" msgstr "неизвестен" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Критична грешка, извличането е прекратено." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Инструментът за четене на архиви не може да се инициализира." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/br/ark.po ark-23.08.3/po/br/ark.po --- ark-23.08.2/po/br/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/br/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version:ark-1.1\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2004-05-19 11:54+0200\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" @@ -1954,13 +1954,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "N'eo ket un diell %1." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1968,12 +1968,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1981,60 +1981,60 @@ "archive?" msgstr "An diell gant an anv-se a zo c'hoazh. C'hoant ho peus e rasklañ ?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Restroù da ouzhpennañ" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "An holl Restroù" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "An holl Restroù" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2043,7 +2043,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Selected files only" msgctxt "@title:window" @@ -2052,13 +2052,13 @@ msgstr[0] "Restroù diuzet hepken" msgstr[1] "" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "An error occurred while adding the files to the archive." msgctxt "@info" @@ -2067,7 +2067,7 @@ "another location." msgstr "Degouezhet ez eus ar fazi en ur ouzhpennañ ar restroùd d'an diell." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgctxt "@info" @@ -2191,19 +2191,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "N'eo ket un diell %1." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/bs/ark.po ark-23.08.3/po/bs/ark.po --- ark-23.08.2/po/bs/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/bs/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2015-02-24 23:38+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosanski \n" @@ -2056,13 +2056,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arhivski pisač se nije mogao inicirati." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2076,12 +2076,12 @@ "Učitavanje arhive %1 nije uspjelo, uz sledeću grešku: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2094,31 +2094,31 @@ "Direktorij %1 već postoji. Želite li zaista da " "raspakujete u njega?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dodavanje datoteka" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2126,27 +2126,27 @@ msgid "Add Files to %1" msgstr "Dodavanje datoteka" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2161,7 +2161,7 @@ msgstr[2] "" "Brisanje ovih datoteka ne može se opozvati. Želite li zaista da ih obrišete?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2172,13 +2172,13 @@ msgstr[1] "Brisanje datoteka" msgstr[2] "Brisanje datoteka" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2188,7 +2188,7 @@ "Arhiva ne može da se sačuva kao %1. Pokušajte da je " "sačuvate na drugu lokaciju." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2322,18 +2322,18 @@ msgid "unknown" msgstr "Nepoznata veličina" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Čitač arhive nije se mogao inicirati." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ca/ark.po ark-23.08.3/po/ca/ark.po --- ark-23.08.2/po/ca/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ca/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 15:09+0300\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" @@ -1919,14 +1919,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "L'arxiu està buit o l'Ark no ha pogut obrir el seu contingut." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Actualment l'Ark no permet l'ús de fitxers ISO amb el sistema de fitxers UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1936,12 +1936,12 @@ "La càrrega de l'arxiu %1 ha fallat amb l'error següent: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "L'Ark no pot obrir enllaços simbòlics." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1950,60 +1950,60 @@ "El fitxer %1 s'ha modificat. Esteu segur que voleu " "actualitzar l'arxiu?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fitxer modificat" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualitza" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignora" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Afegeix fitxers" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Afegeix fitxers a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "El nom de fitxer no pot contenir barres i no pot ser igual que «.» o «..»" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Les carpetes no es poden moure en si mateixes." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "S'està movent la carpeta en si mateixa" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Les entrades amb els mateixos noms no es poden enganxar a la mateixa " "destinació." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2014,7 +2014,7 @@ msgstr[1] "" "La supressió d'aquests fitxers no es pot desfer. Segur que voleu fer això?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2022,13 +2022,13 @@ msgstr[0] "Suprimeix el fitxer" msgstr[1] "Suprimeix els fitxers" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Desa una còpia com a" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2038,7 +2038,7 @@ "L'arxiu no es pot desar com a %1. Intenteu desar-lo a " "una altra ubicació." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2168,18 +2168,18 @@ msgid "unknown" msgstr "desconegut" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Error fatal, s'ha interromput l'extracció." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "No s'ha pogut inicialitzar el lector d'arxius." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ca@valencia/ark.po ark-23.08.3/po/ca@valencia/ark.po --- ark-23.08.2/po/ca@valencia/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ca@valencia/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 15:09+0300\n" "Last-Translator: Josep M. Ferrer \n" "Language-Team: Catalan \n" @@ -1918,14 +1918,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "L'arxiu està buit o Ark no ha pogut obrir el seu contingut." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Actualment Ark no permet l'ús de fitxers ISO amb el sistema de fitxers UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1935,12 +1935,12 @@ "La càrrega de l'arxiu %1 ha fallat amb l'error següent: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark no pot obrir enllaços simbòlics." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1949,60 +1949,60 @@ "El fitxer %1 s'ha modificat. Segur que voleu " "actualitzar l'arxiu?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fitxer modificat" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualitza" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignora" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Afig fitxers" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Afig fitxers a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "El nom de fitxer no pot contindre barres i no pot ser igual que «.» o «..»" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Les carpetes no es poden moure en si mateixes." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "S'està movent la carpeta en si mateixa" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Les entrades amb els mateixos noms no es poden apegar a la mateixa " "destinació." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2013,7 +2013,7 @@ msgstr[1] "" "La supressió d'estos fitxers no es pot desfer. Segur que voleu fer açò?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2021,13 +2021,13 @@ msgstr[0] "Suprimix el fitxer" msgstr[1] "Suprimix els fitxers" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Anomeneu i guardeu una còpia" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2037,7 +2037,7 @@ "L'arxiu no es pot guardar com a %1. Intenteu guardar-lo " "a una altra ubicació." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2170,18 +2170,18 @@ msgid "unknown" msgstr "desconegut" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Error fatal, s'ha interromput l'extracció." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "No s'ha pogut restablir el lector d'arxius." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/cs/ark.po ark-23.08.3/po/cs/ark.po --- ark-23.08.2/po/cs/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/cs/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-08-07 16:47+0200\n" "Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" @@ -1906,13 +1906,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Archiv je prázdný nebo Ark nemohl přečíst jeho obsah." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark momentálně nepodporuje soubory ISO se souborovým systémem UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1922,69 +1922,69 @@ "Načítání archivu %1 selhalo s následující chybou:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark nemůže otevírat symbolické odkazy." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "Soubor %1 byl změněn. Chcete aktualizovat archiv?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Soubor byl změněn" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Aktualizovat" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorovat" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Přidat soubory" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Přidat soubory do %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Název souboru nesmí obsahovat lomítka a nemůže být \".\" nebo \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Složky nelze přesunout samy do sebe" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Přesunujete složku samu na sebe" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Položky se stejnými názvy nelze vložit do stejného cíle." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1997,7 +1997,7 @@ msgstr[2] "" "Smazání těchto souborů nelze vrátit zpět. Opravdu si je přejete smazat?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2006,13 +2006,13 @@ msgstr[1] "Smazat soubory" msgstr[2] "Smazat soubory" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Uložit kopii jako" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2022,7 +2022,7 @@ "Archiv nemohl být uložen jako %1. Zkuste jej uložit do " "jiného umístění." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2151,18 +2151,18 @@ msgid "unknown" msgstr "neznámý" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Kritická chyba. Rozbalování bylo přerušeno." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Čtení archivu nemohlo být inicializováno." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/cy/ark.po ark-23.08.3/po/cy/ark.po --- ark-23.08.2/po/cy/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/cy/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: ../cy/messages//kdeutils/ark.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2004-09-20 15:44+0200\n" "Last-Translator: Thierry Vignaud \n" "Language-Team: cy \n" @@ -1883,13 +1883,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1897,71 +1897,71 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "Pob Ffeil" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Pob Ffeil" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1970,7 +1970,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1978,13 +1978,13 @@ msgstr[0] "Ffeiliau Dewisiedig" msgstr[1] "Ffeiliau Dewisiedig" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1992,7 +1992,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2115,18 +2115,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/da/ark.po ark-23.08.3/po/da/ark.po --- ark-23.08.2/po/da/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/da/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-08-08 17:47+0200\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -1919,14 +1919,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arkivet er tomt eller Ark kunne ikke åbne dets indhold." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Ark understøtter ikke ISO-filer med UDF-filsystem på nuværende tidspunkt." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1936,71 +1936,71 @@ "Indlæsning af arkivet %1 mislykkedes med følgende fejl:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark kan ikke åbne symlinks." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "Filen %1 blev ændret. Vil du opdatere arkivet?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fil ændret" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Tilføj filer" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Føj filer til %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Filnavnet må ikke indeholde skråstreger og må ikke være \".\" eller \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Mapper kan ikke flyttes ind i sig selv." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Flytter en mappe ind i sig selv" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Elementer med de samme navne kan ikke indsættes i den samme destination." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2013,7 +2013,7 @@ "Sletning af disse filer kan ikke fortrydes. Er du sikker på, at du vil gøre " "det?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2021,13 +2021,13 @@ msgstr[0] "Slet fil" msgstr[1] "Slet filer" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Gem kopi som" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2037,7 +2037,7 @@ "Arkivet kunne ikke gemmes som %1. Prøv at gemme et " "andet sted." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2169,18 +2169,18 @@ msgid "unknown" msgstr "ukendt" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Fatal fejl, udpakning afbrudt." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Arkivindlæsning kunne ikke initieres." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/de/ark.po ark-23.08.3/po/de/ark.po --- ark-23.08.2/po/de/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/de/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-08-13 16:23+0200\n" "Last-Translator: Frederik Schwarzer \n" "Language-Team: German \n" @@ -1942,13 +1942,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Das Archiv ist leer oder Ark kann den Inhalt nicht öffnen." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark unterstützt derzeit keine ISO-Dateien mit UDF-Dateisystem." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1958,12 +1958,12 @@ "Das Laden des Archivs %1 ist mit folgender " "Fehlermeldung fehlgeschlagen:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Symbolische Verknüpfungen können nicht geändert werden." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1972,61 +1972,61 @@ "Die Datei %1 wurde geändert. Möchten Sie das Archiv " "aktualisieren?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Datei geändert" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Aktualisieren" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorieren" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dateien hinzufügen" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Dateien zu %1 hinzufügen" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Der Dateiname darf keine Schrägstriche enthalten und nicht „.“ oder „..“ " "lauten." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Ordner können nicht in sich selbst verschoben werden." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Verschieben eines Ordners in sich selbst" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Einträge mit dem gleichen Namen können nicht in das gleiche Ziel kopiert " "werden. " -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2039,7 +2039,7 @@ "Das Löschen dieser Dateien kann nicht rückgängig gemacht werden. Möchten Sie " "trotzdem fortfahren?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2047,13 +2047,13 @@ msgstr[0] "Datei löschen" msgstr[1] "Dateien löschen" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Kopie speichern unter" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2063,7 +2063,7 @@ "Das Archiv kann nicht als %1 kann nicht gespeichert " "werden. Versuchen Sie einen anderen Speicherort." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2198,18 +2198,18 @@ msgid "unknown" msgstr "unbekannt" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Schwerwiegender Fehler; Entpacken abgebrochen." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Der Archivlader kann nicht initialisiert werden." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/el/ark.po ark-23.08.3/po/el/ark.po --- ark-23.08.2/po/el/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/el/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-01-04 09:58+0200\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" @@ -1957,14 +1957,14 @@ msgstr "" "Η αρχειοθήκη είναι κενή ή το Ark δεν μπόρεσε να ανοίξει το περιεχόμενό της." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Το Ark αυτή τη στιγμή δεν υποστηρίζει αρχεία ISO με σύστημα αρχείων UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1974,12 +1974,12 @@ "Αποτυχία φόρτωσης της αρχειοθήκης %1 με το ακόλουθο " "σφάλμα:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Το Ark δεν μπορεί να ανοίξει συμβολικούς συνδέσμους." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1988,60 +1988,60 @@ "Το αρχείο %1 έχει τροποποιηθεί. Επιθυμείτε την " "ενημέρωση της αρχειοθήκης;" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Τροποποιημένο αρχείο" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Ενημέρωση" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Αγνόηση" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Προσθήκη αρχείων" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Προσθήκη αρχείων στο %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Το όνομα αρχείου δε μπορεί να περιέχει και δε μπορεί να είναι ίσο με \".\" ή " "\"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Οι φάκελοι δε μπορούν να μετακινηθούν στους εαυτούς τους." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Μετακίνηση ενός φακέλου στον εαυτό του" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Καταχωρήσεις με το ίδιο όνομα δεν μπορούν να επικολληθούν στο ίδιο προορισμό." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2054,7 +2054,7 @@ "Η διαγραφή αυτών των αρχείων είναι μη αναιρέσιμη. Είστε σίγουροι ότι θέλετε " "να προχωρήσετε;" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2062,13 +2062,13 @@ msgstr[0] "Διαγραφή αρχείου" msgstr[1] "Διαγραφή αρχείων" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Αποθήκευση αντιγράφου ως" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2078,7 +2078,7 @@ "Η αρχειοθήκη δεν μπορεί να αποθηκευτεί ως %1. " "Προσπαθήστε να την αποθηκεύσετε σε διαφορετική τοποθεσία." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2209,18 +2209,18 @@ msgid "unknown" msgstr "άγνωστο" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Μοιραίο σφάλμα, η εξαγωγή ματαιώθηκε." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Ο αναγνώστης αρχειοθήκης δεν μπορεί να αρχικοποιηθεί." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/en_GB/ark.po ark-23.08.3/po/en_GB/ark.po --- ark-23.08.2/po/en_GB/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/en_GB/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-05-06 15:43+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English\n" @@ -1908,13 +1908,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "The archive is empty or Ark could not open its content." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark does not currently support ISO files with UDF filesystem." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1924,12 +1924,12 @@ "Loading the archive %1 failed with the following error:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark cannot open symlinks." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1938,57 +1938,57 @@ "The file %1 was modified. Do you want to update the " "archive?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "File Modified" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Update" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignore" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Add Files" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Add Files to %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Filename can't contain slashes and can't be equal to \".\" or \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Folders can't be moved into themselves." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Moving a folder into itself" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Entries with the same names can't be pasted to the same destination." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1999,7 +1999,7 @@ msgstr[1] "" "Deleting these files is not undoable. Are you sure you want to do this?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2007,13 +2007,13 @@ msgstr[0] "Delete File" msgstr[1] "Delete Files" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Save Copy As" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2023,7 +2023,7 @@ "The archive could not be saved as %1. Try saving it to " "another location." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2153,18 +2153,18 @@ msgid "unknown" msgstr "unknown" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Fatal error, extraction aborted." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "The archive reader could not be initialised." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/eo/ark.po ark-23.08.3/po/eo/ark.po --- ark-23.08.2/po/eo/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/eo/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: arkn\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-06-26 07:00+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: esperanto \n" @@ -1904,13 +1904,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "La arkivo estas malplena aŭ Ark ne povis malfermi ĝian enhavon." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark nuntempe ne subtenas ISO-dosierojn kun UDF-dosiersistemo." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1920,12 +1920,12 @@ "Ŝargado de la arkivo %1 malsukcesis kun la jena eraro: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark ne povas malfermi simbolligojn." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1934,60 +1934,60 @@ "La dosiero %1 estis modifita. Ĉu vi volas ĝisdatigi la " "arkivon?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Dosiero Modifita" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Ĝisdatigo" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignori" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Aldoni dosierojn" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Aldoni dosierojn al %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Dosiernomo ne povas enhavi oblikvojn kaj ne povas esti egala al \".\" aŭ \".." "\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Dosierujoj ne povas esti movitaj en si mem." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Movante dosierujon en si mem" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Enskriboj kun la samaj nomoj ne povas esti algluitaj al la sama celloko." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1999,7 +1999,7 @@ "Forigo de ĉi dosieroj ne estas malfarebla. Ĉu vi certas ke vi volas fari " "tion?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2007,13 +2007,13 @@ msgstr[0] "Forigi Dosieron" msgstr[1] "Forigi Dosierojn" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Konservi Kopion Kiel" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2023,7 +2023,7 @@ "La arkivo ne povis esti konservita kiel %1. Provu " "konservi ĝin al alia loko." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2153,18 +2153,18 @@ msgid "unknown" msgstr "nekonata" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Fatala eraro, eltiro ĉesigita." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "La arkiva leganto ne eblis pravalorizita." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/es/ark.po ark-23.08.3/po/es/ark.po --- ark-23.08.2/po/es/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/es/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 11:28+0200\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -1930,7 +1930,7 @@ msgstr "" "El archivo comprimido está vacío o Ark no ha podido abrir su contenido." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." @@ -1938,7 +1938,7 @@ "Ark no permite en la actualidad el uso de archivos ISO con sistemas de " "archivos UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1948,12 +1948,12 @@ "La carga del archivo comprimido %1 ha fallado con el " "siguiente error:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark no puede abrir enlaces simbólicos." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1962,59 +1962,59 @@ "Se ha modificado el archivo %1. ¿Desea actualizar el " "archivo comprimido?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Archivo modificado" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualizar" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorar" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Añadir archivos" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Añadir archivos a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "El nombre del archivo no puede contener barras ni puede ser «.» ni «..»" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Las carpetas no se pueden mover dentro de sí mismas." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Moviendo una carpeta dentro de sí misma" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Las entradas con el mismo nombre no se pueden pegar en el mismo destino." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2027,7 +2027,7 @@ "El borrado de estos archivos no se puede deshacer. ¿Seguro que quiere hacer " "esto?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2035,13 +2035,13 @@ msgstr[0] "Borrar archivo" msgstr[1] "Borrar archivos" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Guardar copia como" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2051,7 +2051,7 @@ "No se ha podido guardar el archivo comprimido como %1. " "Pruebe a guardarlo en otra ubicación." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2186,18 +2186,18 @@ msgid "unknown" msgstr "desconocido" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Error fatal: extracción interrumpida." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "No se ha podido inicializar el lector del archivo." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/et/ark.po ark-23.08.3/po/et/ark.po --- ark-23.08.2/po/et/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/et/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2020-10-23 11:22+0200\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian <>\n" @@ -1914,13 +1914,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arhiiv on tühi või ei suutnud Ark selle sisu avada." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark ei toeta veel UDF-failisüsteemiga ISO-faile." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1930,12 +1930,12 @@ "Arhiivi %1 laadimine nurjus järgmise tõrke tõttu:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark ei suuda avada nimeviitu." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1943,58 +1943,58 @@ msgstr "" "Faili %1 on muudetud. Kas soovid arhiivi värskendada?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Faili on muudetud" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Failide lisamine" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Failide lisamine arhiivi %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Failinimi ei tohi sisaldada kaldkriipse ega olla kõigest \".\" või \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Katalooge ei saa iseendasse liigutada" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Kataloogi liigutamine iseendasse" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Sama nimega kirjeid ei saa ühte ja samasse sihtkohta asetada." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2004,7 +2004,7 @@ msgstr[1] "" "Nende failide kustutamist ei saa tagasi võtta. Kas tõesti seda teha?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2012,13 +2012,13 @@ msgstr[0] "Faili kustutamine" msgstr[1] "Failide kustutamine" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Koopia salvestamine" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2028,7 +2028,7 @@ "Arhiivi salvestamine asukohta %1 nurjus. Proovi mõnda " "muud asukohta." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2163,18 +2163,18 @@ msgid "unknown" msgstr "tundmatu" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Saatuslik tõrge, lahtipakkimisest loobutakse." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Arhiivilugeja initsialiseerimine nurjus." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/eu/ark.po ark-23.08.3/po/eu/ark.po --- ark-23.08.2/po/eu/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/eu/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-22 15:57+0200\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -1917,14 +1917,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Artxiboa hutsik dago edo Ark-ek ezin du bere edukia irakurri." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Ark-ek ez du oraingoz UDF fitxategi-sistemako ISO fitxategirik onartzen." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1934,12 +1934,12 @@ "%1 artxiboa zamatzeak huts egin du ondoko errorearekin:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark-ek ezin du esteka sinbolikorik ireki." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1948,59 +1948,59 @@ "%1 fitxategia aldatu egin da. Artxiboa eguneratu nahi " "duzu?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fitxategia aldatuta" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Eguneratu" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ezikusi" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Erantsi fitxategiak" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Erantsi fitxategiak %1-(e)ra" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Fitxategi-izenak ezin du eduki barra zeiharrik eta ezin da izan \".\" edo " "\"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Karpetak ezin dira mugitu beraien barnera." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Karpeta bat bere barnera mugitzen" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Izen bereko sarrerak ezin dira kokapen berean itsatsi." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2011,7 +2011,7 @@ msgstr[1] "" "Fitxategi hauen ezabatzea ezin da desegin. Ziur zaude hau egin nahi duzula?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2019,13 +2019,13 @@ msgstr[0] "Ezabatu fitxategia" msgstr[1] "Ezabatu fitxategiak" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Gorde kopia honela" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2035,7 +2035,7 @@ "Artxiboa ezin izan da %1 izenarekin gorde. Saiatu beste " "kokaleku batean gordetzen." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2165,18 +2165,18 @@ msgid "unknown" msgstr "ezezaguna" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Errore larria, erauztea bertan behera." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Artxibo-irakurlea ezin izan da hasieratu." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/fa/ark.po ark-23.08.3/po/fa/ark.po --- ark-23.08.2/po/fa/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/fa/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2007-08-07 20:07+0330\n" "Last-Translator: Nazanin Kazemi \n" "Language-Team: Persian \n" @@ -1914,13 +1914,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1928,71 +1928,71 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "فشار برای افزودن پرونده‌ها به بایگانی" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files" msgstr "افزودن پرونده‌ها" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "افزودن پرونده‌ها" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2001,7 +2001,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" @@ -2010,13 +2010,13 @@ msgstr[0] "افزودن پرونده‌ها" msgstr[1] "" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format msgctxt "@info" msgid "" @@ -2024,7 +2024,7 @@ "another location." msgstr "فشار برای افزودن پرونده‌ها به بایگانی" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format msgctxt "@info" msgid "" @@ -2149,18 +2149,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/fi/ark.po ark-23.08.3/po/fi/ark.po --- ark-23.08.2/po/fi/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/fi/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-08-28 19:41+0300\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" @@ -1917,14 +1917,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arkisto on tyhjä tai Ark ei onnistunut lukemaan sen sisältöä." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Ark ei tällä hetkellä tue ISO-tiedostoja, joiden tiedostojärjestelmä on UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1934,12 +1934,12 @@ "Arkiston %1 lukeminen epäonnistui:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark ei voi avata symbolisia linkkejä." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1947,57 +1947,57 @@ msgstr "" "Tiedosto %1 on muuttunut. Haluatko päivittää arkiston?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Tiedosto muuttunut" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Päivitä" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Sivuuta" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Lisää tiedostoja" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Lisää tiedostoja arkistoon %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Tiedostonimessä ei saa olla vinoviivoja eikä se voi olla ”.” tai ”..”." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Kansioita ei voi siirtää itseensä." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Siirretään kansiota itseensä" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Samannimisiä tietueita ei voi liittää samaan kohteeseen." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2008,7 +2008,7 @@ msgstr[1] "" "Näiden tiedostojen poistoa ei voi kumota. Haluatko varmasti poistaa ne?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2016,13 +2016,13 @@ msgstr[0] "Poista tiedosto" msgstr[1] "Poista tiedostot" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Tallenna kopio nimellä" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2032,7 +2032,7 @@ "Arkiston tallentaminen nimellä %1 epäonnistui. Yritä " "tallentaa se muualle." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2162,18 +2162,18 @@ msgid "unknown" msgstr "tuntematon" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Vakava virhe: purkaminen keskeytetty." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Arkistolukijan alustaminen epäonnistui." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/fr/ark.po ark-23.08.3/po/fr/ark.po --- ark-23.08.2/po/fr/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/fr/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-09-10 20:13+0200\n" "Last-Translator: Xavier BESNARD \n" "Language-Team: fr\n" @@ -1949,7 +1949,7 @@ msgid "The archive is empty or Ark could not open its content." msgstr "L'archive est vide ou Ark ne peut pas ouvrir son contenu." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." @@ -1957,7 +1957,7 @@ "Ark ne prend pas encore en charge les fichiers ISO avec le système de " "fichiers UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1967,12 +1967,12 @@ "Le chargement de l'archive %1 a échoué avec l'erreur " "suivante :%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark ne peut pas ouvrir les liens symboliques." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1981,57 +1981,57 @@ "Le fichier %1 a été modifié. Voulez-vous mettre " "l'archive à jour ?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fichier modifié" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Mettre à jour" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorer" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Ajouter des fichiers" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Ajouter des fichiers à %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Un nom de fichier ne peut pas contenir « / », « . » ou « .. »" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Impossible de déplacer un dossier dans lui-même." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Déplacement d'un dossier dans lui-même" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Des éléments homonymes ne peuvent pas être collés au même endroit." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2044,7 +2044,7 @@ "Impossible d'annuler la suppression de ces fichiers. Voulez-vous vraiment " "effectuer ceci ?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2052,13 +2052,13 @@ msgstr[0] "Supprimer le fichier" msgstr[1] "Supprimer les fichiers" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Enregistrer une copie sous" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2068,7 +2068,7 @@ "Impossible d'enregistrer l'archive en tant que %1. " "Veuillez essayer de l'enregistrer à un autre emplacement." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2205,18 +2205,18 @@ msgid "unknown" msgstr "Inconnu" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Erreur fatale, abandon de l'extraction." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Impossible d'initialiser le lecteur d'archives." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ga/ark.po ark-23.08.3/po/ga/ark.po --- ark-23.08.2/po/ga/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ga/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdeutils/ark.po\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -2074,13 +2074,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Níorbh fhéidir an scríbhneoir cartlainne a thúsú." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2094,12 +2094,12 @@ "Níorbh fhéidir cartlann %1 a luchtú. Fuarthas an " "earráid seo: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2112,32 +2112,32 @@ "Tá fillteán %1 ann cheana. An bhfuil tú cinnte gur mian " "leat baint amach anseo?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Comhaid le cur leis" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Cuir Comhaid Leis" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2145,27 +2145,27 @@ msgid "Add Files to %1" msgstr "Cuir Comhaid Leis" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2189,7 +2189,7 @@ "Ní féidir na comhaid seo a fháil ar ais tar éis iad a scriosadh. An bhfuil " "tú cinnte?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2202,13 +2202,13 @@ msgstr[3] "Scrios comhaid" msgstr[4] "Scrios comhaid" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2218,7 +2218,7 @@ "Níorbh fhéidir an chartlann a shábháil mar %1. Bain " "triail as suíomh eile." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2353,18 +2353,18 @@ msgid "unknown" msgstr "Méid anaithnid" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Níorbh fhéidir an léitheoir cartlainne a thúsú." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/gl/ark.po ark-23.08.3/po/gl/ark.po --- ark-23.08.2/po/gl/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/gl/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-29 08:31+0200\n" "Last-Translator: Adrián Chaves (Gallaecio) \n" "Language-Team: Galician \n" @@ -1611,8 +1611,8 @@ "Files with the following paths already exist. Remove them if you really want " "to overwrite." msgstr "" -"Os ficheiros nas seguintes rutas xa existen. Retíreos se está seguro de que " -"quere substituílos." +"Os ficheiros nas seguintes rutas xa existen. Retíreos se seguro que quere " +"substituílos." #: part/overwritedialog.cpp:28 #, kde-format @@ -1911,13 +1911,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "O arquivo está baleiro ou Ark non puido abrir o seu contido." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark non é compatíbel con ficheiros ISO cun sistema de ficheiros UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1927,12 +1927,12 @@ "A carga do arquivo %1 fallou coa seguinte mensaxe de " "erro: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark non pode abrir ligazóns simbólicas." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1940,59 +1940,59 @@ msgstr "" "Modificouse o ficheiro %1. Quere actualizar o arquivo?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Modificouse o ficheiro" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualizar" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorar" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Engadir ficheiros" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Engadir ficheiros a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "O nome de ficheiro non pode conter barras inclinadas (/) e non pode ser nin " "«.» nin «..»." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Os cartafoles non poden moverse sobre si mesmos." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Mover un cartafol sobre si mesmo" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "As entradas co mesmo nome non poden pegarse no mesmo destino." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2005,7 +2005,7 @@ "Unha vez eliminados os ficheiros, non será posíbel recuperalos. Seguro que " "quere continuar?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2013,13 +2013,13 @@ msgstr[0] "Eliminar o ficheiro" msgstr[1] "Eliminalos" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Gardar unha copia como" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2029,7 +2029,7 @@ "Non puido gardarse o arquivo como %1. Probe a gardalo " "noutro lugar." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2160,18 +2160,18 @@ msgid "unknown" msgstr "descoñecido" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Erro fatal, interrompeuse a extracción." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Non foi posíbel inicializar o lector do arquivo." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/he/ark.po ark-23.08.3/po/he/ark.po --- ark-23.08.2/po/he/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/he/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2017-05-16 07:03-0400\n" "Last-Translator: Copied by Zanata \n" "Language-Team: Hebrew \n" @@ -1886,13 +1886,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "הארכיון ריק או שארק לא יכול לפתוח את תוכנו." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "ארק לא תומך כרגע בקבצים מסוג ISO וUDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1902,69 +1902,69 @@ "טעינת הארכיון %1 נכשלה עם השגיאה הבאה %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "ארק לא יכול לפתוח קישור לקובץ" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "הקובץ %1 נערך. תרצה לעדכנו?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "הקובץ נערך" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "הוסף קבצים" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "הוסף קבצים" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1973,7 +1973,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1981,13 +1981,13 @@ msgstr[0] "מחק קובץ" msgstr[1] "מחק קבצים" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1996,7 +1996,7 @@ msgstr "" "הארכיון לא יכול להשמר בשם %1. נסה לשמור אותו במיקום אחר" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2121,18 +2121,18 @@ msgid "unknown" msgstr "גודל לא ידוע" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/hi/ark.po ark-23.08.3/po/hi/ark.po --- ark-23.08.2/po/hi/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/hi/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2021-06-29 20:38+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: kde-hindi\n" @@ -1934,13 +1934,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1948,12 +1948,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1'" msgid "" @@ -1961,59 +1961,59 @@ "archive?" msgstr "अभिलेख '%1' को खोल नहीं सका" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files" msgstr "फ़ाइलें जोड़ें" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "फ़ाइलें जोड़ें" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2022,7 +2022,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" @@ -2031,13 +2031,13 @@ msgstr[0] "फ़ाइलें जोड़ें" msgstr[1] "फ़ाइलें जोड़ें" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1' for writing." msgctxt "@info" @@ -2046,7 +2046,7 @@ "another location." msgstr "अभिलेख '%1' को लिखने के लिए खोल नहीं सका." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1'" msgctxt "@info" @@ -2172,18 +2172,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/hne/ark.po ark-23.08.3/po/hne/ark.po --- ark-23.08.2/po/hne/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/hne/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2009-03-01 12:04+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -1959,13 +1959,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1973,12 +1973,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "The source file could not be read." msgid "" @@ -1986,59 +1986,59 @@ "archive?" msgstr "स्रोत फाइल पढ़ नइ सकिस." -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files" msgstr "फाइल मन ल जोड़व" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "फाइल मन ल जोड़व" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2047,7 +2047,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "&Selected files only" msgctxt "@title:window" @@ -2056,13 +2056,13 @@ msgstr[0] "सिरिफ चुने गे फाइल (&S)" msgstr[1] "सिरिफ चुने गे फाइल (&S)" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Could not open the archive '%1' for writing." msgctxt "@info" @@ -2071,7 +2071,7 @@ "another location." msgstr "अभिलेख '%1' ल लिखे बर खोल नइ सकिस." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "The source file could not be read." msgctxt "@info" @@ -2199,18 +2199,18 @@ msgid "unknown" msgstr "अग्यात आकार" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/hr/ark.po ark-23.08.3/po/hr/ark.po --- ark-23.08.2/po/hr/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/hr/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: ark 0\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2011-07-22 16:59+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -2065,13 +2065,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arhivni pisač se ne može pokrenuti." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2085,12 +2085,12 @@ "Neuspjelo učitavanje arhive %1 uz sljedeću pogrešku: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2103,31 +2103,31 @@ "Mapa %1 već postoji. Jeste li sigurni da želite ovdje " "otpakirati?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dodaj datoteke" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2135,27 +2135,27 @@ msgid "Add Files to %1" msgstr "Dodaj datoteke" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2167,7 +2167,7 @@ msgstr[1] "Brisanje ovih datoteka je neopozivo. Jeste li sigurni da to želite?" msgstr[2] "Brisanje ovih datoteka je neopozivo. Jeste li sigurni da to želite?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2178,13 +2178,13 @@ msgstr[1] "Izbriši datoteke" msgstr[2] "Izbriši datoteke" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2194,7 +2194,7 @@ "Arhiva ne može biti spremljena kao %1. Pokušajte ju " "spremiti na drugu lokaciju." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2328,18 +2328,18 @@ msgid "unknown" msgstr "Nepoznata veličina" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Čitač arhive ne nože se pokrenuti." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/hu/ark.po ark-23.08.3/po/hu/ark.po --- ark-23.08.2/po/hu/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/hu/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: KDE 4.4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-02-07 14:09+0100\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" @@ -1925,13 +1925,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Az archívum üres, vagy az Ark nem tudta megnyitni a tartalmát." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Az Ark jelenleg nem támogatja az UDF-fájlrendszerű ISO-fájlokat." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1941,12 +1941,12 @@ "A(z) %1 archívum betöltése nem sikerült, a hibaüzenet:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Az Ark nem tud megnyitni szimbolikus linkeket." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1955,57 +1955,57 @@ "A(z) %1 fájl módosult. Szeretné frissíteni az " "archívumot?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fájl módosítva" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Fájlok hozzáadása" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Fájlok hozzáadása ehhez: %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "A fájlnév nem tartalmazhat perjelet, és nem lehet „.” vagy „..”" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "A mappák nem helyezhetőek át önmagukba." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Mappa áthelyezése önmagába" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Az egyező nevű bejegyzések nem illeszthetőek be ugyanarra a helyre." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2014,7 +2014,7 @@ msgstr[0] "Biztosan ezt szeretné? A törölt fájl véglegesen elveszik." msgstr[1] "Biztosan ezt szeretné? A törölt fájlok véglegesen elvesznek." -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2022,13 +2022,13 @@ msgstr[0] "Fájl törlése" msgstr[1] "Fájlok törlése" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Másolat mentése másként" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2038,7 +2038,7 @@ "Nem sikerült elmenteni az archívumot %1 néven. Próbálja " "meg más helyre menteni." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2173,18 +2173,18 @@ msgid "unknown" msgstr "ismeretlen" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Végzetes hiba, kibontás megszakítva." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Nem sikerült inicializálni az archívumbeolvasót." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ia/ark.po ark-23.08.3/po/ia/ark.po --- ark-23.08.2/po/ia/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ia/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 21:49+0200\n" "Last-Translator: giovanni \n" "Language-Team: Interlingua \n" @@ -1915,13 +1915,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Le archivo es vacue o Ark non poteva aperir su contento." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark currentemente non supporta files ISO con systema de file UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1931,12 +1931,12 @@ "Il falleva cargar le archivo %1 con le sequente error: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark non pote aperir symlinks, i.e. ligamines symbolic." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1945,60 +1945,60 @@ "Le file %1 esseva modificate. Tu vole actualisarle " "archivo?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "File modificate" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualisa" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignora" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Adde Files" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Adde Files a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Nomine de files non pote continer slashes (i.e. \"\" o \"/\") e non pote " "esser equal a \".\" o \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Dossieres non pote esser movite in se mesme." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Movente un dossier sur se mesme" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Entratas con le mesme nomine non pote esser collate al mesme destination." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2009,7 +2009,7 @@ msgstr[1] "" "Deler iste files non es annullabile. Tu es secur que tu vole facer isto?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2017,13 +2017,13 @@ msgstr[0] "Dele file" msgstr[1] "Dele files" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Salveguarda copia como" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2033,7 +2033,7 @@ "Le archivo non poteva esser salveguardate como %1. " "Essaya salveguardar lo in un altere location." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2163,18 +2163,18 @@ msgid "unknown" msgstr "incognite" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Error fatal, extraction abortate." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Le lector de archivo non poteva esser initialisate." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/id/ark.po ark-23.08.3/po/id/ark.po --- ark-23.08.2/po/id/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/id/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-09-27 17:54+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" @@ -1924,13 +1924,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arsipnya kosong atau Ark tidak bisa membuka isinya." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark saat ini tidak mendukung file-file ISO dengan sistem file UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1940,12 +1940,12 @@ "Memuat arsip %1 gagal dengan error berikut ini:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark tak bisa membuka symlinks." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1954,61 +1954,61 @@ "File %1 telah dimodifikasi. Apakah kamu ingin " "memperbarui arsip?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "File Dimodifikasi" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Tambah File" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Tambahkan File-file ke %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Nama file tidak boleh berisi garis miring dan tidak boleh sama dengan \".\" " "atau \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Folder tidak boleh dipindah ke dalam dirinya sendiri." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Memindah sebuah folder ke dalam dirinya sendiri" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Entri-entri dengan nama-nama yang sama tidak boleh ditempel ke tujuan yang " "sama." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2022,7 +2022,7 @@ "ingin melakukan ini?" # Ini nama dialog. -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2030,13 +2030,13 @@ msgstr[0] "Hapus File" msgstr[1] "Hapus File-file" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Simpan Salinan Sebagai" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2047,7 +2047,7 @@ "menyimpannya ke lokasi yang lain." # Sengaja diperpendek. -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2179,18 +2179,18 @@ msgid "unknown" msgstr "Tak diketahui" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Error fatal, pengekstrakan digugurkan." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Pembaca arsip tidak dapat diinisialisasi." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ie/ark.po ark-23.08.3/po/ie/ark.po --- ark-23.08.2/po/ie/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ie/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-10-28 17:13+0700\n" "Last-Translator: OIS \n" "Language-Team: Interlingue \n" @@ -1869,13 +1869,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Li archive es vacui o Ark ne posse aperter su contenete." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Actualmen, Ark ne supporta files ISO con li sistema de files UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1883,12 +1883,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark ne posse aperter simbolic ligamentes." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1897,58 +1897,58 @@ "Li file %1 esset modificat. Esque vu vole actualisar it " "in li archive?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "File sta modificat" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualisar" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorar" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Adjunter files" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Adjunter files a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Un nómine de file ne posse contener obliqui strecs o esser «.» o «..»" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, fuzzy, kde-format msgid "Folders can't be moved into themselves." msgstr "" "Li file ne posse esser movet in li Paper-corb. Esque deleter it permanentmen?" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, fuzzy, kde-format msgid "Moving a folder into itself" msgstr "Un fólder movet a se self" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1957,7 +1957,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1965,13 +1965,13 @@ msgstr[0] "Remover un file" msgstr[1] "Remover files" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Gardar un copie quam" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1981,7 +1981,7 @@ "Li archive ne posser esser gardat quam %1. Prova gardar " "it a un altri loc." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2103,18 +2103,18 @@ msgid "unknown" msgstr "ínconosset" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, fuzzy, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Un errore fatal evenit: %s." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format msgid "The archive reader could not be initialized." msgstr "Li sistema de securitá NSS ne posset esser inicialisat" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/is/ark.po ark-23.08.3/po/is/ark.po --- ark-23.08.2/po/is/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/is/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-11-11 09:25+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic\n" @@ -1899,13 +1899,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Safnskráin er tóm eða að Ark tókst ekki að opna efni hennar." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1915,12 +1915,12 @@ "Lestur safnskrárinnar %1 mistókst með eftirfarandi " "villuboðum:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark getur ekki opnað tákntengi (symlinks)." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1928,57 +1928,57 @@ msgstr "" "Skránni %1 hefur verið breytt. Viltu uppfæra safnskrána?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Skrá breytt" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Uppfæra" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Hunsa" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Bæta við skrám" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Bæta skrám í %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Möppur má ekki færa inn í sjálfar sig." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Mappa færð inn í sjálfa sig" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1991,7 +1991,7 @@ "Ekki er hægt að afturkalla eyðingu þessara skráa. Ertu viss um að þú viljir " "gera þetta?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1999,13 +1999,13 @@ msgstr[0] "Eyða skrá" msgstr[1] "Eyða skrám" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Vista afrit sem" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2015,7 +2015,7 @@ "Ekki var hægt að vista safnskrána sem %1. Reyndu að " "vista hana á einhverjum öðrum stað." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2137,18 +2137,18 @@ msgid "unknown" msgstr "óþekkt" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Alvarleg villa, hætt við afþjöppun." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Ekki tókst að ræsa safnskrárlesarann." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/it/ark.po ark-23.08.3/po/it/ark.po --- ark-23.08.2/po/it/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/it/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 21:42+0200\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" @@ -1925,13 +1925,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "L'archivio è vuoto o Ark non può aprire il suo contenuto." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark attualmente non supporta i file ISO con filesystem UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1941,12 +1941,12 @@ "Caricamento dell'archivio %1 non riuscito con il " "seguente messaggio di errore:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark non può aprire collegamenti simbolici." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1955,61 +1955,61 @@ "Il file %1 è stato modificato. Vuoi aggiornare " "l'archivio?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "File modificato" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Aggiorna" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignora" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Aggiungi file" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Aggiungi file a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Il nome del file non può contenere barre (/) e non può essere uguale a «.» o " "«..»" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Le cartelle non possono essere spostate dentro se stesse." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Spostare una cartella in se stessa" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Le voci con lo stesso nome non possono essere incollare nella stessa " "destinazione." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2020,7 +2020,7 @@ msgstr[1] "" "L'eliminazione di questi file è irreversibile. Sei sicuro di volerlo fare?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2028,13 +2028,13 @@ msgstr[0] "Elimina file" msgstr[1] "Elimina file" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Salva copia come" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2044,7 +2044,7 @@ "L'archivio non può essere salvato come %1. Prova a " "salvarlo in un'altra posizione." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2177,18 +2177,18 @@ msgid "unknown" msgstr "sconosciuto" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Errore grave, estrazione interrotta." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Impossibile inizializzare il componente lettura archivi." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ja/ark.po ark-23.08.3/po/ja/ark.po --- ark-23.08.2/po/ja/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ja/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2021-05-02 20:49-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -1949,13 +1949,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "このアーカイブは空か、Ark はこのファイルを開くことができません。" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark は現在 UDF ファイルシステムの ISO ファイルをサポートしていません。" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1965,12 +1965,12 @@ "アーカイブ %1 の読み取りは次のエラーで失敗しました: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark はシンボリックリンクを開くことができません。" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1979,57 +1979,57 @@ "ファイル %1 は編集されています。本当にアーカイブを更新し" "ますか?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "ファイルは編集されています" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "ファイルを追加" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "ファイルを %1 に追加" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "ファイル名は / を含むものや \".\" や \"..\" にできません" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "フォルダを自身の中に移動できません。" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "フォルダをそれの中に移動中" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "同じ名前のエントリは同じ場所にペーストできません。" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2037,7 +2037,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "これらのファイルを削除すると元に戻せません。本当に削除しますか?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2046,13 +2046,13 @@ msgid_plural "Delete Files" msgstr[0] "ファイルを削除" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "コピーを保存" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2062,7 +2062,7 @@ "アーカイブを %1 に保存できませんでした。他の場所に保存し" "てみてください。" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2194,18 +2194,18 @@ msgid "unknown" msgstr "不明" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "致命的なエラーにより展開を中止しました。" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "アーカイブの読み取りコンポーネントを初期化できませんでした。" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ka/ark.po ark-23.08.3/po/ka/ark.po --- ark-23.08.2/po/ka/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ka/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-19 06:25+0200\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" @@ -1893,7 +1893,7 @@ msgid "The archive is empty or Ark could not open its content." msgstr "არქივი ცარიელია ან Ark-ს მისი შემცველობის წაკითხვა არ შეუძლია." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." @@ -1901,7 +1901,7 @@ "Ark-ს ამჟამად UDF ფაილური სისტემის შემცველი ISO ფაილების მხარდაჭერა არ " "გააჩნია." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1911,71 +1911,71 @@ "არქივის %1 ჩატვირთვა შემდეგი შეცდომით დასრულდა:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark-ს სიმბმულების გახსნა არ შეუძლია." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "ფაილი %1 შეიცვალა. გნებავთ, განაახლოთ არქივი?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "შეცვლილი ფაილი" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "განახლება" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "იგნორი" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "ფაილების დამატება" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "ფაილების დამატება %1-ში" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "ფაილის სახელი არ შეიძლება შეიცავდეს დახრილ ხაზებს, ან უდრიდეს \".\" ან \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "საქაღალდეებს საკუთარ თავში ვერ გადაიტანთ." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "საქაღალდის თავის თავში გადატანა" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "იგივე სახელის მქონე ჩანაწერები იგივე სამიზნე წერტილში ჩაწერილი ვერ იქნება." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1987,7 +1987,7 @@ "ფაილების წაშლა შეუქცევადია. დარწმუნებული ბრძანდებით, რომ გნებავთ, გააკეთოთ " "ეს?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1995,13 +1995,13 @@ msgstr[0] "ფაილების წაშლა" msgstr[1] "ფაილის წაშლა" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "ასლის შენახვა, როგორც" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2011,7 +2011,7 @@ "შეცდომა არქივის შენახვისას, როგორც %1. სცადეთ, სხვა " "ადგილას შეინახოთ." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2139,18 +2139,18 @@ msgid "unknown" msgstr "unknown" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "ფატალური შეცდომა. გაშლა გაუქმებულია." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "არქივის წამკითხველის ინიციალიზაციის შეცდომა." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/kk/ark.po ark-23.08.3/po/kk/ark.po --- ark-23.08.2/po/kk/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/kk/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2012-08-03 07:39+0600\n" "Last-Translator: Sairan Kikkarin\n" "Language-Team: Kazakh \n" @@ -2028,13 +2028,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Архивті жазатын бағдарламасы бастайтын күйіне келтірілмеді." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2048,12 +2048,12 @@ "%1 архивті жүктеу жаңылысы. Қатесі: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2065,32 +2065,32 @@ msgstr "" "%1 деген қапшық бар екен. Соған тарқата берелік пе?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Қосуға арналған файлдар" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Файлдарды қосу" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2098,27 +2098,27 @@ msgid "Add Files to %1" msgstr "Файлдарды қосу" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2128,7 +2128,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "Бұл файлдарды өшірсе - қайтарылмайды. Сонда да өшірілсін бе?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2137,13 +2137,13 @@ msgid_plural "Delete Files" msgstr[0] "Файлдарды өшіру" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2152,7 +2152,7 @@ msgstr "" "Архив %1 деп сақталмады. Басқа орынға сақтап көріңіз." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2287,18 +2287,18 @@ msgid "unknown" msgstr "Көлемі беймәлім" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Архивті оқитын бағдарламасы бастайтын күйіне келтірілмеді." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/km/ark.po ark-23.08.3/po/km/ark.po --- ark-23.08.2/po/km/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/km/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2012-06-11 15:59+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" @@ -2018,13 +2018,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "មិនអាច​ចាប់ផ្ដើម​កម្មវិធី​សរសេរ​ប័ណ្ណសារ​បានទេ ។" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2038,12 +2038,12 @@ "បាន​បរាជ័យ​ក្នុងការ​ផ្ទុកប័ណ្ណសារ %1 ដោយ​មាន​កំហុស​ដូច​ខាងក្រោម ៖" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2054,31 +2054,31 @@ "archive?" msgstr "មាន​ថត %1 រួច​ហើយ ។ តើ​អ្នក​ប្រាកដ​ជា​ចង់​ស្រង់​ចេញ​នៅ​ទីនេះ​ឬ ?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "បន្ថែម​ឯកសារ" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2086,27 +2086,27 @@ msgid "Add Files to %1" msgstr "បន្ថែម​ឯកសារ" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2116,7 +2116,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "លុប​ឯកសារ​ទាំង​នេះ​មិនអាច​ធ្វើវិញ​បានទេ ។ តើអ្នកប្រាកដ​ជា​ចង់​ធ្វើ​ដូច្នេះ​ឬ ?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2125,13 +2125,13 @@ msgid_plural "Delete Files" msgstr[0] "លុប​ឯកសារ" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2141,7 +2141,7 @@ "មិន​អាច​រក្សា​ទុក​ប័ណ្ណសារ​ជា %1បាន​ទេ ។ ព្យាយាម​រក្សាទុក​វា​ក្នុង​ទីតាំង​" "ផ្សេង ។" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2275,18 +2275,18 @@ msgid "unknown" msgstr "មិនស្គាល់ទំហំ" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "មិនអាច​ចាប់ផ្ដើម​កម្មវិធី​អាន​ប័ណ្ណសារ​បាន​ទេ ។" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ko/ark.po ark-23.08.3/po/ko/ark.po --- ark-23.08.2/po/ko/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ko/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-22 22:53+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -1877,13 +1877,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "압축 파일이 비어 있거나 Ark에서 내용을 표시할 수 없습니다." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark는 UDF 파일 시스템을 사용한 ISO 파일을 지원하지 않습니다." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1893,12 +1893,12 @@ "압축 파일 %1을(를) 읽는 중 오류가 발생했습니다:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark에서 심볼릭 링크를 열 수 없습니다." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1907,58 +1907,58 @@ "파일 %1이(가) 변경되었습니다. 압축 파일을 업데이트 하시" "겠습니까?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "파일 수정됨" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "업데이트" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "무시" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "파일 추가" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "%1에 파일 추가" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "파일 이름에 슬래시가 올 수 없으며 \".\" 및 \"..\"을 사용할 수 없습니다." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "폴더를 자기 자신으로 이동할 수 없습니다." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "폴더를 자기 자신으로 이동함" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "이름이 동일한 항목을 같은 대상 위치에 붙여넣을 수 없습니다." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1966,20 +1966,20 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "이 파일을 지우면 다시 복구할 수 없습니다. 계속 진행하시겠습니까?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" msgid_plural "Delete Files" msgstr[0] "파일 삭제" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "복사본을 다른 이름으로 저장" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1989,7 +1989,7 @@ "압축 파일을 %1(으)로 저장할 수 없습니다. 다른 경로에 저" "장해 보십시오." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2119,18 +2119,18 @@ msgid "unknown" msgstr "알 수 없음" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "치명적 오류, 압축 해제를 중단합니다." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "압축 파일 읽기를 초기화할 수 없습니다." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ku/ark.po ark-23.08.3/po/ku/ark.po --- ark-23.08.2/po/ku/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ku/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2007-12-22 09:56+0100\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish %2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files" msgstr "Pelan Lê Zêde Bike" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Pelan Lê Zêde Bike" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1990,7 +1990,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" @@ -1999,13 +1999,13 @@ msgstr[0] "Pelan Lê Zêde Bike" msgstr[1] "Pelan Lê Zêde Bike" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2013,7 +2013,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2138,18 +2138,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/lt/ark.po ark-23.08.3/po/lt/ark.po --- ark-23.08.2/po/lt/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/lt/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2021-06-16 00:52+0300\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: Lithuanian \n" @@ -1969,14 +1969,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Archyvas yra tuščias arba Ark negali atverti jo turinio." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Ark šiuo metu nepalaiko tų ISO atvaizdžių, kurių failų sistema yra UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1986,12 +1986,12 @@ "Archyvo %1 įkelti nepavyko; klaidos pranešimas: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark negali atverti simbolinių nuorodų." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1999,59 +1999,59 @@ msgstr "" "Failas %1 pakeistas. Ar norėtumėte atnaujinti archyvą?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Failas pakeistas" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Pridėti failų" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Pridėti failų prie %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Failo varde negali būti pasvirųjų brūkšnių, jis negali būti „.“ ir „..“" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Aplanko negalima perkelti į jį patį." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Aplankas perkeliamas į jį patį" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Įrašai su tokiais pačiais vardais negali būti dedami į tą pačią paskirtį." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2062,7 +2062,7 @@ msgstr[2] "Pašalinus failus, nebus galima jų atstatyti. Ar tikrai to norite?" msgstr[3] "Pašalinus failus, nebus galima jų atstatyti. Ar tikrai to norite?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2072,13 +2072,13 @@ msgstr[2] "Trinti failus" msgstr[3] "Trinti failą" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2088,7 +2088,7 @@ "Archyvas negali būti išsaugotas kaip %1. Bandykite " "saugoti į kitą vietą." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2220,18 +2220,18 @@ msgid "unknown" msgstr "nežinomas" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Nepavyko inicializuoti archyvo skaitytuvas." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/lv/ark.po ark-23.08.3/po/lv/ark.po --- ark-23.08.2/po/lv/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/lv/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2011-03-09 22:52+0200\n" "Last-Translator: Einars Sprugis \n" "Language-Team: Latvian \n" @@ -2043,13 +2043,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Neizdevās inicializēt arhīva rakstītāju." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2062,12 +2062,12 @@ msgstr "" "Arhīva %1 ielādē radās šāda kļūda: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2079,31 +2079,31 @@ msgstr "" "Mape %1 jau pastāv. Vai tiešām vēlaties atspiest tajā?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Pievienot failus" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2111,27 +2111,27 @@ msgid "Add Files to %1" msgstr "Pievienot failus" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2143,7 +2143,7 @@ msgstr[1] "Šo failu dzēšana nebūs atsaucama. Vai tiešām dzēst?" msgstr[2] "Šo failu dzēšana nebūs atsaucama. Vai tiešām dzēst?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2154,13 +2154,13 @@ msgstr[1] "Dzēst failus" msgstr[2] "Dzēst failus" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2170,7 +2170,7 @@ "Arhīvu neizdevās saglabāt kā %1. Mēģiniet to saglabāt " "citā vietā." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2304,18 +2304,18 @@ msgid "unknown" msgstr "Nezināms izmērs" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Neizdevās inicializēt arhīva lasītāju." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/mk/ark.po ark-23.08.3/po/mk/ark.po --- ark-23.08.2/po/mk/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/mk/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2006-05-08 10:32+0200\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -1989,13 +1989,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Архивата %1 не постои." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2003,12 +2003,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -2016,60 +2016,60 @@ "archive?" msgstr "Архивата веќе постои. Дали сакате да запишам врз неа?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Датотеки за додавање" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "Сите датотеки" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Сите датотеки" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2079,7 +2079,7 @@ msgstr[1] "" msgstr[2] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Selected files only" msgctxt "@title:window" @@ -2089,13 +2089,13 @@ msgstr[1] "Само избраните датотеки" msgstr[2] "Само избраните датотеки" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Last folders used for extraction" msgctxt "@info" @@ -2104,7 +2104,7 @@ "another location." msgstr "Последните папки користени за распакување" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "You must enter a password to extract the file:" msgctxt "@info" @@ -2229,19 +2229,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "Архивата %1 не постои." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/mr/ark.po ark-23.08.3/po/mr/ark.po --- ark-23.08.2/po/mr/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/mr/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2013-03-05 14:53+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: American English \n" @@ -1934,13 +1934,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1948,70 +1948,70 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add &File..." msgctxt "@title:window" msgid "Add Files to %1" msgstr "फाईल जोडा (&F)..." -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2020,7 +2020,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2030,13 +2030,13 @@ msgstr[0] "फाईल्स काढून टाका" msgstr[1] "फाईल्स काढून टाका" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2044,7 +2044,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2170,18 +2170,18 @@ msgid "unknown" msgstr "अपरिचीत आकार" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ms/ark.po ark-23.08.3/po/ms/ark.po --- ark-23.08.2/po/ms/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ms/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mimos\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2005-11-17 12:03+0800\n" "Last-Translator: MIMOS \n" "Language-Team: Malay \n" @@ -1949,13 +1949,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arkib %1 tidak wujud." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1963,12 +1963,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1976,60 +1976,60 @@ "archive?" msgstr "Arkib sudah wujud. Anda ingin menulisgantinya?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Fail hendak ditambah" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "Semua Fail" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Semua Fail" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2038,7 +2038,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2046,13 +2046,13 @@ msgstr[0] "Fail yang dipilih" msgstr[1] "Fail yang dipilih" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format msgctxt "@info" msgid "" @@ -2060,7 +2060,7 @@ "another location." msgstr "Buka folder destinasi selepas pengekstrakan" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgctxt "@info" @@ -2185,19 +2185,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "Arkib %1 tidak wujud." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/nb/ark.po ark-23.08.3/po/nb/ark.po --- ark-23.08.2/po/nb/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/nb/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2014-11-10 17:15+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -1853,13 +1853,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1867,69 +1867,69 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Legg til filer" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1938,7 +1938,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1946,13 +1946,13 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1962,7 +1962,7 @@ "Arkivet kunne ikke lagres som %1. Forsøk å lagre det et " "annet sted." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2082,18 +2082,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Klarte ikke klargjøre arkivleseren." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/nds/ark.po ark-23.08.3/po/nds/ark.po --- ark-23.08.2/po/nds/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/nds/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2014-02-20 11:36+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -2049,13 +2049,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "De Archievschriever lett sik nich torechtmaken." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2069,12 +2069,12 @@ "Dat Laden vun Archiev %1 is mit dissen Fehler " "fehlslaan: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2087,31 +2087,31 @@ "Dat gifft al en Orner mit den Naam %1. Wullt Du em " "redig hier ruttrecken?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dateien tofögen" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2119,27 +2119,27 @@ msgid "Add Files to %1" msgstr "Dateien tofögen" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2154,7 +2154,7 @@ "Dat Wegdoon vun disse Dateien lett sik nich torüchnehmen. Wullt Du dat redig " "doon?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2164,13 +2164,13 @@ msgstr[0] "Dateien wegdoon" msgstr[1] "Dateien wegdoon" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2180,7 +2180,7 @@ "Dat Archiev lett sik nich as %1 sekern. Versöök dat " "Sekern an en anner Steed." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2314,18 +2314,18 @@ msgid "unknown" msgstr "Nich begäng Grött" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "De Archievleser lett sik nich torechtmaken." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ne/ark.po ark-23.08.3/po/ne/ark.po --- ark-23.08.2/po/ne/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ne/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2007-08-26 13:40+0545\n" "Last-Translator: Narayan Kumar Magar \n" "Language-Team: Nepali \n" @@ -1973,13 +1973,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "सङ्ग्रह %1 अवस्थित हुँदैन ।" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1987,12 +1987,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -2000,60 +2000,60 @@ "archive?" msgstr "सङ्ग्रह पहिले नै अवस्थित छ । तपाईं यसमा अधिलेखन गर्न चाहनुहुन्छ?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "थप गरिनुपर्ने फाइल" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "सबै फाइल" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "सबै फाइल" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2062,7 +2062,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Selected files only" msgctxt "@title:window" @@ -2071,13 +2071,13 @@ msgstr[0] "चयन गरिएको फाइलहरू मात्र" msgstr[1] "चयन गरिएको फाइलहरू मात्र" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Last folders used for extraction" msgctxt "@info" @@ -2086,7 +2086,7 @@ "another location." msgstr "उद्धरणका लागि प्रयोग गरिएको अन्तिम फोल्डर" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "You must enter a password to extract the file:" msgctxt "@info" @@ -2211,19 +2211,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "सङ्ग्रह %1 अवस्थित हुँदैन ।" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/nl/ark.po ark-23.08.3/po/nl/ark.po --- ark-23.08.2/po/nl/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/nl/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-19 10:06+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -1946,14 +1946,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Het archiefis leeg of Ark kon de inhoud niet openen." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Ark ondersteunt op dit moment geen ISO-bestanden met het UDF-bestandssysteem." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1963,12 +1963,12 @@ "Het archief %1 laden is mislukt met de volgende fout:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark kan geen symlinks openen." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1977,60 +1977,60 @@ "Het bestand %1 is gewijzigd. Wilt u het archief " "bijwerken?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Bestand gewijzigd" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Bijwerken" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Negeren" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Bestanden toevoegen" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Bestanden toevoegen aan %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Bestandsnaam kan geen slashes bevatten en kan niet gelijk zijn aan \".\" of " "\"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Mappen kunnen niet verplaatst worden in zichzelf." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Een map in zichzelf verplaatsen" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Items met dezelfde namen kunnen niet geplakt worden naar dezelfde bestemming." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2043,7 +2043,7 @@ "Het verwijderen van deze bestanden niet ongedaan te maken. Wilt u dit toch " "doen?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2051,13 +2051,13 @@ msgstr[0] "Bestand verwijderen" msgstr[1] "Bestanden verwijderen" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Kopie opslaan als" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2067,7 +2067,7 @@ "Het archief kon niet worden opgeslagen als %1. Probeer " "het op te slaan in een andere locatie." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2199,18 +2199,18 @@ msgid "unknown" msgstr "onbekend" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Fatale fout, uitpakken afgebroken." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "De archieflezer kon niet worden geïnitialiseerd." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/nn/ark.po ark-23.08.3/po/nn/ark.po --- ark-23.08.2/po/nn/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/nn/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-27 21:59+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -1903,13 +1903,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arkivfila er tom eller så klarte ikkje Ark å opna innhaldet." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark støttar ikkje ISO-filer med UDF-filsystemet." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1919,70 +1919,70 @@ "Forsøk på å opna arkivfila %1 gav denne feilmeldinga:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark kan ikkje opna symbolske lenkjer." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "Fila %1 vart endra. Vil du oppdatera arkivet?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fil endra" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Oppdater" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorer" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Legg til filer" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Legg filer til %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Filnamn kan ikkje innehalda skråstrekar og kan ikkje vera lik «.» eller «..»." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Du kan ikkje flytta mapper til seg sjølve." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Mappe flytta til seg sjølv" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Oppføringar med same namn kan ikkje limast inn til same målmappe." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1995,7 +1995,7 @@ "Du kan ikkje angra slettinga av desse filene. Er du sikker på at du vil " "sletta dei?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2003,13 +2003,13 @@ msgstr[0] "Slett fila" msgstr[1] "Slett filene" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Lagra kopi som" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2019,7 +2019,7 @@ "Klarte ikkje lagra arkivfila som %1. Prøv å lagra ho i " "ei anna mappe." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2153,18 +2153,18 @@ msgid "unknown" msgstr "ukjend" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Kritisk feil. Utpakking er avbroten." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Klarte ikkje starta arkivlesaren." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/oc/ark.po ark-23.08.3/po/oc/ark.po --- ark-23.08.2/po/oc/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/oc/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2008-08-05 22:28+0200\n" "Last-Translator: Yannig Marchegay (Kokoyaya) \n" "Language-Team: Occitan (lengadocian) \n" @@ -1904,13 +1904,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1918,71 +1918,71 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files" msgstr "Apondre de fichièrs" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Apondre de fichièrs" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1991,7 +1991,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Add Files" msgctxt "@title:window" @@ -2000,13 +2000,13 @@ msgstr[0] "Apondre de fichièrs" msgstr[1] "Apondre de fichièrs" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2014,7 +2014,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2138,18 +2138,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/pa/ark.po ark-23.08.3/po/pa/ark.po --- ark-23.08.2/po/pa/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/pa/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-01-01 09:22-0800\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -1899,13 +1899,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "ਅਕਾਇਵ ਰਾਇਟਰ ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1915,12 +1915,12 @@ "ਅਕਾਇਵ %1 ਲੋਡ ਕਰਨ ਅੱਗੇ ਦਿੱਤੀ ਗਲਤੀ ਨਾਲ ਫੇਲ੍ਹ: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "ਅਕਾਇਵ ਸਿਮਲਿੰਕ ਨਹੀਂ ਖੋਲ੍ਹ ਸਕਦੀ ਹੈ।" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1928,57 +1928,57 @@ msgstr "" "ਫਾਇਲ %1 ਸੋਧੀ ਗਈ ਸੀ। ਕੀ ਤੁਸੀਂ ਅਕਾਇਵ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ।" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "ਫਾਇਲ ਸੋਧੀ ਗਈ" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "ਫ਼ਾਇਲਾਂ ਜੋੜੋ" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "%1 'ਚ ਫ਼ਾਇਲਾਂ ਜੋੜੋ" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "ਫਾਇਲ-ਨਾਂ ਵਿੱਚ ਸਲੈਸ਼ ਨਹੀਂ ਹੋ ਸਕਦੀ ਅਤੇ \".\" ਜਾਂ \"..\" ਦੇ ਬਰਾਬਰ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "ਫੋਲਡਰਾਂ ਨੂੰ ਖੁਦ ਵਿੱਚ ਭੇਜਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ।" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "ਫੋਲਡਰ ਨੂੰ ਖੁਦ ਵਿੱਚ ਭੇਜਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1987,7 +1987,7 @@ msgstr[0] "ਇਹ ਫ਼ਾਇਲਾਂ ਦੇ ਹਟਾਉਣ ਨੂੰ ਵਾਪਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਕੀ ਤੁਸੀਂ ਇਹ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" msgstr[1] "ਇਹ ਫ਼ਾਇਲਾਂ ਦੇ ਹਟਾਉਣਾ ਵਾਪਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਕੀ ਤੁਸੀਂ ਇਹ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1995,13 +1995,13 @@ msgstr[0] "ਫ਼ਾਇਲ ਨੂੰ ਹਟਾਓ" msgstr[1] "ਫ਼ਾਇਲਾਂ ਨੂੰ ਹਟਾਓ" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "ਕਾਪੀ ਵਜੋਂ ਇੰਝ ਸੰਭਾਲੋ" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2011,7 +2011,7 @@ "ਅਕਾਇਵ ਨੂੰ %1 ਉੱਤੇ ਸੰਭਾਲਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ। ਇਸ ਨੂੰ ਹੋਰ ਟਿਕਾਣੇ ਉੱਤੇ " "ਸੰਭਾਲਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2139,18 +2139,18 @@ msgid "unknown" msgstr "ਅਣਪਛਾਤਾ" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "ਘਾਤਕ ਗਲਤੀ, ਖਿਲਾਰਨਾ ਅਧੂਰਾ ਛੱਡਿਆ।" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "ਅਕਾਇਵ ਰੀਡਰ ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/pl/ark.po ark-23.08.3/po/pl/ark.po --- ark-23.08.2/po/pl/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/pl/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-09-30 10:14+0200\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" @@ -1915,13 +1915,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Archiwum jest puste lub Ark nie może odczytać jego zawartości." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark obecnie nie obsługuje plików ISO o systemie plików UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1931,12 +1931,12 @@ "Wczytywanie archiwum %1 zakończyło się błędem: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark nie może otwierać dowiązań symbolicznych." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1944,58 +1944,58 @@ msgstr "" "Plik %1 uległ zmianie. Czy chcesz uaktualnić archiwum?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Plik zmieniony" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Uaktualnij" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Pomiń" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dodaj pliki" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Dodaj pliki do %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Nazwa pliku nie może zawierać ukośników i nie może być \".\" lub \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Nie można przenieść katalogu do samego siebie." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Przenoszenie katalogu do samego siebie" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Nie można wkleić wpisów o tych samych nazwach w to samo miejsce." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2008,7 +2008,7 @@ msgstr[2] "" "Usunięcie tych plików będzie nieodwracalne. Czy na pewno kontynuować?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2017,13 +2017,13 @@ msgstr[1] "Usuń pliki" msgstr[2] "Usuń pliki" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Zapisz kopię jako" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2033,7 +2033,7 @@ "Nie można zapisać archiwum jako %1. Proszę spróbować " "innej nazwy." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2166,18 +2166,18 @@ msgid "unknown" msgstr "nieznany" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Bład krytyczny, przerwano wypakowywanie." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Nie można uruchomić modułu do odczytywania archiwów." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/pt/ark.po ark-23.08.3/po/pt/ark.po --- ark-23.08.2/po/pt/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/pt/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-05-06 11:49+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -1927,14 +1927,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "O pacote está vazio ou o Ark não consegue aceder ao seu conteúdo." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "O Ark não suporta de momento ficheiros ISO com o sistema de ficheiros UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1944,12 +1944,12 @@ "O carregamento do pacote %1 falhou com o seguinte erro:" "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "O Ark não consegue abrir ligações simbólicas." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1958,57 +1958,57 @@ "O ficheiro %1 foi modificado. Deseja actualizar o " "pacote?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Ficheiro Modificado" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Actualizar" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorar" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Adicionar os Ficheiros" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Adicionar os Ficheiros a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "O ficheiro não pode conter barras nem ser igual a \".\" ou \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "As pastas não podem ser movidas para si próprias." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "A mover uma pasta para si própria" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Os itens com os mesmos nomes não podem ser colados no mesmo destino." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2021,7 +2021,7 @@ "Se apagar estes ficheiros, não poderá voltar atrás. Tem a certeza que o " "deseja fazer?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2029,13 +2029,13 @@ msgstr[0] "Apagar o Ficheiro" msgstr[1] "Apagar os Ficheiros" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Gravar uma Cópia Como" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2045,7 +2045,7 @@ "O pacote não pôde ser gravado como %1. Tente gravá-lo " "noutro local." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2179,18 +2179,18 @@ msgid "unknown" msgstr "desconhecido" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Erro fatal - a extracção foi interrompida." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Não foi possível inicializar o leitor do pacote." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/pt_BR/ark.po ark-23.08.3/po/pt_BR/ark.po --- ark-23.08.2/po/pt_BR/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/pt_BR/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-25 10:50-0300\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Brazilian Portuguese \n" @@ -1941,14 +1941,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "O arquivo está vazio ou o Ark não consegue abrir o seu conteúdo." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "O Ark ainda não tem suporte a arquivos ISO com sistema de arquivos UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1958,12 +1958,12 @@ "O carregamento do arquivo %1 falhou com o seguinte " "erro: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "O Ark não consegue abrir links simbólicos." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1972,57 +1972,57 @@ "O arquivo %1 foi modificado. Deseja atualizar o arquivo " "compactado?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Arquivo modificado" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Atualizar" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorar" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Adicionar arquivos" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Adicionar arquivos a %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "O arquivo não pode conter barras nem ser igual a \".\" ou \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "As pastas não podem ser movidas para elas mesmas." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Movendo uma pasta para ela mesma" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Os itens com os mesmos nomes não podem ser colados no mesmo destino." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2035,7 +2035,7 @@ "Não é possível reverter a exclusão destes arquivos. Deseja realmente fazer " "isso?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2043,13 +2043,13 @@ msgstr[0] "Excluir arquivo" msgstr[1] "Excluir arquivos" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Salvar cópia como" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2059,7 +2059,7 @@ "O arquivo não pôde ser salvo como %1. Tente salvá-lo em " "outro local." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2189,18 +2189,18 @@ msgid "unknown" msgstr "desconhecido" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Erro fatal - a extração foi cancelada." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "O leitor de arquivo não pôde ser inicializado." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ro/ark.po ark-23.08.3/po/ro/ark.po --- ark-23.08.2/po/ro/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ro/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-06-01 15:37+0100\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -1930,13 +1930,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arhiva e goală sau Ark nu i-a putut deschide conținutul." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark nu susține încă fișiere ISO cu sistem de fișiere UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1946,12 +1946,12 @@ "Încărcarea arhivei %1 a eșuat cu următoarea eroare:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark nu poate deschide legături simbolice." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1960,59 +1960,59 @@ "Fișierul %1 a fost modificat. Doriți să actualizați " "arhiva?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fișier modificat" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Adaugă fișiere" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Adaugă fișiere la %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Denumirile de fișiere nu pot conține „/” și nu pot fi egale cu „.” sau „..”" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Dosarele nu pot fi mutate în ele însele." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Mutare dosar în sine însuși" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" "Înregistrări cu aceleași denumiri nu pot fi lipite la aceeași destinație." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2025,7 +2025,7 @@ msgstr[2] "" "Ștergerea acestor fișiere nu e revocabilă. Sigur doriți să faceți asta?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2034,13 +2034,13 @@ msgstr[1] "Șterge fișierele" msgstr[2] "Șterge fișierele" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Salvează copia ca" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2050,7 +2050,7 @@ "Arhiva nu a putut fi salvată ca %1. Încercați să o " "salvați în altă parte." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2183,18 +2183,18 @@ msgid "unknown" msgstr "necunoscută" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Eroare fatală, extragere abandonată." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Cititorul de arhive nu a putut fi inițializat." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ru/ark.po ark-23.08.3/po/ru/ark.po --- ark-23.08.2/po/ru/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ru/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-22 14:51+0300\n" "Last-Translator: Alexander Yavorsky \n" "Language-Team: Russian \n" @@ -1946,14 +1946,14 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Архив пуст, либо программа Ark не смогла открыть его содержимое." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" "Ark в настоящее время не поддерживает файлы ISO с файловой системой UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1962,69 +1962,69 @@ msgstr "" "Ошибка чтения архива %1:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark не может открывать символические ссылки." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "Файл %1 был изменён. Обновить архив?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Файл изменён" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Обновить" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Игнорировать" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Добавление файлов" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Добавление файлов в %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Имя файла не может содержать косых черт и не может быть «.» или «..»." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Нельзя перемещать папку внутрь её самой." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Перемещение папки внутрь её самой" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Нельзя вставить объекты с повторяющимися именами в один каталог." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2035,7 +2035,7 @@ msgstr[2] "Удаление этих файлов нельзя отменить. Действительно удалить их?" msgstr[3] "Удаление этого файла нельзя отменить. Действительно удалить его?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2045,13 +2045,13 @@ msgstr[2] "Удаление файлов" msgstr[3] "Удаление файла" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Сохранение копии файла" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2061,7 +2061,7 @@ "Не удалось сохранить архив как %1. Попробуйте сохранить его в другом " "месте." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2192,18 +2192,18 @@ msgid "unknown" msgstr "неизвестный" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Критическая ошибка, распаковка прервана." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Программа чтения архива не может быть инициализирована." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/se/ark.po ark-23.08.3/po/se/ark.po --- ark-23.08.2/po/se/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/se/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2007-09-11 22:44+0200\n" "Last-Translator: Northern Sami translation team \n" "Language-Team: Northern Sami \n" @@ -1826,13 +1826,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1840,69 +1840,69 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1911,7 +1911,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1919,13 +1919,13 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1933,7 +1933,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2053,18 +2053,18 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/sk/ark.po ark-23.08.3/po/sk/ark.po --- ark-23.08.2/po/sk/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/sk/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2022-07-19 10:02+0200\n" "Last-Translator: Matej Mrenica \n" "Language-Team: Slovak \n" @@ -1925,13 +1925,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Archív je prázdny alebo sa nepodarilo otvoriť jeho obsah." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark aktuálne nepodporuje ISO súbory so súborovým systémom UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1941,12 +1941,12 @@ "Načítanie archívu %1 zlyhalo s chybou: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark nemôže otvoriť symbolické odkazy." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1954,57 +1954,57 @@ msgstr "" "Súbor %1 sa zmenil. Naozaj chcete aktualizovať archív?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Súbor sa zmenil" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Pridať súbory" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Pridať súbory do %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Názvy súborov nesmú obsahovať lomky a nemôžu byť \".\" alebo \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Priečinky nie je možné presunúť do seba." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Presúvanie priečinka do seba" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Položky s rovnakými názvami nie je možné vložiť do rovnakého cieľa." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2017,7 +2017,7 @@ msgstr[2] "" "Odstránenie týchto súborov sa nedá vrátiť späť. Naozaj to chcete urobiť?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2026,13 +2026,13 @@ msgstr[1] "Vymazať súbory" msgstr[2] "Vymazať súbory" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Uložiť kópiu ako" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2042,7 +2042,7 @@ "Archív sa nepodarilo uložiť ako %1. Skúste iné " "umiestnenie." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2174,18 +2174,18 @@ msgid "unknown" msgstr "neznáme" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Fatálna chýba, rozbalenie prerušené." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Nepodarilo sa inicializovať čítačku archívov." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/sl/ark.po ark-23.08.3/po/sl/ark.po --- ark-23.08.2/po/sl/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/sl/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-18 11:38+0200\n" "Last-Translator: Matjaž Jeran \n" "Language-Team: Slovenian \n" @@ -1922,13 +1922,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arhiv je prazen ali pa Ark ne more odpreti njegove vsebine." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark trenutno ne podpira datotek ISO z datotečnim sistemom UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1938,12 +1938,12 @@ "Nalaganje arhiva %1 je spodletelo z naslednjo napako: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark ne more odpreti simbolnih povezav." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1952,58 +1952,58 @@ "Datoteka %1 je bila spremenjena. Ali želite posodobiti " "arhiv?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Datoteka spremenjena" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Posodobi" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Prezri" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dodaj datoteke" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Dodaj datoteke v %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Ime datoteke ne sme vsebovati poševnic in ne sme biti enako \".\" ali \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Map ni mogoče premakniti samih vase." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Premikanje mape same vase" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Vnosov z enakim imenom ni mogoče prilepiti v isti cilj." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2022,7 +2022,7 @@ "Izbrisa teh datotek ni mogoče razveljaviti. Ali ste prepričani, da želite to " "storiti?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2032,13 +2032,13 @@ msgstr[2] "Izbriši datoteke" msgstr[3] "Izbriši datoteke" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Shrani kopijo kot" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2048,7 +2048,7 @@ "Arhiva ni bilo mogoče shraniti kot %1. Poskusite ga " "shraniti na drugo mesto." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2178,18 +2178,18 @@ msgid "unknown" msgstr "neznan" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Usodna napaka, razširjanje prekinjeno." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Bralnika arhivov ni bilo mogoče začeti." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/sq/ark.po ark-23.08.3/po/sq/ark.po --- ark-23.08.2/po/sq/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/sq/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdeutils\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-04-09 02:50-0400\n" "Last-Translator: Agron Selimaj \n" "Language-Team: sq\n" @@ -1932,13 +1932,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1946,70 +1946,70 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "Add &File..." msgctxt "@title:window" msgid "Add Files to %1" msgstr "Shto &Skedar..." -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2018,7 +2018,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "De&lete" msgctxt "@title:window" @@ -2027,13 +2027,13 @@ msgstr[0] "Fsh&ije" msgstr[1] "Fsh&ije" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2041,7 +2041,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2164,18 +2164,18 @@ msgid "unknown" msgstr "e panjohur" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/sv/ark.po ark-23.08.3/po/sv/ark.po --- ark-23.08.2/po/sv/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/sv/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-25 14:07+0200\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -1910,13 +1910,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arkivet är tomt, eller så kunde inte Ark öppna innehållet." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark stöder för närvarande inte ISO-filer med UDF-filsystem." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1926,12 +1926,12 @@ "Inläsning av arkivet %1 misslyckades med följande fel: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark kan inte öppna symboliska länkar." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1940,59 +1940,59 @@ "Filen %1 har ändrats. Är du säker på att du vill " "uppdatera arkivet?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Fil ändrad" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Uppdatera" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ignorera" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Lägg till filer" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Lägg till filer i %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "Filnamnet kan inte innehålla snedstreck och kan inte vara lika med \".\" " "eller \"..\"" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Kataloger kan inte flyttas till sig själva." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Flyttar en katalog till sig själv" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Poster med samma namn kan inte klistras in på samma plats." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2003,7 +2003,7 @@ msgstr[1] "" "Att ta bort filerna kan inte ångras. Är du säker på att du vill göra det?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2011,13 +2011,13 @@ msgstr[0] "Ta bort fil" msgstr[1] "Ta bort filer" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Spara kopia som" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2027,7 +2027,7 @@ "Arkivet kunde inte sparas som %1. Försök att spara det " "på en annan plats." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2160,18 +2160,18 @@ msgid "unknown" msgstr "okänd" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Allvarligt fel, uppackning avbruten." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Arkivläsning kunde inte initieras." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/ta/ark.po ark-23.08.3/po/ta/ark.po --- ark-23.08.2/po/ta/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ta/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-30 14:44+0530\n" "Last-Translator: Kishore G \n" "Language-Team: Tamil \n" @@ -1896,13 +1896,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "காப்பகத்தில் ஏதுமில்லை, அல்லது ஆர்க்கால் அதை திறக்க முடியவில்லை." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "UDF கோப்பு முறைமையைக் கொண்ட ISO கோப்புகளை ஆர்க் ஆதரிக்காது." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1912,12 +1912,12 @@ "%1 என்ற காப்பகத்தை ஏற்றுவது, இச்சிக்கலால் தோல்வியடைந்த‍து:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "ஆர்க்கால் குறியிணைப்புகளை (symlink-களை) திறக்க முடியாது." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1925,59 +1925,59 @@ msgstr "" "%1 என்ற கோப்பு மாற்றப்பட்டுள்ளது. காப்பகத்தை புதுப்பிக்க வேண்டுமா?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "கோப்பு மாற்றப்பட்டுள்ளது" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "புதுப்பி" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "பொருட்படுத்தாதே" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "கோப்புகளை சேர்த்தல்" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "%1 என்பதில் கோப்புகளை சேர்த்தல்" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "கோப்பின் பெயரில் சாய்கோடுகள் (/) இருக்கக்கூடாது. மேலும், அது \".\" அல்லது \"..\" ஆக " "இருக்கக்கூடாது." -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "அடைவை தனக்குள் நகர்த்த முடியாது." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "அடைவை தனக்குள் நகர்த்துவது" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "ஒரே பெயரைக்கொண்டவற்றை ஒரே இடத்தில் ஒட்ட முடியாது." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1986,7 +1986,7 @@ msgstr[0] "இக்கோப்பை நீக்குவதை திரும்பப்பெற முடியாது. உறுதியாக தொடர வேண்டுமா?" msgstr[1] "இக்கோப்புகளை நீக்குவதை திரும்பப்பெற முடியாது. உறுதியாக தொடர வேண்டுமா?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -1994,13 +1994,13 @@ msgstr[0] "கோப்பை நீக்குதல்" msgstr[1] "கோப்புகளை நீக்குதல்" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "நகலை இவ்வாறு சேமிப்பது" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2010,7 +2010,7 @@ "காப்பகத்தை %1 என்று சேமிக்க முடியவில்லை. வேறிடத்தில் சேமித்து " "பாருங்கள்." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2141,18 +2141,18 @@ msgid "unknown" msgstr "தெரியாதது" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "முறிவுண்டாக்கும் சிக்கல், பிரித்தெடுப்பது நிறுத்தப்பட்டது." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "காப்பக படிப்பியை துவக்க முடியவில்லை." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/tg/ark.po ark-23.08.3/po/tg/ark.po --- ark-23.08.2/po/tg/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/tg/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2005-09-23 17:40+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik\n" @@ -1964,13 +1964,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Бойгонии %1 мавҷуд нест." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1978,12 +1978,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1991,60 +1991,60 @@ "archive?" msgstr "Бойгонӣ аллакай мавҷуд аст. Оё мехоҳед, ки онро рӯиҳам нависед?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Файлҳо илова мешаванд" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "Ҳамаи Файлҳо" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Ҳамаи Файлҳо" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2053,7 +2053,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2061,13 +2061,13 @@ msgstr[0] "Файлҳои интихобшуда" msgstr[1] "Файлҳои интихобшуда" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format msgctxt "@info" msgid "" @@ -2075,7 +2075,7 @@ "another location." msgstr "Кушодани ҷойгузории феҳрист баъди берункунӣ" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgctxt "@info" @@ -2200,19 +2200,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "Бойгонии %1 мавҷуд нест." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/th/ark.po ark-23.08.3/po/th/ark.po --- ark-23.08.2/po/th/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/th/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2010-12-18 15:47+0700\n" "Last-Translator: Thanomsub Noppaburana \n" "Language-Team: Thai \n" @@ -2017,13 +2017,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "ไม่สามารถเตรียมการทำงานของตัวเขียนแฟ้มจัดเก็บได้" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, fuzzy, kde-kuit-format #| msgid "" #| "Loading the archive %1 failed with the following " @@ -2036,12 +2036,12 @@ "การโหลดแฟ้มจัดเก็บแบบบีบอัด %1 ล้มเหลว โดยมีข้อผิดพลาดคือ: " "%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "" #| "The folder %1 already exists. Are you sure you want " @@ -2053,31 +2053,31 @@ "มีโฟลเดอร์ %1 อยู่ก่อนแล้ว คุณแน่ใจหรือไม่ว่า " "จะทำการคลายแฟ้มไปไว้ที่นี่ ?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "เพิ่มแฟ้มต่างๆ" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2085,27 +2085,27 @@ msgid "Add Files to %1" msgstr "เพิ่มแฟ้มต่างๆ" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, fuzzy, kde-format #| msgid "" #| "Deleting these files is not undoable. Are you sure you want to do this?" @@ -2117,7 +2117,7 @@ "การลบแฟ้มต่าง ๆ เหล่านี้จะไม่สามารถเรียกคืนการกระทำได้\n" "คุณแน่ใจหรือไม่ว่าต้องการจะทำเช่นนี้ ?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Delete files" @@ -2126,13 +2126,13 @@ msgid_plural "Delete Files" msgstr[0] "ลบแฟ้มต่างๆ" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "" #| "The archive could not be saved as %1. Try saving it " @@ -2145,7 +2145,7 @@ "ไม่สามารถบันทึกแฟ้มจัดเก็บแบบบีบอัด %1 ได้ " "โปรดลองทำการบันทึกไปยังตำแหน่งอื่น" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "" #| "The archive %1 cannot be copied to the specified " @@ -2278,18 +2278,18 @@ msgid "unknown" msgstr "ไม่ทราบขนาด" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "ไม่สามารถเตรียมการทำงานของตัวอ่านแฟ้มจัดเก็บได้" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/tr/ark.po ark-23.08.3/po/tr/ark.po --- ark-23.08.2/po/tr/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/tr/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -19,8 +19,8 @@ msgstr "" "Project-Id-Version: kdeutils-kde4\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" -"PO-Revision-Date: 2023-08-26 12:36+0300\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" +"PO-Revision-Date: 2023-10-17 21:48+0300\n" "Last-Translator: Emir SARI \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -359,8 +359,8 @@ "Automatically choose a filename, with the selected suffix (for example rar, " "tar.gz, zip or any other supported types)" msgstr "" -"Bir sonek kullanarak otomatik olarak bir dosya adı seç (örneğin, rar, tar." -"gz, zip veya desteklenen diğer dosya tipleri)" +"Bir sonek kullanarak kendiliğinden bir dosya adı seç (örneğin, rar, tar.gz, " +"zip veya desteklenen diğer dosya türleri)" #: app/main.cpp:180 #, kde-format @@ -790,7 +790,7 @@ #, kde-format msgctxt "the argument is a file extension (the period is not a typo)" msgid "Automatically add .%1" -msgstr ".%1 uzantısını otomatik ekle" +msgstr ".%1 uzantısını kendiliğinden ekle" #: kerfuffle/createdialog.cpp:198 #, kde-format @@ -937,7 +937,7 @@ #: kerfuffle/extractiondialog.ui:153 #, kde-format msgid "&Automatically create subfolders" -msgstr "Alt klasörleri &otomatik olarak oluştur" +msgstr "Alt klasörleri &kendiliğinden oluştur" #. i18n: ectx: property (title), widget (QGroupBox, filesToExtractGroupBox) #: kerfuffle/extractiondialog.ui:169 @@ -1784,9 +1784,9 @@ "encryption is currently not supported.Extract the files and create " "a new archive if you want to add files." msgstr "" -"Başlık şifrelemesi olmadan parola korumalı mevcut arşivlere dosya eklemek şu " -"an da desteklenmiyor.Dosya eklemek istiyorsanız dosyaları çıkarıp " -"yeni bir arşiv oluşturun." +"Başlık şifrelemesi olmadan parola korumalı var olan arşivlere dosya eklemek " +"şu anda desteklenmiyor.Dosya eklemek istiyorsanız dosyaları " +"çıkarıp yeni bir arşiv oluşturun." #: part/part.cpp:479 #, kde-kuit-format @@ -1795,8 +1795,8 @@ "Testing password-protected archives with no header-encryption is currently " "not supported." msgstr "" -"Başlık şifrelemesi olmadan parola korumalı mevcut arşivleri sınamak şu anda " -"desteklenmiyor." +"Başlık şifrelemesi olmadan parola korumalı var olan arşivleri sınamak şu " +"anda desteklenmiyor." #: part/part.cpp:547 #, kde-format @@ -1918,13 +1918,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Arşiv boş veya Ark içeriğini açamadı." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark şu anda UDF dosya sisteminde ISO dosyalarını desteklemiyor." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1934,12 +1934,12 @@ "%1 arşivi yüklenirken aşağıdaki hata oluştu: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark sembolik bağlantıları açamaz." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1948,57 +1948,57 @@ "%1 dosyası değiştirilmiş. Arşivi güncellemek istiyor " "musunuz?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Dosya Değiştirildi" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Güncelle" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Yok Say" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Dosya Ekle" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Dosyaları Şuraya Ekle: %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "Dosya adı bölü işareti içeremez ve \".\" veya \"..\" olamaz" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Klasörler kendi içlerine taşınamaz." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Klasör kendi içine taşınıyor" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Aynı ada sahip girdiler aynı hedefe yapıştırılamaz." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2010,7 +2010,7 @@ msgstr[1] "" "Bu dosyaların silinmesi geri alınamaz. Bunu yapmak istediğinize emin misiniz?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2018,13 +2018,13 @@ msgstr[0] "Dosyayı Sil" msgstr[1] "Dosyaları Sil" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Kopyayı Farklı Kaydet" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2034,7 +2034,7 @@ "Arşiv %1 olarak farklı kaydedilemedi. Başka bir yere " "kaydetmeyi deneyin." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2167,18 +2167,18 @@ msgid "unknown" msgstr "bilinmeyen" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Onulmaz hata, çıkarma iptal edildi." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Arşiv okuyucu başlatılamadı." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." @@ -2267,7 +2267,7 @@ #: plugins/libzipplugin/libzipplugin.cpp:927 #, kde-kuit-format msgid "Failed to read metadata for entry: %1" -msgstr "Girdi için üstveri okuma başarısız oldu: %1" +msgstr "Girdi için üst veri okuma başarısız oldu: %1" #: plugins/libzipplugin/libzipplugin.cpp:429 #: plugins/libzipplugin/libzipplugin.cpp:434 @@ -2319,7 +2319,7 @@ #: plugins/libzipplugin/libzipplugin.cpp:934 #, kde-kuit-format msgid "Failed to set metadata for entry: %1" -msgstr "Girdi için üstveri ayarlama başarısız oldu: %1" +msgstr "Girdi için üst veri ayarlama başarısız oldu: %1" #~ msgid "Form" #~ msgstr "Biçim" diff -Nru ark-23.08.2/po/ug/ark.po ark-23.08.3/po/ug/ark.po --- ark-23.08.2/po/ug/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/ug/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -1949,13 +1949,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1963,12 +1963,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -1979,31 +1979,31 @@ "archive?" msgstr "ئارخىپ %1 مەۋجۇت. ئۇنى ئاچامسىز يا؟" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "ھۆججەت قوش" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgctxt "@title:window" #| msgid "Add Files" @@ -2011,27 +2011,27 @@ msgid "Add Files to %1" msgstr "ھۆججەت قوش" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2039,7 +2039,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "De&lete" msgctxt "@title:window" @@ -2047,13 +2047,13 @@ msgid_plural "Delete Files" msgstr[0] "ئۆچۈر(&L)" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2061,7 +2061,7 @@ "another location." msgstr "" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgctxt "@info" #| msgid "" @@ -2191,18 +2191,18 @@ msgid "unknown" msgstr "نامەلۇم چوڭلۇق" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/uk/ark.po ark-23.08.3/po/uk/ark.po --- ark-23.08.2/po/uk/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/uk/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-07-19 07:55+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -1945,7 +1945,7 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Архів є порожнім або Ark не вдалося відкрити його вміст." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." @@ -1953,7 +1953,7 @@ "У поточній версії Ark не передбачено підтримки файлів ISO із файловою " "системою UDF." -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1963,12 +1963,12 @@ "Спроба завантаження архіву %1 завершилася повідомленням " "про помилку%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark не може відкривати символічні посилання." -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " @@ -1977,59 +1977,59 @@ "До файла %1 було внесено зміни. Хочете оновити вміст " "архіву з цим файлом?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Файл змінено" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "Оновити" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "Ігнорувати" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "Додати файли" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "Додавання файлів до %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" "У назві файла не повинно міститися символів похилої риски, назвою файла не " "може бути «.» або «..»" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "Не можна пересувати теки всередину тих сами тек." -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "Пересування теки до самої себе" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "Не можна вставляти до одного каталогу записи із однаковими назвами." -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2041,7 +2041,7 @@ msgstr[3] "" "Вилучення цього файла є незворотним. Ви справді бажаєте його вилучити?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2051,13 +2051,13 @@ msgstr[2] "Вилучення файлів" msgstr[3] "Вилучення файла" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "Зберегти копію із новою назвою" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2067,7 +2067,7 @@ "Не вдалося зберегти архів під назвою %1. Спробуйте " "зберегти його за іншою адресою." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2198,18 +2198,18 @@ msgid "unknown" msgstr "невідомий" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "Критична помилка, видобування перервано." -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "Не вдалося ініціалізувати засіб для читання архівів." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/uz/ark.po ark-23.08.3/po/uz/ark.po --- ark-23.08.2/po/uz/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/uz/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2006-12-17 13:36+0000\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -1954,13 +1954,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "%1 arxivi mavjud emas." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1968,12 +1968,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1981,60 +1981,60 @@ "archive?" msgstr "Arxiv allaqachon mavjud. Uni almashtirishni istaysizmi?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Qoʻshish uchun fayllar" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "Hamma fayllar" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Hamma fayllar" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2042,7 +2042,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Selected files only" msgctxt "@title:window" @@ -2050,13 +2050,13 @@ msgid_plural "Delete Files" msgstr[0] "Faqat tanlangan fayllar" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Last folders used for extraction" msgctxt "@info" @@ -2065,7 +2065,7 @@ "another location." msgstr "Ajratishda ishlatilgan oxirgi jildlar" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "You must enter a password to extract the file:" msgctxt "@info" @@ -2190,19 +2190,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "%1 arxivi mavjud emas." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/uz@cyrillic/ark.po ark-23.08.3/po/uz@cyrillic/ark.po --- ark-23.08.2/po/uz@cyrillic/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/uz@cyrillic/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2006-12-17 13:36+0000\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -1954,13 +1954,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "%1 архиви мавжуд эмас." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1968,12 +1968,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1981,60 +1981,60 @@ "archive?" msgstr "Архив аллақачон мавжуд. Уни алмаштиришни истайсизми?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "Қўшиш учун файллар" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "Ҳамма файллар" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "Ҳамма файллар" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2042,7 +2042,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Selected files only" msgctxt "@title:window" @@ -2050,13 +2050,13 @@ msgid_plural "Delete Files" msgstr[0] "Фақат танланган файллар" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Last folders used for extraction" msgctxt "@info" @@ -2065,7 +2065,7 @@ "another location." msgstr "Ажратишда ишлатилган охирги жилдлар" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "You must enter a password to extract the file:" msgctxt "@info" @@ -2190,19 +2190,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "%1 архиви мавжуд эмас." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/xh/ark.po ark-23.08.3/po/xh/ark.po --- ark-23.08.2/po/xh/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/xh/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2002-11-06 11:55+0200\n" "Last-Translator: Fundile Majola \n" "Language-Team: xhosa \n" @@ -1907,13 +1907,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "Indawo yokufihla %1 ayikho." -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1921,12 +1921,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1934,57 +1934,57 @@ "archive?" msgstr "Indawo yokugcina sele ikhona. Unqwenela ukubhala ngaphezulu kwayo? " -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "Iifayile Ezizakucatshulwa" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format msgctxt "@title:window" msgid "Add Files" msgstr " Ifayile" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr " Ifayile" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1993,7 +1993,7 @@ msgstr[0] "" msgstr[1] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format msgctxt "@title:window" msgid "Delete File" @@ -2001,13 +2001,13 @@ msgstr[0] "Iifayile ezikhethiweyo" msgstr[1] "Iifayile ezikhethiweyo" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format msgctxt "@info" msgid "" @@ -2015,7 +2015,7 @@ "another location." msgstr "Ikhangela impazamo kwindawo yokugcina...." -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgctxt "@info" @@ -2136,19 +2136,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "Indawo yokufihla %1 ayikho." -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/zh_CN/ark.po ark-23.08.3/po/zh_CN/ark.po --- ark-23.08.2/po/zh_CN/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/zh_CN/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" -"PO-Revision-Date: 2023-09-16 10:11\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" +"PO-Revision-Date: 2023-10-21 13:58\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -966,13 +966,13 @@ #: kerfuffle/generalsettingspage.ui:33 #, kde-format msgid "Pre&view the file with internal previewer" -msgstr "预览文件 - 使用内建查看器(&V)" +msgstr "预览 - 使用 Ark 的内建查看程序预览文件(&V)" #. i18n: ectx: property (text), widget (QRadioButton, radioButton_2) #: kerfuffle/generalsettingspage.ui:43 #, kde-format msgid "Open the fi&le with associated application" -msgstr "打开文件 - 使用关联应用程序(&L)" +msgstr "打开 - 使用关联的应用程序打开文件(&L)" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_showEncryptionWarning) #: kerfuffle/generalsettingspage.ui:60 @@ -1102,7 +1102,7 @@ #: kerfuffle/previewsettingspage.ui:22 #, kde-format msgid "Disable preview for files larger than:" -msgstr "禁用预览 - 如果文件体积大于:" +msgstr "禁用预览,如果文件体积大于:" #: kerfuffle/propertiesdialog.cpp:40 #, kde-format @@ -1847,13 +1847,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "压缩文件为空,或者 Ark 无法打开其内容。" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark 尚不支持 UDF 文件系统的 ISO 文件。" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1863,69 +1863,69 @@ "加载压缩文件 %1 失败。错误消息:%2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark 无法打开符号链接。" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "文件 %1 已修改。您想要更新压缩文件吗?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "文件已修改" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "更新" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "忽略" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "添加文件" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "添加文件到 %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "文件名不能包含斜杠,且不能为“.”或“..”" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "文件夹不能被移动到自身之内。" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "文件夹移动到自身之内" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "同名项目不能粘贴到同一个目标位置。" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1933,20 +1933,20 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "文件被删除后将无法恢复。您确定要删除吗?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" msgid_plural "Delete Files" msgstr[0] "删除文件" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "副本另存为" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1955,7 +1955,7 @@ msgstr "" "无法将压缩文件保存为 %1。请尝试将其保存到其他位置。" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2081,18 +2081,18 @@ msgid "unknown" msgstr "未知" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "发生严重错误,解压操作已中止。" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "压缩文件读取程序无法初始化。" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/zh_HK/ark.po ark-23.08.3/po/zh_HK/ark.po --- ark-23.08.2/po/zh_HK/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/zh_HK/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: ark 2.60\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2006-01-13 09:15+0800\n" "Last-Translator: Woodman Tuen \n" "Language-Team: Chinese (Hong Kong) \n" @@ -1962,13 +1962,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "壓縮檔 %1 不存在。" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1976,12 +1976,12 @@ "%2" msgstr "" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, fuzzy, kde-kuit-format #| msgid "Archive already exists. Do you wish to overwrite it?" msgid "" @@ -1989,60 +1989,60 @@ "archive?" msgstr "壓縮檔已經存在。你是否要覆寫它?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, fuzzy, kde-format #| msgid "Files to be added" msgctxt "@title:window" msgid "File Modified" msgstr "要加入的檔案" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files" msgstr "所有檔案" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, fuzzy, kde-format #| msgid "All Files" msgctxt "@title:window" msgid "Add Files to %1" msgstr "所有檔案" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -2050,7 +2050,7 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, fuzzy, kde-format #| msgid "Selected files only" msgctxt "@title:window" @@ -2058,13 +2058,13 @@ msgid_plural "Delete Files" msgstr[0] "只解開已選的檔案" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, fuzzy, kde-kuit-format #| msgid "Last folders used for extraction" msgctxt "@info" @@ -2073,7 +2073,7 @@ "another location." msgstr "上次用作解壓縮的資料夾" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, fuzzy, kde-kuit-format #| msgid "You must enter a password to extract the file:" msgctxt "@info" @@ -2198,19 +2198,19 @@ msgid "unknown" msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, fuzzy, kde-format #| msgid "The archive %1 does not exist." msgid "The archive reader could not be initialized." msgstr "壓縮檔 %1 不存在。" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/po/zh_TW/ark.po ark-23.08.3/po/zh_TW/ark.po --- ark-23.08.2/po/zh_TW/ark.po 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/po/zh_TW/ark.po 2023-11-05 12:01:18.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: ark\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2023-07-18 08:38+0000\n" +"POT-Creation-Date: 2023-10-15 02:26+0000\n" "PO-Revision-Date: 2023-09-12 01:52+0900\n" "Last-Translator: Kisaragi Hiu \n" "Language-Team: Chinese \n" @@ -1842,13 +1842,13 @@ msgid "The archive is empty or Ark could not open its content." msgstr "封存檔是空的,或是 Ark 無法開啟內容。" -#: part/part.cpp:932 +#: part/part.cpp:934 #, kde-kuit-format msgctxt "@info" msgid "Ark does not currently support ISO files with UDF filesystem." msgstr "Ark 目前不支援使用 UDF 檔案系統的 iso 檔。" -#: part/part.cpp:962 +#: part/part.cpp:964 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1858,69 +1858,69 @@ "讀取檔案 %1 失敗,錯誤訊息為: %2" -#: part/part.cpp:1022 +#: part/part.cpp:1024 #, kde-format msgid "Ark cannot open symlinks." msgstr "Ark 無法開啟符號連結。" -#: part/part.cpp:1154 +#: part/part.cpp:1156 #, kde-kuit-format msgid "" "The file %1 was modified. Do you want to update the " "archive?" msgstr "檔案 %1 已被變更。您要更新此封存檔嗎?" -#: part/part.cpp:1155 +#: part/part.cpp:1157 #, kde-format msgctxt "@title:window" msgid "File Modified" msgstr "檔案已修改" -#: part/part.cpp:1156 +#: part/part.cpp:1158 #, kde-format msgctxt "@action:button" msgid "Update" msgstr "更新" -#: part/part.cpp:1157 +#: part/part.cpp:1159 #, kde-format msgctxt "@action:button" msgid "Ignore" msgstr "忽略" -#: part/part.cpp:1442 +#: part/part.cpp:1444 #, kde-format msgctxt "@title:window" msgid "Add Files" msgstr "加入檔案" -#: part/part.cpp:1447 +#: part/part.cpp:1449 #, kde-format msgctxt "@title:window" msgid "Add Files to %1" msgstr "加入檔案到 %1" -#: part/part.cpp:1511 +#: part/part.cpp:1513 #, kde-format msgid "Filename can't contain slashes and can't be equal to \".\" or \"..\"" msgstr "檔名不能包含斜線及「.」或「..」等等符號" -#: part/part.cpp:1555 +#: part/part.cpp:1557 #, kde-format msgid "Folders can't be moved into themselves." msgstr "資料夾無法移動到它自己裡面" -#: part/part.cpp:1556 +#: part/part.cpp:1558 #, kde-format msgid "Moving a folder into itself" msgstr "正在移動資料夾到它自己裡面" -#: part/part.cpp:1584 +#: part/part.cpp:1586 #, kde-format msgid "Entries with the same names can't be pasted to the same destination." msgstr "有相同名稱的項目不能貼到同一個目的地。" -#: part/part.cpp:1688 +#: part/part.cpp:1690 #, kde-format msgctxt "@info" msgid "Deleting this file is not undoable. Are you sure you want to do this?" @@ -1928,20 +1928,20 @@ "Deleting these files is not undoable. Are you sure you want to do this?" msgstr[0] "刪除這些檔案後無法還原。您確定要這樣做嗎?" -#: part/part.cpp:1691 +#: part/part.cpp:1693 #, kde-format msgctxt "@title:window" msgid "Delete File" msgid_plural "Delete Files" msgstr[0] "刪除檔案" -#: part/part.cpp:1738 +#: part/part.cpp:1740 #, kde-format msgctxt "@title:window" msgid "Save Copy As" msgstr "儲存副本為" -#: part/part.cpp:1753 +#: part/part.cpp:1755 #, kde-kuit-format msgctxt "@info" msgid "" @@ -1949,7 +1949,7 @@ "another location." msgstr "此封存無法儲存為 %1。請試著存到其它位置。" -#: part/part.cpp:1757 +#: part/part.cpp:1759 #, kde-kuit-format msgctxt "@info" msgid "" @@ -2074,18 +2074,18 @@ msgid "unknown" msgstr "未知" -#: plugins/libarchive/libarchiveplugin.cpp:432 +#: plugins/libarchive/libarchiveplugin.cpp:444 #, kde-format msgctxt "@info" msgid "Fatal error, extraction aborted." msgstr "發生嚴重錯誤,中止解壓縮。" -#: plugins/libarchive/libarchiveplugin.cpp:466 +#: plugins/libarchive/libarchiveplugin.cpp:478 #, kde-format msgid "The archive reader could not be initialized." msgstr "封存讀取器無法初始化。" -#: plugins/libarchive/libarchiveplugin.cpp:488 +#: plugins/libarchive/libarchiveplugin.cpp:500 #, kde-format msgctxt "@info" msgid "Archive corrupted or insufficient permissions." diff -Nru ark-23.08.2/snapcraft.yaml ark-23.08.3/snapcraft.yaml --- ark-23.08.2/snapcraft.yaml 2023-10-10 03:27:41.000000000 +0000 +++ ark-23.08.3/snapcraft.yaml 2023-11-05 12:01:18.000000000 +0000 @@ -37,10 +37,10 @@ interface: content target: $SNAP/data-dir/sounds default-provider: gtk-common-themes - kf5-5-108-qt-5-15-10-core22: - content: kf5-5-108-qt-5-15-10-core22-all + kf5-5-110-qt-5-15-11-core22: + content: kf5-5-110-qt-5-15-11-core22-all interface: content - default-provider: kf5-5-108-qt-5-15-10-core22 + default-provider: kf5-5-110-qt-5-15-11-core22 target: $SNAP/kf5 environment: SNAP_DESKTOP_RUNTIME: $SNAP/kf5 @@ -75,18 +75,18 @@ source-type: local plugin: make make-parameters: - - PLATFORM_PLUG=kf5-5-108-qt-5-15-10-core22 + - PLATFORM_PLUG=kf5-5-110-qt-5-15-11-core22 build-snaps: - - kf5-5-108-qt-5-15-10-core22-sdk + - kf5-5-110-qt-5-15-11-core22-sdk build-environment: - &id001 - PATH: /snap/kf5-5-108-qt-5-15-10-core22-sdk/current/usr/bin${PATH:+:$PATH} + PATH: /snap/kf5-5-110-qt-5-15-11-core22-sdk/current/usr/bin${PATH:+:$PATH} - &id002 - XDG_DATA_DIRS: $CRAFT_STAGE/usr/share:/snap/kf5-5-108-qt-5-15-10-core22-sdk/current/usr/share:/usr/share${XDG_DATA_DIRS:+:$XDG_DATA_DIRS} + XDG_DATA_DIRS: $CRAFT_STAGE/usr/share:/snap/kf5-5-110-qt-5-15-11-core22-sdk/current/usr/share:/usr/share${XDG_DATA_DIRS:+:$XDG_DATA_DIRS} - &id003 - XDG_CONFIG_HOME: $CRAFT_STAGE/etc/xdg:/snap/kf5-5-108-qt-5-15-10-core22-sdk/current/etc/xdg:/etc/xdg${XDG_CONFIG_HOME:+:$XDG_CONFIG_HOME} + XDG_CONFIG_HOME: $CRAFT_STAGE/etc/xdg:/snap/kf5-5-110-qt-5-15-11-core22-sdk/current/etc/xdg:/etc/xdg${XDG_CONFIG_HOME:+:$XDG_CONFIG_HOME} - &id004 - CRAFT_CMAKE_ARGS: -DCMAKE_FIND_ROOT_PATH=/snap/kf5-5-108-qt-5-15-10-core22-sdk/current${CRAFT_CMAKE_ARGS:+:$CRAFT_CMAKE_ARGS} + CRAFT_CMAKE_ARGS: -DCMAKE_FIND_ROOT_PATH=/snap/kf5-5-110-qt-5-15-11-core22-sdk/current${CRAFT_CMAKE_ARGS:+:$CRAFT_CMAKE_ARGS} ark: after: - kde-neon @@ -128,7 +128,7 @@ - -DENABLE_TESTING=OFF - -DBUILD_TESTING=OFF - -DKDE_SKIP_TEST_SETTINGS=ON - - -DCMAKE_FIND_ROOT_PATH=$CRAFT_STAGE\;/snap/kf5-5-108-qt-5-15-10-core22-sdk/current + - -DCMAKE_FIND_ROOT_PATH=$CRAFT_STAGE\;/snap/kf5-5-110-qt-5-15-11-core22-sdk/current - "-DKDE_INSTALL_PLUGINDIR=/usr/lib/$CRAFT_ARCH_TRIPLET/qt5/plugins/" prime: - -usr/lib/*/cmake/* @@ -140,7 +140,7 @@ - -usr/bin/X11 - -usr/lib/gcc/$SNAPCRAFT_ARCH_TRIPLET/6.0.0 - -usr/lib/aspell/* - - "-usr/share/lintain" + - "-usr/share/lintian" build-environment: &id005 - *id001 - *id002